Merge "Remove fix for a 5.3 problem"
[lhc/web/wiklou.git] / includes / jobqueue / jobs / PublishStashedFileJob.php
1 <?php
2 /**
3 * Upload a file from the upload stash into the local file repo.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup Upload
22 * @ingroup JobQueue
23 */
24
25 /**
26 * Upload a file from the upload stash into the local file repo.
27 *
28 * @ingroup Upload
29 * @ingroup JobQueue
30 */
31 class PublishStashedFileJob extends Job {
32 public function __construct( Title $title, array $params ) {
33 parent::__construct( 'PublishStashedFile', $title, $params );
34 $this->removeDuplicates = true;
35 }
36
37 public function run() {
38 /** @noinspection PhpUnusedLocalVariableInspection */
39 $scope = RequestContext::importScopedSession( $this->params['session'] );
40 $context = RequestContext::getMain();
41 $user = $context->getUser();
42 try {
43 if ( !$user->isLoggedIn() ) {
44 $this->setLastError( "Could not load the author user from session." );
45
46 return false;
47 }
48
49 UploadBase::setSessionStatus(
50 $user,
51 $this->params['filekey'],
52 [ 'result' => 'Poll', 'stage' => 'publish', 'status' => Status::newGood() ]
53 );
54
55 $upload = new UploadFromStash( $user );
56 // @todo initialize() causes a GET, ideally we could frontload the antivirus
57 // checks and anything else to the stash stage (which includes concatenation and
58 // the local file is thus already there). That way, instead of GET+PUT, there could
59 // just be a COPY operation from the stash to the public zone.
60 $upload->initialize( $this->params['filekey'], $this->params['filename'] );
61
62 // Check if the local file checks out (this is generally a no-op)
63 $verification = $upload->verifyUpload();
64 if ( $verification['status'] !== UploadBase::OK ) {
65 $status = Status::newFatal( 'verification-error' );
66 $status->value = [ 'verification' => $verification ];
67 UploadBase::setSessionStatus(
68 $user,
69 $this->params['filekey'],
70 [ 'result' => 'Failure', 'stage' => 'publish', 'status' => $status ]
71 );
72 $this->setLastError( "Could not verify upload." );
73
74 return false;
75 }
76
77 // Upload the stashed file to a permanent location
78 $status = $upload->performUpload(
79 $this->params['comment'],
80 $this->params['text'],
81 $this->params['watch'],
82 $user,
83 isset( $this->params['tags'] ) ? $this->params['tags'] : []
84 );
85 if ( !$status->isGood() ) {
86 UploadBase::setSessionStatus(
87 $user,
88 $this->params['filekey'],
89 [ 'result' => 'Failure', 'stage' => 'publish', 'status' => $status ]
90 );
91 $this->setLastError( $status->getWikiText() );
92
93 return false;
94 }
95
96 // Build the image info array while we have the local reference handy
97 $apiMain = new ApiMain(); // dummy object (XXX)
98 $imageInfo = $upload->getImageInfo( $apiMain->getResult() );
99
100 // Cleanup any temporary local file
101 $upload->cleanupTempFile();
102
103 // Cache the info so the user doesn't have to wait forever to get the final info
104 UploadBase::setSessionStatus(
105 $user,
106 $this->params['filekey'],
107 [
108 'result' => 'Success',
109 'stage' => 'publish',
110 'filename' => $upload->getLocalFile()->getName(),
111 'imageinfo' => $imageInfo,
112 'status' => Status::newGood()
113 ]
114 );
115 } catch ( Exception $e ) {
116 UploadBase::setSessionStatus(
117 $user,
118 $this->params['filekey'],
119 [
120 'result' => 'Failure',
121 'stage' => 'publish',
122 'status' => Status::newFatal( 'api-error-publishfailed' )
123 ]
124 );
125 $this->setLastError( get_class( $e ) . ": " . $e->getMessage() );
126 // To prevent potential database referential integrity issues.
127 // See bug 32551.
128 MWExceptionHandler::rollbackMasterChangesAndLog( $e );
129
130 return false;
131 }
132
133 return true;
134 }
135
136 public function getDeduplicationInfo() {
137 $info = parent::getDeduplicationInfo();
138 if ( is_array( $info['params'] ) ) {
139 $info['params'] = [ 'filekey' => $info['params']['filekey'] ];
140 }
141
142 return $info;
143 }
144
145 public function allowRetries() {
146 return false;
147 }
148 }