Fix default implementation of ResourceLoaderModule::getStyles() to return an array...
[lhc/web/wiklou.git] / includes / resourceloader / ResourceLoaderModule.php
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @file
19 * @author Trevor Parscal
20 * @author Roan Kattouw
21 */
22
23 /**
24 * Abstraction for resource loader modules, with name registration and maxage functionality.
25 */
26 abstract class ResourceLoaderModule {
27
28 # Type of resource
29 const TYPE_SCRIPTS = 'scripts';
30 const TYPE_STYLES = 'styles';
31 const TYPE_MESSAGES = 'messages';
32 const TYPE_COMBINED = 'combined';
33
34 # sitewide core module like a skin file or jQuery component
35 const ORIGIN_CORE_SITEWIDE = 1;
36
37 # per-user module generated by the software
38 const ORIGIN_CORE_INDIVIDUAL = 2;
39
40 # sitewide module generated from user-editable files, like MediaWiki:Common.js, or
41 # modules accessible to multiple users, such as those generated by the Gadgets extension.
42 const ORIGIN_USER_SITEWIDE = 3;
43
44 # per-user module generated from user-editable files, like User:Me/vector.js
45 const ORIGIN_USER_INDIVIDUAL = 4;
46
47 # an access constant; make sure this is kept as the largest number in this group
48 const ORIGIN_ALL = 10;
49
50 # script and style modules form a hierarchy of trustworthiness, with core modules like
51 # skins and jQuery as most trustworthy, and user scripts as least trustworthy. We can
52 # limit the types of scripts and styles we allow to load on, say, sensitive special
53 # pages like Special:UserLogin and Special:Preferences
54 protected $origin = self::ORIGIN_CORE_SITEWIDE;
55
56 /* Protected Members */
57
58 protected $name = null;
59
60 // In-object cache for file dependencies
61 protected $fileDeps = array();
62 // In-object cache for message blob mtime
63 protected $msgBlobMtime = array();
64
65 /* Methods */
66
67 /**
68 * Get this module's name. This is set when the module is registered
69 * with ResourceLoader::register()
70 *
71 * @return Mixed: Name (string) or null if no name was set
72 */
73 public function getName() {
74 return $this->name;
75 }
76
77 /**
78 * Set this module's name. This is called by ResourceLodaer::register()
79 * when registering the module. Other code should not call this.
80 *
81 * @param $name String: Name
82 */
83 public function setName( $name ) {
84 $this->name = $name;
85 }
86
87 /**
88 * Get this module's origin. This is set when the module is registered
89 * with ResourceLoader::register()
90 *
91 * @return Int ResourceLoaderModule class constant, the subclass default
92 * if not set manuall
93 */
94 public function getOrigin() {
95 return $this->origin;
96 }
97
98 /**
99 * Set this module's origin. This is called by ResourceLodaer::register()
100 * when registering the module. Other code should not call this.
101 *
102 * @param $name Int origin
103 */
104 public function setOrigin( $origin ) {
105 $this->origin = $origin;
106 }
107
108 /**
109 * @param $context ResourceLoaderContext
110 * @return bool
111 */
112 public function getFlip( $context ) {
113 global $wgContLang;
114
115 return $wgContLang->getDir() !== $context->getDirection();
116 }
117
118 /**
119 * Get all JS for this module for a given language and skin.
120 * Includes all relevant JS except loader scripts.
121 *
122 * @param $context ResourceLoaderContext: Context object
123 * @return String: JavaScript code
124 */
125 public function getScript( ResourceLoaderContext $context ) {
126 // Stub, override expected
127 return '';
128 }
129
130 /**
131 * Get all CSS for this module for a given skin.
132 *
133 * @param $context ResourceLoaderContext: Context object
134 * @return Array: List of CSS strings keyed by media type
135 */
136 public function getStyles( ResourceLoaderContext $context ) {
137 // Stub, override expected
138 return array();
139 }
140
141 /**
142 * Get the messages needed for this module.
143 *
144 * To get a JSON blob with messages, use MessageBlobStore::get()
145 *
146 * @return Array: List of message keys. Keys may occur more than once
147 */
148 public function getMessages() {
149 // Stub, override expected
150 return array();
151 }
152
153 /**
154 * Get the group this module is in.
155 *
156 * @return String: Group name
157 */
158 public function getGroup() {
159 // Stub, override expected
160 return null;
161 }
162
163 /**
164 * Get the loader JS for this module, if set.
165 *
166 * @return Mixed: JavaScript loader code as a string or boolean false if no custom loader set
167 */
168 public function getLoaderScript() {
169 // Stub, override expected
170 return false;
171 }
172
173 /**
174 * Get a list of modules this module depends on.
175 *
176 * Dependency information is taken into account when loading a module
177 * on the client side. When adding a module on the server side,
178 * dependency information is NOT taken into account and YOU are
179 * responsible for adding dependent modules as well. If you don't do
180 * this, the client side loader will send a second request back to the
181 * server to fetch the missing modules, which kind of defeats the
182 * purpose of the resource loader.
183 *
184 * To add dependencies dynamically on the client side, use a custom
185 * loader script, see getLoaderScript()
186 * @return Array: List of module names as strings
187 */
188 public function getDependencies() {
189 // Stub, override expected
190 return array();
191 }
192
193 /**
194 * Get the files this module depends on indirectly for a given skin.
195 * Currently these are only image files referenced by the module's CSS.
196 *
197 * @param $skin String: Skin name
198 * @return Array: List of files
199 */
200 public function getFileDependencies( $skin ) {
201 // Try in-object cache first
202 if ( isset( $this->fileDeps[$skin] ) ) {
203 return $this->fileDeps[$skin];
204 }
205
206 $dbr = wfGetDB( DB_SLAVE );
207 $deps = $dbr->selectField( 'module_deps', 'md_deps', array(
208 'md_module' => $this->getName(),
209 'md_skin' => $skin,
210 ), __METHOD__
211 );
212 if ( !is_null( $deps ) ) {
213 $this->fileDeps[$skin] = (array) FormatJson::decode( $deps, true );
214 } else {
215 $this->fileDeps[$skin] = array();
216 }
217 return $this->fileDeps[$skin];
218 }
219
220 /**
221 * Set preloaded file dependency information. Used so we can load this
222 * information for all modules at once.
223 * @param $skin String: Skin name
224 * @param $deps Array: Array of file names
225 */
226 public function setFileDependencies( $skin, $deps ) {
227 $this->fileDeps[$skin] = $deps;
228 }
229
230 /**
231 * Get the last modification timestamp of the message blob for this
232 * module in a given language.
233 * @param $lang String: Language code
234 * @return Integer: UNIX timestamp, or 0 if the module doesn't have messages
235 */
236 public function getMsgBlobMtime( $lang ) {
237 if ( !isset( $this->msgBlobMtime[$lang] ) ) {
238 if ( !count( $this->getMessages() ) )
239 return 0;
240
241 $dbr = wfGetDB( DB_SLAVE );
242 $msgBlobMtime = $dbr->selectField( 'msg_resource', 'mr_timestamp', array(
243 'mr_resource' => $this->getName(),
244 'mr_lang' => $lang
245 ), __METHOD__
246 );
247 // If no blob was found, but the module does have messages, that means we need
248 // to regenerate it. Return NOW
249 if ( $msgBlobMtime === false ) {
250 $msgBlobMtime = wfTimestampNow();
251 }
252 $this->msgBlobMtime[$lang] = wfTimestamp( TS_UNIX, $msgBlobMtime );
253 }
254 return $this->msgBlobMtime[$lang];
255 }
256
257 /**
258 * Set a preloaded message blob last modification timestamp. Used so we
259 * can load this information for all modules at once.
260 * @param $lang String: Language code
261 * @param $mtime Integer: UNIX timestamp or 0 if there is no such blob
262 */
263 public function setMsgBlobMtime( $lang, $mtime ) {
264 $this->msgBlobMtime[$lang] = $mtime;
265 }
266
267 /* Abstract Methods */
268
269 /**
270 * Get this module's last modification timestamp for a given
271 * combination of language, skin and debug mode flag. This is typically
272 * the highest of each of the relevant components' modification
273 * timestamps. Whenever anything happens that changes the module's
274 * contents for these parameters, the mtime should increase.
275 *
276 * @param $context ResourceLoaderContext: Context object
277 * @return Integer: UNIX timestamp
278 */
279 public function getModifiedTime( ResourceLoaderContext $context ) {
280 // 0 would mean now
281 return 1;
282 }
283
284 /**
285 * Check whether this module is known to be empty. If a child class
286 * has an easy and cheap way to determine that this module is
287 * definitely going to be empty, it should override this method to
288 * return true in that case. Callers may optimize the request for this
289 * module away if this function returns true.
290 * @param $context ResourceLoaderContext: Context object
291 * @return Boolean
292 */
293 public function isKnownEmpty( ResourceLoaderContext $context ) {
294 return false;
295 }
296 }