(bug 30269) Strings like foobar//barfoo are linked to become foobar[//barfoo]
[mediawiki.git] / includes / resourceloader / ResourceLoaderUserOptionsModule.php
blobe7f29053f52147b4fb55dbf7fe5b15f6abbbc8da
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.
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.
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
18 * @file
19 * @author Trevor Parscal
20 * @author Roan Kattouw
23 /**
24 * Module for user preference customizations
26 class ResourceLoaderUserOptionsModule extends ResourceLoaderModule {
28 /* Protected Members */
30 protected $modifiedTime = array();
32 protected $origin = self::ORIGIN_CORE_INDIVIDUAL;
34 /* Methods */
36 /**
37 * @param $context ResourceLoaderContext
38 * @return array|int|Mixed
40 public function getModifiedTime( ResourceLoaderContext $context ) {
41 $hash = $context->getHash();
42 if ( isset( $this->modifiedTime[$hash] ) ) {
43 return $this->modifiedTime[$hash];
46 global $wgUser;
48 if ( $context->getUser() === $wgUser->getName() ) {
49 return $this->modifiedTime[$hash] = wfTimestamp( TS_UNIX, $wgUser->getTouched() );
50 } else {
51 return 1;
55 /**
56 * Fetch the context's user options, or if it doesn't match current user,
57 * the default options.
59 * @param $context ResourceLoaderContext: Context object
60 * @return Array: List of user options keyed by option name
62 protected function contextUserOptions( ResourceLoaderContext $context ) {
63 global $wgUser;
65 // Verify identity -- this is a private module
66 if ( $context->getUser() === $wgUser->getName() ) {
67 return $wgUser->getOptions();
68 } else {
69 return User::getDefaultOptions();
73 /**
74 * @param $context ResourceLoaderContext
75 * @return string
77 public function getScript( ResourceLoaderContext $context ) {
78 return Xml::encodeJsCall( 'mw.user.options.set',
79 array( $this->contextUserOptions( $context ) ) );
82 /**
83 * @param $context ResourceLoaderContext
84 * @return array
86 public function getStyles( ResourceLoaderContext $context ) {
87 // FIXME: This stuff should really be in its own module, because it gets double-loaded otherwise
88 // (once through a <link>, once when embedded as JS)
89 global $wgAllowUserCssPrefs;
91 if ( $wgAllowUserCssPrefs ) {
92 $options = $this->contextUserOptions( $context );
94 // Build CSS rules
95 $rules = array();
96 if ( $options['underline'] < 2 ) {
97 $rules[] = "a { text-decoration: " .
98 ( $options['underline'] ? 'underline' : 'none' ) . "; }";
100 if ( $options['highlightbroken'] ) {
101 $rules[] = "a.new, #quickbar a.new { color: #ba0000; }\n";
102 } else {
103 $rules[] = "a.new, #quickbar a.new, a.stub, #quickbar a.stub { color: inherit; }";
104 $rules[] = "a.new:after, #quickbar a.new:after { content: '?'; color: #ba0000; }";
105 $rules[] = "a.stub:after, #quickbar a.stub:after { content: '!'; color: #772233; }";
107 if ( $options['justify'] ) {
108 $rules[] = "#article, #bodyContent, #mw_content { text-align: justify; }\n";
110 if ( !$options['showtoc'] ) {
111 $rules[] = "#toc { display: none; }\n";
113 if ( !$options['editsection'] ) {
114 $rules[] = ".editsection { display: none; }\n";
116 if ( $options['editfont'] !== 'default' ) {
117 $rules[] = "textarea { font-family: {$options['editfont']}; }\n";
119 $style = implode( "\n", $rules );
120 if ( $this->getFlip( $context ) ) {
121 $style = CSSJanus::transform( $style, true, false );
123 return array( 'all' => $style );
125 return array();
129 * @return string
131 public function getGroup() {
132 return 'private';
135 public function getDependencies() {
136 return array( 'mediawiki.user' );