8 // Extend the skeleton mw.user from mediawiki.js
9 // This is kind of ugly but we're stuck with this for b/c reasons
10 options
= mw
.user
.options
|| new mw
.Map(),
11 tokens
= mw
.user
.tokens
|| new mw
.Map();
14 * Get the current user's groups or rights
17 * @param {string} info One of 'groups' or 'rights'
18 * @param {Function} [callback]
19 * @return {jQuery.Promise}
21 function getUserInfo( info
, callback
) {
23 if ( !deferreds
[info
] ) {
25 deferreds
.rights
= $.Deferred();
26 deferreds
.groups
= $.Deferred();
32 uiprop
: 'rights|groups'
33 } ).always( function ( data
) {
35 if ( data
.query
&& data
.query
.userinfo
) {
36 rights
= data
.query
.userinfo
.rights
;
37 groups
= data
.query
.userinfo
.groups
;
39 deferreds
.rights
.resolve( rights
|| [] );
40 deferreds
.groups
.resolve( groups
|| [] );
45 return deferreds
[info
].done( callback
).promise();
53 * Generate a random user session ID (32 alpha-numeric characters)
55 * This information would potentially be stored in a cookie to identify a user during a
56 * session or series of sessions. Its uniqueness should not be depended on.
58 * @return {string} Random set of 32 alpha-numeric characters
60 generateRandomSessionId: function () {
63 seed
= '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
64 for ( i
= 0; i
< 32; i
++ ) {
65 r
= Math
.floor( Math
.random() * seed
.length
);
66 id
+= seed
.substring( r
, r
+ 1 );
72 * Get the current user's database id
74 * Not to be confused with #id.
76 * @return {number} Current user's id, or 0 if user is anonymous
79 return mw
.config
.get( 'wgUserId', 0 );
83 * Get the current user's name
85 * @return {string|null} User name string or null if user is anonymous
87 getName: function () {
88 return mw
.config
.get( 'wgUserName' );
92 * @inheritdoc #getName
93 * @deprecated since 1.20 Use #getName instead
96 return user
.getName();
100 * Get date user registered, if available
102 * @return {Date|boolean|null} Date user registered, or false for anonymous users, or
103 * null when data is not available
105 getRegistration: function () {
106 var registration
= mw
.config
.get( 'wgUserRegistration' );
107 if ( user
.isAnon() ) {
109 } else if ( registration
=== null ) {
110 // Information may not be available if they signed up before
111 // MW began storing this.
114 return new Date( registration
);
119 * Whether the current user is anonymous
123 isAnon: function () {
124 return user
.getName() === null;
128 * @inheritdoc #isAnon
129 * @deprecated since 1.20 Use #isAnon instead
131 anonymous: function () {
132 return user
.isAnon();
136 * Get an automatically generated random ID (stored in a session cookie)
138 * This ID is ephemeral for everyone, staying in their browser only until they close
141 * @return {string} Random session ID
143 sessionId: function () {
144 var sessionId
= $.cookie( 'mediaWiki.user.sessionId' );
145 if ( sessionId
=== undefined || sessionId
=== null ) {
146 sessionId
= user
.generateRandomSessionId();
147 $.cookie( 'mediaWiki.user.sessionId', sessionId
, { expires
: null, path
: '/' } );
153 * Get the current user's name or the session ID
155 * Not to be confused with #getId.
157 * @return {string} User name or random session ID
160 return user
.getName() || user
.sessionId();
164 * Get the user's bucket (place them in one if not done already)
166 * mw.user.bucket( 'test', {
167 * buckets: { ignored: 50, control: 25, test: 25 },
172 * @deprecated since 1.23
173 * @param {string} key Name of bucket
174 * @param {Object} options Bucket configuration options
175 * @param {Object} options.buckets List of bucket-name/relative-probability pairs (required,
176 * must have at least one pair)
177 * @param {number} [options.version=0] Version of bucket test, changing this forces
179 * @param {number} [options.expires=30] Length of time (in days) until the user gets
181 * @return {string} Bucket name - the randomly chosen key of the `options.buckets` object
183 bucket: function ( key
, options
) {
184 var cookie
, parts
, version
, bucket
,
185 range
, k
, rand
, total
;
187 options
= $.extend( {
193 cookie
= $.cookie( 'mediaWiki.user.bucket:' + key
);
195 // Bucket information is stored as 2 integers, together as version:bucket like: "1:2"
196 if ( typeof cookie
=== 'string' && cookie
.length
> 2 && cookie
.indexOf( ':' ) !== -1 ) {
197 parts
= cookie
.split( ':' );
198 if ( parts
.length
> 1 && Number( parts
[0] ) === options
.version
) {
199 version
= Number( parts
[0] );
200 bucket
= String( parts
[1] );
204 if ( bucket
=== undefined ) {
205 if ( !$.isPlainObject( options
.buckets
) ) {
206 throw new Error( 'Invalid bucket. Object expected for options.buckets.' );
209 version
= Number( options
.version
);
213 for ( k
in options
.buckets
) {
214 range
+= options
.buckets
[k
];
217 // Select random value within range
218 rand
= Math
.random() * range
;
220 // Determine which bucket the value landed in
222 for ( k
in options
.buckets
) {
224 total
+= options
.buckets
[k
];
225 if ( total
>= rand
) {
231 'mediaWiki.user.bucket:' + key
,
232 version
+ ':' + bucket
,
233 { path
: '/', expires
: Number( options
.expires
) }
241 * Get the current user's groups
243 * @param {Function} [callback]
244 * @return {jQuery.Promise}
246 getGroups: function ( callback
) {
247 return getUserInfo( 'groups', callback
);
251 * Get the current user's rights
253 * @param {Function} [callback]
254 * @return {jQuery.Promise}
256 getRights: function ( callback
) {
257 return getUserInfo( 'rights', callback
);
261 }( mediaWiki
, jQuery
) );