MediaWiki REL1_33
UploadStash.php
Go to the documentation of this file.
1<?php
54 // Format of the key for files -- has to be suitable as a filename itself (e.g. ab12cd34ef.jpg)
55 const KEY_FORMAT_REGEX = '/^[\w\-\.]+\.\w*$/';
56 const MAX_US_PROPS_SIZE = 65535;
57
64 public $repo;
65
66 // array of initialized repo objects
67 protected $files = [];
68
69 // cache of the file metadata that's stored in the database
70 protected $fileMetadata = [];
71
72 // fileprops cache
73 protected $fileProps = [];
74
75 // current user
77
86 public function __construct( FileRepo $repo, $user = null ) {
87 // this might change based on wiki's configuration.
88 $this->repo = $repo;
89
90 // if a user was passed, use it. otherwise, attempt to use the global.
91 // this keeps FileRepo from breaking when it creates an UploadStash object
92 if ( $user ) {
93 $this->user = $user;
94 } else {
95 global $wgUser;
96 $this->user = $wgUser;
97 }
98
99 if ( is_object( $this->user ) ) {
100 $this->userId = $this->user->getId();
101 $this->isLoggedIn = $this->user->isLoggedIn();
102 }
103 }
104
118 public function getFile( $key, $noAuth = false ) {
119 if ( !preg_match( self::KEY_FORMAT_REGEX, $key ) ) {
121 wfMessage( 'uploadstash-bad-path-bad-format', $key )
122 );
123 }
124
125 if ( !$noAuth && !$this->isLoggedIn ) {
127 wfMessage( 'uploadstash-not-logged-in' )
128 );
129 }
130
131 if ( !isset( $this->fileMetadata[$key] ) ) {
132 if ( !$this->fetchFileMetadata( $key ) ) {
133 // If nothing was received, it's likely due to replication lag.
134 // Check the master to see if the record is there.
135 $this->fetchFileMetadata( $key, DB_MASTER );
136 }
137
138 if ( !isset( $this->fileMetadata[$key] ) ) {
140 wfMessage( 'uploadstash-file-not-found', $key )
141 );
142 }
143
144 // create $this->files[$key]
145 $this->initFile( $key );
146
147 // fetch fileprops
148 if ( strlen( $this->fileMetadata[$key]['us_props'] ) ) {
149 $this->fileProps[$key] = unserialize( $this->fileMetadata[$key]['us_props'] );
150 } else { // b/c for rows with no us_props
151 wfDebug( __METHOD__ . " fetched props for $key from file\n" );
152 $path = $this->fileMetadata[$key]['us_path'];
153 $this->fileProps[$key] = $this->repo->getFileProps( $path );
154 }
155 }
156
157 if ( !$this->files[$key]->exists() ) {
158 wfDebug( __METHOD__ . " tried to get file at $key, but it doesn't exist\n" );
159 // @todo Is this not an UploadStashFileNotFoundException case?
161 wfMessage( 'uploadstash-bad-path' )
162 );
163 }
164
165 if ( !$noAuth && $this->fileMetadata[$key]['us_user'] != $this->userId ) {
167 wfMessage( 'uploadstash-wrong-owner', $key )
168 );
169 }
170
171 return $this->files[$key];
172 }
173
180 public function getMetadata( $key ) {
181 $this->getFile( $key );
182
183 return $this->fileMetadata[$key];
184 }
185
192 public function getFileProps( $key ) {
193 $this->getFile( $key );
194
195 return $this->fileProps[$key];
196 }
197
210 public function stashFile( $path, $sourceType = null ) {
211 if ( !is_file( $path ) ) {
212 wfDebug( __METHOD__ . " tried to stash file at '$path', but it doesn't exist\n" );
214 wfMessage( 'uploadstash-bad-path' )
215 );
216 }
217
218 $mwProps = new MWFileProps( MediaWiki\MediaWikiServices::getInstance()->getMimeAnalyzer() );
219 $fileProps = $mwProps->getPropsFromPath( $path, true );
220 wfDebug( __METHOD__ . " stashing file at '$path'\n" );
221
222 // we will be initializing from some tmpnam files that don't have extensions.
223 // most of MediaWiki assumes all uploaded files have good extensions. So, we fix this.
224 $extension = self::getExtensionForPath( $path );
225 if ( !preg_match( "/\\.\\Q$extension\\E$/", $path ) ) {
226 $pathWithGoodExtension = "$path.$extension";
227 } else {
228 $pathWithGoodExtension = $path;
229 }
230
231 // If no key was supplied, make one. a mysql insertid would be totally
232 // reasonable here, except that for historical reasons, the key is this
233 // random thing instead. At least it's not guessable.
234 // Some things that when combined will make a suitably unique key.
235 // see: http://www.jwz.org/doc/mid.html
236 list( $usec, $sec ) = explode( ' ', microtime() );
237 $usec = substr( $usec, 2 );
238 $key = Wikimedia\base_convert( $sec . $usec, 10, 36 ) . '.' .
239 Wikimedia\base_convert( mt_rand(), 10, 36 ) . '.' .
240 $this->userId . '.' .
241 $extension;
242
243 $this->fileProps[$key] = $fileProps;
244
245 if ( !preg_match( self::KEY_FORMAT_REGEX, $key ) ) {
247 wfMessage( 'uploadstash-bad-path-bad-format', $key )
248 );
249 }
250
251 wfDebug( __METHOD__ . " key for '$path': $key\n" );
252
253 // if not already in a temporary area, put it there
254 $storeStatus = $this->repo->storeTemp( basename( $pathWithGoodExtension ), $path );
255
256 if ( !$storeStatus->isOK() ) {
257 // It is a convention in MediaWiki to only return one error per API
258 // exception, even if multiple errors are available. We use reset()
259 // to pick the "first" thing that was wrong, preferring errors to
260 // warnings. This is a bit lame, as we may have more info in the
261 // $storeStatus and we're throwing it away, but to fix it means
262 // redesigning API errors significantly.
263 // $storeStatus->value just contains the virtual URL (if anything)
264 // which is probably useless to the caller.
265 $error = $storeStatus->getErrorsArray();
266 $error = reset( $error );
267 if ( !count( $error ) ) {
268 $error = $storeStatus->getWarningsArray();
269 $error = reset( $error );
270 if ( !count( $error ) ) {
271 $error = [ 'unknown', 'no error recorded' ];
272 }
273 }
274 // At this point, $error should contain the single "most important"
275 // error, plus any parameters.
276 $errorMsg = array_shift( $error );
277 throw new UploadStashFileException( wfMessage( $errorMsg, $error ) );
278 }
279 $stashPath = $storeStatus->value;
280
281 // fetch the current user ID
282 if ( !$this->isLoggedIn ) {
284 wfMessage( 'uploadstash-not-logged-in' )
285 );
286 }
287
288 // insert the file metadata into the db.
289 wfDebug( __METHOD__ . " inserting $stashPath under $key\n" );
290 $dbw = $this->repo->getMasterDB();
291
292 $serializedFileProps = serialize( $fileProps );
293 if ( strlen( $serializedFileProps ) > self::MAX_US_PROPS_SIZE ) {
294 // Database is going to truncate this and make the field invalid.
295 // Prioritize important metadata over file handler metadata.
296 // File handler should be prepared to regenerate invalid metadata if needed.
297 $fileProps['metadata'] = false;
298 $serializedFileProps = serialize( $fileProps );
299 }
300
301 $this->fileMetadata[$key] = [
302 'us_user' => $this->userId,
303 'us_key' => $key,
304 'us_orig_path' => $path,
305 'us_path' => $stashPath, // virtual URL
306 'us_props' => $dbw->encodeBlob( $serializedFileProps ),
307 'us_size' => $fileProps['size'],
308 'us_sha1' => $fileProps['sha1'],
309 'us_mime' => $fileProps['mime'],
310 'us_media_type' => $fileProps['media_type'],
311 'us_image_width' => $fileProps['width'],
312 'us_image_height' => $fileProps['height'],
313 'us_image_bits' => $fileProps['bits'],
314 'us_source_type' => $sourceType,
315 'us_timestamp' => $dbw->timestamp(),
316 'us_status' => 'finished'
317 ];
318
319 $dbw->insert(
320 'uploadstash',
321 $this->fileMetadata[$key],
322 __METHOD__
323 );
324
325 // store the insertid in the class variable so immediate retrieval
326 // (possibly laggy) isn't necessary.
327 $this->fileMetadata[$key]['us_id'] = $dbw->insertId();
328
329 # create the UploadStashFile object for this file.
330 $this->initFile( $key );
331
332 return $this->getFile( $key );
333 }
334
342 public function clear() {
343 if ( !$this->isLoggedIn ) {
345 wfMessage( 'uploadstash-not-logged-in' )
346 );
347 }
348
349 wfDebug( __METHOD__ . ' clearing all rows for user ' . $this->userId . "\n" );
350 $dbw = $this->repo->getMasterDB();
351 $dbw->delete(
352 'uploadstash',
353 [ 'us_user' => $this->userId ],
354 __METHOD__
355 );
356
357 # destroy objects.
358 $this->files = [];
359 $this->fileMetadata = [];
360
361 return true;
362 }
363
372 public function removeFile( $key ) {
373 if ( !$this->isLoggedIn ) {
375 wfMessage( 'uploadstash-not-logged-in' )
376 );
377 }
378
379 $dbw = $this->repo->getMasterDB();
380
381 // this is a cheap query. it runs on the master so that this function
382 // still works when there's lag. It won't be called all that often.
383 $row = $dbw->selectRow(
384 'uploadstash',
385 'us_user',
386 [ 'us_key' => $key ],
387 __METHOD__
388 );
389
390 if ( !$row ) {
392 wfMessage( 'uploadstash-no-such-key', $key )
393 );
394 }
395
396 if ( $row->us_user != $this->userId ) {
398 wfMessage( 'uploadstash-wrong-owner', $key )
399 );
400 }
401
402 return $this->removeFileNoAuth( $key );
403 }
404
411 public function removeFileNoAuth( $key ) {
412 wfDebug( __METHOD__ . " clearing row $key\n" );
413
414 // Ensure we have the UploadStashFile loaded for this key
415 $this->getFile( $key, true );
416
417 $dbw = $this->repo->getMasterDB();
418
419 $dbw->delete(
420 'uploadstash',
421 [ 'us_key' => $key ],
422 __METHOD__
423 );
424
428 $this->files[$key]->remove();
429
430 unset( $this->files[$key] );
431 unset( $this->fileMetadata[$key] );
432
433 return true;
434 }
435
442 public function listFiles() {
443 if ( !$this->isLoggedIn ) {
445 wfMessage( 'uploadstash-not-logged-in' )
446 );
447 }
448
449 $dbr = $this->repo->getReplicaDB();
450 $res = $dbr->select(
451 'uploadstash',
452 'us_key',
453 [ 'us_user' => $this->userId ],
454 __METHOD__
455 );
456
457 if ( !is_object( $res ) || $res->numRows() == 0 ) {
458 // nothing to do.
459 return false;
460 }
461
462 // finish the read before starting writes.
463 $keys = [];
464 foreach ( $res as $row ) {
465 array_push( $keys, $row->us_key );
466 }
467
468 return $keys;
469 }
470
481 public static function getExtensionForPath( $path ) {
482 global $wgFileBlacklist;
483 // Does this have an extension?
484 $n = strrpos( $path, '.' );
485 $extension = null;
486 if ( $n !== false ) {
487 $extension = $n ? substr( $path, $n + 1 ) : '';
488 } else {
489 // If not, assume that it should be related to the MIME type of the original file.
490 $magic = MediaWiki\MediaWikiServices::getInstance()->getMimeAnalyzer();
491 $mimeType = $magic->guessMimeType( $path );
492 $extensions = explode( ' ', $magic->getExtensionsForType( $mimeType ) );
493 if ( count( $extensions ) ) {
494 $extension = $extensions[0];
495 }
496 }
497
498 if ( is_null( $extension ) ) {
499 throw new UploadStashFileException(
500 wfMessage( 'uploadstash-no-extension' )
501 );
502 }
503
504 $extension = File::normalizeExtension( $extension );
505 if ( in_array( $extension, $wgFileBlacklist ) ) {
506 // The file should already be checked for being evil.
507 // However, if somehow we got here, we definitely
508 // don't want to give it an extension of .php and
509 // put it in a web accesible directory.
510 return '';
511 }
512
513 return $extension;
514 }
515
523 protected function fetchFileMetadata( $key, $readFromDB = DB_REPLICA ) {
524 // populate $fileMetadata[$key]
525 $dbr = null;
526 if ( $readFromDB === DB_MASTER ) {
527 // sometimes reading from the master is necessary, if there's replication lag.
528 $dbr = $this->repo->getMasterDB();
529 } else {
530 $dbr = $this->repo->getReplicaDB();
531 }
532
533 $row = $dbr->selectRow(
534 'uploadstash',
535 [
536 'us_user', 'us_key', 'us_orig_path', 'us_path', 'us_props',
537 'us_size', 'us_sha1', 'us_mime', 'us_media_type',
538 'us_image_width', 'us_image_height', 'us_image_bits',
539 'us_source_type', 'us_timestamp', 'us_status',
540 ],
541 [ 'us_key' => $key ],
542 __METHOD__
543 );
544
545 if ( !is_object( $row ) ) {
546 // key wasn't present in the database. this will happen sometimes.
547 return false;
548 }
549
550 $this->fileMetadata[$key] = (array)$row;
551 $this->fileMetadata[$key]['us_props'] = $dbr->decodeBlob( $row->us_props );
552
553 return true;
554 }
555
563 protected function initFile( $key ) {
564 $file = new UploadStashFile( $this->repo, $this->fileMetadata[$key]['us_path'], $key );
565 if ( $file->getSize() === 0 ) {
567 wfMessage( 'uploadstash-zero-length' )
568 );
569 }
570 $this->files[$key] = $file;
571
572 return true;
573 }
574}
575
580 private $fileKey;
581 private $urlName;
582 protected $url;
583
596 public function __construct( $repo, $path, $key ) {
597 $this->fileKey = $key;
598
599 // resolve mwrepo:// urls
600 if ( FileRepo::isVirtualUrl( $path ) ) {
601 $path = $repo->resolveVirtualUrl( $path );
602 } else {
603 // check if path appears to be sane, no parent traversals,
604 // and is in this repo's temp zone.
605 $repoTempPath = $repo->getZonePath( 'temp' );
606 if ( ( !$repo->validateFilename( $path ) ) ||
607 ( strpos( $path, $repoTempPath ) !== 0 )
608 ) {
609 wfDebug( "UploadStash: tried to construct an UploadStashFile "
610 . "from a file that should already exist at '$path', but path is not valid\n" );
612 wfMessage( 'uploadstash-bad-path-invalid' )
613 );
614 }
615
616 // check if path exists! and is a plain file.
617 if ( !$repo->fileExists( $path ) ) {
618 wfDebug( "UploadStash: tried to construct an UploadStashFile from "
619 . "a file that should already exist at '$path', but path is not found\n" );
621 wfMessage( 'uploadstash-file-not-found-not-exists' )
622 );
623 }
624 }
625
626 parent::__construct( false, $repo, $path, false );
627
628 $this->name = basename( $this->path );
629 }
630
639 public function getDescriptionUrl() {
640 return $this->getUrl();
641 }
642
653 public function getThumbPath( $thumbName = false ) {
654 $path = dirname( $this->path );
655 if ( $thumbName !== false ) {
656 $path .= "/$thumbName";
657 }
658
659 return $path;
660 }
661
671 function thumbName( $params, $flags = 0 ) {
672 return $this->generateThumbName( $this->getUrlName(), $params );
673 }
674
681 private function getSpecialUrl( $subPage ) {
682 return SpecialPage::getTitleFor( 'UploadStash', $subPage )->getLocalURL();
683 }
684
695 public function getThumbUrl( $thumbName = false ) {
696 wfDebug( __METHOD__ . " getting for $thumbName \n" );
697
698 return $this->getSpecialUrl( 'thumb/' . $this->getUrlName() . '/' . $thumbName );
699 }
700
707 public function getUrlName() {
708 if ( !$this->urlName ) {
709 $this->urlName = $this->fileKey;
710 }
711
712 return $this->urlName;
713 }
714
721 public function getUrl() {
722 if ( !isset( $this->url ) ) {
723 $this->url = $this->getSpecialUrl( 'file/' . $this->getUrlName() );
724 }
725
726 return $this->url;
727 }
728
736 public function getFullUrl() {
737 return $this->getUrl();
738 }
739
746 public function getFileKey() {
747 return $this->fileKey;
748 }
749
754 public function remove() {
755 if ( !$this->repo->fileExists( $this->path ) ) {
756 // Maybe the file's already been removed? This could totally happen in UploadBase.
757 return true;
758 }
759
760 return $this->repo->freeTemp( $this->path );
761 }
762
763 public function exists() {
764 return $this->repo->fileExists( $this->path );
765 }
766}
serialize()
unserialize( $serialized)
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
c Accompany it with the information you received as to the offer to distribute corresponding source complete source code means all the source code for all modules it plus any associated interface definition files
Definition COPYING.txt:158
$wgFileBlacklist
Files with these extensions will never be allowed as uploads.
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
Base class for file repositories.
Definition FileRepo.php:39
resolveVirtualUrl( $url)
Get the backend storage path corresponding to a virtual URL.
Definition FileRepo.php:323
fileExists( $file)
Checks existence of a file.
getZonePath( $zone)
Get the storage path corresponding to one of the zones.
Definition FileRepo.php:363
static isVirtualUrl( $url)
Determine if a string is an mwrepo:// URL.
Definition FileRepo.php:254
validateFilename( $filename)
Determine if a relative path is valid, i.e.
FileRepo LocalRepo ForeignAPIRepo bool $repo
Some member variables can be lazy-initialised using __get().
Definition File.php:97
static normalizeExtension( $extension)
Normalize a file extension to the common form, making it lowercase and checking some synonyms,...
Definition File.php:225
generateThumbName( $name, $params)
Generate a thumbnail file name from a name and specified parameters.
Definition File.php:968
A repository that stores files in the local filesystem and registers them in the wiki's own database.
Definition LocalRepo.php:36
MimeMagic helper wrapper.
A file object referring to either a standalone local file, or a file in a local repository with no da...
exists()
Returns true if file exists in the repository.
__construct( $repo, $path, $key)
A LocalFile wrapper around a file that has been temporarily stashed, so we can do things like create ...
getThumbPath( $thumbName=false)
Get the path for the thumbnail (actually any transformation of this file) The actual argument is the ...
getDescriptionUrl()
A method needed by the file transforming and scaling routines in File.php We do not necessarily care ...
getSpecialUrl( $subPage)
Helper function – given a 'subpage', return the local URL, e.g.
getUrl()
Return the URL of the file, if for some reason we wanted to download it We tend not to do this for th...
getThumbUrl( $thumbName=false)
Get a URL to access the thumbnail This is required because the model of how files work requires that ...
getFullUrl()
Parent classes use this method, for no obvious reason, to return the path (relative to wiki root,...
getUrlName()
The basename for the URL, which we want to not be related to the filename.
getFileKey()
Getter for file key (the unique id by which this file's location & metadata is stored in the db)
thumbName( $params, $flags=0)
Return the file/url base name of a thumbnail with the specified parameters.
UploadStash is intended to accomplish a few things:
static getExtensionForPath( $path)
Find or guess extension – ensuring that our extension matches our MIME type.
removeFile( $key)
Remove a particular file from the stash.
__construct(FileRepo $repo, $user=null)
Represents a temporary filestore, with metadata in the database.
const KEY_FORMAT_REGEX
fetchFileMetadata( $key, $readFromDB=DB_REPLICA)
Helper function: do the actual database query to fetch file metadata.
getFileProps( $key)
Getter for fileProps.
stashFile( $path, $sourceType=null)
Stash a file in a temp directory and record that we did this in the database, along with other metada...
clear()
Remove all files from the stash.
const MAX_US_PROPS_SIZE
listFiles()
List all files in the stash.
getMetadata( $key)
Getter for file metadata.
removeFileNoAuth( $key)
Remove a file (see removeFile), but doesn't check ownership first.
initFile( $key)
Helper function: Initialize the UploadStashFile for a given file.
getFile( $key, $noAuth=false)
Get a file and its metadata from the stash.
LocalRepo $repo
repository that this uses to store temp files public because we sometimes need to get a LocalFile wit...
$res
Definition database.txt:21
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition deferred.txt:11
> value, names are case insensitive). Two headers get special handling:If-Modified-Since(value must be a valid HTTP date) and Range(must be of the form "bytes=(\d*-\d*)") will be honored when streaming the file. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED since 1.28! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) name
Definition hooks.txt:1850
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt;div ...>$1&lt;/div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
A helper class for throttling authentication attempts.
const DB_REPLICA
Definition defines.php:25
const DB_MASTER
Definition defines.php:26
if(PHP_SAPI !='cli-server') if(!isset( $_SERVER['SCRIPT_FILENAME'])) $file
Definition router.php:42
$params