MediaWiki  1.33.0
GadgetDefinitionNamespaceRepo.php
Go to the documentation of this file.
1 <?php
2 
6 
17  const CACHE_TTL = 86400;
18 
22  private $wanCache;
23 
24  public function __construct() {
25  $this->wanCache = MediaWikiServices::getInstance()->getMainWANObjectCache();
26  }
27 
33  public function getGadgetIds() {
34  $key = $this->getGadgetIdsKey();
35 
36  $fname = __METHOD__;
37  return $this->wanCache->getWithSetCallback(
38  $key,
39  self::CACHE_TTL,
40  function ( $oldValue, &$ttl, array &$setOpts ) use ( $fname ) {
41  $dbr = wfGetDB( DB_REPLICA );
42  $setOpts += Database::getCacheSetOptions( $dbr );
43 
44  return $dbr->selectFieldValues(
45  'page',
46  'page_title',
47  [ 'page_namespace' => NS_GADGET_DEFINITION ],
48  $fname
49  );
50  },
51  [
52  'checkKeys' => [ $key ],
54  'lockTSE' => 30
55  ]
56  );
57  }
58 
62  public function handlePageUpdate( LinkTarget $target ) {
63  if ( $target->inNamespace( NS_GADGET_DEFINITION ) ) {
64  $this->purgeGadgetEntry( $target->getText() );
65  }
66  }
67 
71  public function handlePageCreation( LinkTarget $target ) {
72  if ( $target->inNamespace( NS_GADGET_DEFINITION ) ) {
73  $this->purgeGadgetIdsList();
74  }
75  }
76 
80  public function handlePageDeletion( LinkTarget $target ) {
81  if ( $target->inNamespace( NS_GADGET_DEFINITION ) ) {
82  $this->purgeGadgetIdsList();
83  $this->purgeGadgetEntry( $target->getText() );
84  }
85  }
86 
90  public function purgeGadgetIdsList() {
91  $this->wanCache->touchCheckKey( $this->getGadgetIdsKey() );
92  }
93 
99  public function getGadget( $id ) {
100  $key = $this->getGadgetCacheKey( $id );
101  $gadget = $this->wanCache->getWithSetCallback(
102  $key,
103  self::CACHE_TTL,
104  function ( $old, &$ttl, array &$setOpts ) use ( $id ) {
105  $setOpts += Database::getCacheSetOptions( wfGetDB( DB_REPLICA ) );
106  $title = Title::makeTitleSafe( NS_GADGET_DEFINITION, $id );
107  if ( !$title ) {
109  return null;
110  }
111 
113  if ( !$rev ) {
115  return null;
116  }
117 
118  $content = $rev->getContent();
119  if ( !$content instanceof GadgetDefinitionContent ) {
120  // Uhm...
122  return null;
123  }
124 
126  },
127  [
128  'checkKeys' => [ $key ],
130  'lockTSE' => 30
131  ]
132  );
133 
134  if ( $gadget === null ) {
135  throw new InvalidArgumentException( "No gadget registered for '$id'" );
136  }
137 
138  return $gadget;
139  }
140 
146  public function purgeGadgetEntry( $id ) {
147  $this->wanCache->touchCheckKey( $this->getGadgetCacheKey( $id ) );
148  }
149 
153  private function getGadgetIdsKey() {
154  return $this->wanCache->makeKey( 'gadgets', 'namespace', 'ids' );
155  }
156 
161  private function getGadgetCacheKey( $id ) {
162  return $this->wanCache->makeKey(
163  'gadgets', 'object', md5( $id ), Gadget::GADGET_CLASS_VERSION );
164  }
165 }
Wikimedia\Rdbms\Database
Relational database abstraction object.
Definition: Database.php:48
MediaWiki\Linker\LinkTarget\getText
getText()
Returns the link in text form, without namespace prefix or fragment.
WANObjectCache\TTL_UNCACHEABLE
const TTL_UNCACHEABLE
Idiom for getWithSetCallback() callbacks to avoid calling set()
Definition: WANObjectCache.php:177
GadgetDefinitionNamespaceRepo\getGadgetCacheKey
getGadgetCacheKey( $id)
Definition: GadgetDefinitionNamespaceRepo.php:161
GadgetDefinitionNamespaceRepo\CACHE_TTL
const CACHE_TTL
How long in seconds the list of gadget ids and individual gadgets should be cached for (1 day)
Definition: GadgetDefinitionNamespaceRepo.php:17
GadgetDefinitionNamespaceRepo\handlePageDeletion
handlePageDeletion(LinkTarget $target)
@inheritDoc
Definition: GadgetDefinitionNamespaceRepo.php:80
Gadget\newFromDefinitionContent
static newFromDefinitionContent( $id, GadgetDefinitionContent $content)
Create a object based on the metadata in a GadgetDefinitionContent object.
Definition: Gadget.php:74
MediaWiki\Linker\LinkTarget\inNamespace
inNamespace( $ns)
Convenience function to test if it is in the namespace.
php
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
GadgetDefinitionNamespaceRepo\__construct
__construct()
Definition: GadgetDefinitionNamespaceRepo.php:24
$dbr
$dbr
Definition: testCompression.php:50
Revision\newFromTitle
static newFromTitle(LinkTarget $linkTarget, $id=0, $flags=0)
Load either the current, or a specified, revision that's attached to a given link target.
Definition: Revision.php:137
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:925
GadgetDefinitionNamespaceRepo\purgeGadgetIdsList
purgeGadgetIdsList()
Purge the list of gadget ids when a page is deleted or if a new page is created.
Definition: GadgetDefinitionNamespaceRepo.php:90
wfGetDB
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:2636
GadgetDefinitionNamespaceRepo\$wanCache
WANObjectCache $wanCache
Definition: GadgetDefinitionNamespaceRepo.php:22
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
DB_REPLICA
const DB_REPLICA
Definition: defines.php:25
array
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))
GadgetRepo
Definition: GadgetRepo.php:5
GadgetDefinitionNamespaceRepo\getGadgetIds
getGadgetIds()
Get a list of gadget ids from cache/database.
Definition: GadgetDefinitionNamespaceRepo.php:33
$fname
if(defined( 'MW_SETUP_CALLBACK')) $fname
Customization point after all loading (constants, functions, classes, DefaultSettings,...
Definition: Setup.php:123
Title\makeTitleSafe
static makeTitleSafe( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:604
GadgetDefinitionContent
Definition: GadgetDefinitionContent.php:23
IExpiringStore\TTL_PROC_SHORT
const TTL_PROC_SHORT
Definition: IExpiringStore.php:42
GadgetDefinitionNamespaceRepo
GadgetRepo implementation where each gadget has a page in the Gadget definition namespace,...
Definition: GadgetDefinitionNamespaceRepo.php:12
WANObjectCache
Multi-datacenter aware caching interface.
Definition: WANObjectCache.php:116
GadgetDefinitionNamespaceRepo\handlePageUpdate
handlePageUpdate(LinkTarget $target)
@inheritDoc
Definition: GadgetDefinitionNamespaceRepo.php:62
$rev
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
Definition: hooks.txt:1769
GadgetDefinitionNamespaceRepo\getGadget
getGadget( $id)
Definition: GadgetDefinitionNamespaceRepo.php:99
$content
$content
Definition: pageupdater.txt:72
GadgetDefinitionNamespaceRepo\getGadgetIdsKey
getGadgetIdsKey()
Definition: GadgetDefinitionNamespaceRepo.php:153
MediaWikiServices
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 MediaWikiServices
Definition: injection.txt:23
MediaWiki\Linker\LinkTarget
Definition: LinkTarget.php:26
GadgetDefinitionNamespaceRepo\purgeGadgetEntry
purgeGadgetEntry( $id)
Update the cache for a specific Gadget whenever it is updated.
Definition: GadgetDefinitionNamespaceRepo.php:146
Gadget\GADGET_CLASS_VERSION
const GADGET_CLASS_VERSION
Increment this when changing class structure.
Definition: Gadget.php:21
GadgetDefinitionNamespaceRepo\handlePageCreation
handlePageCreation(LinkTarget $target)
@inheritDoc
Definition: GadgetDefinitionNamespaceRepo.php:71