MediaWiki:Gadget-twinkleblock.js: Difference between revisions
Content deleted Content added
MusikAnimal (talk | contribs) Repo at dd76177: fix {{OversightBlock}} not showing as option Tags: Manual revert Reverted |
MusikAnimal (talk | contribs) deploy #2180: soft redirect to Special:Block for multi-blocked targets |
||
(12 intermediate revisions by 3 users not shown) | |||
Line 1:
// <nowiki>
const api = new mw.Api();
▲(function($) {
let relevantUserName, blockedUserName, blockWindow;
▲var menuFormattedNamespaces = $.extend({}, mw.config.get('wgFormattedNamespaces'));
menuFormattedNamespaces[0] = '(Article)';
Line 35:
Twinkle.block.field_template_options = {};
// need to be verbose about who we're blocking
// Always added, hidden later if actual user not blocked
type: 'field',
label: 'Type of action'
Line 93:
using Morebits.ip.get64 provides a modicum of relief in thise case.
*/
if (sixtyFour && sixtyFour !== mw.config.get('wgRelevantUserName')) {
type: 'field',
label: 'Convert to /64 rangeblock',
Line 125:
form.append({ type: 'submit' });
result.root = result;
Twinkle.block.fetchUserInfo(
// Toggle initial partial state depending on prior block type,
// will override the defaultToPartialBlocks pref
Line 141:
// init the controls after user and block info have been fetched
evt.initEvent('change', true, true);
Line 155:
// Store fetched user data, only relevant if switching IPv6 to a /64
Twinkle.block.fetchedData = {};
// Processes the data from
// Twinkle.block.fetchUserInfo to allow reprocessing of already-fetched data
Twinkle.block.processUserInfo = function twinkleblockProcessUserInfo(data, fn) {
// Soft redirect to Special:Block if the user is multi-blocked (#2178)
userinfo = data.query.users[0];▼
if (blockinfo && data.query.blocks.length > 1) {
// Remove submission buttons.
$(blockWindow.content).dialog('widget').find('.morebits-dialog-buttons').empty();
Morebits.Status.init(blockWindow.content.querySelector('form'));
Morebits.Status.warn(
`This target has ${data.query.blocks.length} active blocks`,
`Multiblocks is not supported by Twinkle. Use [[Special:Block/${relevantUserName}]] instead.`
}
// If an IP is blocked *and* rangeblocked, the above finds
// whichever block is more recent, not necessarily correct.
Line 171 ⟶ 182:
Twinkle.block.isRegistered = !!userinfo.userid;
if (Twinkle.block.isRegistered) {
Twinkle.block.userIsBot = !!userinfo.groupmemberships && userinfo.groupmemberships.map(
▲ return e.group;
} else {
Twinkle.block.userIsBot = false;
Line 188 ⟶ 197:
// Toggle unblock link if not the user in question; always first
if (blockedUserName !== relevantUserName) {
unblockLink.hidden = true
unblockLink.nextSibling.hidden = true; // link+trailing bullet } else {
unblockLink.hidden = false
unblockLink.nextSibling.hidden = false; // link+trailing bullet }
Line 213 ⟶ 224:
Twinkle.block.fetchUserInfo = function twinkleblockFetchUserInfo(fn) {
format: 'json',
action: 'query',
Line 233 ⟶ 244:
}
api.get(query).then(
Twinkle.block.processUserInfo(data, fn);
},
Morebits.
Morebits.
});
};
Line 243 ⟶ 254:
Twinkle.block.callback.saveFieldset = function twinkleblockCallbacksaveFieldset(fieldset) {
Twinkle.block[$(fieldset).prop('name')] = {};
$(fieldset).serializeArray().forEach(
// namespaces and pages for partial blocks are overwritten
// here, but we're handling them elsewhere so that's fine
Line 251 ⟶ 262:
Twinkle.block.callback.change_block64 = function twinkleblockCallbackChangeBlock64(e) {
// Show/hide block64 button
// Single IPv6, or IPv6 range smaller than a /64
if ($block64.is(':checked')) {
relevantUserName = Morebits.ip.get64(mw.config.get('wgRelevantUserName'));
Line 263 ⟶ 274:
// No templates for ranges, but if the original user is a single IP, offer the option
// (done separately in Twinkle.block.callback.issue_template)
$form.find('[name=actiontype][value=template]').prop('disabled', originalIsRange).prop('checked', !originalIsRange);
// Refetch/reprocess user info then regenerate the main content
// Tweak titlebar text. In theory, we could save the dialog
// at initialization and then use `.setTitle` or
Line 273 ⟶ 284:
// the scriptName and requires `.display`ing, which jumps the
// window. It's just a line of text, so this is fine.
titleBar.nodeValue = titleBar.nodeValue.replace(priorName, relevantUserName);
// Tweak unblock link
unblockLink.href = unblockLink.href.replace(priorName, relevantUserName);
unblockLink.title = unblockLink.title.replace(priorName, relevantUserName);
Line 298 ⟶ 309:
Twinkle.block.callback.change_action = function twinkleblockCallbackChangeAction(e) {
const $form = $(e.target.form); // Make ifs shorter
$partial.prop('disabled', !blockBox && !templateBox);
// Add current block parameters as default preset
if (blockedUserName === relevantUserName) {
Twinkle.block.blockPresetsInfo.prior = Twinkle.block.currentBlockInfo;
Line 316 ⟶ 328:
// Arrays of objects are annoying to check
if (!blockGroup.some(
})) {▼
blockGroup.push(prior);
}
Line 334 ⟶ 344:
} else {
// But first remove any prior prior
blockGroup = blockGroup.filter(
▲ });
}
Line 348 ⟶ 356:
if (blockBox) {
field_preset = new Morebits.
field_preset.append({
type: 'select',
Line 357 ⟶ 365:
});
field_block_options = new Morebits.
field_block_options.append({ type: 'div', name: 'currentblock', label: ' ' });
field_block_options.append({ type: 'div', name: 'hasblocklog', label: ' ' });
Line 403 ⟶ 411:
tooltip: '10 page max.'
});
type: 'select',
multiple: true,
Line 411 ⟶ 419:
tooltip: 'Block from editing these namespaces.'
});
$.each(menuFormattedNamespaces,
// Ignore -1: Special; -2: Media; and 2300-2303: Gadget (talk) and Gadget definition (talk)
if (number >= 0 && number < 830) {
Line 419 ⟶ 427:
}
{
checked: Twinkle.block.field_block_options.nocreate,
Line 520 ⟶ 528:
Twinkle.block.dsinfo = Morebits.wiki.getCachedJson('Template:Ds/topics.json');
Twinkle.block.dsinfo.then(
});▼
$select.append($options);
});
Line 530 ⟶ 536:
// DS selection visible in either the template field set or preset,
// joint settings saved here
type: 'select',
name: 'dstopic',
Line 539 ⟶ 545:
};
if (templateBox) {
field_template_options = new Morebits.
field_template_options.append({
type: 'select',
Line 624 ⟶ 630:
}
$previewlink.off('click').on('click',
Twinkle.block.callback.preview($form[0]);
});
Line 636 ⟶ 642:
}
if (field_preset) {
oldfield = $form.find('fieldset[name="field_preset"]')[0];
Line 647 ⟶ 653:
oldfield.parentNode.replaceChild(field_block_options.render(), oldfield);
$form.find('fieldset[name="field_64"]').show();
$form.find('[name=pagerestrictions]').select2({
theme: 'default select2-morebits',
width: '100%',
placeholder: 'Select pages to block user from',
Line 664 ⟶ 670:
delay: 100,
data: function(params) {
if (!title) {
return;
Line 679 ⟶ 685:
processResults: function(data) {
return {
results: data.query.allpages.map(
return {
id: title,
Line 698 ⟶ 704:
$form.find('[name=namespacerestrictions]').select2({
theme: 'default select2-morebits',
width: '100%',
matcher: Morebits.select2.matchers.wordBeginning,
Line 729 ⟶ 736:
oldfield = $form.find('fieldset[name="field_template_options"]')[0];
oldfield.parentNode.replaceChild(field_template_options.render(), oldfield);
e.target.form.root.previewer = new Morebits.wiki.
} else {
$form.find('fieldset[name="field_template_options"]').hide();
Line 738 ⟶ 745:
// false for an ip covered by a range or a smaller range within a larger range;
// true for a user, single ip block, or the exact range for a range block
Morebits.
// Range blocked
Line 750 ⟶ 757:
statusStr += ' within a' + (Morebits.ip.get64(relevantUserName) === blockedUserName ? ' /64' : '') + ' rangeblock';
// Link to the full range
statusStr += ' (' + $rangeblockloglink.html() + ')';
}
Line 757 ⟶ 764:
if (Twinkle.block.currentBlockInfo.expiry === 'infinity') {
statusStr += ' (indefinite)';
} else if (new Morebits.
statusStr += ' (expires ' + new Morebits.
}
▲ var infoStr = 'This form will';
if (sameUser) {
infoStr += ' change that block';
Line 775 ⟶ 781:
}
Morebits.
// Default to the current block conditions on intial form generation
Line 785 ⟶ 791:
// exact range, not merely a funtional equivalent
if (Twinkle.block.hasBlockLog) {
if (!Twinkle.block.currentBlockInfo) {
if (lastBlockAction.action === 'unblock') {
$blockloglink.append(' (unblocked ' + new Morebits.
} else { // block or reblock
$blockloglink.append(' (' + lastBlockAction.params.duration + ', expired ' + new Morebits.
}
}
Morebits.
Morebits.
}
Line 816 ⟶ 822:
* disabletalk: <disable user from editing their own talk page while blocked>
* expiry: <string - expiry timestamp, can include relative times like "5 months", "2 weeks" etc>
*
* forRegisteredOnly: <show block option in the interface only if the relevant user is registered>
* label: <string - label for the option of the dropdown in the interface (keep brief)>
Line 822 ⟶ 828:
* pageParam: <set if the associated block template accepts a page parameter>
* prependReason: <string - prepends the value of 'reason' to the end of the existing reason, namely for when revoking talk page access>
* nocreate: <block account creation from the user's IP (for
* nonstandard: <template does not conform to stewardship of WikiProject User Warnings and may not accept standard parameters>
* reason: <string - block rationale, as would appear in the block log,
Line 838 ⟶ 844:
*/
Twinkle.block.blockPresetsInfo = {
expiry: '31 hours',
nocreate: true,
nonstandard: true,
Line 848 ⟶ 854:
'anonblock - school': {
expiry: '36 hours',
nocreate: true,
nonstandard: true,
Line 857 ⟶ 863:
'blocked proxy': {
expiry: '1 year',
nocreate: true,
nonstandard: true,
Line 866 ⟶ 872:
'CheckUser block': {
expiry: '1 week',
nocreate: true,
nonstandard: true,
Line 882 ⟶ 888:
},
'checkuserblock-wide': {
nocreate: true,
nonstandard: true,
Line 888 ⟶ 894:
sig: '~~~~'
},
expiry: '1 year',
nonstandard: true,
reason: '{{colocationwebhost}}',
sig: null
},
autoblock: true,
expiry: 'infinity',
Line 904 ⟶ 910:
},
'school block': {
nocreate: true,
nonstandard: true,
Line 910 ⟶ 916:
sig: '~~~~'
},
expiry: '1 month',
disabletalk: true,
Line 917 ⟶ 923:
reason: '{{spamblacklistblock}} <!-- editor only attempts to add blacklisted links, see [[Special:Log/spamblacklist]] -->'
},
reason: '{{rangeblock}}',
nocreate: true,
nonstandard: true,
sig: '~~~~'
},
expiry: '1 year',
nonstandard: true,
reason: '{{Tor}}',
sig: null
},
expiry: '1 year',
nonstandard: true,
reason: '{{webhostblock}}',
Line 950 ⟶ 956:
autoblock: true,
expiry: '31 hours',
nocreate: true,
pageParam: true,
Line 1,024 ⟶ 1,030:
nocreate: true,
reason: '{{uw-botuhblock}} <!-- Username implies a bot, hard block -->',
summary: 'You have been indefinitely blocked from editing because your username is a blatant violation of the [[WP:U|username policy]]
},
'uw-causeblock': {
Line 1,083 ⟶ 1,089:
},
'uw-ipevadeblock': {
nocreate: true,
reason: '[[WP:Blocking policy#Evasion of blocks|Block evasion]]',
Line 1,235 ⟶ 1,241:
pageParam: true,
reason: '{{uw-vaublock}} <!-- Username violation, vandalism-only account -->',
summary: 'You have been indefinitely blocked from editing because your account is being [[WP:
},
'uw-vblock': {
Line 1,251 ⟶ 1,257:
nocreate: true,
pageParam: true,
reason: '[[WP:
summary: 'You have been indefinitely blocked from editing because your account is being [[WP:
},
'zombie proxy': {
expiry: '1 month',
nocreate: true,
nonstandard: true,
Line 1,332 ⟶ 1,338:
Twinkle.block.transformBlockPresets = function twinkleblockTransformBlockPresets() {
// supply sensible defaults
$.each(Twinkle.block.blockPresetsInfo,
settings.summary = settings.summary || settings.reason;
settings.sig = settings.sig !== undefined ? settings.sig : 'yes';
Line 1,448 ⟶ 1,454:
}
];
Twinkle.block.callback.filtered_block_groups = function twinkleblockCallbackFilteredBlockGroups(group, show_template) {
return $.map(group,
switch (blockPreset.value) {
case 'uw-talkrevoked':
Line 1,473 ⟶ 1,478:
break;
case 'oversightblock':
if (!Morebits.userIsInGroup('
return;
}
Line 1,481 ⟶ 1,486:
}
let registrationRestrict;
if (blockSettings.forRegisteredOnly) {
registrationRestrict = Twinkle.block.isRegistered;
} else if (blockSettings.forUnregisteredOnly) {
registrationRestrict = !Twinkle.block.isRegistered;
registrationRestrict = true;
if (!(blockSettings.templateName && show_template) && registrationRestrict) {
return {
label: (show_template ? '{{' + templateName + '}}: ' : '') + blockPreset.label,
Line 1,507 ⟶ 1,521:
Twinkle.block.callback.change_preset = function twinkleblockCallbackChangePreset(e) {
if (!key) {
return;
Line 1,517 ⟶ 1,531:
Twinkle.block.callback.change_template(e);
} else {
Morebits.
}
};
Twinkle.block.callback.change_expiry = function twinkleblockCallbackChangeExpiry(e) {
if (e.target.value === 'custom') {
Morebits.
} else {
Morebits.
expiry.value = e.target.value;
}
Line 1,533 ⟶ 1,547:
Twinkle.block.seeAlsos = [];
Twinkle.block.callback.toggle_see_alsos = function twinkleblockCallbackToggleSeeAlso() {
new RegExp('( <!--|;)
);
Twinkle.block.seeAlsos = Twinkle.block.seeAlsos.filter(
if (this.checked) {
Twinkle.block.seeAlsos.push(this.value);
}
if (!Twinkle.block.seeAlsos.length) {
this.form.reason.value = reason;
} else if (reason.
this.form.reason.value = reason + ' <!-- see also ' + seeAlsoMessage + ' -->';
} else {
Line 1,557 ⟶ 1,569:
Twinkle.block.dsReason = '';
Twinkle.block.callback.toggle_ds_reason = function twinkleblockCallbackToggleDSReason() {
new RegExp(' ?\\(\\[\\[' + Twinkle.block.dsReason + '\\]\\]\\)'), ''
);
Twinkle.block.dsinfo.then(
Twinkle.block.dsReason = dsinfo[sanctionName].page;
if (!this.value) {
Line 1,570 ⟶ 1,582:
this.form.reason.value = reason + ' ([[' + Twinkle.block.dsReason + ']])';
}
}
};
Twinkle.block.callback.update_form = function twinkleblockCallbackUpdateForm(e, data) {
let expiry = data.expiry; // don't override original expiry if useInitialOptions is set
Line 1,587 ⟶ 1,600:
form.expiry.value = expiry;
if (form.expiry_preset.value === 'custom') {
Morebits.
} else {
Morebits.
}
}
Line 1,602 ⟶ 1,615:
}
$(form).find('[name=field_block_options]').find(':checkbox').each(
// don't override original options if useInitialOptions is set
if (data.useInitialOptions && data[el.name] === undefined) {
Line 1,608 ⟶ 1,621:
}
$(el).prop('checked', check);
});
Line 1,620 ⟶ 1,633:
// Clear and/or set any partial page or namespace restrictions
if (form.pagerestrictions) {
// Respect useInitialOptions by clearing data when switching presets
Line 1,633 ⟶ 1,646:
if (data.restrictions) {
if (data.restrictions.pages && !$pageSelect.val().length) {
▲ });
// since page restrictions use an ajax source, we
// short-circuit that and just add a new option
pages.forEach(
if (!$pageSelect.find("option[value='" + $.escapeSelector(page) + "']").length) {
$pageSelect.append(newOption);
}
Line 1,654 ⟶ 1,665:
Twinkle.block.callback.change_template = function twinkleblockcallbackChangeTemplate(e) {
// Block form is not present
Line 1,678 ⟶ 1,689:
form.expiry.value = Twinkle.block.prev_template_expiry;
}
Morebits.
// Partial
Morebits.
Morebits.
} else if (templateBox) { // Only present if block && template forms both visible
Morebits.
form.blank_duration.parentNode,
!settings.indefinite && !settings.nonstandard
Line 1,689 ⟶ 1,700:
}
Morebits.
// Only particularly relevant if template form is present
Morebits.
Morebits.
// Partial block
Morebits.
form.root.previewer.closePreview();
Line 1,703 ⟶ 1,714:
Twinkle.block.callback.preview = function twinkleblockcallbackPreview(form) {
article: form.article.value,
blank_duration: form.blank_duration ? form.blank_duration.checked : false,
Line 1,721 ⟶ 1,732:
};
form.previewer.beginRender(templateText, 'User_talk:' + relevantUserName); // Force wikitext/correct username
Line 1,727 ⟶ 1,738:
Twinkle.block.callback.evaluate = function twinkleblockCallbackEvaluate(e) {
toBlock = $form.find('[name=actiontype][value=block]').is(':checked'),
toWarn = $form.find('[name=actiontype][value=template]').is(':checked'),
toPartial = $form.find('[name=actiontype][value=partial]').is(':checked')
Twinkle.block.callback.saveFieldset($form.find('[name=field_block_options]'));
Line 1,761 ⟶ 1,772:
if (toBlock) {
if (blockoptions.partial) {
if (blockoptions.disabletalk && !blockoptions.namespacerestrictions.
return alert('Partial blocks cannot prevent talk page access unless also restricting them from editing User talk space!');
}
Line 1,783 ⟶ 1,794:
}
Morebits.
Morebits.
blockoptions.action = 'block';
Line 1,820 ⟶ 1,831:
same block is still active (same status, no confirmation).
*/
format: 'json',
action: 'query',
Line 1,834 ⟶ 1,845:
query.bkusers = blockoptions.user;
}
api.get(query).then(
// As with the initial data fetch, if an IP is blocked
// *and* rangeblocked, this would only grab whichever
Line 1,845 ⟶ 1,856:
block = data.query.blocks[1];
}
if (logid !== Twinkle.block.blockLogId || !!block !== !!Twinkle.block.currentBlockInfo) {
if (block) {
message += 'New status: ';
Line 1,856 ⟶ 1,867:
}
if (logevents.params.duration) {
if (logevents.params.duration === 'infinity') {
logExpiry = 'indefinitely';
} else {
logExpiry += (expiryDate.isBefore(new Date()) ? ', expired ' : ' until ') + expiryDate.calendar();
}
} else { // no duration, action=unblock, just show timestamp
logExpiry = ' ' + new Morebits.
}
message += Morebits.string.toUpperCaseFirstChar(logevents.action) + 'ed by ' + logevents.user + logExpiry +
Line 1,871 ⟶ 1,882:
if (!confirm(message)) {
Morebits.
return;
}
Line 1,880 ⟶ 1,891:
blockoptions.tags = Twinkle.changeTags;
blockoptions.token = mw.user.tokens.get('csrfToken');
statusElement.info('Completed');
if (toWarn) {
Twinkle.block.callback.issue_template(templateoptions);
}
}));
mbApi.post();
});
} else if (toWarn) {
Morebits.
Morebits.
Twinkle.block.callback.issue_template(templateoptions);
} else {
Line 1,901 ⟶ 1,912:
// Use wgRelevantUserName to ensure the block template goes to a single IP and not to the
// "talk page" of an IP range (which does not exist)
const params = Twinkle.block.combineFormDataAndFieldTemplateOptions(
var params = $.extend(formData, {▼
Twinkle.block.blockPresetsInfo[formData.template], Morebits.wiki.actionCompleted.redirect = userTalkPage;
Morebits.wiki.actionCompleted.notice = 'Actions complete, loading user talk page in a few seconds';
wikipedia_page.setCallbackParameters(params);
wikipedia_page.load(Twinkle.block.callback.main);
};
Twinkle.block.combineFormDataAndFieldTemplateOptions = function(formData, messageData, reason, disabletalk, noemail, nocreate) {
messageData: messageData,
reason: reason,
disabletalk: disabletalk,
noemail: noemail,
nocreate: nocreate
};
Twinkle.block.callback.getBlockNoticeWikitext = function(params) {
const settings = Twinkle.block.blockPresetsInfo[params.template]; if (!settings.nonstandard) {
text += 'subst:' + params.template;
Line 1,933 ⟶ 1,956:
if (params.indefinite) {
text += '|indef=yes';
} else if (!params.blank_duration && !new Morebits.
// Block template wants a duration, not date
text += '|time=' + params.expiry;
Line 1,954 ⟶ 1,977:
if (params.partial) {
if (params.pagerestrictions.length || params.namespacerestrictions.length) {
if (array.length < 3) {
return array.join(' and ');
}
return array.join(', ') + ', and ' + last;
Line 1,964 ⟶ 1,987:
text += '|area=' + (params.indefinite ? 'certain ' : 'from certain ');
if (params.pagerestrictions.length) {
text += 'pages (' + makeSentence(params.pagerestrictions.map(
text += params.namespacerestrictions.length ? ') and certain ' : ')';
}
if (params.namespacerestrictions.length) {
// 1 => Talk, 2 => User, etc.
text += '[[Wikipedia:Namespace|namespaces]] (' + makeSentence(namespaceNames) + ')';
}
Line 1,998 ⟶ 2,017:
Twinkle.block.callback.main = function twinkleblockcallbackMain(pageobj) {
date = new Morebits.
messageData = params.messageData
params.indefinite = Morebits.string.isInfinity(params.expiry);
if (Twinkle.getPref('blankTalkpageOnIndefBlock') && params.template !== 'uw-lblock' && params.indefinite) {
Morebits.
text = date.monthHeader() + '\n';
} else {
text = pageobj.getPageText();
let dateHeaderRegexLast, dateHeaderRegexResult; while ((dateHeaderRegexLast = dateHeaderRegex.exec(text)) !== null) {
dateHeaderRegexResult = dateHeaderRegexLast;
Line 2,018 ⟶ 2,038:
// \n== is not found, then the date header must be at the very start of the page. lastIndexOf
// returns -1 in this case, so lastHeaderIndex gets set to 0 as desired.
if (text.length > 0) {
Line 2,025 ⟶ 2,045:
if (!dateHeaderRegexResult || dateHeaderRegexResult.index !== lastHeaderIndex) {
Morebits.
text += date.monthHeader() + '\n';
}
Line 2,035 ⟶ 2,055:
// build the edit summary
if (messageData.suppressArticleInSummary !== true && params.article) {
summary += ' on [[:' + params.article + ']]';
Line 2,049 ⟶ 2,069:
Twinkle.addInitCallback(Twinkle.block, 'block');
}
// </nowiki>
|