MediaWiki master
LocalRepo.php
Go to the documentation of this file.
1<?php
39
49class LocalRepo extends FileRepo {
51 protected $fileFactory = [ LocalFile::class, 'newFromTitle' ];
53 protected $fileFactoryKey = [ LocalFile::class, 'newFromKey' ];
55 protected $fileFromRowFactory = [ LocalFile::class, 'newFromRow' ];
57 protected $oldFileFromRowFactory = [ OldLocalFile::class, 'newFromRow' ];
59 protected $oldFileFactory = [ OldLocalFile::class, 'newFromTitle' ];
61 protected $oldFileFactoryKey = [ OldLocalFile::class, 'newFromKey' ];
62
64 protected $dbDomain;
68
70 protected $blobStore;
71
73 protected $useJsonMetadata = true;
74
76 protected $useSplitMetadata = false;
77
79 protected $splitMetadataThreshold = 1000;
80
82 protected $updateCompatibleMetadata = false;
83
85 protected $reserializeMetadata = false;
86
87 public function __construct( array $info = null ) {
88 parent::__construct( $info );
89
90 $this->dbDomain = WikiMap::getCurrentWikiDbDomain();
91 $this->hasAccessibleSharedCache = true;
92
93 $this->hasSha1Storage = ( $info['storageLayout'] ?? null ) === 'sha1';
94 $this->dbProvider = MediaWikiServices::getInstance()->getConnectionProvider();
95
96 if ( $this->hasSha1Storage() ) {
97 $this->backend = new FileBackendDBRepoWrapper( [
98 'backend' => $this->backend,
99 'repoName' => $this->name,
100 'dbHandleFactory' => $this->getDBFactory()
101 ] );
102 }
103
104 foreach (
105 [
106 'useJsonMetadata',
107 'useSplitMetadata',
108 'splitMetadataThreshold',
109 'updateCompatibleMetadata',
110 'reserializeMetadata',
111 ] as $option
112 ) {
113 if ( isset( $info[$option] ) ) {
114 $this->$option = $info[$option];
115 }
116 }
117 }
118
123 public function newFileFromRow( $row ) {
124 if ( isset( $row->img_name ) ) {
125 return call_user_func( $this->fileFromRowFactory, $row, $this );
126 } elseif ( isset( $row->oi_name ) ) {
127 return call_user_func( $this->oldFileFromRowFactory, $row, $this );
128 } else {
129 throw new InvalidArgumentException( __METHOD__ . ': invalid row' );
130 }
131 }
132
138 public function newFromArchiveName( $title, $archiveName ) {
139 $title = File::normalizeTitle( $title );
140 return OldLocalFile::newFromArchiveName( $title, $this, $archiveName );
141 }
142
153 public function cleanupDeletedBatch( array $storageKeys ) {
154 if ( $this->hasSha1Storage() ) {
155 wfDebug( __METHOD__ . ": skipped because storage uses sha1 paths" );
156 return Status::newGood();
157 }
158
159 $backend = $this->backend; // convenience
160 $root = $this->getZonePath( 'deleted' );
161 $dbw = $this->getPrimaryDB();
162 $status = $this->newGood();
163 $storageKeys = array_unique( $storageKeys );
164 foreach ( $storageKeys as $key ) {
165 $hashPath = $this->getDeletedHashPath( $key );
166 $path = "$root/$hashPath$key";
167 $dbw->startAtomic( __METHOD__ );
168 // Check for usage in deleted/hidden files and preemptively
169 // lock the key to avoid any future use until we are finished.
170 $deleted = $this->deletedFileHasKey( $key, 'lock' );
171 $hidden = $this->hiddenFileHasKey( $key, 'lock' );
172 if ( !$deleted && !$hidden ) { // not in use now
173 wfDebug( __METHOD__ . ": deleting $key" );
174 $op = [ 'op' => 'delete', 'src' => $path ];
175 if ( !$backend->doOperation( $op )->isOK() ) {
176 $status->error( 'undelete-cleanup-error', $path );
177 $status->failCount++;
178 }
179 } else {
180 wfDebug( __METHOD__ . ": $key still in use" );
181 $status->successCount++;
182 }
183 $dbw->endAtomic( __METHOD__ );
184 }
185
186 return $status;
187 }
188
196 protected function deletedFileHasKey( $key, $lock = null ) {
197 $queryBuilder = $this->getPrimaryDB()->newSelectQueryBuilder()
198 ->select( '1' )
199 ->from( 'filearchive' )
200 ->where( [ 'fa_storage_group' => 'deleted', 'fa_storage_key' => $key ] );
201 if ( $lock === 'lock' ) {
202 $queryBuilder->forUpdate();
203 }
204 return (bool)$queryBuilder->caller( __METHOD__ )->fetchField();
205 }
206
214 protected function hiddenFileHasKey( $key, $lock = null ) {
215 $sha1 = self::getHashFromKey( $key );
216 $ext = File::normalizeExtension( substr( $key, strcspn( $key, '.' ) + 1 ) );
217
218 $dbw = $this->getPrimaryDB();
219 $queryBuilder = $dbw->newSelectQueryBuilder()
220 ->select( '1' )
221 ->from( 'oldimage' )
222 ->where( [
223 'oi_sha1' => $sha1,
224 $dbw->expr( 'oi_archive_name', IExpression::LIKE, new LikeValue( $dbw->anyString(), ".$ext" ) ),
225 $dbw->bitAnd( 'oi_deleted', File::DELETED_FILE ) => File::DELETED_FILE,
226 ] );
227 if ( $lock === 'lock' ) {
228 $queryBuilder->forUpdate();
229 }
230
231 return (bool)$queryBuilder->caller( __METHOD__ )->fetchField();
232 }
233
240 public static function getHashFromKey( $key ) {
241 $sha1 = strtok( $key, '.' );
242 if ( is_string( $sha1 ) && strlen( $sha1 ) === 32 && $sha1[0] === '0' ) {
243 $sha1 = substr( $sha1, 1 );
244 }
245 return $sha1;
246 }
247
254 public function checkRedirect( $title ) {
255 $title = File::normalizeTitle( $title, 'exception' );
256
257 $memcKey = $this->getSharedCacheKey( 'file-redirect', md5( $title->getDBkey() ) );
258 if ( $memcKey === false ) {
259 $memcKey = $this->getLocalCacheKey( 'file-redirect', md5( $title->getDBkey() ) );
260 $expiry = 300; // no invalidation, 5 minutes
261 } else {
262 $expiry = 86400; // has invalidation, 1 day
263 }
264
265 $method = __METHOD__;
266 $redirDbKey = $this->wanCache->getWithSetCallback(
267 $memcKey,
268 $expiry,
269 function ( $oldValue, &$ttl, array &$setOpts ) use ( $method, $title ) {
270 $dbr = $this->getReplicaDB(); // possibly remote DB
271
272 $setOpts += Database::getCacheSetOptions( $dbr );
273
274 $row = $dbr->newSelectQueryBuilder()
275 ->select( [ 'rd_namespace', 'rd_title' ] )
276 ->from( 'page' )
277 ->join( 'redirect', null, 'rd_from = page_id' )
278 ->where( [ 'page_namespace' => $title->getNamespace(), 'page_title' => $title->getDBkey() ] )
279 ->caller( $method )->fetchRow();
280
281 return ( $row && $row->rd_namespace == NS_FILE )
282 ? Title::makeTitle( $row->rd_namespace, $row->rd_title )->getDBkey()
283 : ''; // negative cache
284 },
285 [ 'pcTTL' => WANObjectCache::TTL_PROC_LONG ]
286 );
287
288 // @note: also checks " " for b/c
289 if ( $redirDbKey !== ' ' && strval( $redirDbKey ) !== '' ) {
290 // Page is a redirect to another file
291 return Title::newFromText( $redirDbKey, NS_FILE );
292 }
293
294 return false; // no redirect
295 }
296
297 public function findFiles( array $items, $flags = 0 ) {
298 $finalFiles = []; // map of (DB key => corresponding File) for matches
299
300 $searchSet = []; // map of (normalized DB key => search params)
301 foreach ( $items as $item ) {
302 if ( is_array( $item ) ) {
303 $title = File::normalizeTitle( $item['title'] );
304 if ( $title ) {
305 $searchSet[$title->getDBkey()] = $item;
306 }
307 } else {
308 $title = File::normalizeTitle( $item );
309 if ( $title ) {
310 $searchSet[$title->getDBkey()] = [];
311 }
312 }
313 }
314
315 $fileMatchesSearch = static function ( File $file, array $search ) {
316 // Note: file name comparison done elsewhere (to handle redirects)
317
318 // Fallback to RequestContext::getMain should be replaced with a better
319 // way of setting the user that should be used; currently it needs to be
320 // set for each file individually. See T263033#6477586
321 $contextPerformer = RequestContext::getMain()->getAuthority();
322 $performer = ( !empty( $search['private'] ) && $search['private'] instanceof Authority )
323 ? $search['private']
324 : $contextPerformer;
325
326 return (
327 $file->exists() &&
328 (
329 ( empty( $search['time'] ) && !$file->isOld() ) ||
330 ( !empty( $search['time'] ) && $search['time'] === $file->getTimestamp() )
331 ) &&
332 ( !empty( $search['private'] ) || !$file->isDeleted( File::DELETED_FILE ) ) &&
333 $file->userCan( File::DELETED_FILE, $performer )
334 );
335 };
336
337 $applyMatchingFiles = function ( IResultWrapper $res, &$searchSet, &$finalFiles )
338 use ( $fileMatchesSearch, $flags )
339 {
340 $contLang = MediaWikiServices::getInstance()->getContentLanguage();
341 $info = $this->getInfo();
342 foreach ( $res as $row ) {
343 $file = $this->newFileFromRow( $row );
344 // There must have been a search for this DB key, but this has to handle the
345 // cases were title capitalization is different on the client and repo wikis.
346 $dbKeysLook = [ strtr( $file->getName(), ' ', '_' ) ];
347 if ( !empty( $info['initialCapital'] ) ) {
348 // Search keys for "hi.png" and "Hi.png" should use the "Hi.png file"
349 $dbKeysLook[] = $contLang->lcfirst( $file->getName() );
350 }
351 foreach ( $dbKeysLook as $dbKey ) {
352 if ( isset( $searchSet[$dbKey] )
353 && $fileMatchesSearch( $file, $searchSet[$dbKey] )
354 ) {
355 $finalFiles[$dbKey] = ( $flags & FileRepo::NAME_AND_TIME_ONLY )
356 ? [ 'title' => $dbKey, 'timestamp' => $file->getTimestamp() ]
357 : $file;
358 unset( $searchSet[$dbKey] );
359 }
360 }
361 }
362 };
363
364 $dbr = $this->getReplicaDB();
365
366 // Query image table
367 $imgNames = [];
368 foreach ( $searchSet as $dbKey => $_ ) {
369 $imgNames[] = $this->getNameFromTitle( File::normalizeTitle( $dbKey ) );
370 }
371
372 if ( count( $imgNames ) ) {
373 $queryBuilder = FileSelectQueryBuilder::newForFile( $dbr );
374 $res = $queryBuilder->where( [ 'img_name' => $imgNames ] )->caller( __METHOD__ )->fetchResultSet();
375 $applyMatchingFiles( $res, $searchSet, $finalFiles );
376 }
377
378 // Query old image table
379 $oiConds = []; // WHERE clause array for each file
380 foreach ( $searchSet as $dbKey => $search ) {
381 if ( isset( $search['time'] ) ) {
382 $oiConds[] = $dbr
383 ->expr( 'oi_name', '=', $this->getNameFromTitle( File::normalizeTitle( $dbKey ) ) )
384 ->and( 'oi_timestamp', '=', $dbr->timestamp( $search['time'] ) );
385 }
386 }
387
388 if ( count( $oiConds ) ) {
389 $queryBuilder = FileSelectQueryBuilder::newForOldFile( $dbr );
390
391 $res = $queryBuilder->where( new OrExpressionGroup( ...$oiConds ) )
392 ->caller( __METHOD__ )->fetchResultSet();
393 $applyMatchingFiles( $res, $searchSet, $finalFiles );
394 }
395
396 // Check for redirects...
397 foreach ( $searchSet as $dbKey => $search ) {
398 if ( !empty( $search['ignoreRedirect'] ) ) {
399 continue;
400 }
401
402 $title = File::normalizeTitle( $dbKey );
403 $redir = $this->checkRedirect( $title ); // hopefully hits memcached
404
405 if ( $redir && $redir->getNamespace() === NS_FILE ) {
406 $file = $this->newFile( $redir );
407 if ( $file && $fileMatchesSearch( $file, $search ) ) {
408 $file->redirectedFrom( $title->getDBkey() );
409 if ( $flags & FileRepo::NAME_AND_TIME_ONLY ) {
410 $finalFiles[$dbKey] = [
411 'title' => $file->getTitle()->getDBkey(),
412 'timestamp' => $file->getTimestamp()
413 ];
414 } else {
415 $finalFiles[$dbKey] = $file;
416 }
417 }
418 }
419 }
420
421 return $finalFiles;
422 }
423
431 public function findBySha1( $hash ) {
432 $queryBuilder = FileSelectQueryBuilder::newForFile( $this->getReplicaDB() );
433 $res = $queryBuilder->where( [ 'img_sha1' => $hash ] )
434 ->orderBy( 'img_name' )
435 ->caller( __METHOD__ )->fetchResultSet();
436
437 $result = [];
438 foreach ( $res as $row ) {
439 $result[] = $this->newFileFromRow( $row );
440 }
441 $res->free();
442
443 return $result;
444 }
445
455 public function findBySha1s( array $hashes ) {
456 if ( $hashes === [] ) {
457 return []; // empty parameter
458 }
459
460 $dbr = $this->getReplicaDB();
461 $queryBuilder = FileSelectQueryBuilder::newForFile( $dbr );
462
463 $queryBuilder->where( [ 'img_sha1' => $hashes ] )
464 ->orderBy( 'img_name' );
465 $res = $queryBuilder->caller( __METHOD__ )->fetchResultSet();
466
467 $result = [];
468 foreach ( $res as $row ) {
469 $file = $this->newFileFromRow( $row );
470 $result[$file->getSha1()][] = $file;
471 }
472 $res->free();
473
474 return $result;
475 }
476
484 public function findFilesByPrefix( $prefix, $limit ) {
485 $dbr = $this->getReplicaDB();
486 $queryBuilder = FileSelectQueryBuilder::newForFile( $dbr );
487
488 $queryBuilder
489 ->where( $dbr->expr( 'img_name', IExpression::LIKE, new LikeValue( $prefix, $dbr->anyString() ) ) )
490 ->orderBy( 'img_name' )
491 ->limit( intval( $limit ) );
492 $res = $queryBuilder->caller( __METHOD__ )->fetchResultSet();
493
494 // Build file objects
495 $files = [];
496 foreach ( $res as $row ) {
497 $files[] = $this->newFileFromRow( $row );
498 }
499
500 return $files;
501 }
502
507 public function getReplicaDB() {
508 return $this->dbProvider->getReplicaDatabase();
509 }
510
516 public function getPrimaryDB() {
517 return $this->dbProvider->getPrimaryDatabase();
518 }
519
524 protected function getDBFactory() {
525 // TODO: DB_REPLICA/DB_PRIMARY shouldn't be passed around
526 return static function ( $index ) {
527 if ( $index === DB_PRIMARY ) {
528 return MediaWikiServices::getInstance()->getConnectionProvider()->getPrimaryDatabase();
529 } else {
530 return MediaWikiServices::getInstance()->getConnectionProvider()->getReplicaDatabase();
531 }
532 };
533 }
534
541 protected function hasAcessibleSharedCache() {
542 return $this->hasAccessibleSharedCache;
543 }
544
545 public function getSharedCacheKey( $kClassSuffix, ...$components ) {
546 // T267668: do not include the repo name in the key
547 return $this->hasAcessibleSharedCache()
548 ? $this->wanCache->makeGlobalKey(
549 'filerepo-' . $kClassSuffix,
550 $this->dbDomain,
551 ...$components
552 )
553 : false;
554 }
555
562 public function invalidateImageRedirect( $title ) {
563 $key = $this->getSharedCacheKey( 'file-redirect', md5( $title->getDBkey() ) );
564 if ( $key ) {
565 $this->getPrimaryDB()->onTransactionPreCommitOrIdle(
566 function () use ( $key ) {
567 $this->wanCache->delete( $key );
568 },
569 __METHOD__
570 );
571 }
572 }
573
574 public function store( $srcPath, $dstZone, $dstRel, $flags = 0 ) {
575 return $this->skipWriteOperationIfSha1( __FUNCTION__, func_get_args() );
576 }
577
578 public function storeBatch( array $triplets, $flags = 0 ) {
579 return $this->skipWriteOperationIfSha1( __FUNCTION__, func_get_args() );
580 }
581
582 public function cleanupBatch( array $files, $flags = 0 ) {
583 return $this->skipWriteOperationIfSha1( __FUNCTION__, func_get_args() );
584 }
585
586 public function publish(
587 $src,
588 $dstRel,
589 $archiveRel,
590 $flags = 0,
591 array $options = []
592 ) {
593 return $this->skipWriteOperationIfSha1( __FUNCTION__, func_get_args() );
594 }
595
596 public function publishBatch( array $ntuples, $flags = 0 ) {
597 return $this->skipWriteOperationIfSha1( __FUNCTION__, func_get_args() );
598 }
599
600 public function delete( $srcRel, $archiveRel ) {
601 return $this->skipWriteOperationIfSha1( __FUNCTION__, func_get_args() );
602 }
603
604 public function deleteBatch( array $sourceDestPairs ) {
605 return $this->skipWriteOperationIfSha1( __FUNCTION__, func_get_args() );
606 }
607
615 protected function skipWriteOperationIfSha1( $function, array $args ) {
616 $this->assertWritableRepo(); // fail out if read-only
617
618 if ( $this->hasSha1Storage() ) {
619 wfDebug( __METHOD__ . ": skipped because storage uses sha1 paths" );
620 return Status::newGood();
621 } else {
622 return parent::$function( ...$args );
623 }
624 }
625
635 public function isJsonMetadataEnabled() {
636 return $this->useJsonMetadata;
637 }
638
645 public function isSplitMetadataEnabled() {
646 return $this->isJsonMetadataEnabled() && $this->useSplitMetadata;
647 }
648
655 public function getSplitMetadataThreshold() {
656 return $this->splitMetadataThreshold;
657 }
658
659 public function isMetadataUpdateEnabled() {
660 return $this->updateCompatibleMetadata;
661 }
662
664 return $this->reserializeMetadata;
665 }
666
673 public function getBlobStore(): ?BlobStore {
674 if ( !$this->blobStore ) {
675 $this->blobStore = MediaWikiServices::getInstance()->getBlobStoreFactory()
676 ->newBlobStore( $this->dbDomain );
677 }
678 return $this->blobStore;
679 }
680}
const NS_FILE
Definition Defines.php:70
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
if(!defined('MW_SETUP_CALLBACK'))
Definition WebStart.php:81
Proxy backend that manages file layout rewriting for FileRepo.
doOperation(array $op, array $opts=[])
Same as doOperations() except it takes a single operation.
Base class for file repositories.
Definition FileRepo.php:51
assertWritableRepo()
Throw an exception if this repo is read-only by design.
newGood( $value=null)
Create a new good result.
const NAME_AND_TIME_ONLY
Definition FileRepo.php:57
getLocalCacheKey( $kClassSuffix,... $components)
Get a site-local, repository-qualified, WAN cache key.
hasSha1Storage()
Returns whether or not storage is SHA-1 based.
FileBackend $backend
Definition FileRepo.php:74
getZonePath( $zone)
Get the storage path corresponding to one of the zones.
Definition FileRepo.php:397
getDeletedHashPath( $key)
Get a relative path for a deletion archive key, e.g.
getNameFromTitle( $title)
Get the name of a file from its title.
Definition FileRepo.php:715
newFile( $title, $time=false)
Create a new File object from the local repository.
Definition FileRepo.php:421
getInfo()
Return information about the repository.
Implements some public methods and some protected utility functions which are required by multiple ch...
Definition File.php:73
getTimestamp()
Get the 14-character timestamp of the file upload.
Definition File.php:2307
getName()
Return the name of this file.
Definition File.php:341
exists()
Returns true if file exists in the repository.
Definition File.php:1015
isOld()
Returns true if the image is an old version STUB.
Definition File.php:2061
getTitle()
Return the associated title object.
Definition File.php:371
redirectedFrom(string $from)
Definition File.php:2442
isDeleted( $field)
Is this file a "deleted" file in a private archive? STUB.
Definition File.php:2073
userCan( $field, Authority $performer)
Determine if the current user is allowed to view a particular field of this file, if it's marked as d...
Definition File.php:2362
Local repository that stores files in the local filesystem and registers them in the wiki's own datab...
Definition LocalRepo.php:49
skipWriteOperationIfSha1( $function, array $args)
Skips the write operation if storage is sha1-based, executes it normally otherwise.
int null $splitMetadataThreshold
Definition LocalRepo.php:79
getDBFactory()
Get a callback to get a DB handle given an index (DB_REPLICA/DB_PRIMARY)
getSharedCacheKey( $kClassSuffix,... $components)
Get a global, repository-qualified, WAN cache key.
isMetadataUpdateEnabled()
newFileFromRow( $row)
isSplitMetadataEnabled()
Returns true if files should split up large metadata, storing parts of it in the BlobStore.
deletedFileHasKey( $key, $lock=null)
Check if a deleted (filearchive) file has this sha1 key.
callable $oldFileFactoryKey
Definition LocalRepo.php:61
callable $oldFileFactory
Definition LocalRepo.php:59
isJsonMetadataEnabled()
Returns true if files should store metadata in JSON format.
cleanupBatch(array $files, $flags=0)
Deletes a batch of files.
publishBatch(array $ntuples, $flags=0)
Publish a batch of files.
findFiles(array $items, $flags=0)
Find many files at once.
findFilesByPrefix( $prefix, $limit)
Return an array of files where the name starts with $prefix.
findBySha1s(array $hashes)
Get an array of arrays or iterators of file objects for files that have the given SHA-1 content hashe...
getBlobStore()
Get a BlobStore for storing and retrieving large metadata, or null if that can't be done.
IConnectionProvider $dbProvider
Definition LocalRepo.php:65
callable $oldFileFromRowFactory
Definition LocalRepo.php:57
string $dbDomain
DB domain of the repo wiki.
Definition LocalRepo.php:64
BlobStore $blobStore
Definition LocalRepo.php:70
bool $useJsonMetadata
Definition LocalRepo.php:73
invalidateImageRedirect( $title)
Invalidates image redirect cache related to that image.
cleanupDeletedBatch(array $storageKeys)
Delete files in the deleted directory if they are not referenced in the filearchive table.
bool $updateCompatibleMetadata
Definition LocalRepo.php:82
getPrimaryDB()
Get a connection to the primary DB.
checkRedirect( $title)
Checks if there is a redirect named as $title.
hasAcessibleSharedCache()
Check whether the repo has a shared cache, accessible from the current site context.
bool $hasAccessibleSharedCache
Whether shared cache keys are exposed/accessible.
Definition LocalRepo.php:67
callable $fileFactoryKey
Definition LocalRepo.php:53
getReplicaDB()
Get a connection to the replica DB.
store( $srcPath, $dstZone, $dstRel, $flags=0)
Store a file to a given destination.
publish( $src, $dstRel, $archiveRel, $flags=0, array $options=[])
Copy or move a file either from a storage path, virtual URL, or file system path, into this repositor...
storeBatch(array $triplets, $flags=0)
Store a batch of files.
getSplitMetadataThreshold()
Get the threshold above which metadata items should be split into separate storage,...
callable $fileFromRowFactory
Definition LocalRepo.php:55
__construct(array $info=null)
Definition LocalRepo.php:87
deleteBatch(array $sourceDestPairs)
Move a group of files to the deletion archive.
hiddenFileHasKey( $key, $lock=null)
Check if a hidden (revision delete) file has this sha1 key.
static getHashFromKey( $key)
Gets the SHA1 hash from a storage key.
newFromArchiveName( $title, $archiveName)
bool $reserializeMetadata
Definition LocalRepo.php:85
isMetadataReserializeEnabled()
callable $fileFactory
Definition LocalRepo.php:51
bool $useSplitMetadata
Definition LocalRepo.php:76
findBySha1( $hash)
Get an array or iterator of file objects for files that have a given SHA-1 content hash.
Group all the pieces relevant to the context of a request into one instance.
Service locator for MediaWiki core services.
Generic operation result class Has warning/error list, boolean status and arbitrary value.
Definition Status.php:54
Represents a title within MediaWiki.
Definition Title.php:78
Tools for dealing with other locally-hosted wikis.
Definition WikiMap.php:31
Content of like value.
Definition LikeValue.php:14
Representing a group of expressions chained via OR.
Represents the target of a wiki link.
Interface for objects (potentially) representing an editable wiki page.
This interface represents the authority associated with the current execution context,...
Definition Authority.php:37
Service for loading and storing data blobs.
Definition BlobStore.php:33
Provide primary and replica IDatabase connections.
Basic database interface for live and lazy-loaded relation database handles.
Definition IDatabase.php:36
A database connection without write operations.
Result wrapper for grabbing data queried from an IDatabase object.
const DB_PRIMARY
Definition defines.php:28