Remove unused $wgDebugDBTransactions
[lhc/web/wiklou.git] / includes / resourceloader / ResourceLoaderUserOptionsModule.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 * Module for user preference customizations
25 */
26 class ResourceLoaderUserOptionsModule extends ResourceLoaderModule {
27
28 /* Protected Members */
29
30 protected $modifiedTime = array();
31
32 protected $origin = self::ORIGIN_CORE_INDIVIDUAL;
33
34 /* Methods */
35
36 /**
37 * @param $context ResourceLoaderContext
38 * @return array|int|Mixed
39 */
40 public function getModifiedTime( ResourceLoaderContext $context ) {
41 $hash = $context->getHash();
42 if ( isset( $this->modifiedTime[$hash] ) ) {
43 return $this->modifiedTime[$hash];
44 }
45
46 global $wgUser;
47
48 if ( $context->getUser() === $wgUser->getName() ) {
49 return $this->modifiedTime[$hash] = wfTimestamp( TS_UNIX, $wgUser->getTouched() );
50 } else {
51 return 1;
52 }
53 }
54
55 /**
56 * Fetch the context's user options, or if it doesn't match current user,
57 * the default options.
58 *
59 * @param $context ResourceLoaderContext: Context object
60 * @return Array: List of user options keyed by option name
61 */
62 protected function contextUserOptions( ResourceLoaderContext $context ) {
63 global $wgUser;
64
65 // Verify identity -- this is a private module
66 if ( $context->getUser() === $wgUser->getName() ) {
67 return $wgUser->getOptions();
68 } else {
69 return User::getDefaultOptions();
70 }
71 }
72
73 /**
74 * @param $context ResourceLoaderContext
75 * @return string
76 */
77 public function getScript( ResourceLoaderContext $context ) {
78 return Xml::encodeJsCall( 'mw.user.options.set',
79 array( $this->contextUserOptions( $context ) ) );
80 }
81
82 /**
83 * @return bool
84 */
85 public function supportsURLLoading() {
86 return false;
87 }
88
89 /**
90 * @return string
91 */
92 public function getGroup() {
93 return 'private';
94 }
95 }