MediaWiki  1.28.1
PublishStashedFileJob.php
Go to the documentation of this file.
1 <?php
25 
32 class PublishStashedFileJob extends Job {
33  public function __construct( Title $title, array $params ) {
34  parent::__construct( 'PublishStashedFile', $title, $params );
35  $this->removeDuplicates = true;
36  }
37 
38  public function run() {
39  $scope = RequestContext::importScopedSession( $this->params['session'] );
40  $this->addTeardownCallback( function () use ( &$scope ) {
41  ScopedCallback::consume( $scope ); // T126450
42  } );
43 
45  $user = $context->getUser();
46  try {
47  if ( !$user->isLoggedIn() ) {
48  $this->setLastError( "Could not load the author user from session." );
49 
50  return false;
51  }
52 
54  $user,
55  $this->params['filekey'],
56  [ 'result' => 'Poll', 'stage' => 'publish', 'status' => Status::newGood() ]
57  );
58 
59  $upload = new UploadFromStash( $user );
60  // @todo initialize() causes a GET, ideally we could frontload the antivirus
61  // checks and anything else to the stash stage (which includes concatenation and
62  // the local file is thus already there). That way, instead of GET+PUT, there could
63  // just be a COPY operation from the stash to the public zone.
64  $upload->initialize( $this->params['filekey'], $this->params['filename'] );
65 
66  // Check if the local file checks out (this is generally a no-op)
67  $verification = $upload->verifyUpload();
68  if ( $verification['status'] !== UploadBase::OK ) {
69  $status = Status::newFatal( 'verification-error' );
70  $status->value = [ 'verification' => $verification ];
72  $user,
73  $this->params['filekey'],
74  [ 'result' => 'Failure', 'stage' => 'publish', 'status' => $status ]
75  );
76  $this->setLastError( "Could not verify upload." );
77 
78  return false;
79  }
80 
81  // Upload the stashed file to a permanent location
82  $status = $upload->performUpload(
83  $this->params['comment'],
84  $this->params['text'],
85  $this->params['watch'],
86  $user,
87  isset( $this->params['tags'] ) ? $this->params['tags'] : []
88  );
89  if ( !$status->isGood() ) {
91  $user,
92  $this->params['filekey'],
93  [ 'result' => 'Failure', 'stage' => 'publish', 'status' => $status ]
94  );
95  $this->setLastError( $status->getWikiText( false, false, 'en' ) );
96 
97  return false;
98  }
99 
100  // Build the image info array while we have the local reference handy
101  $apiMain = new ApiMain(); // dummy object (XXX)
102  $imageInfo = $upload->getImageInfo( $apiMain->getResult() );
103 
104  // Cleanup any temporary local file
105  $upload->cleanupTempFile();
106 
107  // Cache the info so the user doesn't have to wait forever to get the final info
109  $user,
110  $this->params['filekey'],
111  [
112  'result' => 'Success',
113  'stage' => 'publish',
114  'filename' => $upload->getLocalFile()->getName(),
115  'imageinfo' => $imageInfo,
116  'status' => Status::newGood()
117  ]
118  );
119  } catch ( Exception $e ) {
121  $user,
122  $this->params['filekey'],
123  [
124  'result' => 'Failure',
125  'stage' => 'publish',
126  'status' => Status::newFatal( 'api-error-publishfailed' )
127  ]
128  );
129  $this->setLastError( get_class( $e ) . ": " . $e->getMessage() );
130  // To prevent potential database referential integrity issues.
131  // See bug 32551.
133 
134  return false;
135  }
136 
137  return true;
138  }
139 
140  public function getDeduplicationInfo() {
141  $info = parent::getDeduplicationInfo();
142  if ( is_array( $info['params'] ) ) {
143  $info['params'] = [ 'filekey' => $info['params']['filekey'] ];
144  }
145 
146  return $info;
147  }
148 
149  public function allowRetries() {
150  return false;
151  }
152 }
the array() calling protocol came about after MediaWiki 1.4rc1.
$context
Definition: load.php:50
Implements uploading from previously stored file.
addTeardownCallback($callback)
Definition: Job.php:309
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException'returning false will NOT prevent logging $e
Definition: hooks.txt:2102
static newFatal($message)
Factory function for fatal errors.
Definition: StatusValue.php:63
Class to both describe a background job and handle jobs.
Definition: Job.php:31
static importScopedSession(array $params)
Import an client IP address, HTTP headers, user ID, and session ID.
static getMain()
Static methods.
Upload a file from the upload stash into the local file repo.
This is the main API class, used for both external and internal processing.
Definition: ApiMain.php:43
static newGood($value=null)
Factory function for good results.
Definition: StatusValue.php:76
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
Definition: hooks.txt:242
static rollbackMasterChangesAndLog($e)
If there are any open database transactions, roll them back and log the stack trace of the exception ...
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
setLastError($error)
Definition: Job.php:393
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
Definition: hooks.txt:1046
array $params
Array of job parameters.
Definition: Job.php:36
static setSessionStatus(User $user, $statusKey, $value)
Set the current status of a chunked upload (used for polling)
const OK
Definition: UploadBase.php:69
Title $title
Definition: Job.php:42
__construct(Title $title, array $params)
getDeduplicationInfo()
Subclasses may need to override this to make duplication detection work.