MediaWiki:Gadget-OnlineAdmins.js: Difference between revisions

From Test Wiki
Content deleted Content added
mNo edit summary
Tag: Reverted
final change
(4 intermediate revisions by 2 users not shown)
Line 4: Line 4:
'p-personal',
'p-personal',
'#',
'#',
'Find Admins',
'Admins',
't-onlineadmin',
't-onlineadmin',
'Seek help from admins.',
'Seek help from admins.',
Line 12: Line 12:
var rcstart, rcend, time;
var rcstart, rcend, time;
var users = [];
var users = [];
var admins = [], bureaucrats = [], non_steward_suppressors = [], stewards = [];
var admins = [], bureaucrats = [], stewards = [];
var api = new mw.Api();
var api = new mw.Api();


Line 87: Line 87:
};
};
if (admins.length > 0) {
if (admins.length > 0) {
var adminsstring = ['<center><p><b>Online Admin(s)</b></p></center>'];
var adminsstring = ['<center><p><b>Online Administrators:</b></p></center>'];


if (admins.length > 0) {
if (admins.length > 0) {
adminsstring.push('<p style="word-break:break-all;">There are currently ' + admins.length + ' administrator(s) <br> online:');
adminsstring.push('<p style="word-break:break-all;">There are currently ' + admins.length + ' Administrator(s) <br> online:');
$.each(admins, function(i, e) {
$.each(admins, function(i, e) {
adminsstring.push(userlink(e));
adminsstring.push(userlink(e));
Line 98: Line 98:
mw.notify($(adminsstring.join('')));
mw.notify($(adminsstring.join('')));
} else {
} else {
mw.notify('Sorry! There are currently no administrators online');
mw.notify('Sorry! There are no Administrators online.');
}
}
}).fail(function () {
}).fail(function () {
Line 118: Line 118:
var rcstart, rcend, time;
var rcstart, rcend, time;
var users = [];
var users = [];
var admins = [], bureaucrats = [], non_steward_suppressors = [], stewards = [];
var admins = [], bureaucrats = [], stewards = [];
var api = new mw.Api();
var api = new mw.Api();


Line 196: Line 196:
};
};
if (bureaucrats.length > 0) {
if (bureaucrats.length > 0) {
var adminsstring = ['<center><p><b>Bureaucrat(s) Online:</b></p></center>'];
var adminsstring = ['<center><p><b>Online Bureaucrats:</b></p></center>'];
if (bureaucrats.length > 0) {
if (bureaucrats.length > 0) {
adminsstring.push('<p style="word-break:break-all;">There are currently ' + bureaucrats.length + ' bureaucrat(s) <br>online:');
adminsstring.push('<p style="word-break:break-all;">There are currently ' + bureaucrats.length + ' Bureaucrat(s) <br>online:');
$.each(bureaucrats, function(i, e) {
$.each(bureaucrats, function(i, e) {
adminsstring.push(userlink(e));
adminsstring.push(userlink(e));
Line 206: Line 206:
mw.notify($(adminsstring.join('')));
mw.notify($(adminsstring.join('')));
} else {
} else {
mw.notify('Sorry! There are no bureaucrats online');
mw.notify('Sorry! There are no Bureaucrats online.');
}
}
}).fail(function () {
}).fail(function () {
Line 214: Line 214:
});
});
});
});
// Create portlet link
var portletLinkOnline = mw.util.addPortletLink(
'p-personal',
'#',
'Non-steward suppressors',
't-non_steward_suppressor',
'Seek help from non-steward suppressors.',
'',
'#pt-userpage'
);
var rcstart, rcend, time;
var users = [];
var admins = [], bureaucrats = [], non_steward_suppressors = [], stewards = [];
var api = new mw.Api();

// Bind click handler
$(portletLinkOnline).click(function(e) {
e.preventDefault();

users = [];
var usersExt = [];
admins = [];
bureaucrats = [];
non_steward_suppressors = [];
stewards = [];

//Recent edit within 30 minutes
time = new Date();
rcstart = time.toISOString();
time.setMinutes(time.getMinutes() - 30);
rcend = time.toISOString();

//API:RecentChanges
api.get({
format: 'json',
action: 'query',
list: 'recentchanges',
rcprop: 'user',
rcstart: rcstart,
rcend: rcend,
rcshow: '!bot|!anon',
rclimit: 500
}).done(function(data) {
$.each(data.query.recentchanges, function(i, item) {
users[i] = item.user;
});
api.get({
format: 'json',
action: 'query',
list: 'logevents',
leprop: 'user',
lestart: rcstart,
leend: rcend,
lelimit: 500
}).done(function(data) {
$.each(data.query.logevents, function(i, item) {
usersExt[i] = item.user;
});
Array.prototype.push.apply(users, usersExt);
users = $.unique(users.sort());
var promises = [];
var mark = function(data) {
$.each(data.query.users, function(i, user) {
if ($.inArray('bot', user.groups) === -1) {
if ($.inArray('non-stewardsuppress', user.groups) > -1) {
non_steward_suppresors[i] = user.name;
}
}
});
};
for (var i=0; i<(users.length+50)/50; i++) {
promises.push(api.get({
format: 'json',
action: 'query',
list: 'users',
ususers: users.slice(i*50, (i+1)*50).join('|'),
usprop: 'groups'
}).done(mark));
}
$.when.apply($, promises).done(function () {
var filter = function(n) {
return n;
};
admins = admins.filter(filter);
bureaucrats = bureaucrats.filter(filter);
non_steward_suppressors = non_steward_suppressors.filter(filter);
stewards = stewards.filter(filter);
var userlink = function(user) {
var user2 = user.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&lt;');
return '<br><a href="/wiki/User:' + user2 + '" target="_blank">' + user2 + '</a>&nbsp;<small style="opacity:.75;">(<a href="/wiki/User talk:' + user2 + '" target="_blank">Talk</a>)</small> ';
};
if (non_steward_suppessors.length > 0) {
var adminsstring = ['<center><p><b>Non-steward suppressor(s) Online:</b></p></center>'];
if (non_steward_suppessors.length > 0) {
adminsstring.push('<p style="word-break:break-all;">There are currently ' + steward(s).length + ' non-steward-suppressor(s) <br>online:');
$.each(bureaucrats, function(i, e) {
adminsstring.push(userlink(e));
});
adminsstring.push('</p>');
}
mw.notify($(adminsstring.join('')));
} else {
mw.notify('Sorry! There are no non-steward-suppressors online');
}
}).fail(function () {
mw.notify('Error 404');
});
});
});
});

// Create portlet link
// Create portlet link
var portletLinkOnline = mw.util.addPortletLink(
var portletLinkOnline = mw.util.addPortletLink(
Line 337: Line 226:
var rcstart, rcend, time;
var rcstart, rcend, time;
var users = [];
var users = [];
var admins = [], bureaucrats = [], non_steward_suppressors = [], stewards = [];
var admins = [], bureaucrats = [], stewards = [];
var api = new mw.Api();
var api = new mw.Api();


Line 415: Line 304:
};
};
if (stewards.length > 0) {
if (stewards.length > 0) {
var adminsstring = ['<center><p><b>Steward(s) Online:</b></p></center>'];
var adminsstring = ['<center><p><b>Online Stewards:</b></p></center>'];
if (stewards.length > 0) {
if (stewards.length > 0) {
adminsstring.push('<p style="word-break:break-all;">There are currently ' + steward(s).length + ' steward(s) <br>online:');
adminsstring.push('<p style="word-break:break-all;">There are currently ' + steward(s).length + ' Steward(s) <br>online:');
$.each(bureaucrats, function(i, e) {
$.each(bureaucrats, function(i, e) {
adminsstring.push(userlink(e));
adminsstring.push(userlink(e));
Line 425: Line 314:
mw.notify($(adminsstring.join('')));
mw.notify($(adminsstring.join('')));
} else {
} else {
mw.notify('Sorry! There are no stewards online');
mw.notify('Sorry! There are no Stewards online.');
}
}
}).fail(function () {
}).fail(function () {