Merge "output: Narrow Title type hint to LinkTarget"
[lhc/web/wiklou.git] / includes / specials / forms / UploadForm.php
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @file
19 */
20
21 use MediaWiki\Linker\LinkRenderer;
22 use MediaWiki\MediaWikiServices;
23
24 /**
25 * Sub class of HTMLForm that provides the form section of SpecialUpload
26 */
27 class UploadForm extends HTMLForm {
28 protected $mWatch;
29 protected $mForReUpload;
30 protected $mSessionKey;
31 protected $mHideIgnoreWarning;
32 protected $mDestWarningAck;
33 protected $mDestFile;
34
35 protected $mComment;
36 protected $mTextTop;
37 protected $mTextAfterSummary;
38
39 protected $mSourceIds;
40
41 protected $mMaxFileSize = [];
42
43 /** @var array */
44 protected $mMaxUploadSize = [];
45
46 public function __construct( array $options = [], IContextSource $context = null,
47 LinkRenderer $linkRenderer = null
48 ) {
49 if ( $context instanceof IContextSource ) {
50 $this->setContext( $context );
51 }
52
53 if ( !$linkRenderer ) {
54 $linkRenderer = MediaWikiServices::getInstance()->getLinkRenderer();
55 }
56
57 $this->mWatch = !empty( $options['watch'] );
58 $this->mForReUpload = !empty( $options['forreupload'] );
59 $this->mSessionKey = $options['sessionkey'] ?? '';
60 $this->mHideIgnoreWarning = !empty( $options['hideignorewarning'] );
61 $this->mDestWarningAck = !empty( $options['destwarningack'] );
62 $this->mDestFile = $options['destfile'] ?? '';
63
64 $this->mComment = $options['description'] ?? '';
65
66 $this->mTextTop = $options['texttop'] ?? '';
67
68 $this->mTextAfterSummary = $options['textaftersummary'] ?? '';
69
70 $sourceDescriptor = $this->getSourceSection();
71 $descriptor = $sourceDescriptor
72 + $this->getDescriptionSection()
73 + $this->getOptionsSection();
74
75 Hooks::run( 'UploadFormInitDescriptor', [ &$descriptor ] );
76 parent::__construct( $descriptor, $context, 'upload' );
77
78 # Add a link to edit MediaWiki:Licenses
79 if ( MediaWikiServices::getInstance()
80 ->getPermissionManager()
81 ->userHasRight( $this->getUser(), 'editinterface' )
82 ) {
83 $this->getOutput()->addModuleStyles( 'mediawiki.special' );
84 $licensesLink = $linkRenderer->makeKnownLink(
85 $this->msg( 'licenses' )->inContentLanguage()->getTitle(),
86 $this->msg( 'licenses-edit' )->text(),
87 [],
88 [ 'action' => 'edit' ]
89 );
90 $editLicenses = '<p class="mw-upload-editlicenses">' . $licensesLink . '</p>';
91 $this->addFooterText( $editLicenses, 'description' );
92 }
93
94 # Set some form properties
95 $this->setSubmitText( $this->msg( 'uploadbtn' )->text() );
96 $this->setSubmitName( 'wpUpload' );
97 # Used message keys: 'accesskey-upload', 'tooltip-upload'
98 $this->setSubmitTooltip( 'upload' );
99 $this->setId( 'mw-upload-form' );
100
101 # Build a list of IDs for javascript insertion
102 $this->mSourceIds = [];
103 foreach ( $sourceDescriptor as $field ) {
104 if ( !empty( $field['id'] ) ) {
105 $this->mSourceIds[] = $field['id'];
106 }
107 }
108 }
109
110 /**
111 * Get the descriptor of the fieldset that contains the file source
112 * selection. The section is 'source'
113 *
114 * @return array Descriptor array
115 */
116 protected function getSourceSection() {
117 if ( $this->mSessionKey ) {
118 return [
119 'SessionKey' => [
120 'type' => 'hidden',
121 'default' => $this->mSessionKey,
122 ],
123 'SourceType' => [
124 'type' => 'hidden',
125 'default' => 'Stash',
126 ],
127 ];
128 }
129
130 $canUploadByUrl = UploadFromUrl::isEnabled()
131 && ( UploadFromUrl::isAllowed( $this->getUser() ) === true )
132 && $this->getConfig()->get( 'CopyUploadsFromSpecialUpload' );
133 $radio = $canUploadByUrl;
134 $selectedSourceType = strtolower( $this->getRequest()->getText( 'wpSourceType', 'File' ) );
135
136 $descriptor = [];
137 if ( $this->mTextTop ) {
138 $descriptor['UploadFormTextTop'] = [
139 'type' => 'info',
140 'section' => 'source',
141 'default' => $this->mTextTop,
142 'raw' => true,
143 ];
144 }
145
146 $this->mMaxUploadSize['file'] = min(
147 UploadBase::getMaxUploadSize( 'file' ),
148 UploadBase::getMaxPhpUploadSize()
149 );
150
151 $help = $this->msg( 'upload-maxfilesize',
152 $this->getContext()->getLanguage()->formatSize( $this->mMaxUploadSize['file'] )
153 )->parse();
154
155 // If the user can also upload by URL, there are 2 different file size limits.
156 // This extra message helps stress which limit corresponds to what.
157 if ( $canUploadByUrl ) {
158 $help .= $this->msg( 'word-separator' )->escaped();
159 $help .= $this->msg( 'upload_source_file' )->parse();
160 }
161
162 $descriptor['UploadFile'] = [
163 'class' => UploadSourceField::class,
164 'section' => 'source',
165 'type' => 'file',
166 'id' => 'wpUploadFile',
167 'radio-id' => 'wpSourceTypeFile',
168 'label-message' => 'sourcefilename',
169 'upload-type' => 'File',
170 'radio' => &$radio,
171 'help' => $help,
172 'checked' => $selectedSourceType == 'file',
173 ];
174
175 if ( $canUploadByUrl ) {
176 $this->mMaxUploadSize['url'] = UploadBase::getMaxUploadSize( 'url' );
177 $descriptor['UploadFileURL'] = [
178 'class' => UploadSourceField::class,
179 'section' => 'source',
180 'id' => 'wpUploadFileURL',
181 'radio-id' => 'wpSourceTypeurl',
182 'label-message' => 'sourceurl',
183 'upload-type' => 'url',
184 'radio' => &$radio,
185 'help' => $this->msg( 'upload-maxfilesize',
186 $this->getContext()->getLanguage()->formatSize( $this->mMaxUploadSize['url'] )
187 )->parse() .
188 $this->msg( 'word-separator' )->escaped() .
189 $this->msg( 'upload_source_url' )->parse(),
190 'checked' => $selectedSourceType == 'url',
191 ];
192 }
193 Hooks::run( 'UploadFormSourceDescriptors', [ &$descriptor, &$radio, $selectedSourceType ] );
194
195 $descriptor['Extensions'] = [
196 'type' => 'info',
197 'section' => 'source',
198 'default' => $this->getExtensionsMessage(),
199 'raw' => true,
200 ];
201
202 return $descriptor;
203 }
204
205 /**
206 * Get the messages indicating which extensions are preferred and prohibitted.
207 *
208 * @return string HTML string containing the message
209 */
210 protected function getExtensionsMessage() {
211 # Print a list of allowed file extensions, if so configured. We ignore
212 # MIME type here, it's incomprehensible to most people and too long.
213 $config = $this->getConfig();
214
215 if ( $config->get( 'CheckFileExtensions' ) ) {
216 $fileExtensions = array_unique( $config->get( 'FileExtensions' ) );
217 if ( $config->get( 'StrictFileExtensions' ) ) {
218 # Everything not permitted is banned
219 $extensionsList =
220 '<div id="mw-upload-permitted">' .
221 $this->msg( 'upload-permitted' )
222 ->params( $this->getLanguage()->commaList( $fileExtensions ) )
223 ->numParams( count( $fileExtensions ) )
224 ->parseAsBlock() .
225 "</div>\n";
226 } else {
227 # We have to list both preferred and prohibited
228 $fileBlacklist = array_unique( $config->get( 'FileBlacklist' ) );
229 $extensionsList =
230 '<div id="mw-upload-preferred">' .
231 $this->msg( 'upload-preferred' )
232 ->params( $this->getLanguage()->commaList( $fileExtensions ) )
233 ->numParams( count( $fileExtensions ) )
234 ->parseAsBlock() .
235 "</div>\n" .
236 '<div id="mw-upload-prohibited">' .
237 $this->msg( 'upload-prohibited' )
238 ->params( $this->getLanguage()->commaList( $fileBlacklist ) )
239 ->numParams( count( $fileBlacklist ) )
240 ->parseAsBlock() .
241 "</div>\n";
242 }
243 } else {
244 # Everything is permitted.
245 $extensionsList = '';
246 }
247
248 return $extensionsList;
249 }
250
251 /**
252 * Get the descriptor of the fieldset that contains the file description
253 * input. The section is 'description'
254 *
255 * @return array Descriptor array
256 */
257 protected function getDescriptionSection() {
258 $config = $this->getConfig();
259 if ( $this->mSessionKey ) {
260 $stash = RepoGroup::singleton()->getLocalRepo()->getUploadStash( $this->getUser() );
261 try {
262 $file = $stash->getFile( $this->mSessionKey );
263 } catch ( Exception $e ) {
264 $file = null;
265 }
266 if ( $file ) {
267 $mto = $file->transform( [ 'width' => 120 ] );
268 if ( $mto ) {
269 $this->addHeaderText(
270 '<div class="thumb t' .
271 MediaWikiServices::getInstance()->getContentLanguage()->alignEnd() . '">' .
272 Html::element( 'img', [
273 'src' => $mto->getUrl(),
274 'class' => 'thumbimage',
275 ] ) . '</div>', 'description' );
276 }
277 }
278 }
279
280 $descriptor = [
281 'DestFile' => [
282 'type' => 'text',
283 'section' => 'description',
284 'id' => 'wpDestFile',
285 'label-message' => 'destfilename',
286 'size' => 60,
287 'default' => $this->mDestFile,
288 # @todo FIXME: Hack to work around poor handling of the 'default' option in HTMLForm
289 'nodata' => strval( $this->mDestFile ) !== '',
290 ],
291 'UploadDescription' => [
292 'type' => 'textarea',
293 'section' => 'description',
294 'id' => 'wpUploadDescription',
295 'label-message' => $this->mForReUpload
296 ? 'filereuploadsummary'
297 : 'fileuploadsummary',
298 'default' => $this->mComment,
299 'cols' => 80,
300 'rows' => 8,
301 ]
302 ];
303 if ( $this->mTextAfterSummary ) {
304 $descriptor['UploadFormTextAfterSummary'] = [
305 'type' => 'info',
306 'section' => 'description',
307 'default' => $this->mTextAfterSummary,
308 'raw' => true,
309 ];
310 }
311
312 $descriptor += [
313 'EditTools' => [
314 'type' => 'edittools',
315 'section' => 'description',
316 'message' => 'edittools-upload',
317 ]
318 ];
319
320 if ( $this->mForReUpload ) {
321 $descriptor['DestFile']['readonly'] = true;
322 } else {
323 $descriptor['License'] = [
324 'type' => 'select',
325 'class' => Licenses::class,
326 'section' => 'description',
327 'id' => 'wpLicense',
328 'label-message' => 'license',
329 ];
330 }
331
332 if ( $config->get( 'UseCopyrightUpload' ) ) {
333 $descriptor['UploadCopyStatus'] = [
334 'type' => 'text',
335 'section' => 'description',
336 'id' => 'wpUploadCopyStatus',
337 'label-message' => 'filestatus',
338 ];
339 $descriptor['UploadSource'] = [
340 'type' => 'text',
341 'section' => 'description',
342 'id' => 'wpUploadSource',
343 'label-message' => 'filesource',
344 ];
345 }
346
347 return $descriptor;
348 }
349
350 /**
351 * Get the descriptor of the fieldset that contains the upload options,
352 * such as "watch this file". The section is 'options'
353 *
354 * @return array Descriptor array
355 */
356 protected function getOptionsSection() {
357 $user = $this->getUser();
358 if ( $user->isLoggedIn() ) {
359 $descriptor = [
360 'Watchthis' => [
361 'type' => 'check',
362 'id' => 'wpWatchthis',
363 'label-message' => 'watchthisupload',
364 'section' => 'options',
365 'default' => $this->mWatch,
366 ]
367 ];
368 }
369 if ( !$this->mHideIgnoreWarning ) {
370 $descriptor['IgnoreWarning'] = [
371 'type' => 'check',
372 'id' => 'wpIgnoreWarning',
373 'label-message' => 'ignorewarnings',
374 'section' => 'options',
375 ];
376 }
377
378 $descriptor['DestFileWarningAck'] = [
379 'type' => 'hidden',
380 'id' => 'wpDestFileWarningAck',
381 'default' => $this->mDestWarningAck ? '1' : '',
382 ];
383
384 if ( $this->mForReUpload ) {
385 $descriptor['ForReUpload'] = [
386 'type' => 'hidden',
387 'id' => 'wpForReUpload',
388 'default' => '1',
389 ];
390 }
391
392 return $descriptor;
393 }
394
395 /**
396 * Add the upload JS and show the form.
397 */
398 public function show() {
399 $this->addUploadJS();
400 return parent::show();
401 }
402
403 /**
404 * Add upload JS to the OutputPage
405 */
406 protected function addUploadJS() {
407 $config = $this->getConfig();
408
409 $this->mMaxUploadSize['*'] = UploadBase::getMaxUploadSize();
410
411 $scriptVars = [
412 'wgAjaxUploadDestCheck' => $config->get( 'AjaxUploadDestCheck' ),
413 'wgAjaxLicensePreview' => $config->get( 'AjaxLicensePreview' ),
414 'wgUploadAutoFill' => !$this->mForReUpload &&
415 // If we received mDestFile from the request, don't autofill
416 // the wpDestFile textbox
417 $this->mDestFile === '',
418 'wgUploadSourceIds' => $this->mSourceIds,
419 'wgCheckFileExtensions' => $config->get( 'CheckFileExtensions' ),
420 'wgStrictFileExtensions' => $config->get( 'StrictFileExtensions' ),
421 'wgFileExtensions' => array_values( array_unique( $config->get( 'FileExtensions' ) ) ),
422 'wgCapitalizeUploads' => MediaWikiServices::getInstance()->getNamespaceInfo()->
423 isCapitalized( NS_FILE ),
424 'wgMaxUploadSize' => $this->mMaxUploadSize,
425 'wgFileCanRotate' => SpecialUpload::rotationEnabled(),
426 ];
427
428 $out = $this->getOutput();
429 $out->addJsConfigVars( $scriptVars );
430
431 $out->addModules( [
432 'mediawiki.special.upload', // Extras for thumbnail and license preview.
433 ] );
434 }
435
436 /**
437 * Empty function; submission is handled elsewhere.
438 *
439 * @return bool False
440 */
441 function trySubmit() {
442 return false;
443 }
444 }