3 * Abstraction for resource loader modules which pull from wiki pages.
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
21 * @author Trevor Parscal
22 * @author Roan Kattouw
26 * Abstraction for resource loader modules which pull from wiki pages
28 * This can only be used for wiki pages in the MediaWiki and User namespaces,
29 * because of its dependence on the functionality of
30 * Title::isCssJsSubpage.
32 abstract class ResourceLoaderWikiModule
extends ResourceLoaderModule
{
34 /* Protected Members */
36 # Origin is user-supplied code
37 protected $origin = self
::ORIGIN_USER_SITEWIDE
;
39 // In-object cache for title mtimes
40 protected $titleMtimes = array();
42 /* Abstract Protected Methods */
45 * @param $context ResourceLoaderContext
47 abstract protected function getPages( ResourceLoaderContext
$context );
49 /* Protected Methods */
52 * Get the Database object used in getTitleMTimes(). Defaults to the local slave DB
53 * but subclasses may want to override this to return a remote DB object, or to return
54 * null if getTitleMTimes() shouldn't access the DB at all.
56 * NOTE: This ONLY works for getTitleMTimes() and getModifiedTime(), NOT FOR ANYTHING ELSE.
57 * In particular, it doesn't work for getting the content of JS and CSS pages. That functionality
58 * will use the local DB irrespective of the return value of this method.
60 * @return DatabaseBase|null
62 protected function getDB() {
63 return wfGetDB( DB_SLAVE
);
70 protected function getContent( $title ) {
71 if ( $title->getNamespace() === NS_MEDIAWIKI
) {
72 // The first "true" is to use the database, the second is to use the content langue
73 // and the last one is to specify the message key already contains the language in it ("/de", etc.)
74 $text = MessageCache
::singleton()->get( $title->getDBkey(), true, true, true );
75 return $text === false ?
'' : $text;
77 if ( !$title->isCssJsSubpage() && !$title->isCssOrJsPage() ) {
80 $revision = Revision
::newFromTitle( $title, false, Revision
::READ_NORMAL
);
84 return $revision->getRawText();
90 * @param $context ResourceLoaderContext
93 public function getScript( ResourceLoaderContext
$context ) {
95 foreach ( $this->getPages( $context ) as $titleText => $options ) {
96 if ( $options['type'] !== 'script' ) {
99 $title = Title
::newFromText( $titleText );
100 if ( !$title ||
$title->isRedirect() ) {
103 $script = $this->getContent( $title );
104 if ( strval( $script ) !== '' ) {
105 $script = $this->validateScriptFile( $titleText, $script );
106 if ( strpos( $titleText, '*/' ) === false ) {
107 $scripts .= "/* $titleText */\n";
109 $scripts .= $script . "\n";
116 * @param $context ResourceLoaderContext
119 public function getStyles( ResourceLoaderContext
$context ) {
120 global $wgScriptPath;
123 foreach ( $this->getPages( $context ) as $titleText => $options ) {
124 if ( $options['type'] !== 'style' ) {
127 $title = Title
::newFromText( $titleText );
128 if ( !$title ||
$title->isRedirect() ) {
131 $media = isset( $options['media'] ) ?
$options['media'] : 'all';
132 $style = $this->getContent( $title );
133 if ( strval( $style ) === '' ) {
136 if ( $this->getFlip( $context ) ) {
137 $style = CSSJanus
::transform( $style, true, false );
139 $style = CSSMin
::remap( $style, false, $wgScriptPath, true );
140 if ( !isset( $styles[$media] ) ) {
141 $styles[$media] = '';
143 if ( strpos( $titleText, '*/' ) === false ) {
144 $styles[$media] .= "/* $titleText */\n";
146 $styles[$media] .= $style . "\n";
152 * @param $context ResourceLoaderContext
155 public function getModifiedTime( ResourceLoaderContext
$context ) {
156 $modifiedTime = 1; // wfTimestamp() interprets 0 as "now"
157 $mtimes = $this->getTitleMtimes( $context );
158 if ( count( $mtimes ) ) {
159 $modifiedTime = max( $modifiedTime, max( $mtimes ) );
161 $modifiedTime = max( $modifiedTime, $this->getMsgBlobMtime( $context->getLanguage() ) );
162 return $modifiedTime;
166 * @param $context ResourceLoaderContext
169 public function isKnownEmpty( ResourceLoaderContext
$context ) {
170 return count( $this->getTitleMtimes( $context ) ) == 0;
174 * Get the modification times of all titles that would be loaded for
176 * @param $context ResourceLoaderContext: Context object
177 * @return array( prefixed DB key => UNIX timestamp ), nonexistent titles are dropped
179 protected function getTitleMtimes( ResourceLoaderContext
$context ) {
180 $dbr = $this->getDB();
182 // We're dealing with a subclass that doesn't have a DB
186 $hash = $context->getHash();
187 if ( isset( $this->titleMtimes
[$hash] ) ) {
188 return $this->titleMtimes
[$hash];
191 $this->titleMtimes
[$hash] = array();
192 $batch = new LinkBatch
;
193 foreach ( $this->getPages( $context ) as $titleText => $options ) {
194 $batch->addObj( Title
::newFromText( $titleText ) );
197 if ( !$batch->isEmpty() ) {
198 $res = $dbr->select( 'page',
199 array( 'page_namespace', 'page_title', 'page_touched' ),
200 $batch->constructSet( 'page', $dbr ),
203 foreach ( $res as $row ) {
204 $title = Title
::makeTitle( $row->page_namespace
, $row->page_title
);
205 $this->titleMtimes
[$hash][$title->getPrefixedDBkey()] =
206 wfTimestamp( TS_UNIX
, $row->page_touched
);
209 return $this->titleMtimes
[$hash];