3 * Access to properties of a page.
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.
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.
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
22 use Wikimedia\ScopedCallback
;
25 * Gives access to properties of a page.
34 private static $instance;
37 * Overrides the default instance of this class
38 * This is intended for use while testing and will fail if MW_PHPUNIT_TEST is not defined.
40 * If this method is used it MUST also be called with null after a test to ensure a new
41 * default instance is created next time getInstance is called.
45 * @param PageProps|null $store
47 * @return ScopedCallback to reset the overridden value
50 public static function overrideInstance( PageProps
$store = null ) {
51 if ( !defined( 'MW_PHPUNIT_TEST' ) ) {
52 throw new MWException(
53 'Cannot override ' . __CLASS__
. 'default instance in operation.'
56 $previousValue = self
::$instance;
57 self
::$instance = $store;
58 return new ScopedCallback( function() use ( $previousValue ) {
59 self
::$instance = $previousValue;
66 public static function getInstance() {
67 if ( self
::$instance === null ) {
68 self
::$instance = new self();
70 return self
::$instance;
73 /** Cache parameters */
74 const CACHE_TTL
= 10; // integer; TTL in seconds
75 const CACHE_SIZE
= 100; // integer; max cached pages
78 private $cache = null;
81 * Create a PageProps object
83 private function __construct() {
84 $this->cache
= new ProcessCacheLRU( self
::CACHE_SIZE
);
88 * Ensure that cache has at least this size
91 public function ensureCacheSize( $size ) {
92 if ( $this->cache
->getSize() < $size ) {
93 $this->cache
->resize( $size );
98 * Given one or more Titles and one or more names of properties,
99 * returns an associative array mapping page ID to property value.
100 * Pages in the provided set of Titles that do not have a value for
101 * the given properties will not appear in the returned array. If a
102 * single Title is provided, it does not need to be passed in an array,
103 * but an array will always be returned. If a single property name is
104 * provided, it does not need to be passed in an array. In that case,
105 * an associative array mapping page ID to property value will be
106 * returned; otherwise, an associative array mapping page ID to
107 * an associative array mapping property name to property value will be
108 * returned. An empty array will be returned if no matching properties
111 * @param Title[]|Title $titles
112 * @param string[]|string $propertyNames
113 * @return array associative array mapping page ID to property value
115 public function getProperties( $titles, $propertyNames ) {
116 if ( is_array( $propertyNames ) ) {
119 $propertyNames = [ $propertyNames ];
124 $goodIDs = $this->getGoodIDs( $titles );
126 foreach ( $goodIDs as $pageID ) {
127 foreach ( $propertyNames as $propertyName ) {
128 $propertyValue = $this->getCachedProperty( $pageID, $propertyName );
129 if ( $propertyValue === false ) {
130 $queryIDs[] = $pageID;
134 $values[$pageID][$propertyName] = $propertyValue;
136 $values[$pageID] = $propertyValue;
143 $dbr = wfGetDB( DB_REPLICA
);
144 $result = $dbr->select(
152 'pp_page' => $queryIDs,
153 'pp_propname' => $propertyNames
158 foreach ( $result as $row ) {
159 $pageID = $row->pp_page
;
160 $propertyName = $row->pp_propname
;
161 $propertyValue = $row->pp_value
;
162 $this->cacheProperty( $pageID, $propertyName, $propertyValue );
164 $values[$pageID][$propertyName] = $propertyValue;
166 $values[$pageID] = $propertyValue;
175 * Get all page property values.
176 * Given one or more Titles, returns an associative array mapping page
177 * ID to an associative array mapping property names to property
178 * values. Pages in the provided set of Titles that do not have any
179 * properties will not appear in the returned array. If a single Title
180 * is provided, it does not need to be passed in an array, but an array
181 * will always be returned. An empty array will be returned if no
182 * matching properties were found.
184 * @param Title[]|Title $titles
185 * @return array associative array mapping page ID to property value array
187 public function getAllProperties( $titles ) {
189 $goodIDs = $this->getGoodIDs( $titles );
191 foreach ( $goodIDs as $pageID ) {
192 $pageProperties = $this->getCachedProperties( $pageID );
193 if ( $pageProperties === false ) {
194 $queryIDs[] = $pageID;
196 $values[$pageID] = $pageProperties;
200 if ( $queryIDs != [] ) {
201 $dbr = wfGetDB( DB_REPLICA
);
202 $result = $dbr->select(
210 'pp_page' => $queryIDs,
216 $pageProperties = [];
217 foreach ( $result as $row ) {
218 $pageID = $row->pp_page
;
219 if ( $currentPageID != $pageID ) {
220 if ( $pageProperties != [] ) {
221 $this->cacheProperties( $currentPageID, $pageProperties );
222 $values[$currentPageID] = $pageProperties;
224 $currentPageID = $pageID;
225 $pageProperties = [];
227 $pageProperties[$row->pp_propname
] = $row->pp_value
;
229 if ( $pageProperties != [] ) {
230 $this->cacheProperties( $pageID, $pageProperties );
231 $values[$pageID] = $pageProperties;
239 * @param Title[]|Title $titles
240 * @return array array of good page IDs
242 private function getGoodIDs( $titles ) {
244 if ( is_array( $titles ) ) {
245 foreach ( $titles as $title ) {
246 $pageID = $title->getArticleID();
252 $pageID = $titles->getArticleID();
261 * Get a property from the cache.
263 * @param int $pageID page ID of page being queried
264 * @param string $propertyName name of property being queried
265 * @return string|bool property value array or false if not found
267 private function getCachedProperty( $pageID, $propertyName ) {
268 if ( $this->cache
->has( $pageID, $propertyName, self
::CACHE_TTL
) ) {
269 return $this->cache
->get( $pageID, $propertyName );
271 if ( $this->cache
->has( 0, $pageID, self
::CACHE_TTL
) ) {
272 $pageProperties = $this->cache
->get( 0, $pageID );
273 if ( isset( $pageProperties[$propertyName] ) ) {
274 return $pageProperties[$propertyName];
281 * Get properties from the cache.
283 * @param int $pageID page ID of page being queried
284 * @return string|bool property value array or false if not found
286 private function getCachedProperties( $pageID ) {
287 if ( $this->cache
->has( 0, $pageID, self
::CACHE_TTL
) ) {
288 return $this->cache
->get( 0, $pageID );
294 * Save a property to the cache.
296 * @param int $pageID page ID of page being cached
297 * @param string $propertyName name of property being cached
298 * @param mixed $propertyValue value of property
300 private function cacheProperty( $pageID, $propertyName, $propertyValue ) {
301 $this->cache
->set( $pageID, $propertyName, $propertyValue );
305 * Save properties to the cache.
307 * @param int $pageID page ID of page being cached
308 * @param string[] $pageProperties associative array of page properties to be cached
310 private function cacheProperties( $pageID, $pageProperties ) {
311 $this->cache
->clear( $pageID );
312 $this->cache
->set( 0, $pageID, $pageProperties );