MediaWiki:Gadget-morebits.js: Difference between revisions

Content deleted Content added
Repo at 540dcd6a: wait for 2 seconds after a connection error; fix error handling on no internet; Rename wikitext.template.parse to wikitext.parseTemplate
Repo at ac3c1e3: replace es-x/no-array-prototype-includes with unicorn/prefer-includes (#2125)
 
(48 intermediate revisions by 5 users not shown)
Line 1:
// <nowiki>
/**
* morebits.js
* ===========
* A library full of lots of goodness for user scripts on MediaWiki wikis, including Wikipedia.
*
* The highlights include:
* - -{@link Morebits.quickForm classwiki.api} - generatesmake quickcalls HTMLto formsthe on theMediaWiki flyAPI
* - {@link Morebits.wiki.api classpage} - makesmodify callspages toon the MediaWikiwiki API(edit, revert, delete, etc.)
* - -{@link Morebits.wiki.page classdate} - modifiesenhanced pagesdate onobject theprocessing, wikisort (edit,of revert,a delete,light etcmoment.)js
* - -{@link Morebits.wikitext classquickForm} - containsgenerate somequick utilitiesHTML forforms dealingon withthe wikitextfly
* - -{@link Morebits.status classsimpleWindow} - a rough-and-readywrapper statusfor messagejQuery displayer,UI usedDialog bywith thea Morebits.wikicustom look and extra classesfeatures
* - -{@link Morebits.simpleWindow classstatus} - a wrapperrough-and-ready forstatus jQuerymessage UIdisplayer, Dialogused withby athe custom look and extraMorebits.wiki featuresclasses
* - {@link Morebits.wikitext} - utilities for dealing with wikitext
* - {@link Morebits.string} - utilities for manipulating strings
* - {@link Morebits.array} - utilities for manipulating arrays
* - {@link Morebits.ip} - utilities to help process IP addresses
*
* Dependencies:
* - The whole thing relies on jQuery. But most wikis should provide this by default.
* - {@link Morebits.quickForm}, {@link Morebits.simpleWindow}, and {@link Morebits.status} rely on the "morebits.css" file for their styling.
* - {@link Morebits.simpleWindow} and {@link Morebits.quickForm} tooltips rely on jqueryjQuery UI Dialog (from ResourceLoader module name 'jquery.ui').
* - To create a gadget based on morebits.js, use this syntax in MediaWiki:Gadgets-definition:
* - `* GadgetName[ResourceLoader|dependencies=mediawiki.user,mediawiki.util,mediawiki.Title,jquery.ui]|morebits.js|morebits.css|GadgetName.js`
* - Alternatively, you can configure morebits.js as a hidden gadget in MediaWiki:Gadgets-definition:
* - `* morebits[ResourceLoader|dependencies=mediawiki.user,mediawiki.util,mediawiki.Title,jquery.ui|hidden]|morebits.js|morebits.css`
* and then load ext.gadget.morebits as one of the dependencies for the new gadget.
*
* All the stuff here works on all browsers for which MediaWiki provides JavaScript support.
*
* This library is maintained by the maintainers of Twinkle.
* For queries, suggestions, help, etc., head to [[Wikipedia talk:Twinkle]] on English Wikipedia [](http://en.wikipedia.org]/wiki/WT:TW).
* The latest development source is available at [{@link https://github.com/azatothwikimedia-gadgets/twinkle/blob/master/morebits.js]|GitHub}.
*
* @namespace Morebits
*/
 
(function() {
 
/** @lends Morebits */
(function (window, document, $) { // Wrap entire file with anonymous function
const Morebits = {};
window.Morebits = Morebits; // allow global access
 
/**
var Morebits = {};
* i18n support for strings in Morebits
window.Morebits = Morebits; // allow global access
*/
Morebits.i18n = {
parser: null,
/**
* Set an i18n library to use with Morebits.
* Examples:
* Use jquery-i18n:
* Morebits.i18n.setParser({ get: $.i18n });
* Use banana-i18n or orange-i18n:
* var banana = new Banana('en');
* Morebits.i18n.setParser({ get: banana.i18n });
*
* @param {Object} parser
*/
setParser: function(parser) {
if (!parser || typeof parser.get !== 'function') {
throw new Error('Morebits.i18n: parser must implement get()');
}
Morebits.i18n.parser = parser;
},
/**
* @private
* @return {string}
*/
getMessage: function () {
const args = Array.prototype.slice.call(arguments); // array of size `n`
// 1st arg: message name
// 2nd to (n-1)th arg: message parameters
// nth arg: legacy English fallback
const msgName = args[0];
const fallback = args[args.length - 1];
if (!Morebits.i18n.parser) {
return fallback;
}
// i18n libraries are generally invoked with variable number of arguments
// as msg(msgName, ...parameters)
const i18nMessage = Morebits.i18n.parser.get.apply(null, args.slice(0, -1));
// if no i18n message exists, i18n libraries generally give back the message name
if (i18nMessage === msgName) {
return fallback;
}
return i18nMessage;
}
};
 
// shortcut
const msg = Morebits.i18n.getMessage;
 
/**
* Wiki-specific configurations for Morebits
*/
Morebits.l10n = {
/**
* Local aliases for "redirect" magic word.
* Check using api.php?action=query&format=json&meta=siteinfo&formatversion=2&siprop=magicwords
*/
redirectTagAliases: ['#REDIRECT'],
 
/**
* Takes a string as argument and checks if it is a timestamp or not
* If not, it returns null. If yes, it returns an array of integers
* in the format [year, month, date, hour, minute, second]
* which can be passed to Date.UTC()
*
* @param {string} str
* @return {number[] | null}
*/
signatureTimestampFormat: function (str) {
// HH:mm, DD Month YYYY (UTC)
const rgx = /(\d{2}):(\d{2}), (\d{1,2}) (\w+) (\d{4}) \(UTC\)/;
const match = rgx.exec(str);
if (!match) {
return null;
}
const month = Morebits.date.localeData.months.indexOf(match[4]);
if (month === -1) {
return null;
}
// ..... year ... month .. date ... hour .... minute
return [match[5], month, match[3], match[1], match[2]];
}
};
 
/**
* Simple helper function to see what groups a user might belong.
* **************** Morebits.userIsInGroup() ****************
*
* Simple helper function to see what groups a user might belong
* @param {string} group - ege.g. `sysop`, `extendedconfirmed`, etc.
* @returnsreturn {boolean}
*/
Morebits.userIsInGroup = function (group) {
return mw.config.get('wgUserGroups').indexOfincludes(group) !== -1;
};
/**
// Used a lot
* Hardcodes whether the user is a sysop, used a lot.
*
* @type {boolean}
*/
Morebits.userIsSysop = Morebits.userIsInGroup('sysop');
 
 
 
/**
* ****************Deprecated as of February 2021, use {@link Morebits.ip.sanitizeIPv6() ****************}.
*
* JavaScript translation of the MediaWiki core function IP::sanitizeIP() in
* @deprecated Use {@link Morebits.ip.sanitizeIPv6}.
* includes/utils/IP.php.
* Converts an IPv6 address to the canonical form stored and used by MediaWiki.
* JavaScript translation of the {@link https://gerrit.wikimedia.org/r/plugins/gitiles/mediawiki/core/+/8eb6ac3e84ea3312d391ca96c12c49e3ad0753bb/includes/utils/IP.php#131|`IP::sanitizeIP()`}
* @param {string} address - The IPv6 address
* function from the IPUtils library. Addresses are verbose, uppercase,
* @returns {string}
* normalized, and expanded to 8 words.
*
* @param {string} address - The IPv6 address, with or without CIDR.
* @return {string}
*/
Morebits.sanitizeIPv6 = function (address) {
console.warn('NOTE: Morebits.sanitizeIPv6 was renamed to Morebits.ip.sanitizeIPv6 in February 2021, please use that instead'); // eslint-disable-line no-console
address = address.trim();
ifreturn Morebits.ip.sanitizeIPv6(address === '') {;
};
return null;
 
/**
* Determines whether the current page is a redirect or soft redirect. Fails
* to detect soft redirects on edit, history, etc. pages. Will attempt to
* detect Module:RfD, with the same failure points.
*
* @return {boolean}
*/
Morebits.isPageRedirect = function() {
return !!(mw.config.get('wgIsRedirect') || document.getElementById('softredirect') || $('.box-RfD').length);
};
 
/**
* Stores a normalized (underscores converted to spaces) version of the
* `wgPageName` variable.
*
* @type {string}
*/
Morebits.pageNameNorm = mw.config.get('wgPageName').replace(/_/g, ' ');
 
/**
* Create a string for use in regex matching a page name. Accounts for
* leading character's capitalization, underscores as spaces, and special
* characters being escaped. See also {@link Morebits.namespaceRegex}.
*
* @param {string} pageName - Page name without namespace.
* @return {string} - For a page name `Foo bar`, returns the string `[Ff]oo[_ ]bar`.
*/
Morebits.pageNameRegex = function(pageName) {
if (pageName === '') {
return '';
}
const firstChar = pageName[0],
if (!mw.util.isIPv6Address(address)) {
remainder = Morebits.string.escapeRegExp(pageName.slice(1));
return address; // nothing else to do for IPv4 addresses or invalid ones
if (mw.Title.phpCharToUpper(firstChar) !== firstChar.toLowerCase()) {
return '[' + mw.Title.phpCharToUpper(firstChar) + firstChar.toLowerCase() + ']' + remainder;
}
return Morebits.string.escapeRegExp(firstChar) + remainder;
// Remove any whitespaces, convert to upper case
};
address = address.toUpperCase();
 
// Expand zero abbreviations
/**
var abbrevPos = address.indexOf('::');
* Converts string or array of DOM nodes into an HTML fragment.
if (abbrevPos > -1) {
* Wikilink syntax (`[[...]]`) is transformed into HTML anchor.
// We know this is valid IPv6. Find the last index of the
* Used in Morebits.quickForm and Morebits.status
// address before any CIDR number (e.g. "a:b:c::/24").
*
var CIDRStart = address.indexOf('/');
* @internal
var addressEnd = CIDRStart > -1 ? CIDRStart - 1 : address.length - 1;
* @param {string|Node|(string|Node)[]} input
// If the '::' is at the beginning...
* @return {DocumentFragment}
var repeat, extra, pad;
*/
if (abbrevPos === 0) {
Morebits.createHtml = function(input) {
repeat = '0:';
const fragment = document.createDocumentFragment();
extra = address === '::' ? '0' : ''; // for the address '::'
if (!input) {
pad = 9; // 7+2 (due to '::')
return fragment;
// If the '::' is at the end...
}
} else if (abbrevPos === (addressEnd - 1)) {
if (!Array.isArray(input)) {
repeat = ':0';
extrainput = ''[ input ];
}
pad = 9; // 7+2 (due to '::')
for (let i = 0; i < input.length; ++i) {
// If the '::' is in the middle...
if (input[i] instanceof Node) {
fragment.appendChild(input[i]);
} else {
$.parseHTML(Morebits.createHtml.renderWikilinks(input[i])).forEach((node) => {
repeat = ':0';
fragment.appendChild(node);
extra = ':';
});
pad = 8; // 6+2 (due to '::')
}
var replacement = repeat;
pad -= address.split(':').length - 1;
for (var i = 1; i < pad; i++) {
replacement += repeat;
}
replacement += extra;
address = address.replace('::', replacement);
}
return fragment;
// Remove leading zeros from each bloc as needed
address = address.replace(/(^|:)0+([0-9A-Fa-f]{1,4})/g, '$1$2');
 
return address;
};
 
/**
 
* Converts wikilinks to HTML anchor tags.
*
* @param text
* @return {*}
*/
Morebits.createHtml.renderWikilinks = function (text) {
const ub = new Morebits.unbinder(text);
// Don't convert wikilinks within code tags as they're used for displaying wiki-code
ub.unbind('<code>', '</code>');
ub.content = ub.content.replace(
/\[\[:?(?:([^|\]]+?)\|)?([^\]|]+?)\]\]/g,
(_, target, text) => {
if (!target) {
target = text;
}
return '<a target="_blank" href="' + mw.util.getUrl(target) +
'" title="' + target.replace(/"/g, '&#34;') + '">' + text + '</a>';
});
return ub.rebind();
};
 
/**
* Create a string for use in regex matching all namespace aliases, regardless
* **************** Morebits.quickForm ****************
* of the capitalization and underscores/spaces. Doesn't include the optional
* Morebits.quickForm is a class for creation of simple and standard forms without much
* leading `:`, but if there's more than one item, wraps the list in a
* specific coding.
* non-capturing group. This means you can do `Morebits.namespaceRegex([4]) +
* ':' + Morebits.pageNameRegex('Twinkle')` to match a full page. Uses
* {@link Morebits.pageNameRegex}.
*
* @param {number[]} namespaces - Array of namespace numbers. Unused/invalid
* Index to Morebits.quickForm element types:
* namespace numbers are silently discarded.
*
* @example
* select A combo box (aka drop-down).
* // returns '(?:[Ff][Ii][Ll][Ee]|[Ii][Mm][Aa][Gg][Ee])'
* - Attributes: name, label, multiple, size, list, event, disabled
* Morebits.namespaceRegex([6])
* option An element for a combo box.
* @return {string} - Regex-suitable string of all namespace aliases.
* - Attributes: value, label, selected, disabled
* optgroup A group of "option"s.
* - Attributes: label, list
* field A fieldset (aka group box).
* - Attributes: name, label, disabled
* checkbox A checkbox. Must use "list" parameter.
* - Attributes: name, list, event
* - Attributes (within list): name, label, value, checked, disabled, event, subgroup
* radio A radio button. Must use "list" parameter.
* - Attributes: name, list, event
* - Attributes (within list): name, label, value, checked, disabled, event, subgroup
* input A text box.
* - Attributes: name, label, value, size, disabled, required, readonly, maxlength, event
* dyninput A set of text boxes with "Remove" buttons and an "Add" button.
* - Attributes: name, label, min, max, sublabel, value, size, maxlength, event
* hidden An invisible form field.
* - Attributes: name, value
* header A level 5 header.
* - Attributes: label
* div A generic placeholder element or label.
* - Attributes: name, label
* submit A submit button. Morebits.simpleWindow moves these to the footer of the dialog.
* - Attributes: name, label, disabled
* button A generic button.
* - Attributes: name, label, disabled, event
* textarea A big, multi-line text box.
* - Attributes: name, label, value, cols, rows, disabled, required, readonly
* fragment A DocumentFragment object.
* - No attributes, and no global attributes except adminonly
*
* Global attributes: id, className, style, tooltip, extra, adminonly
*/
Morebits.namespaceRegex = function(namespaces) {
if (!Array.isArray(namespaces)) {
namespaces = [namespaces];
}
const aliases = [];
let regex;
$.each(mw.config.get('wgNamespaceIds'), (name, number) => {
if (namespaces.includes(number)) {
// Namespaces are completely agnostic as to case,
// and a regex string is more useful/compatible than a RegExp object,
// so we accept any casing for any letter.
aliases.push(name.split('').map((char) => Morebits.pageNameRegex(char)).join(''));
}
});
switch (aliases.length) {
case 0:
regex = '';
break;
case 1:
regex = aliases[0];
break;
default:
regex = '(?:' + aliases.join('|') + ')';
break;
}
return regex;
};
 
/* **************** Morebits.quickForm **************** */
/**
* Creation of simple and standard forms without much specific coding.
* @constructor
*
* @param {event} event - Function to execute when form is submitted
* @namespace Morebits.quickForm
* @param {string} [eventType=submit] - Type of the event (default: submit)
* @memberof Morebits
* @class
* @param {event} event - Function to execute when form is submitted.
* @param {string} [eventType=submit] - Type of the event.
*/
Morebits.quickForm = function QuickForm(event, eventType) {
Line 163 ⟶ 306:
 
/**
* Renders the HTML output of the quickForm.
*
* @returns {HTMLElement}
* @memberof Morebits.quickForm
* @return {HTMLElement}
*/
Morebits.quickForm.prototype.render = function QuickFormRender() {
varconst ret = this.root.render();
ret.names = {};
return ret;
Line 173 ⟶ 318:
 
/**
* Append element to the form.
*
* @param {(Object|Morebits.quickForm.element)} data - a quickform element, or the object with which
* @memberof Morebits.quickForm
* @param {(object|Morebits.quickForm.element)} data - A quickform element, or the object with which
* a quickform element is constructed.
* @returnsreturn {Morebits.quickForm.element} - sameSame as what is passed to the function.
*/
Morebits.quickForm.prototype.append = function QuickFormAppend(data) {
Line 183 ⟶ 330:
 
/**
* Create a new element for the the form.
* @constructor
*
* @param {Object} data - Object representing the quickform element. See class documentation
* Index to Morebits.quickForm.element types:
* comment for available types and attributes for each.
* - Global attributes: id, className, style, tooltip, extra, $data, adminonly
* - `select`: A combo box (aka drop-down).
* - Attributes: name, label, multiple, size, list, event, disabled
* - `option`: An element for a combo box.
* - Attributes: value, label, selected, disabled
* - `optgroup`: A group of "option"s.
* - Attributes: label, list
* - `field`: A fieldset (aka group box).
* - Attributes: name, label, disabled
* - `checkbox`: A checkbox. Must use "list" parameter.
* - Attributes: name, list, event
* - Attributes (within list): name, label, value, checked, disabled, event, subgroup
* - `radio`: A radio button. Must use "list" parameter.
* - Attributes: name, list, event
* - Attributes (within list): name, label, value, checked, disabled, event, subgroup
* - `input`: A text input box.
* - Attributes: name, label, value, size, placeholder, maxlength, disabled, required, readonly, event
* - `number`: A number input box.
* - Attributes: Everything the text `input` has, as well as: min, max, step, list
* - `dyninput`: A set of text boxes with "Remove" buttons and an "Add" button.
* - Attributes: name, label, min, max, inputs, sublabel, value, size, maxlength, event
* - `hidden`: An invisible form field.
* - Attributes: name, value
* - `header`: A level 5 header.
* - Attributes: label
* - `div`: A generic placeholder element or label.
* - Attributes: name, label
* - `submit`: A submit button. Morebits.simpleWindow moves these to the footer of the dialog.
* - Attributes: name, label, disabled
* - `button`: A generic button.
* - Attributes: name, label, disabled, event
* - `textarea`: A big, multi-line text box.
* - Attributes: name, label, value, cols, rows, disabled, required, readonly
* - `fragment`: A DocumentFragment object.
* - No attributes, and no global attributes except adminonly.
* There is some difference on how types handle the `label` attribute:
* - `div`, `select`, `field`, `checkbox`/`radio`, `input`, `textarea`, `header`, and `dyninput` can accept an array of items,
* and the label item(s) can be `Element`s.
* - `option`, `optgroup`, `_dyninput_cell`, `submit`, and `button` accept only a single string.
*
* @memberof Morebits.quickForm
* @class
* @param {Object} data - Object representing the quickform element. Should
* specify one of the available types from the index above, as well as any
* relevant and available attributes.
* @example new Morebits.quickForm.element({
* name: 'target',
* type: 'input',
* label: 'Your target:',
* tooltip: 'Enter your target. Required.',
* required: true
* });
*/
Morebits.quickForm.element = function QuickFormElement(data) {
this.data = data;
this.childs = [];
this.id = Morebits.quickForm.element.id++;
};
 
/**
* @memberof Morebits.quickForm.element
* @type {number}
*/
Morebits.quickForm.element.id = 0;
 
/**
* Appends an element to current element.
*
* @param {Morebits.quickForm.element} data A quickForm element or the object required to
* create the@memberof Morebits.quickForm .element
* @returnsparam {Morebits.quickForm.element} Thedata same- A quickForm element passedor the object required into
* create the quickForm element.
* @return {Morebits.quickForm.element} The same element passed in.
*/
Morebits.quickForm.element.prototype.append = function QuickFormElementAppend(data) {
varlet child;
if (data instanceof Morebits.quickForm.element) {
child = data;
Line 213 ⟶ 417:
 
/**
* Renders the HTML output for the quickForm element. This should be called
* This should be called without parameters: `form.render()`.
*
* @returns {HTMLElement}
* @memberof Morebits.quickForm.element
* @return {HTMLElement}
*/
Morebits.quickForm.element.prototype.render = function QuickFormElementRender(internal_subgroup_id) {
varconst currentNode = this.compute(this.data, internal_subgroup_id);
 
for (varlet i = 0; i < this.childs.length; ++i) {
// do not pass internal_subgroup_id to recursive calls
currentNode[1].appendChild(this.childs[i].render());
Line 227 ⟶ 433:
};
 
/** @memberof Morebits.quickForm.element */
Morebits.quickForm.element.prototype.compute = function QuickFormElementCompute(data, in_id) {
varlet node;
varlet childContainderchildContainer = null;
varlet label;
varconst id = (in_id ? in_id + '_' : '') + 'node_' + thisMorebits.quickForm.element.id++;
if (data.adminonly && !Morebits.userIsSysop) {
// hell hack alpha
Line 237 ⟶ 444:
}
 
varlet i, current, subnode;
switch (data.type) {
case 'form':
Line 251 ⟶ 458:
// fragments can't have any attributes, so just return it straight away
return [ node, node ];
// Sometimes Twinkle uses fancy searchable "select" elements. This is powered by the third party library "select2". Activate it by creating a Morebits "select" element, then call `$('select[name=sub_group]').select2({});` or similar towards the end of your main code.
case 'select':
node = document.createElement('div');
Line 258 ⟶ 466:
label = node.appendChild(document.createElement('label'));
label.setAttribute('for', id);
label.appendChild(documentMorebits.createTextNodecreateHtml(data.label));
label.style.marginRight = '3px';
}
var select = node.appendChild(document.createElement('select'));
Line 290 ⟶ 499:
}
}
childContainderchildContainer = select;
break;
case 'option':
Line 323 ⟶ 532:
node = document.createElement('fieldset');
label = node.appendChild(document.createElement('legend'));
label.appendChild(documentMorebits.createTextNodecreateHtml(data.label));
if (data.name) {
node.setAttribute('name', data.name);
Line 336 ⟶ 545:
if (data.list) {
for (i = 0; i < data.list.length; ++i) {
varconst cur_id = id + '_' + i;
current = data.list[i];
var cur_div;
Line 370 ⟶ 579:
}
label = cur_div.appendChild(document.createElement('label'));
 
label.appendChild(document.createTextNode(current.label));
label.appendChild(Morebits.createHtml(current.label));
label.setAttribute('for', cur_id);
if (current.tooltip) {
Line 382 ⟶ 592:
var event;
if (current.subgroup) {
varlet tmpgroup = current.subgroup;
 
if (!Array.isArray(tmpgroup)) {
Line 392 ⟶ 602:
id: id + '_' + i + '_subgroup'
});
$.each(tmpgroup, function(idx, el) => {
varconst newEl = $.extend({}, el);
if (!newEl.type) {
newEl.type = data.type;
Line 401 ⟶ 611:
});
 
varconst subgroup = subgroupRaw.render(cur_id);
subgroup.className = 'quickformSubgroup';
subnode.subgroup = subgroup;
Line 410 ⟶ 620:
e.target.parentNode.appendChild(e.target.subgroup);
if (e.target.type === 'radio') {
varconst name = e.target.name;
if (e.target.form.names[name] !== undefined) {
e.target.form.names[name].parentNode.removeChild(e.target.form.names[name].subgroup);
Line 427 ⟶ 637:
event = function(e) {
if (e.target.checked) {
varconst name = e.target.name;
if (e.target.form.names[name] !== undefined) {
e.target.form.names[name].parentNode.removeChild(e.target.form.names[name].subgroup);
Line 448 ⟶ 658:
}
break;
// input is actually a text-type, so number here inherits the same stuff
case 'number':
case 'input':
node = document.createElement('div');
Line 454 ⟶ 666:
if (data.label) {
label = node.appendChild(document.createElement('label'));
label.appendChild(documentMorebits.createTextNodecreateHtml(data.label));
label.setAttribute('for', data.id || id);
label.style.marginRight = '3px';
}
 
subnode = node.appendChild(document.createElement('input'));
if (data.value) {
subnode.setAttribute('value', data.value);
}
subnode.setAttribute('name', data.name);
 
subnode.setAttribute('type', 'text');
if (data.sizetype === 'input') {
subnode.setAttribute('sizetype', data.size'text');
} else {
subnode.setAttribute('type', 'number');
if (data.disabled) {
['min', 'max', 'step', 'list'].forEach((att) => {
subnode.setAttribute('disabled', 'disabled');
if (data[att]) {
}
subnode.setAttribute(att, data[att]);
if (data.required) {
}
subnode.setAttribute('required', 'required');
});
if (data.readonly) {
subnode.setAttribute('readonly', 'readonly');
}
if (data.maxlength) {
subnode.setAttribute('maxlength', data.maxlength);
}
 
['value', 'size', 'placeholder', 'maxlength'].forEach((att) => {
if (data[att]) {
subnode.setAttribute(att, data[att]);
}
});
['disabled', 'required', 'readonly'].forEach((att) => {
if (data[att]) {
subnode.setAttribute(att, att);
}
});
if (data.event) {
subnode.addEventListener('keyup', data.event, false);
}
 
childContainder = subnode;
childContainer = subnode;
break;
case 'dyninput':
Line 491 ⟶ 708:
 
label = node.appendChild(document.createElement('h5'));
label.appendChild(documentMorebits.createTextNodecreateHtml(data.label));
 
var listNode = node.appendChild(document.createElement('div'));
 
Line 500 ⟶ 716:
disabled: min >= max,
event: function(e) {
varconst new_node = new Morebits.quickForm.element(e.target.sublist);
e.target.area.appendChild(new_node.render());
 
Line 514 ⟶ 730:
 
var sublist = {
type: '_dyninput_element_dyninput_row',
label: data.sublabel || data.label,
name: data.name,
value: data.value,
size: data.size,
remove: false,
maxlength: data.maxlength,
event: data.event,
inputs: data.inputs || [{
// compatibility
label: data.sublabel || data.label,
name: data.name,
value: data.value,
size: data.size
}]
};
 
for (i = 0; i < min; ++i) {
varconst elem = new Morebits.quickForm.element(sublist);
listNode.appendChild(elem.render());
}
Line 537 ⟶ 756:
moreButton.counter = 0;
break;
case '_dyninput_element_dyninput_row': // Private, similar to normal input
node = document.createElement('div');
 
data.inputs.forEach((subdata) => {
const cell = new Morebits.quickForm.element($.extend(subdata, { type: '_dyninput_cell' }));
node.appendChild(cell.render());
});
if (data.remove) {
const remove = this.compute({
type: 'button',
label: 'remove',
event: function(e) {
const list = e.target.listnode;
const node = e.target.inputnode;
const more = e.target.morebutton;
 
list.removeChild(node);
--more.counter;
more.removeAttribute('disabled');
e.stopPropagation();
}
});
node.appendChild(remove[0]);
const removeButton = remove[1];
removeButton.inputnode = node;
removeButton.listnode = data.listnode;
removeButton.morebutton = data.morebutton;
}
break;
case '_dyninput_cell': // Private, similar to normal input
node = document.createElement('span');
 
if (data.label) {
label = node.appendChild(document.createElement('label'));
label.appendChild(document.createTextNode(data.label));
label.setAttribute('for', id + '_input');
label.style.marginRight = '3px';
}
 
subnode = node.appendChild(document.createElement('input'));
subnode.setAttribute('id', id + '_input');
if (data.value) {
subnode.setAttribute('value', data.value);
Line 552 ⟶ 802:
subnode.setAttribute('name', data.name);
subnode.setAttribute('type', 'text');
subnode.setAttribute('data-dyninput', 'data-dyninput');
if (data.size) {
subnode.setAttribute('size', data.size);
Line 557 ⟶ 808:
if (data.maxlength) {
subnode.setAttribute('maxlength', data.maxlength);
}
if (data.required) {
subnode.setAttribute('required', 'required');
}
if (data.disabled) {
subnode.setAttribute('required', 'disabled');
}
if (data.event) {
subnode.addEventListener('keyup', data.event, false);
}
node.style.marginRight = '3px';
if (data.remove) {
var remove = this.compute({
type: 'button',
label: 'remove',
event: function(e) {
var list = e.target.listnode;
var node = e.target.inputnode;
var more = e.target.morebutton;
 
list.removeChild(node);
--more.counter;
more.removeAttribute('disabled');
e.stopPropagation();
}
});
node.appendChild(remove[0]);
var removeButton = remove[1];
removeButton.inputnode = node;
removeButton.listnode = data.listnode;
removeButton.morebutton = data.morebutton;
}
break;
case 'hidden':
Line 592 ⟶ 829:
case 'header':
node = document.createElement('h5');
node.appendChild(documentMorebits.createTextNodecreateHtml(data.label));
break;
case 'div':
Line 600 ⟶ 837:
}
if (data.label) {
const result = document.createElement('span');
if (!Array.isArray(data.label)) {
data.label = [ data.label ];
}
var result = document.createElement('span');
result.className = 'quickformDescription';
for result.appendChild(Morebits.createHtml(i = 0; i < data.label.length; ++i) {);
if (typeof data.label[i] === 'string') {
result.appendChild(document.createTextNode(data.label[i]));
} else if (data.label[i] instanceof Element) {
result.appendChild(data.label[i]);
}
}
node.appendChild(result);
}
Line 617 ⟶ 845:
case 'submit':
node = document.createElement('span');
childContainderchildContainer = node.appendChild(document.createElement('input'));
childContainderchildContainer.setAttribute('type', 'submit');
if (data.label) {
childContainderchildContainer.setAttribute('value', data.label);
}
childContainderchildContainer.setAttribute('name', data.name || 'submit');
if (data.disabled) {
childContainderchildContainer.setAttribute('disabled', 'disabled');
}
break;
case 'button':
node = document.createElement('span');
childContainderchildContainer = node.appendChild(document.createElement('input'));
childContainderchildContainer.setAttribute('type', 'button');
if (data.label) {
childContainderchildContainer.setAttribute('value', data.label);
}
childContainderchildContainer.setAttribute('name', data.name);
if (data.disabled) {
childContainderchildContainer.setAttribute('disabled', 'disabled');
}
if (data.event) {
childContainderchildContainer.addEventListener('click', data.event, false);
}
break;
Line 647 ⟶ 875:
if (data.label) {
label = node.appendChild(document.createElement('h5'));
varconst labelElement = document.createElement('label');
labelElement.textContent = appendChild(Morebits.createHtml(data.label));
labelElement.setAttribute('for', data.id || id);
label.appendChild(labelElement);
Line 672 ⟶ 900:
subnode.value = data.value;
}
childContainderchildContainer = subnode;
break;
default:
Line 678 ⟶ 906:
}
 
if (!childContainderchildContainer) {
childContainderchildContainer = node;
}
if (data.tooltip) {
Line 686 ⟶ 914:
 
if (data.extra) {
childContainderchildContainer.extra = data.extra;
}
if (data.$data) {
$(childContainer).data(data.$data);
}
if (data.style) {
childContainderchildContainer.setAttribute('style', data.style);
}
if (data.className) {
childContainderchildContainer.className = childContainderchildContainer.className ?
childContainderchildContainer.className + ' ' + data.className :
data.className;
}
childContainderchildContainer.setAttribute('id', data.id || id);
 
return [ node, childContainderchildContainer ];
};
 
/**
* Create a jquery.uijQuery UI-based tooltip.
*
* @requires jquery.ui
* @memberof Morebits.quickForm.element
* @param {HTMLElement} node - the HTML element beside which a tooltip is to be generated
* @requires jQuery.ui
* @param {Object} data - tooltip-related configuration data
* @param {HTMLElement} node - The HTML element beside which a tooltip is to be generated.
* @param {Object} data - Tooltip-related configuration data.
*/
Morebits.quickForm.element.generateTooltip = function QuickFormElementGenerateTooltip(node, data) {
varconst tooltipButton = node.appendChild(document.createElement('span'));
tooltipButton.className = 'morebits-tooltipButton';
tooltipButton.title = data.tooltip; // Provides the content for jQuery UI
tooltipButton.appendChild(document.createTextNode(msg('tooltip-mark', '?')));
$(tooltipButton).tooltip({
position: { my: 'left top', at: 'center bottom', collision: 'flipfit' },
Line 718 ⟶ 951:
});
};
 
 
// Some utility methods for manipulating quickForms after their creation:
Line 726 ⟶ 958:
* Returns an object containing all filled form data entered by the user, with the object
* keys being the form element names. Disabled fields will be ignored, but not hidden fields.
*
* @memberof Morebits.quickForm
* @param {HTMLFormElement} form
* @returnsreturn {Object} withWith field names as keys, input data as values.
*/
Morebits.quickForm.getInputData = function(form) {
varconst result = {};
 
for (varlet i = 0; i < form.elements.length; i++) {
varconst field = form.elements[i];
if (field.disabled || !field.name || !field.type ||
field.type === 'submit' || field.type === 'button') {
Line 741 ⟶ 975:
// For elements in subgroups, quickform prepends element names with
// name of the parent group followed by a period, get rid of that.
varconst fieldNameNorm = field.name.slice(field.name.indexOf('.') + 1);
 
switch (field.type) {
Line 764 ⟶ 998:
case 'text': // falls through
case 'textarea':
result[fieldNameNorm] =if (field.valuedataset.trim(dyninput); {
result[fieldNameNorm] = result[fieldNameNorm] || [];
result[fieldNameNorm].push(field.value.trim());
} else {
result[fieldNameNorm] = field.value.trim();
}
break;
default: // could be select-one, date, number, email, etc
Line 775 ⟶ 1,014:
return result;
};
 
 
/**
* Returns all form elements with a given field name or ID.
*
* @memberof Morebits.quickForm
* @param {HTMLFormElement} form
* @param {string} fieldName - theThe name or id of the fields.
* @returnsreturn {HTMLElement[]} - arrayArray of matching form elements.
*/
Morebits.quickForm.getElements = function QuickFormGetElements(form, fieldName) {
varconst $form = $(form);
fieldName = $.escapeSelector(fieldName); // sanitize input
varlet $elements = $form.find('[name="' + fieldName + '"]');
if ($elements.length > 0) {
return $elements.toArray();
Line 797 ⟶ 1,037:
* Searches the array of elements for a checkbox or radio button with a certain
* `value` attribute, and returns the first such element. Returns null if not found.
*
* @param {HTMLInputElement[]} elementArray - array of checkbox or radio elements
* @memberof Morebits.quickForm
* @param {string} value - value to search for
* @returnsparam {HTMLInputElement[]} elementArray - Array of checkbox or radio elements.
* @param {string} value - Value to search for.
* @return {HTMLInputElement}
*/
Morebits.quickForm.getCheckboxOrRadio = function QuickFormGetCheckboxOrRadio(elementArray, value) {
varconst found = $.grep(elementArray, function(el) {=> el.value === value);
return el.value === value;
});
if (found.length > 0) {
return found[0];
Line 812 ⟶ 1,052:
 
/**
* Returns the <&lt;div> containing the form element, or the form element itself
* May not work as expected on checkboxes or radios.
*
* @memberof Morebits.quickForm
* @param {HTMLElement} element
* @returnsreturn {HTMLElement}
*/
Morebits.quickForm.getElementContainer = function QuickFormGetElementContainer(element) {
Line 830 ⟶ 1,072:
/**
* Gets the HTML element that contains the label of the given form element
* (mainly for internal use).
*
* @memberof Morebits.quickForm
* @param {(HTMLElement|Morebits.quickForm.element)} element
* @returnsreturn {HTMLElement}
*/
Morebits.quickForm.getElementLabelObject = function QuickFormGetElementLabelObject(element) {
Line 851 ⟶ 1,095:
 
/**
* Gets the label text of the element.
*
* @memberof Morebits.quickForm
* @param {(HTMLElement|Morebits.quickForm.element)} element
* @returnsreturn {string}
*/
Morebits.quickForm.getElementLabel = function QuickFormGetElementLabel(element) {
varconst labelElement = Morebits.quickForm.getElementLabelObject(element);
 
if (!labelElement) {
Line 865 ⟶ 1,111:
 
/**
* Sets the label of the element to the given text.
*
* @memberof Morebits.quickForm
* @param {(HTMLElement|Morebits.quickForm.element)} element
* @param {string} labelText
* @returnsreturn {boolean} trueTrue if succeeded, false if the label element is unavailable.
*/
Morebits.quickForm.setElementLabel = function QuickFormSetElementLabel(element, labelText) {
varconst labelElement = Morebits.quickForm.getElementLabelObject(element);
 
if (!labelElement) {
Line 881 ⟶ 1,129:
 
/**
* Stores the element's current label, and temporarily sets the label to the given text.
*
* @memberof Morebits.quickForm
* @param {(HTMLElement|Morebits.quickForm.element)} element
* @param {string} temporaryLabelText
* @returnsreturn {boolean} `true` if succeeded, `false` if the label element is unavailable.
*/
Morebits.quickForm.overrideElementLabel = function QuickFormOverrideElementLabel(element, temporaryLabelText) {
Line 894 ⟶ 1,144:
 
/**
* Restores the label stored by overrideElementLabel.
*
* @memberof Morebits.quickForm
* @param {(HTMLElement|Morebits.quickForm.element)} element
* @returnsreturn {boolean} trueTrue if succeeded, false if the label element is unavailable.
*/
Morebits.quickForm.resetElementLabel = function QuickFormResetElementLabel(element) {
Line 906 ⟶ 1,158:
 
/**
* Shows or hides a form element plus its label and tooltip.
*
* @param {(HTMLElement|jQuery|string)} element HTML/jQuery element, or jQuery selector string
* @memberof Morebits.quickForm
* @param {boolean} [visibility] Skip this to toggle visibility
* @param {(HTMLElement|jQuery|string)} element - HTML/jQuery element, or jQuery selector string.
* @param {boolean} [visibility] - Skip this to toggle visibility.
*/
Morebits.quickForm.setElementVisibility = function QuickFormSetElementVisibility(element, visibility) {
Line 915 ⟶ 1,169:
 
/**
* Shows or hides the "question mark" icon (which displays the tooltip) next to a form element.
*
* @memberof Morebits.quickForm
* @param {(HTMLElement|jQuery)} element
* @param {boolean} [visibility] - Skip this to toggle visibility.
*/
Morebits.quickForm.setElementTooltipVisibility = function QuickFormSetElementTooltipVisibility(element, visibility) {
$(Morebits.quickForm.getElementContainer(element)).find('.morebits-tooltipButton').toggle(visibility);
};
 
 
 
/**
* ****************@external HTMLFormElement ****************
*/
 
/**
* Get checked items in the form.
* Returns an array containing the values of elements with the given name, that has it's
*
* checked property set to true. (i.e. a checkbox or a radiobutton is checked), or select
* @method external:HTMLFormElement.getChecked
* options that have selected set to true. (don't try to mix selects with radio/checkboxes,
* @param {string} name - Find checked property of elements (i.e. a checkbox
* please)
* or a radiobutton) with the given name, or select options that have selected
* Type is optional and can specify if either radio or checkbox (for the event
* set to true (don't try to mix selects with radio/checkboxes).
* that both checkboxes and radiobuttons have the same name.
* @param {string} [type] - Optionally specify either radio or checkbox (for
* the event that both checkboxes and radiobuttons have the same name).
* @return {string[]} - Contains the values of elements with the given name
* checked property set to true.
*/
HTMLFormElement.prototype.getChecked = function(name, type) {
varconst elements = this.elements[name];
if (!elements) {
return [];
}
varconst return_array = [];
varlet i;
if (elements instanceof HTMLSelectElement) {
varconst options = elements.options;
for (i = 0; i < options.length; ++i) {
if (options[i].selected) {
Line 980 ⟶ 1,237:
 
/**
* Does the same as {@link HTMLFormElement.getChecked|getChecked}, but with unchecked elements.
* getUnchecked:
*
* Does the same as getChecked above, but with unchecked elements.
* @method external:HTMLFormElement.getUnchecked
* @param {string} name - Find checked property of elements (i.e. a checkbox
* or a radiobutton) with the given name, or select options that have selected
* set to true (don't try to mix selects with radio/checkboxes).
* @param {string} [type] - Optionally specify either radio or checkbox (for
* the event that both checkboxes and radiobuttons have the same name).
* @return {string[]} - Contains the values of elements with the given name
* checked property set to true.
*/
 
HTMLFormElement.prototype.getUnchecked = function(name, type) {
varconst elements = this.elements[name];
if (!elements) {
return [];
}
varconst return_array = [];
varlet i;
if (elements instanceof HTMLSelectElement) {
varconst options = elements.options;
for (i = 0; i < options.length; ++i) {
if (!options[i].selected) {
Line 1,025 ⟶ 1,289:
return return_array;
};
 
 
/**
* Utilities to help process IP addresses.
* @deprecated as of September 2020, use Morebits.string.escapeRegExp or
*
* mw.util.escapeRegExp
* @namespace Morebits.ip
* @memberof Morebits
*/
Morebits.ip = {
RegExp.escape = function(text, space_fix) {
/**
if (space_fix) {
* Converts an IPv6 address to the canonical form stored and used by MediaWiki.
console.log('NOTE: RegExp.escape from Morebits was deprecated September 2020, please replace it with Morebits.string.escapeRegExp'); // eslint-disable-line no-console
* JavaScript translation of the {@link https://gerrit.wikimedia.org/r/plugins/gitiles/mediawiki/core/+/8eb6ac3e84ea3312d391ca96c12c49e3ad0753bb/includes/utils/IP.php#131|`IP::sanitizeIP()`}
return Morebits.string.escapeRegExp(text);
* function from the IPUtils library. Addresses are verbose, uppercase,
* normalized, and expanded to 8 words.
*
* @param {string} address - The IPv6 address, with or without CIDR.
* @return {string}
*/
sanitizeIPv6: function (address) {
address = address.trim();
if (address === '') {
return null;
}
if (!mw.util.isIPv6Address(address, true)) {
return address; // nothing else to do for IPv4 addresses or invalid ones
}
// Remove any whitespaces, convert to upper case
address = address.toUpperCase();
// Expand zero abbreviations
const abbrevPos = address.indexOf('::');
if (abbrevPos > -1) {
// We know this is valid IPv6. Find the last index of the
// address before any CIDR number (e.g. "a:b:c::/24").
const CIDRStart = address.indexOf('/');
const addressEnd = CIDRStart !== -1 ? CIDRStart - 1 : address.length - 1;
// If the '::' is at the beginning...
let repeat, extra, pad;
if (abbrevPos === 0) {
repeat = '0:';
extra = address === '::' ? '0' : ''; // for the address '::'
pad = 9; // 7+2 (due to '::')
// If the '::' is at the end...
} else if (abbrevPos === (addressEnd - 1)) {
repeat = ':0';
extra = '';
pad = 9; // 7+2 (due to '::')
// If the '::' is in the middle...
} else {
repeat = ':0';
extra = ':';
pad = 8; // 6+2 (due to '::')
}
let replacement = repeat;
pad -= address.split(':').length - 1;
for (let i = 1; i < pad; i++) {
replacement += repeat;
}
replacement += extra;
address = address.replace('::', replacement);
}
// Remove leading zeros from each bloc as needed
return address.replace(/(^|:)0+([0-9A-Fa-f]{1,4})/g, '$1$2');
},
 
/**
* Determine if the given IP address is a range. Just conjoins
* `mw.util.isIPAddress` with and without the `allowBlock` option.
*
* @param {string} ip
* @return {boolean} - True if given a valid IP address range, false otherwise.
*/
isRange: function (ip) {
return mw.util.isIPAddress(ip, true) && !mw.util.isIPAddress(ip);
},
 
/**
* Check that an IP range is within the CIDR limits. Most likely to be useful
* in conjunction with `wgRelevantUserName`. CIDR limits are hardcoded as /16
* for IPv4 and /32 for IPv6.
*
* @return {boolean} - True for valid ranges within the CIDR limits,
* otherwise false (ranges outside the limit, single IPs, non-IPs).
*/
validCIDR: function (ip) {
if (Morebits.ip.isRange(ip)) {
const subnet = parseInt(ip.match(/\/(\d{1,3})$/)[1], 10);
if (subnet) { // Should be redundant
if (mw.util.isIPv6Address(ip, true)) {
if (subnet >= 32) {
return true;
}
} else {
if (subnet >= 16) {
return true;
}
}
}
}
return false;
},
 
/**
* Get the /64 subnet for an IPv6 address.
*
* @param {string} ipv6 - The IPv6 address, with or without a subnet.
* @return {boolean|string} - False if not IPv6 or bigger than a 64,
* otherwise the (sanitized) /64 address.
*/
get64: function (ipv6) {
if (!ipv6 || !mw.util.isIPv6Address(ipv6, true)) {
return false;
}
const subnetMatch = ipv6.match(/\/(\d{1,3})$/);
if (subnetMatch && parseInt(subnetMatch[1], 10) < 64) {
return false;
}
ipv6 = Morebits.ip.sanitizeIPv6(ipv6);
const ip_re = /^((?:[0-9A-F]{1,4}:){4})(?:[0-9A-F]{1,4}:){3}[0-9A-F]{1,4}(?:\/\d{1,3})?$/;
// eslint-disable-next-line no-useless-concat
return ipv6.replace(ip_re, '$1' + '0:0:0:0/64');
}
console.log('NOTE: RegExp.escape from Morebits was deprecated September 2020, please replace it with mw.util.escapeRegExp'); // eslint-disable-line no-console
return mw.util.escapeRegExp(text);
};
 
 
/**
* Helper functions to manipulate strings.
* **************** String; Morebits.string ****************
*
* @namespace Morebits.string
* @memberof Morebits
*/
 
Morebits.string = {
/**
// Helper functions to change case of a string
* @param {string} str
* @return {string}
*/
toUpperCaseFirstChar: function(str) {
str = str.toString();
return str.substrslice(0, 1).toUpperCase() + str.substrslice(1);
},
/**
* @param {string} str
* @return {string}
*/
toLowerCaseFirstChar: function(str) {
str = str.toString();
return str.substrslice(0, 1).toLowerCase() + str.substrslice(1);
},
 
/**
* Gives an array of substrings of `str` - starting with `start` and
* ending with `end`, - which is not in `skiplist`. Intended for use
* on wikitext with templates or links.
*
* @param {string} str
* @param {string} start
* @param {string} end
* @param {(string[]|string)} [skiplist]
* @returnsreturn {Stringstring[]}
* @throws If the `start` and `end` strings aren't of the same length.
* @throws If `skiplist` isn't an array or string
*/
splitWeightedByKeys: function(str, start, end, skiplist) {
Line 1,069 ⟶ 1,452:
throw new Error('start marker and end marker must be of the same length');
}
varlet level = 0;
varlet initial = null;
varconst result = [];
if (!Array.isArray(skiplist)) {
if (skiplist === undefined) {
Line 1,081 ⟶ 1,464:
}
}
for (varlet i = 0; i < str.length; ++i) {
for (varlet j = 0; j < skiplist.length; ++j) {
if (str.substr(i, skiplist[j].length) === skiplist[j]) {
i += skiplist[j].length - 1;
Line 1,108 ⟶ 1,491:
 
/**
* Formats freeform "reason" (from a textarea) for deletion/other templates
* templates that are going to be substituted, (e.g. PROD, XFD, RPP).
* Handles `|` outside a nowiki tag.
* Optionally, also adds a signature if not present already.
*
* @param {string} str
* @returnsparam {stringboolean} [addSig]
* @return {string}
*/
formatReasonText: function(str, addSig) {
varlet resultreason = (str || '').toString().trim();
varconst unbinder = new Morebits.unbinder(resultreason);
// eslint-disable-next-line no-useless-concat
unbinder.unbind('<no' + 'wiki>', '</no' + 'wiki>');
unbinder.content = unbinder.content.replace(/\|/g, '{{subst:!}}');
returnreason = unbinder.rebind();
if (addSig) {
const sig = '~~~~', sigIndex = reason.lastIndexOf(sig);
if (sigIndex === -1 || sigIndex !== reason.length - sig.length) {
reason += ' ' + sig;
}
}
return reason.trim();
},
 
/**
* Formats a "reason" (from a textarea) for inclusion in a userspace log
* log. Replaces newlines with {{Pb}}, and adds an extra `#` before
* list items for proper formatting.
*
* @param {string} str
* @returnsreturn {string}
*/
formatReasonForLog: function(str) {
Line 1,136 ⟶ 1,534:
 
/**
* Like `String.prototype.replace()`, but escapes any dollar signs in the replacement string.
* the replacement string. Useful when the the replacement string is
* arbitrary, such as a username or freeform user input, and could
* and could contain dollar signs.
*
* @param {string} string - text in which to replace
* @param {string} string - Text in which to replace.
* @param {(string|RegExp)} pattern
* @param {string} replacement
* @returnsreturn {string}
*/
safeReplace: function morebitsStringSafeReplace(string, pattern, replacement) {
Line 1,149 ⟶ 1,549:
 
/**
* Determine if the user input-provided expiration will be translated toconsidered an
* infinite-length by MW:.
*
* @see {@link https://phabricator.wikimedia.org/T68646}
*
* @param {string} expiry
* @returnsreturn {boolean}
*/
isInfinity: function morebitsStringIsInfinity(expiry) {
return ['indefinite', 'infinity', 'infinite', 'never'].indexOfincludes(expiry) !== -1;
},
 
/**
* Escapes a string to be used in a RegExp, replacing spaces and
* underscores with `[ _ ]` as they are often equivalent.
*
* Replaced RegExp.escape September 2020
* @param {string} text - stringString to be escaped.
* @returnsreturn {string} - theThe escaped text.
*/
escapeRegExp: function(text) {
Line 1,169 ⟶ 1,572:
}
};
 
 
/**
* Helper functions to manipulate arrays.
* **************** Morebits.array ****************
*
* @namespace Morebits.array
* @memberof Morebits
*/
 
Morebits.array = {
/**
* Remove duplicated items from an array.
* @returns {Array} a copy of the array with duplicates removed
*
* @param {Array} arr
* @return {Array} A copy of the array with duplicates removed.
* @throws When provided a non-array.
*/
uniq: function(arr) {
if (!Array.isArray(arr)) {
throw new Error('A non-array object passed to Morebits.array.uniq');
}
return arr.filter(function(item, idx) {=> arr.indexOf(item) === idx);
return arr.indexOf(item) === idx;
});
},
 
/**
* Remove non-duplicated items from an array.
* @returns {Array} a copy of the array with the first instance of each value
*
* removed; subsequent instances of those values (duplicates) remain
* @param {Array} arr
* @return {Array} A copy of the array with the first instance of each value
* removed; subsequent instances of those values (duplicates) remain.
* @throws When provided a non-array.
*/
dups: function(arr) {
if (!Array.isArray(arr)) {
throw new Error('A non-array object passed to Morebits.array.dups');
}
return arr.filter(function(item, idx) {=> arr.indexOf(item) !== idx);
return arr.indexOf(item) !== idx;
});
},
 
 
/**
* Break up an array into smaller arrays.
*
* @param {Array} arr
* @param {number} size - Size of each chunk (except the last, which could be different).
* @returnsreturn {Array[]} anAn array ofcontaining thesethe smaller, chunked arrays.
* @throws When provided a non-array.
*/
chunk: function(arr, size) {
if (!Array.isArray(arr)) {
throw new Error('A non-array object passed to Morebits.array.chunk');
}
if (typeof size !== 'number' || size <= 0) { // pretty impossible to do anything :)
return [ arr ]; // we return an array consisting of this array.
}
varconst numChunks = Math.ceil(arr.length / size);
varconst result = new Array(numChunks);
for (varlet i = 0; i < numChunks; i++) {
result[i] = arr.slice(i * size, (i + 1) * size);
}
Line 1,225 ⟶ 1,634:
 
/**
* Utilities to enhance select2 menus. See twinklewarn, twinklexfd,
* ************ Morebits.select2 ***************
* twinkleblock for sample usages.
* Utilities to enhance select2 menus
*
* See twinklewarn, twinklexfd, twinkleblock for sample usages
* @see {@link https://select2.org/}
*
* @namespace Morebits.select2
* @memberof Morebits
* @requires jQuery.select2
*/
Morebits.select2 = {
 
matchers: {
/**
* Custom matcher in which if the optgroup name matches, all options in that
* group are shown, like in jquery.chosen.
*/
optgroupFull: function(params, data) {
varconst originalMatcher = $.fn.select2.defaults.defaults.matcher;
varconst result = originalMatcher(params, data);
 
if (result && params.term &&
data.text.toUpperCase().indexOfincludes(params.term.toUpperCase()) !== -1) {
result.children = data.children;
}
Line 1,247 ⟶ 1,660:
},
 
/** Custom matcher that matches from the beginning of words only. */
wordBeginning: function(params, data) {
varconst originalMatcher = $.fn.select2.defaults.defaults.matcher;
varconst result = originalMatcher(params, data);
if (!params.term || (result &&
new RegExp('\\b' + mw.util.escapeRegExp(params.term), 'i').test(result.text))) {
Line 1,259 ⟶ 1,672:
},
 
/** Underline matched part of options. */
highlightSearchMatches: function(data) {
varconst searchTerm = Morebits.select2SearchQuery;
if (!searchTerm || data.loading) {
return data.text;
}
varconst idx = data.text.toUpperCase().indexOf(searchTerm.toUpperCase());
if (idx < 0) {
return data.text;
Line 1,277 ⟶ 1,690:
},
 
/** Intercept query as it is happening, for use in highlightSearchMatches. */
queryInterceptor: function(params) {
Morebits.select2SearchQuery = params && params.term;
Line 1,283 ⟶ 1,696:
 
/**
* Open dropdown and begin search when the `.select2-selection` has
* focus and a key is pressed.
*
* https://github.com/select2/select2/issues/3279#issuecomment-442524147
* @see {@link https://github.com/select2/select2/issues/3279#issuecomment-442524147}
*/
autoStart: function(ev) {
Line 1,290 ⟶ 1,705:
return;
}
varlet $target = $(ev.target).closest('.select2-container');
if (!$target.length) {
return;
}
$target = $target.prev();
$target.select2('open');
varconst search = $target.data('select2').dropdown.$search ||
$target.data('select2').selection.$search;
// Use DOM .focus() to work around a jQuery 3.6.0 regression (https://github.com/select2/select2/issues/5993)
search.focus();
search[0].focus();
}
 
};
 
 
/**
* Temporarily hide a part of a string while processing the rest of it.
* **************** Morebits.pageNameNorm ****************
* Used by {@link Morebits.wikitext.page#commentOutImage|Morebits.wikitext.page.commentOutImage}.
* Stores a normalized version of the wgPageName variable (underscores converted to spaces).
* For queen/king/whatever and country!
*/
Morebits.pageNameNorm = mw.config.get('wgPageName').replace(/_/g, ' ');
 
 
/**
* *************** Morebits.pageNameRegex *****************
* For a page name 'Foo bar', returns the string '[Ff]oo bar'
* @param {string} pageName - page name without namespace
* @returns {string}
*/
Morebits.pageNameRegex = function(pageName) {
return '[' + pageName[0].toUpperCase() + pageName[0].toLowerCase() + ']' + pageName.slice(1);
};
 
 
/**
* **************** Morebits.unbinder ****************
* Used for temporarily hiding a part of a string while processing the rest of it.
*
* eg. var u = new Morebits.unbinder("Hello world <!-- world --> world");
* u.unbind('<!--','-->');
* u.content = u.content.replace(/world/g, 'earth');
* u.rebind(); // gives "Hello earth <!-- world --> earth"
*
* Text within the 'unbinded' part (in this case, the HTML comment) remains intact
* unbind() can be called multiple times to unbind multiple parts of the string.
*
* Used by@memberof Morebits.wikitext.page.commentOutImage
*/ @class
* @param {string} string - The initial text to process.
 
* @example var u = new Morebits.unbinder('Hello world <!-- world --> world');
/**
* u.unbind('<!--', '-->'); // text inside comment remains intact
* @constructor
* u.content = u.content.replace(/world/g, 'earth');
* @param {string} string
* u.rebind(); // gives 'Hello earth <!-- world --> earth'
*/
Morebits.unbinder = function Unbinder(string) {
Line 1,346 ⟶ 1,735:
throw new Error('not a string');
}
/** The text being processed. */
this.content = string;
this.counter = 0;
Line 1,355 ⟶ 1,745:
Morebits.unbinder.prototype = {
/**
* Hide the region encapsulated by the `prefix` and `postfix` from
* string processing. `prefix` and `postfix` will be used in a
* RegExp, so items that need escaping should be use `\\`.
*
* @param {string} prefix
* @param {string} postfix
* @throws If either `prefix` or `postfix` is missing.
*/
unbind: function UnbinderUnbind(prefix, postfix) {
varif re = new RegExp(!prefix +|| '([\\s\\S]*?!postfix)' + postfix, 'g');{
throw new Error('Both prefix and postfix must be provided');
}
const re = new RegExp(prefix + '([\\s\\S]*?)' + postfix, 'g');
this.content = this.content.replace(re, Morebits.unbinder.getCallback(this));
},
 
/**
/** @returns {string} The output */
* Restore the hidden portion of the `content` string.
*
* @return {string} The processed output.
*/
rebind: function UnbinderRebind() {
varlet content = this.content;
content.self = this;
for (varconst current in this.history) {
if (Object.prototype.hasOwnProperty.call(this.history, current)) {
content = content.replace(current, this.history[current]);
Line 1,380 ⟶ 1,782:
history: null // {}
};
/** @memberof Morebits.unbinder */
 
Morebits.unbinder.getCallback = function UnbinderGetCallback(self) {
return function UnbinderCallback(match) {
varconst current = self.prefix + self.counter + self.postfix;
self.history[current] = match;
++self.counter;
Line 1,390 ⟶ 1,792:
};
 
/* **************** Morebits.date **************** */
 
 
/**
* Create a date object with enhanced processing capabilities, a la
* **************** Morebits.date ****************
* {@link https://momentjs.com/|moment.js}. MediaWiki timestamp format is also
*/
* acceptable, in addition to everything that JS Date() accepts.
 
/* *
* @memberof Morebits
* @constructor
* @class
* Create a date object. MediaWiki timestamp format is also acceptable,
* in addition to everything that JS Date() accepts.
*/
Morebits.date = function() {
varconst args = Array.prototype.slice.call(arguments);
 
// Check MediaWiki formats
if (typeof args[0] === 'string') {
// Must be first since firefox erroneously accepts the timestamp
// Attempt to remove a comma and paren-wrapped timezone, to get MediaWiki timestamps to parse
// format, sans timezone (See also: #921, #936, #1174, #1187), and the
// Firefox (at least in 75) seems to be okay with the comma, though
// 14-digit string will be interpreted differently.
args[0] = args[0].replace(/(\d\d:\d\d),/, '$1').replace(/\(UTC\)/, 'UTC');
if (args.length === 1) {
const param = args[0];
if (/^\d{14}$/.test(param)) {
// YYYYMMDDHHmmss
const digitMatch = /(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})/.exec(param);
if (digitMatch) {
// ..... year ... month .. date ... hour .... minute ..... second
this.privateDate = new Date(Date.UTC.apply(null, [digitMatch[1], digitMatch[2] - 1, digitMatch[3], digitMatch[4], digitMatch[5], digitMatch[6]]));
}
} else if (typeof param === 'string') {
// Wikitext signature timestamp
const dateParts = Morebits.l10n.signatureTimestampFormat(param);
if (dateParts) {
this.privateDate = new Date(Date.UTC.apply(null, dateParts));
}
}
}
 
if (!this.privateDate) {
// Try standard date
this.privateDate = new (Function.prototype.bind.apply(Date, [Date].concat(args)))();
}
 
// Still no?
if (!this.isValid()) {
mw.log.warn('Invalid Morebits.date initialisation:', args);
}
this._d = new (Function.prototype.bind.apply(Date, [Date].concat(args)));
};
 
/**
* Localized strings for date processing.
*
* @memberof Morebits.date
* @type {object.<string, string>}
* @property {string[]} months
* @property {string[]} monthsShort
* @property {string[]} days
* @property {string[]} daysShort
* @property {object.<string, string>} relativeTimes
* @private
*/
Morebits.date.localeData = {
// message names here correspond to MediaWiki message names
months: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
months: [msg('january', 'January'), msg('february', 'February'), msg('march', 'March'),
monthsShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
days: ['Sunday', msg('Mondayapril', 'TuesdayApril'), msg('Wednesdaymay_long', 'ThursdayMay'), msg('Fridayjune', 'SaturdayJune']),
daysShort: ['Sun', msg('Monjuly', 'TueJuly'), msg('Wedaugust', 'ThuAugust'), msg('Friseptember', 'SatSeptember']),
msg('october', 'October'), msg('november', 'November'), msg('december', 'December')],
monthsShort: [msg('jan', 'Jan'), msg('feb', 'Feb'), msg('mar', 'Mar'),
msg('apr', 'Apr'), msg('may', 'May'), msg('jun', 'Jun'),
msg('jul', 'Jul'), msg('aug', 'Aug'), msg('sep', 'Sep'),
msg('oct', 'Oct'), msg('nov', 'Nov'), msg('dec', 'Dec')],
days: [msg('sunday', 'Sunday'), msg('monday', 'Monday'), msg('tuesday', 'Tuesday'),
msg('wednesday', 'Wednesday'), msg('thursday', 'Thursday'), msg('friday', 'Friday'),
msg('saturday', 'Saturday')],
daysShort: [msg('sun', 'Sun'), msg('mon', 'Mon'), msg('tue', 'Tue'),
msg('wed', 'Wed'), msg('thu', 'Thu'), msg('fri', 'Fri'),
msg('sat', 'Sat')],
 
relativeTimes: {
thisDay: msg('relative-today', '[Today at] h:mm A'),
prevDay: msg('relative-prevday', '[Yesterday at] h:mm A'),
nextDay: msg('relative-nextday', '[Tomorrow at] h:mm A'),
thisWeek: msg('relative-thisweek', 'dddd [at] h:mm A'),
pastWeek: msg('relative-pastweek', '[Last] dddd [at] h:mm A'),
other: msg('relative-other', 'YYYY-MM-DD')
}
};
 
/**
// Allow native Date.prototype methods to be used on Morebits.date objects
* Map units with getter/setter function names, for `add` and `subtract`
Object.getOwnPropertyNames(Date.prototype).forEach(function(func) {
* methods.
Morebits.date.prototype[func] = function() {
*
return this._d[func].apply(this._d, Array.prototype.slice.call(arguments));
* @memberof Morebits.date
};
* @type {object.<string, string>}
});
* @property {string} seconds
 
* @property {string} minutes
$.extend(Morebits.date.prototype, {
* @property {string} hours
* @property {string} days
* @property {string} weeks
* @property {string} months
* @property {string} years
*/
Morebits.date.unitMap = {
seconds: 'Seconds',
minutes: 'Minutes',
hours: 'Hours',
days: 'Date',
weeks: 'Week', // Not a function but handled in `add` through cunning use of multiplication
months: 'Month',
years: 'FullYear'
};
 
Morebits.date.prototype = {
/** @return {boolean} */
isValid: function() {
return !isNaN(this.getTime());
},
 
/**
/** @param {(Date|Morebits.date)} date */
* @param {(Date|Morebits.date)} date
* @return {boolean}
*/
isBefore: function(date) {
return this.getTime() < date.getTime();
},
/**
* @param {(Date|Morebits.date)} date
* @return {boolean}
*/
isAfter: function(date) {
return this.getTime() > date.getTime();
Line 1,452 ⟶ 1,925:
return Morebits.date.localeData.months[this.getUTCMonth()];
},
/** @return {string} */
getUTCMonthNameAbbrev: function() {
return Morebits.date.localeData.monthsShort[this.getUTCMonth()];
},
/** @return {string} */
getMonthName: function() {
return Morebits.date.localeData.months[this.getMonth()];
},
/** @return {string} */
getMonthNameAbbrev: function() {
return Morebits.date.localeData.monthsShort[this.getMonth()];
},
/** @return {string} */
getUTCDayName: function() {
return Morebits.date.localeData.days[this.getUTCDay()];
},
/** @return {string} */
getUTCDayNameAbbrev: function() {
return Morebits.date.localeData.daysShort[this.getUTCDay()];
},
/** @return {string} */
getDayName: function() {
return Morebits.date.localeData.days[this.getDay()];
},
/** @return {string} */
getDayNameAbbrev: function() {
return Morebits.date.localeData.daysShort[this.getDay()];
Line 1,475 ⟶ 1,955:
 
/**
* Add a given number of minutes, hours, days, weeks, months, or years to the date.
* This is done in-place. The modified date object is also returned, allowing chaining.
*
* @param {number} number - should be an integer
* @param {number} number - Should be an integer.
* @param {string} unit
* @throws {Error} ifIf invalid or unsupported unit is given.
* @returnsreturn {Morebits.date}
*/
add: function(number, unit) {
let num = parseInt(number, 10); // normalize
// mapping time units with getter/setter function names
varif unitMap =(isNaN(num)) {
throw new Error('Invalid number "' + number + '" provided.');
seconds: 'Seconds',
}
minutes: 'Minutes',
unit = unit.toLowerCase(); // normalize
hours: 'Hours',
const unitMap = Morebits.date.unitMap;
days: 'Date',
let unitNorm = unitMap[unit] || unitMap[unit + 's']; // so that both singular and plural forms work
months: 'Month',
years: 'FullYear'
};
var unitNorm = unitMap[unit] || unitMap[unit + 's']; // so that both singular and plural forms work
if (unitNorm) {
// No built-in week functions, so rather than build out ISO's getWeek/setWeek, just multiply
this['set' + unitNorm](this['get' + unitNorm]() + number);
// Probably can't be used for Julian->Gregorian changeovers, etc.
if (unitNorm === 'Week') {
unitNorm = 'Date';
num *= 7;
}
this['set' + unitNorm](this['get' + unitNorm]() + num);
return this;
}
Line 1,501 ⟶ 1,985:
 
/**
* Subtracts a given number of minutes, hours, days, weeks, months, or years to the date.
* This is done in-place. The modified date object is also returned, allowing chaining.
*
* @param {number} number - should be an integer
* @param {number} number - Should be an integer.
* @param {string} unit
* @throws {Error} ifIf invalid or unsupported unit is given.
* @returnsreturn {Morebits.date}
*/
subtract: function(number, unit) {
Line 1,513 ⟶ 1,998:
 
/**
* FormatsFormat the date into a string per the given format string.
* Replacement syntax is a subset of that in moment.js.:
*
* @param {string} formatstr
* | Syntax | Output |
* @param {(string|number)} [zone=system] - 'system' (for browser-default time zone),
* |--------|--------|
* 'utc' (for UTC), or specify a time zone as number of minutes past UTC.
* | H | Hours (24-hour) |
* @returns {string}
* | HH | Hours (24-hour, padded to 2 digits) |
* | h | Hours (12-hour) |
* | hh | Hours (12-hour, padded to 2 digits) |
* | A | AM or PM |
* | m | Minutes |
* | mm | Minutes (padded to 2 digits) |
* | s | Seconds |
* | ss | Seconds (padded to 2 digits) |
* | SSS | Milliseconds fragment, 3 digits |
* | d | Day number of the week (Sun=0) |
* | ddd | Abbreviated day name |
* | dddd | Full day name |
* | D | Date |
* | DD | Date (padded to 2 digits) |
* | M | Month number (1-indexed) |
* | MM | Month number (1-indexed, padded to 2 digits) |
* | MMM | Abbreviated month name |
* | MMMM | Full month name |
* | Y | Year |
* | YY | Final two digits of year (20 for 2020, 42 for 1942) |
* | YYYY | Year (same as `Y`) |
*
* @param {string} formatstr - Format the date into a string, using
* the replacement syntax. Use `[` and `]` to escape items. If not
* provided, will return the ISO-8601-formatted string.
* @param {(string|number)} [zone=system] - `system` (for browser-default time zone),
* `utc`, or specify a time zone as number of minutes relative to UTC.
* @return {string}
*/
format: function(formatstr, zone) {
if (!this.isValid()) {
var udate = this;
return 'Invalid date'; // Put the truth out, preferable to "NaNNaNNan NaN:NaN" or whatever
}
let udate = this;
// create a new date object that will contain the date to display as system time
if (zone === 'utc') {
Line 1,530 ⟶ 2,046:
}
 
// default to ISOString
var pad = function(num) {
if (!formatstr) {
return num < 10 ? '0' + num : num;
return udate.toISOString();
}
 
const pad = function(num, len) {
len = len || 2; // Up to length of 00 + 1
return ('00' + num).toString().slice(0 - len);
};
varconst h24 = udate.getHours(), m = udate.getMinutes(), s = udate.getSeconds(), ms = udate.getMilliseconds();
varconst D = udate.getDate(), M = udate.getMonth() + 1, Y = udate.getFullYear();
varconst h12 = h24 % 12 || 12, amOrPm = h24 >= 12 ? msg('period-pm', 'PM') : msg('period-am', 'AM');
varconst replacementMap = {
'HH': pad(h24), 'H': h24, 'hh': pad(h12), 'h': h12, 'A': amOrPm,
'mm': pad(m), 'm': m,
'ss': pad(s), 's': s,
'SSS: pad(ms, 3),
dddd': udate.getDayName(), 'ddd': udate.getDayNameAbbrev(), 'd': udate.getDay(),
'DD': pad(D), 'D': D,
'MMMM': udate.getMonthName(), 'MMM': udate.getMonthNameAbbrev(), 'MM': pad(M), 'M': M,
'YYYY': Y, 'YY': pad(Y % 100), 'Y': Y
};
 
varconst unbinder = new Morebits.unbinder(formatstr); // escape stuff between [...]
unbinder.unbind('\\[', '\\]');
unbinder.content = unbinder.content.replace(
Line 1,553 ⟶ 2,076:
* Y{1,2}(Y{2})? matches exactly 1, 2 or 4 occurrences of 'Y'
*/
/H{1,2}|h{1,2}|m{1,2}|s{1,2}|SSS|d(d{2,3})?|D{1,2}|M{1,4}|Y{1,2}(Y{2})?|A/g,
function(match) {=> replacementMap[match]
return replacementMap[match];
}
);
return unbinder.rebind().replace(/\[(.*?)\]/g, '$1');
Line 1,563 ⟶ 2,084:
/**
* Gives a readable relative time string such as "Yesterday at 6:43 PM" or "Last Thursday at 11:45 AM".
* Similar to `calendar` in moment.js, but with time zone support.
*
* @param {(string|number)} [zone=system] - 'system' (for browser-default time zone),
* 'utc' (for UTC), or specify a time zone as number of minutes past UTC.
* @returnsreturn {string}
*/
calendar: function(zone) {
// Zero out the hours, minutes, seconds and milliseconds - keeping only the date;
// find the difference. Note that setHours() returns the same thing as getTime().
varconst dateDiff = (new Date().setHours(0, 0, 0, 0) -
new Date(this).setHours(0, 0, 0, 0)) / 8.64e7;
switch (true) {
Line 1,590 ⟶ 2,112:
 
/**
* @returnsGet {RegExp}a regular expression that matches wikitext section titles, such as ==December 2019== or
* as `==December 2019==` or `=== Jan 2018 ===`.
*
* @return {RegExp}
*/
monthHeaderRegex: function() {
return new RegExp('^(==+)\\s*(?:' + this.getUTCMonthName() + '|' + this.getUTCMonthNameAbbrev() +
')\\s+' + this.getUTCFullYear() + '\\s*==+\\1', 'mg');
},
 
/**
* Creates a wikitext section header with the month and year.
*
* @param {number} [level=2] - Header level (default 2)
* @param {number} [level=2] - Header level. Pass 0 for just the text
* @returns {string}
* with no wikitext markers (==).
* @return {string}
*/
monthHeader: function(level) {
// Default to 2, but allow for 0 or stringy numbers
level = level || 2;
level = parseInt(level, 10);
var header = Array(level + 1).join('='); // String.prototype.repeat not supported in IE 11
level = isNaN(level) ? 2 : level;
return header + ' ' + this.getUTCMonthName() + ' ' + this.getUTCFullYear() + ' ' + header;
 
const header = '='.repeat(level);
const text = this.getUTCMonthName() + ' ' + this.getUTCFullYear();
 
if (header.length) { // wikitext-formatted header
return header + ' ' + text + ' ' + header;
}
return text; // Just the string
 
}
 
};
 
// Allow native Date.prototype methods to be used on Morebits.date objects
Object.getOwnPropertyNames(Date.prototype).forEach((func) => {
Morebits.date.prototype[func] = function() {
return this.privateDate[func].apply(this.privateDate, Array.prototype.slice.call(arguments));
};
});
 
/* **************** Morebits.wiki **************** */
 
/**
* Various objects for wiki editing and API access, including
* **************** Morebits.wiki ****************
* {@link Morebits.wiki.api} and {@link Morebits.wiki.page}.
* Various objects for wiki editing and API access
*
* @namespace Morebits.wiki
* @memberof Morebits
*/
Morebits.wiki = {};
 
/**
* @deprecated in favor of Morebits.isPageRedirect as of November 2020
* Determines whether the current page is a redirect or soft redirect
* @memberof Morebits.wiki
* (fails to detect soft redirects on edit, history, etc. pages)
* @returnsreturn {boolean}
*/
Morebits.wiki.isPageRedirect = function wikipediaIsPageRedirect() {
console.warn('NOTE: Morebits.wiki.isPageRedirect has been deprecated, use Morebits.isPageRedirect instead.'); // eslint-disable-line no-console
return !!(mw.config.get('wgIsRedirect') || document.getElementById('softredirect'));
return Morebits.isPageRedirect();
};
 
/* **************** Morebits.wiki.actionCompleted **************** */
 
/**
* @memberof Morebits.wiki
* @type {number}
*/
Morebits.wiki.numberOfActionsLeft = 0;
/**
* @memberof Morebits.wiki
* @type {number}
*/
Morebits.wiki.nbrOfCheckpointsLeft = 0;
 
/**
* Display message and/or redirect to page upon completion of tasks.
* **************** Morebits.wiki.actionCompleted ****************
*
* Every call Use ofto Morebits.wiki.actionCompletedapi.post(): results in the dispatch of an
* asynchronous callback. Each callback can in turn make an additional call to
* Every call to Morebits.wiki.api.post() results in the dispatch of
* Morebits.wiki.api.post() to continue a processing sequence. At the
* an asynchronous callback. Each callback can in turn
* conclusion of the final callback of a processing sequence, it is not
* make an additional call to Morebits.wiki.api.post() to continue a
* possible to simply return to the original caller because there is no call
* processing sequence. At the conclusion of the final callback
* stack leading back to the original context. Instead,
* of a processing sequence, it is not possible to simply return to the
* Morebits.wiki.actionCompleted.event() is called to display the result to
* original caller because there is no call stack leading back to
* the user and to perform an optional page redirect.
* the original context. Instead, Morebits.wiki.actionCompleted.event() is
* called to display the result to the user and to perform an optional
* page redirect.
*
* The determination of when to call Morebits.wiki.actionCompleted.event() is
* is managed through the globals Morebits.wiki.numberOfActionsLeft and
* Morebits.wiki.nbrOfCheckpointsLeft. Morebits.wiki.numberOfActionsLeft is
* incremented at the start of every Morebits.wiki.api call and decremented
* after the completion of a callback function. If a callback function does
* does not create a new Morebits.wiki.api object before exiting, it is the final
* final step in the processing chain and Morebits.wiki.actionCompleted.event() will
* will then be called.
*
* Optionally, callers may use Morebits.wiki.addCheckpoint() to indicate that
* processing is not complete upon the conclusion of the final callback function.
* function. This is used for batch operations. The end of a batch is signaled by calling
* signaled by calling Morebits.wiki.removeCheckpoint().
*
* @memberof Morebits.wiki
*/
 
Morebits.wiki.numberOfActionsLeft = 0;
Morebits.wiki.nbrOfCheckpointsLeft = 0;
 
Morebits.wiki.actionCompleted = function(self) {
if (--Morebits.wiki.numberOfActionsLeft <= 0 && Morebits.wiki.nbrOfCheckpointsLeft <= 0) {
Line 1,668 ⟶ 2,220:
 
// Change per action wanted
/** @memberof Morebits.wiki */
Morebits.wiki.actionCompleted.event = function() {
if (Morebits.wiki.actionCompleted.notice) {
Line 1,680 ⟶ 2,233:
}
}
window.setTimeout(function() => {
window.___location = Morebits.wiki.actionCompleted.redirect;
}, Morebits.wiki.actionCompleted.timeOut);
Line 1,686 ⟶ 2,239:
};
 
/** @memberof Morebits.wiki */
Morebits.wiki.actionCompleted.timeOut = typeof window.wpActionCompletedTimeOut === 'undefined' ? 5000 : window.wpActionCompletedTimeOut;
/** @memberof Morebits.wiki */
Morebits.wiki.actionCompleted.redirect = null;
/** @memberof Morebits.wiki */
Morebits.wiki.actionCompleted.notice = null;
 
/** @memberof Morebits.wiki */
Morebits.wiki.addCheckpoint = function() {
++Morebits.wiki.nbrOfCheckpointsLeft;
};
 
/** @memberof Morebits.wiki */
Morebits.wiki.removeCheckpoint = function() {
if (--Morebits.wiki.nbrOfCheckpointsLeft <= 0 && Morebits.wiki.numberOfActionsLeft <= 0) {
Line 1,700 ⟶ 2,258:
};
 
/* **************** Morebits.wiki.api **************** */
/**
* An easy way to talk to the MediaWiki API. Accepts either json or xml
* **************** Morebits.wiki.api ****************
* (default) formats; if json is selected, will default to `formatversion=2`
* An easy way to talk to the MediaWiki API.
* unless otherwise specified. Similarly, enforces newer `errorformat`s,
*/
* defaulting to `html` if unspecified. `uselang` enforced to the wiki's
 
* content language.
/**
*
* In new code, the use of the last 3 parameters should be avoided, instead use setStatusElement() to bind the
* In new code, the use of the last 3 parameters should be avoided, instead
* status element (if needed) and use .then() or .catch() on the promise returned by post(), rather than specify
* use {@link Morebits.wiki.api#setStatusElement|setStatusElement()} to bind
* the onSuccess or onFailure callbacks.
* the status element (if needed) and use `.then()` or `.catch()` on the
* @constructor
* promise returned by `post()`, rather than specify the `onSuccess` or
* @param {string} currentAction - The current action (required)
* `onFailure` callbacks.
* @param {Object} query - The query (required)
*
* @param {Function} [onSuccess] - The function to call when request gotten
* @memberof Morebits.wiki
* @param {Morebits.status} [statusElement] - A Morebits.status object to use for status messages (optional)
* @class
* @param {Function} [onError] - The function to call if an error occurs (optional)
* @param {string} currentAction - The current action (required).
* @param {Object} query - The query (required).
* @param {Function} [onSuccess] - The function to call when request is successful.
* @param {Morebits.status} [statusElement] - A Morebits.status object to use for status messages.
* @param {Function} [onError] - The function to call if an error occurs.
*/
Morebits.wiki.api = function(currentAction, query, onSuccess, statusElement, onError) {
Line 1,720 ⟶ 2,284:
this.query = query;
this.query.assert = 'user';
// Enforce newer error formats, preferring html
if (!query.errorformat || !['wikitext', 'plaintext'].includes(query.errorformat)) {
this.query.errorformat = 'html';
}
// Explicitly use the wiki's content language to minimize confusion,
// see #1179 for discussion
this.query.uselang = 'content';
this.query.errorlang = 'uselang';
this.query.errorsuselocal = 1;
 
this.onSuccess = onSuccess;
this.onError = onError;
Line 1,727 ⟶ 2,301:
this.statelem = new Morebits.status(currentAction);
}
// JSON is used throughout Morebits/Twinkle, but xml remains the default for backwards compatibility
if (!query.format) {
this.query.format = 'xml';
} else if (query.format === 'json' && !query.formatversion) {
this.query.formatversion = '2';
} else if (!['xml', 'json'].indexOfincludes(query.format) === -1) {
this.statelem.error('Invalid API format: only xml and json are supported.');
}
 
// Ignore tags for queries and most common unsupported actions, produces warnings
if (query.action && ['query', 'review', 'stabilize', 'pagetriageaction', 'watch'].indexOfincludes(query.action) !== -1) {
delete query.tags;
} else if (!query.tags && morebitsWikiChangeTag) {
Line 1,747 ⟶ 2,322:
onSuccess: null,
onError: null,
parent: window, // use global context if there is no parent object
query: null,
response: null,
responseXML: null, // use `response` instead; retained for backwards compatibility
statelem: null, // this non-standard name kept for backwards compatibility
statusText: null, // result received from the API, normally "success" or "error"
errorCode: null, // short text error code, if any, as documented in the MediaWiki API
Line 1,758 ⟶ 2,333:
 
/**
* Keep track of parent object for callbacks.
*
* @param {*} parent
*/
setParent: function(parent) {
this.parent = parent;
Line 1,772 ⟶ 2,348:
 
/**
* CarriesCarry out the request.
*
* @param {Object} callerAjaxParameters Do not specify a parameter unless you really
* @param {Object} callerAjaxParameters - Do not specify a parameter unless you really
* really want to give jQuery some extra parameters
* really want to give jQuery some extra parameters.
* @returns {promise} - a jQuery promise object that is resolved or rejected with the api object.
* @return {jQuery.Promise} - A jQuery promise object that is resolved or rejected with the api object.
*/
post: function(callerAjaxParameters) {
Line 1,781 ⟶ 2,358:
++Morebits.wiki.numberOfActionsLeft;
 
varconst queryString = $.map(this.query, function(val, i) => {
if (Array.isArray(val)) {
return encodeURIComponent(i) + '=' + val.map(encodeURIComponent).join('|');
Line 1,790 ⟶ 2,367:
// token should always be the last item in the query string (bug TW-B-0013)
 
varconst ajaxparams = $.extend({}, {
context: this,
type: this.query.action === 'query' ? 'GET' : 'POST',
Line 1,806 ⟶ 2,383:
this.statusText = statusText;
this.response = this.responseXML = response;
// Limit to first error
if (this.query.format === 'json') {
this.errorCode = response.errorerrors && response.errorerrors[0].code;
if (this.query.errorformat === 'html') {
this.errorText = response.error && response.error.info;
this.errorText = response.errors && response.errors[0].html;
} else if (this.query.errorformat === 'wikitext' || this.query.errorformat === 'plaintext') {
this.errorText = response.errors && response.errors[0].text;
}
} else {
this.errorCode = $(response).find('errors error').eq(0).attr('code');
// Sufficient for html, wikitext, or plaintext errorformats
this.errorText = $(response).find('error').attr('info');
this.errorText = $(response).find('errors error').eq(0).text();
}
 
Line 1,825 ⟶ 2,408:
this.onSuccess.call(this.parent, this);
} else {
this.statelem.info(msg('done', 'done'));
}
 
Line 1,837 ⟶ 2,420:
this.statusText = statusText;
this.errorThrown = errorThrown; // frequently undefined
this.errorText = msg('api-error', statusText, jqXHR.statusText, statusText + ' "' + jqXHR.statusText + '" occurred while contacting the API.');
return this.returnError();
}
Line 1,846 ⟶ 2,429:
returnError: function(callerAjaxParameters) {
if (this.errorCode === 'badtoken' && !this.badtokenRetry) {
this.statelem.warn(msg('invalid-token-retrying', 'Invalid token. Getting a new token and retrying...'));
this.badtokenRetry = true;
// Get a new CSRF token and retry. If the original action needs a different
// type of action than CSRF, we do one pointless retry before bailing out
return Morebits.wiki.api.getToken().then(function(token) => {
this.query.token = token;
return this.post(callerAjaxParameters);
Line 1,892 ⟶ 2,475:
};
 
/** Retrieves wikitext from a page. Caching enabled, duration 1 day. */
// Custom user agent header, used by WMF for server-side logging
Morebits.wiki.getCachedJson = function(title) {
// See https://lists.wikimedia.org/pipermail/mediawiki-api-announce/2014-November/000075.html
const query = {
action: 'query',
prop: 'revisions',
titles: title,
rvslots: '*',
rvprop: 'content',
format: 'json',
smaxage: '86400', // cache for 1 day
maxage: '86400' // cache for 1 day
};
return new Morebits.wiki.api('', query).post().then((apiobj) => {
apiobj.getStatusElement().unlink();
const response = apiobj.getResponse();
const wikitext = response.query.pages[0].revisions[0].slots.main.content;
return JSON.parse(wikitext);
});
};
 
var morebitsWikiApiUserAgent = 'morebits.js ([[w:WT:TW]])';
 
/**
* SetsSet the custom user agent header, which is used for server-side logging.
* Note that doing so will set the useragent for every `Morebits.wiki.api`
* @param {string} ua User agent
* process performed thereafter.
*
* @see {@link https://lists.wikimedia.org/pipermail/mediawiki-api-announce/2014-November/000075.html}
* for original announcement.
*
* @memberof Morebits.wiki.api
* @param {string} [ua=morebits.js ([[w:WT:TW]])] - User agent. The default
* value of `morebits.js ([[w:WT:TW]])` will be appended to any provided
* value.
*/
Morebits.wiki.api.setApiUserAgent = function(ua) {
Line 1,904 ⟶ 2,513:
};
 
/**
// Default change/revision tag applied to Morebits actions when no other tags are specified
* Change/revision tag applied to Morebits actions when no other tags are specified.
// Off by default per [[Special:Permalink/970618849#Adding tags to Twinkle edits and actions]]
* Unused by default per {@link https://en.wikipedia.org/w/index.php?oldid=970618849#Adding_tags_to_Twinkle_edits_and_actions|EnWiki consensus}.
*
* @constant
* @memberof Morebits.wiki.api
* @type {string}
*/
var morebitsWikiChangeTag = '';
 
/**
 
/* * Get a new CSRF token on encountering token errors */.
*
* @memberof Morebits.wiki.api
* @return {string} MediaWiki CSRF token.
*/
Morebits.wiki.api.getToken = function() {
varconst tokenApi = new Morebits.wiki.api(msg('getting-token', 'Getting token'), {
action: 'query',
meta: 'tokens',
type: 'csrf',
format: 'json'
});
return tokenApi.post().then(function(apiobj) {
return $(apiobj.responseXML).find('tokens').attr('csrftoken');
});
return tokenApi.post().then((apiobj) => apiobj.response.query.tokens.csrftoken);
};
 
/* **************** Morebits.wiki.page **************** */
 
/**
* Use the MediaWiki API to load a page and optionally edit it, move it, etc.
* **************** Morebits.wiki.page ****************
* Uses the MediaWiki API to load a page and optionally edit it, move it, etc.
*
* Callers are not permitted to directly access the properties of this class!
* All property access is through the appropriate get___() or set___() method.
*
* Callers should set {@link Morebits.wiki.actionCompleted.notice} and {@link Morebits.wiki.actionCompleted.redirect}
* before the first call to {@link Morebits.wiki.page.load()}.
*
* Each of the callback functions takes one parameter, which is a
Line 1,937 ⟶ 2,554:
*
*
* Call sequence for common operations (optional final user callbacks not shown):
* HIGHLIGHTS:
*
* Constructor: Morebits.wiki.page(pageName, currentAction)
* pageName - the name of the page, prefixed by the namespace (if any)
* (for the current page, use mw.config.get('wgPageName'))
* currentAction - a string describing the action about to be undertaken (optional)
*
* onSuccess and onFailure are callback functions called when the operation is a success or failure
* if enclosed in [brackets], it indicates that it is optional
*
* load(onSuccess, [onFailure]): Loads the text for the page
*
* getPageText(): returns a string containing the text of the page after a successful load()
*
* save([onSuccess], [onFailure]): Saves the text set via setPageText() for the page.
* Must be preceded by calling load().
* Warning: Calling save() can result in additional calls to the previous load() callbacks to
* recover from edit conflicts!
* In this case, callers must make the same edit to the new pageText and reinvoke save().
* This behavior can be disabled with setMaxConflictRetries(0).
*
* append([onSuccess], [onFailure]): Adds the text provided via setAppendText() to the end of
* the page. Does not require calling load() first.
*
* prepend([onSuccess], [onFailure]): Adds the text provided via setPrependText() to the start
* of the page. Does not require calling load() first.
*
* move([onSuccess], [onFailure]): Moves a page to another title
*
* patrol(): Patrols a page; ignores errors
*
* triage(): Marks page as reviewed using PageTriage, which implies patrolled; ignores most errors
*
* deletePage([onSuccess], [onFailure]): Deletes a page (for admins only)
*
* undeletePage([onSuccess], [onFailure]): Undeletes a page (for admins only)
*
* protect([onSuccess], [onFailure]): Protects a page
*
* getPageName(): returns a string containing the name of the loaded page, including the namespace
*
* setPageText(pageText) sets the updated page text that will be saved when save() is called
*
* setAppendText(appendText) sets the text that will be appended to the page when append() is called
*
* setPrependText(prependText) sets the text that will be prepended to the page when prepend() is called
*
* - Edit current contents of a page (no edit conflict):
* setCallbackParameters(callbackParameters)
* `.load(userTextEditCallback) -> ctx.loadApi.post() ->
* callbackParameters - an object for use in a callback function
* ctx.loadApi.post.success() -> ctx.fnLoadSuccess() -> userTextEditCallback() ->
* .save() -> ctx.saveApi.post() -> ctx.loadApi.post.success() -> ctx.fnSaveSuccess()`
*
* - Edit current contents of a page (with edit conflict):
* getCallbackParameters(): returns the object previous set by setCallbackParameters()
* `.load(userTextEditCallback) -> ctx.loadApi.post() ->
* ctx.loadApi.post.success() -> ctx.fnLoadSuccess() -> userTextEditCallback() ->
* .save() -> ctx.saveApi.post() -> ctx.loadApi.post.success() ->
* ctx.fnSaveError() -> ctx.loadApi.post() -> ctx.loadApi.post.success() ->
* ctx.fnLoadSuccess() -> userTextEditCallback() -> .save() ->
* ctx.saveApi.post() -> ctx.loadApi.post.success() -> ctx.fnSaveSuccess()`
*
* - Append to a page (similar for prepend and newSection):
* Callback notes: callbackParameters is for use by the caller only. The parameters
* `.append() -> ctx.loadApi.post() -> ctx.loadApi.post.success() ->
* allow a caller to pass the proper context into its callback function.
* ctx.fnLoadSuccess() -> ctx.fnAutoSave() -> .save() -> ctx.saveApi.post() ->
* Callers must ensure that any changes to the callbackParameters object
* ctx.loadApi.post.success() -> ctx.fnSaveSuccess()`
* within a load() callback still permit a proper re-entry into the
* load() callback if an edit conflict is detected upon calling save().
*
* Notes:
* getStatusElement(): returns the Status element created by the constructor
* 1. All functions following Morebits.wiki.api.post() are invoked asynchronously from the jQuery AJAX library.
*
* 2. The sequence for append/prepend/newSection could be slightly shortened,
* exists(): returns true if the page existed on the wiki when it was last loaded
* but it would require significant duplication of code for little benefit.
*
* getCurrentID(): returns a string containing the current revision ID of the page
*
* lookupCreation(onSuccess): Retrieves the username and timestamp of page creation
* onSuccess - callback function which is called when the username and timestamp
* are found within the callback.
* The username can be retrieved using the getCreator() function;
* the timestamp can be retrieved using the getCreationTimestamp() function
*
* getCreator(): returns the user who created the page following lookupCreation()
*
* getCreationTimestamp(): returns an ISOString timestamp of page creation following lookupCreation()
*
* @memberof Morebits.wiki
* @class
* @param {string} pageName - The name of the page, prefixed by the namespace (if any).
* For the current page, use `mw.config.get('wgPageName')`.
* @param {string|Morebits.status} [status] - A string describing the action about to be undertaken,
* or a Morebits.status object
*/
Morebits.wiki.page = function(pageName, status) {
 
if (!status) {
/**
status = msg('opening-page', pageName, 'Opening page "' + pageName + '"');
* Call sequence for common operations (optional final user callbacks not shown):
*
* Edit current contents of a page (no edit conflict):
* .load(userTextEditCallback) -> ctx.loadApi.post() -> ctx.loadApi.post.success() ->
* ctx.fnLoadSuccess() -> userTextEditCallback() -> .save() ->
* ctx.saveApi.post() -> ctx.loadApi.post.success() -> ctx.fnSaveSuccess()
*
* Edit current contents of a page (with edit conflict):
* .load(userTextEditCallback) -> ctx.loadApi.post() -> ctx.loadApi.post.success() ->
* ctx.fnLoadSuccess() -> userTextEditCallback() -> .save() ->
* ctx.saveApi.post() -> ctx.loadApi.post.success() -> ctx.fnSaveError() ->
* ctx.loadApi.post() -> ctx.loadApi.post.success() ->
* ctx.fnLoadSuccess() -> userTextEditCallback() -> .save() ->
* ctx.saveApi.post() -> ctx.loadApi.post.success() -> ctx.fnSaveSuccess()
*
* Append to a page (similar for prepend):
* .append() -> ctx.loadApi.post() -> ctx.loadApi.post.success() ->
* ctx.fnLoadSuccess() -> ctx.fnAutoSave() -> .save() ->
* ctx.saveApi.post() -> ctx.loadApi.post.success() -> ctx.fnSaveSuccess()
*
* Notes:
* 1. All functions following Morebits.wiki.api.post() are invoked asynchronously
* from the jQuery AJAX library.
* 2. The sequence for append/prepend could be slightly shortened, but it would require
* significant duplication of code for little benefit.
*/
 
/**
* @constructor
* @param {string} pageName The name of the page, prefixed by the namespace (if any)
* For the current page, use mw.config.get('wgPageName')
* @param {string} [currentAction] A string describing the action about to be undertaken (optional)
*/
Morebits.wiki.page = function(pageName, currentAction) {
 
if (!currentAction) {
currentAction = 'Opening page "' + pageName + '"';
}
 
/**
* Private context variables.
*
* This context is not visible to the outside, thus all the data here
* must be accessed via getter and setter functions.
*
* @private
*/
varconst ctx = {
// backing fields for public properties
pageName: pageName,
Line 2,065 ⟶ 2,606:
editSummary: null,
changeTags: null,
testActions: null, // array if any valid actions
callbackParameters: null,
statusElement: status instanceof Morebits.status ? status : new Morebits.status(currentActionstatus),
 
// - edit
pageText: null,
editMode: 'all', // save() replaces entire contents of the page by default
appendText: null, // can't reuse pageText for this because pageText is needed to follow a redirect
prependText: null, // can't reuse pageText for this because pageText is needed to follow a redirect
newSectionText: null,
newSectionTitle: null,
createOption: null,
minorEdit: false,
Line 2,082 ⟶ 2,626:
followCrossNsRedirect: true,
watchlistOption: 'nochange',
watchlistExpiry: null,
creator: null,
timestamp: null,
Line 2,098 ⟶ 2,643:
protectMove: null,
protectCreate: null,
protectCascade: falsenull,
 
// - delete
deleteTalkPage: false,
 
// - undelete
undeleteTalkPage: false,
 
// - creation lookup
Line 2,112 ⟶ 2,663:
lastEditTime: null,
pageID: null,
contentModel: null,
revertCurID: null,
revertUser: null,
watched: false,
fullyProtected: false,
suppressProtectWarning: false,
Line 2,125 ⟶ 2,678:
onSaveFailure: null,
onLookupCreationSuccess: null,
onLookupCreationFailure: null,
onMoveSuccess: null,
onMoveFailure: null,
Line 2,146 ⟶ 2,700:
patrolProcessApi: null,
triageApi: null,
triageProcessListApi: null,
triageProcessApi: null,
deleteApi: null,
Line 2,157 ⟶ 2,712:
};
 
varconst emptyFunction = function() { };
 
/**
* Loads the text for the page.
*
* @param {Function} onSuccess - callback function which is called when the load has succeeded
* @param {Function} [onFailure]onSuccess - callbackCallback function which is called when the load failshas (optional)succeeded.
* @param {Function} [onFailure] - Callback function which is called when the load fails.
*/
this.load = function(onSuccess, onFailure) {
Line 2,178 ⟶ 2,734:
action: 'query',
prop: 'info|revisions',
inprop: 'watched',
intestactions: 'edit', // can be expanded
curtimestamp: '',
meta: 'tokens',
type: 'csrf',
titles: ctx.pageName,
format: 'json'
// don't need rvlimit=1 because we don't need rvstartid here and only one actual rev is returned by default
};
 
if (ctx.editMode === 'all') {
ctx.loadQuery.rvprop = 'content|timestamp'; // get the page content at the same time, if needed
} else if (ctx.editMode === 'revert') {
ctx.loadQuery.rvprop = 'timestamp';
Line 2,194 ⟶ 2,753:
 
if (ctx.followRedirect) {
ctx.loadQuery.redirects = ''; // follow all redirects
}
if (typeof ctx.pageSection === 'number') {
Line 2,200 ⟶ 2,759:
}
if (Morebits.userIsSysop) {
ctx.loadQuery.inprop += '|protection';
}
 
ctx.loadApi = new Morebits.wiki.api(msg('retrieving-page', 'Retrieving page...'), ctx.loadQuery, fnLoadSuccess, ctx.statusElement, ctx.onLoadFailure);
ctx.loadApi.setParent(this);
ctx.loadApi.post();
Line 2,209 ⟶ 2,768:
 
/**
* Saves the text for the page to Wikipedia.
* Must be preceded by successfully calling `load()`.
*
* Warning: Calling `save()` can result in additional calls to the previous load() callbacks
* previous `load()` callbacks to recover from edit conflicts! In this
* In this case, callers must make the same edit to the new pageText and reinvoke save().
* re-invoke `save()`. This behavior can be disabled with
* `setMaxConflictRetries(0)`.
*
* @param {Function} [onSuccess] - callback function which is called when the save has
* @param {Function} [onSuccess] - Callback function which is called when the save has succeeded.
* succeeded (optional)
* @param {Function} [onFailure] - callbackCallback function which is called when the save fails.
* (optional)
*/
this.save = function(onSuccess, onFailure) {
Line 2,226 ⟶ 2,785:
 
// are we getting our editing token from mw.user.tokens?
varconst canUseMwUserToken = fnCanUseMwUserToken('edit');
 
if (!ctx.pageLoaded && !canUseMwUserToken) {
Line 2,234 ⟶ 2,793:
}
if (!ctx.editSummary) {
// new section mode allows (nay, encourages) using the
ctx.statusElement.error('Internal error: edit summary not set before save!');
// title as the edit summary, but the query needs
ctx.onSaveFailure(this);
// editSummary to be undefined or '', not null
return;
if (ctx.editMode === 'new' && ctx.newSectionTitle) {
ctx.editSummary = '';
} else {
ctx.statusElement.error('Internal error: edit summary not set before save!');
ctx.onSaveFailure(this);
return;
}
}
 
// shouldn't happen if canUseMwUserToken === true
if (ctx.fullyProtected && !ctx.suppressProtectWarning &&
!confirm(
!confirm('You are about to make an edit to the fully protected page "' + ctx.pageName +
( ctx.fullyProtected === 'infinity' ? '" (protected indefinitely)' : '" (protection expiring ' + new Morebits.date(ctx.fullyProtected).calendar('utc') + ' (UTC))') +
msg('protected-indef-edit-warning', ctx.pageName,
'. \n\nClick OK to proceed with the edit, or Cancel to skip this edit.')) {
'You are about to make an edit to the fully protected page "' + ctx.pageName + '" (protected indefinitely). \n\nClick OK to proceed with the edit, or Cancel to skip this edit.'
ctx.statusElement.error('Edit to fully protected page was aborted.');
) :
msg('protected-edit-warning', ctx.pageName, ctx.fullyProtected,
'You are about to make an edit to the fully protected page "' + ctx.pageName +
'" (protection expiring ' + new Morebits.date(ctx.fullyProtected).calendar('utc') + ' (UTC)). \n\nClick OK to proceed with the edit, or Cancel to skip this edit.'
)
)
) {
ctx.statusElement.error(msg('protected-aborted', 'Edit to fully protected page was aborted.'));
ctx.onSaveFailure(this);
return;
Line 2,251 ⟶ 2,825:
ctx.retries = 0;
 
varconst query = {
action: 'edit',
title: ctx.pageName,
summary: ctx.editSummary,
token: canUseMwUserToken ? mw.user.tokens.get('csrfToken') : ctx.csrfToken,
watchlist: ctx.watchlistOption,
format: 'json'
};
 
if (ctx.changeTags) {
query.tags = ctx.changeTags;
}
 
if (fnApplyWatchlistExpiry()) {
query.watchlistexpiry = ctx.watchlistExpiry;
}
 
Line 2,271 ⟶ 2,849:
query.minor = true;
} else {
query.notminor = true; // force Twinkle config to override user preference setting for "all edits are minor"
}
 
// Set bot edit attribute. If this paramterparameter is present with any value, it is interpreted as true
if (ctx.botEdit) {
query.bot = true;
Line 2,286 ⟶ 2,864:
return;
}
query.appendtext = ctx.appendText; // use mode to append to current page contents
break;
case 'prepend':
Line 2,294 ⟶ 2,872:
return;
}
query.prependtext = ctx.prependText; // use mode to prepend to current page contents
break;
case 'new':
if (!ctx.newSectionText) { // API doesn't allow empty new section text
ctx.statusElement.error('Internal error: new section text not set before save!');
ctx.onSaveFailure(this);
return;
}
query.section = 'new';
query.text = ctx.newSectionText; // add a new section to current page
query.sectiontitle = ctx.newSectionTitle || ctx.editSummary; // done by the API, but non-'' values would get treated as text
break;
case 'revert':
Line 2,313 ⟶ 2,901:
}
 
if (['recreate', 'createonly', 'nocreate'].indexOfincludes(ctx.createOption) !== -1) {
query[ctx.createOption] = '';
}
Line 2,321 ⟶ 2,909:
}
 
ctx.saveApi = new Morebits.wiki.api(msg('saving-page', 'Saving page...'), query, fnSaveSuccess, ctx.statusElement, fnSaveError);
ctx.saveApi.setParent(this);
ctx.saveApi.post();
Line 2,327 ⟶ 2,915:
 
/**
* Adds the text provided via `setAppendText()` to the end of the page.
* page. Does not require calling `load()` first., unless a watchlist
* expiry is used.
* @param {Function} [onSuccess] - callback function which is called when the method has succeeded (optional)
*
* @param {Function} [onFailure] - callback function which is called when the method fails (optional)
* @param {Function} [onSuccess] - Callback function which is called when the method has succeeded.
* @param {Function} [onFailure] - Callback function which is called when the method fails.
*/
this.append = function(onSuccess, onFailure) {
Line 2,345 ⟶ 2,935:
 
/**
* Adds the text provided via `setPrependText()` to the start of the page.
* page. Does not require calling `load()` first., unless a watchlist
* expiry is used.
* @param {Function} [onSuccess] - callback function which is called when the method has succeeded (optional)
*
* @param {Function} [onFailure] - callback function which is called when the method fails (optional)
* @param {Function} [onSuccess] - Callback function which is called when the method has succeeded.
* @param {Function} [onFailure] - Callback function which is called when the method fails.
*/
this.prepend = function(onSuccess, onFailure) {
Line 2,362 ⟶ 2,954:
};
 
/**
/** @returns {string} string containing the name of the loaded page, including the namespace */
* Creates a new section with the text provided by `setNewSectionText()`
* and section title from `setNewSectionTitle()`.
* If `editSummary` is provided, that will be used instead of the
* autogenerated "->Title (new section" edit summary.
* Does not require calling `load()` first, unless a watchlist expiry
* is used.
*
* @param {Function} [onSuccess] - Callback function which is called when the method has succeeded.
* @param {Function} [onFailure] - Callback function which is called when the method fails.
*/
this.newSection = function(onSuccess, onFailure) {
ctx.editMode = 'new';
 
if (fnCanUseMwUserToken('edit')) {
this.save(onSuccess, onFailure);
} else {
ctx.onSaveSuccess = onSuccess;
ctx.onSaveFailure = onFailure || emptyFunction;
this.load(fnAutoSave, ctx.onSaveFailure);
}
};
 
/** @return {string} The name of the loaded page, including the namespace */
this.getPageName = function() {
return ctx.pageName;
};
 
/** @returnsreturn {string} string containing theThe text of the page after a successful load() */
this.getPageText = function() {
return ctx.pageText;
};
 
/** @param {string} pageText - updatedUpdated page text that will be saved when `save()` is called */
this.setPageText = function(pageText) {
ctx.editMode = 'all';
Line 2,378 ⟶ 2,993:
};
 
/** @param {string} appendText - textText that will be appended to the page when `append()` is called */
this.setAppendText = function(appendText) {
ctx.editMode = 'append';
Line 2,384 ⟶ 2,999:
};
 
/** @param {string} prependText - textText that will be prepended to the page when `prepend()` is called */
this.setPrependText = function(prependText) {
ctx.editMode = 'prepend';
Line 2,390 ⟶ 3,005:
};
 
/** @param {string} newSectionText - Text that will be added in a new section on the page when `newSection()` is called */
this.setNewSectionText = function(newSectionText) {
ctx.editMode = 'new';
ctx.newSectionText = newSectionText;
};
 
/**
* @param {string} newSectionTitle - Title for the new section created when `newSection()` is called
* If missing, `ctx.editSummary` will be used. Issues may occur if a substituted template is used.
*/
this.setNewSectionTitle = function(newSectionTitle) {
ctx.editMode = 'new';
ctx.newSectionTitle = newSectionTitle;
};
 
// Edit-related setter methods:
/**
/** @param {string} summary - text of the edit summary that will be used when save() is called */
* Set the edit summary that will be used when `save()` is called.
* Unnecessary if editMode is 'new' and newSectionTitle is provided.
*
* @param {string} summary
*/
this.setEditSummary = function(summary) {
ctx.editSummary = summary;
Line 2,399 ⟶ 3,032:
 
/**
* Set any custom tag(s) to be applied to the API action.
* A number of actions don't support it, most notably watch, review,
* and stabilize ({@link https://phabricator.wikimedia.org/T247721|T247721}), and pagetriageaction (T252980)
* pagetriageaction ({@link https://phabricator.wikimedia.org/T252980|T252980}).
*
* @param {string|string[]} tags - String or array of tag(s).
*/
this.setChangeTags = function(tags) {
ctx.changeTags = tags;
};
 
 
/**
* @param {string} [createOption=null] - canCan take the following four values:
* - `recreate` -: create the page if it does not exist, or edit it if it exists.
* - `createonly` -: create the page if it does not exist, but return an error if it
* error if it already exists.
* - `nocreate` -: don't create the page, only edit it if it already exists.
* - `null -`: create the page if it does not exist, unless it was deleted in the moment
* in the moment between loading the page and saving the edit (default).
*
*/
this.setCreateOption = function(createOption) {
Line 2,424 ⟶ 3,056:
};
 
/** @param {boolean} minorEdit - setSet true to mark the edit as a minor edit. */
this.setMinorEdit = function(minorEdit) {
ctx.minorEdit = minorEdit;
};
 
/** @param {boolean} botEdit - setSet true to mark the edit as a bot edit */
this.setBotEdit = function(botEdit) {
ctx.botEdit = botEdit;
Line 2,435 ⟶ 3,067:
 
/**
* @param {number} pageSection - integerInteger specifying the section number to load or save.
* If specified as `null`, the entire page will be retrieved.
*/
Line 2,443 ⟶ 3,075:
 
/**
* @param {number} maxConflictRetries - numberNumber of retries for save errors involving an edit conflict or
* loss of token. Default: 2.
*/
this.setMaxConflictRetries = function(maxConflictRetries) {
Line 2,451 ⟶ 3,083:
 
/**
* @param {number} maxRetries - numberNumber of retries for save errors not involving an edit conflict or
* loss of token. Default: 2.
*/
this.setMaxRetries = function(maxRetries) {
Line 2,459 ⟶ 3,091:
 
/**
* Set whether and how to watch the page, including setting an expiry.
* @param {boolean} watchlistOption
*
* True - page will be added to the user's watchlist when save() is called
* @param {boolean|string|Morebits.date|Date} [watchlistOption=false] -
* False - watchlist status of the page will not be changed (default)
* Basically a mix of MW API and Twinkley options available pre-expiry:
* - `true`|`'yes'`|`'watch'`: page will be added to the user's
* watchlist when the action is called. Defaults to an indefinite
* watch unless `watchlistExpiry` is provided.
* - `false`|`'no'`|`'nochange'`: watchlist status of the page (including expiry) will not be changed.
* - `'default'`|`'preferences'`: watchlist status of the page will be
* set based on the user's preference settings when the action is
* called. Defaults to an indefinite watch unless `watchlistExpiry` is
* provided.
* - `'unwatch'`: explicitly unwatch the page.
* - Any other `string` or `number`, or a `Morebits.date` or `Date`
* object: watch page until the specified time, deferring to
* `watchlistExpiry` if provided.
* @param {string|number|Morebits.date|Date} [watchlistExpiry=infinity] -
* A date-like string or number, or a date object. If a string or number,
* can be relative (2 weeks) or other similarly date-like (i.e. NOT "potato"):
* ISO 8601: 2038-01-09T03:14:07Z
* MediaWiki: 20380109031407
* UNIX: 2147483647
* SQL: 2038-01-09 03:14:07
* Can also be `infinity` or infinity-like (`infinite`, `indefinite`, and `never`).
* See {@link https://phabricator.wikimedia.org/source/mediawiki-libs-Timestamp/browse/master/src/ConvertibleTimestamp.php;4e53b859a9580c55958078f46dd4f3a44d0fcaa0$57-109?as=source&blame=off}
*/
this.setWatchlist = function(watchlistOption, watchlistExpiry) {
if (watchlistOption instanceof Morebits.date || watchlistOption instanceof Date) {
ctx.watchlistOption = 'watch'watchlistOption.toISOString();
} else {
if (typeof watchlistExpiry === 'undefined') {
ctx.watchlistOption = 'nochange';
watchlistExpiry = 'infinity';
} else if (watchlistExpiry instanceof Morebits.date || watchlistExpiry instanceof Date) {
watchlistExpiry = watchlistExpiry.toISOString();
}
 
switch (watchlistOption) {
case 'nochange':
case 'no':
case false:
case undefined:
ctx.watchlistOption = 'nochange';
// The MW API allows for changing expiry with nochange (as "nochange" refers to the binary status),
// but by keeping this null it will default to any existing expiry, ensure there is actually "no change."
ctx.watchlistExpiry = null;
break;
case 'unwatch':
// expiry unimportant
ctx.watchlistOption = 'unwatch';
break;
case 'preferences':
case 'default':
ctx.watchlistOption = 'preferences';
// The API allows an expiry here, but there is as of yet (T265716)
// no expiry preference option, so it's a bit devoid of context.
ctx.watchlistExpiry = watchlistExpiry;
break;
case 'watch':
case 'yes':
case true:
ctx.watchlistOption = 'watch';
ctx.watchlistExpiry = watchlistExpiry;
break;
default: // Not really a "default" per se but catches "any other string"
ctx.watchlistOption = 'watch';
ctx.watchlistExpiry = watchlistOption;
break;
}
};
 
/**
* Set a watchlist expiry. setWatchlist can mostly handle this by
* itself, so this is here largely for completeness and compatibility
* with the full suite of options.
*
* @param {string|number|Morebits.date|Date} [watchlistExpiry=infinity] -
* A date-like string or number, or a date object. If a string or number,
* can be relative (2 weeks) or other similarly date-like (i.e. NOT "potato"):
* ISO 8601: 2038-01-09T03:14:07Z
* MediaWiki: 20380109031407
* UNIX: 2147483647
* SQL: 2038-01-09 03:14:07
* Can also be `infinity` or infinity-like (`infinite`, `indefinite`, and `never`).
* See {@link https://phabricator.wikimedia.org/source/mediawiki-libs-Timestamp/browse/master/src/ConvertibleTimestamp.php;4e53b859a9580c55958078f46dd4f3a44d0fcaa0$57-109?as=source&blame=off}
*/
this.setWatchlistExpiry = function(watchlistExpiry) {
if (typeof watchlistExpiry === 'undefined') {
watchlistExpiry = 'infinity';
} else if (watchlistExpiry instanceof Morebits.date || watchlistExpiry instanceof Date) {
watchlistExpiry = watchlistExpiry.toISOString();
}
ctx.watchlistExpiry = watchlistExpiry;
};
 
/**
* @deprecated As of December 2020, use setWatchlist.
* @param {boolean} watchlistOption
* @param {boolean} [watchlistOption=false] -
* True - page watchlist status will be set based on the user's
* - `True`: page watchlist status will be set based on the user's
* preference settings when save() is called.
* preference settings when `save()` is called.
* False - watchlist status of the page will not be changed (default)
* - `False`: watchlist status of the page will not be changed.
*
* Watchlist notes:
* 1. The MediaWiki API value of 'unwatch', which explicitly removes the page from the
* the page from the user's watchlist, is not used.
* 2. If both `setWatchlist()` and `setWatchlistFromPreferences()` are called,
* called, the last call takes priority.
* 3. Twinkle modules should use the appropriate preference to set the watchlist options.
* 4. Most Twinkle modules use `setWatchlist()`. `setWatchlistFromPreferences()`
* setWatchlistFromPreferences() is only needed for the few Twinkle watchlist preferences that
* that accept a string value of '`default'`.
*/
this.setWatchlistFromPreferences = function(watchlistOption) {
console.warn('NOTE: Morebits.wiki.page.setWatchlistFromPreferences was deprecated December 2020, please use setWatchlist'); // eslint-disable-line no-console
if (watchlistOption) {
ctx.watchlistOption = 'preferences';
Line 2,496 ⟶ 3,212:
 
/**
* @param {boolean} [followRedirect=false] -
* - `true -`: a maximum of one redirect will be followed. In the event
* In the event of a redirect, a message is displayed to the user and the redirect
* the redirect target can be retrieved with getPageName().
* - `false -`: (default) the requested pageName will be used without regard to any redirect.
* @param {boolean} [followCrossNsRedirect=true] - Not applicable if `followRedirect` is not set true.
* redirect.
* - `true`: (default) follow redirect even if it is a cross-namespace redirect
* @param {boolean} followCrossNsRedirect
* - `false`: don't follow redirect if it is cross-namespace, edit the redirect itself.
* Not applicable if followRedirect is not set true.
* true - (default) follow redirect even if it is a cross-namespace redirect
* false - don't follow redirect if it is cross-namespace, edit the redirect itself
*/
this.setFollowRedirect = function(followRedirect, followCrossNsRedirect) {
Line 2,518 ⟶ 3,232:
// lookup-creation setter function
/**
* @param {boolean} flag - ifIf set true, the author and timestamp of the first non-redirect
* the first non-redirect version of the page is retrieved.
*
* Warning:
* 1. If there are no revisions among the first 50 that are
* non-redirects, or if there are less 50 revisions and all are
* less 50 revisions and all are redirects, the original creation is retrivedretrieved.
* 2. Revisions that the user is not privileged to access
* (revdeled/suppressed) will be treated as non-redirects.
* as non-redirects.
* 3. Must not be used when the page has a non-wikitext contentmodel
* such as Modulespace Lua or user JavaScript/CSS.
*/
this.setLookupNonRedirectCreator = function(flag) {
Line 2,556 ⟶ 3,271:
// Protect-related setter functions
/**
* @param {string} level - The right required for the specific action
* e.g. autoconfirmed, sysop, templateeditor, extendedconfirmed
* (enWiki-only).
* @param {string} [expiry=infinity]
*/
Line 2,578 ⟶ 3,294:
this.suppressProtectWarning = function() {
ctx.suppressProtectWarning = true;
};
 
// Delete-related setter
/** @param {boolean} flag */
this.setDeleteTalkPage = function (flag) {
ctx.deleteTalkPage = !!flag;
};
 
// Undelete-related setter
/** @param {boolean} flag */
this.setUndeleteTalkPage = function (flag) {
ctx.undeleteTalkPage = !!flag;
};
 
Line 2,585 ⟶ 3,313:
};
 
/** @returnsreturn {string} string containing theThe current revision ID of the page */
this.getCurrentID = function() {
return ctx.revertCurID;
};
 
/** @returnsreturn {string} lastLast editor of the page */
this.getRevisionUser = function() {
return ctx.revertUser;
};
 
/** @returnsreturn {string} ISO 8601 timestamp at which the page was last edited. */
this.getLastEditTime = function() {
return ctx.lastEditTime;
Line 2,603 ⟶ 3,331:
 
/**
* `callbackParameters` -Define an object for use in a callback function.
*
* Callback notes: `callbackParameters` is for use by the caller only. The parameters
* allow a caller to pass the proper context into its callback function.
* function. Callers must ensure that any changes to the callbackParameters object
* callbackParameters object within a `load()` callback still permit a proper re-entry into the
* proper re-entry into the `load()` callback if an edit conflict is
* detected upon calling `save()`.
*
* @param {Object} callbackParameters
*/
this.setCallbackParameters = function(callbackParameters) {
Line 2,616 ⟶ 3,347:
 
/**
* @returnsreturn the{Object} - The object previouspreviously set by `setCallbackParameters()`.
*/
this.getCallbackParameters = function() {
Line 2,623 ⟶ 3,354:
 
/**
* @returnsparam {Morebits.status} Status element created by the constructorstatusElement
*/
this.setStatusElement = function(statusElement) {
ctx.statusElement = statusElement;
};
 
/**
* @return {Morebits.status} Status element created by the constructor.
*/
this.getStatusElement = function() {
Line 2,630 ⟶ 3,368:
 
/**
* @param {string} level - The right required for edits not to require
* review. Possible options: none, autoconfirmed, review (not on enWiki).
* @param {string} [expiry=infinity]
Line 2,639 ⟶ 3,377:
 
/**
* @returnsreturn {boolean} trueTrue if the page existed on the wiki when it was last loaded.
*/
this.exists = function() {
Line 2,646 ⟶ 3,384:
 
/**
* @returnsreturn {string} Page ID of the page loaded. 0 if the page doesn't
* exist.
*/
Line 2,654 ⟶ 3,392:
 
/**
* @returnsreturn {string} ISO- 8601Content timestampmodel at whichof the page. was lastPossible loadedvalues
* include (but may not be limited to): `wikitext`, `javascript`,
* `css`, `json`, `Scribunto`, `sanitized-css`, `MassMessageListContent`.
* Also gettable via `mw.config.get('wgPageContentModel')`.
*/
this.getContentModel = function() {
return ctx.contentModel;
};
 
/**
* @return {boolean|string} - Watched status of the page. Boolean
* unless it's being watched temporarily, in which case returns the
* expiry string.
*/
this.getWatched = function () {
return ctx.watched;
};
 
/**
* @return {string} ISO 8601 timestamp at which the page was last loaded.
*/
this.getLoadTime = function() {
Line 2,661 ⟶ 3,418:
 
/**
* @returnsreturn {string} theThe user who created the page following `lookupCreation()`.
*/
this.getCreator = function() {
Line 2,668 ⟶ 3,425:
 
/**
* @returnsreturn {string} theThe ISOString timestamp of page creation following `lookupCreation()`.
*/
this.getCreationTimestamp = function() {
return ctx.timestamp;
};
 
/** @return {boolean} whether or not you can edit the page */
this.canEdit = function() {
return !!ctx.testActions && ctx.testActions.includes('edit');
};
 
/**
* Retrieves the username of the user who created the page as well as
* the timestamp of creation. The username can be retrieved using the
* `getCreator()` function; the timestamp can be retrieved using the
* @param {Function} onSuccess - callback function (required) which is
* `getCreationTimestamp()` function.
* called when the username and timestamp are found within the callback.
* Prior to June 2019 known as `lookupCreator()`.
* The username can be retrieved using the getCreator() function;
*
* the timestamp can be retrieved using the getCreationTimestamp() function
* @param {Function} onSuccess - Callback function to be called when
* Prior to June 2019 known as lookupCreator
* the username and timestamp are found within the callback.
* @param {Function} [onFailure] - Callback function to be called when
* the lookup fails
*/
this.lookupCreation = function(onSuccess, onFailure) {
ctx.onLookupCreationSuccess = onSuccess;
ctx.onLookupCreationFailure = onFailure || emptyFunction;
if (!onSuccess) {
ctx.statusElement.error('Internal error: no onSuccess callback provided to lookupCreation()!');
ctx.onLookupCreationFailure(this);
return;
}
ctx.onLookupCreationSuccess = onSuccess;
 
varconst query = {
'action': 'query',
'prop': 'revisions',
'titles': ctx.pageName,
'rvlimit': 1,
'rvprop': 'user|timestamp',
'rvdir': 'newer',
format: 'json'
};
 
Line 2,710 ⟶ 3,478:
 
if (ctx.followRedirect) {
query.redirects = ''; // follow all redirects
}
 
ctx.lookupCreationApi = new Morebits.wiki.api(msg('getting-creator', 'Retrieving page creation information'), query, fnLookupCreationSuccess, ctx.statusElement, ctx.onLookupCreationFailure);
ctx.lookupCreationApi.setParent(this);
ctx.lookupCreationApi.post();
Line 2,719 ⟶ 3,487:
 
/**
* Reverts a page to `revertOldID` set by `setOldID`.
*
* @param {Function} [onSuccess] - callback function to run on success (optional)
* @param {Function} [onFailureonSuccess] - callbackCallback function to run on failure (optional)success.
* @param {Function} [onFailure] - Callback function to run on failure.
*/
this.revert = function(onSuccess, onFailure) {
Line 2,738 ⟶ 3,507:
 
/**
* Moves a page to another title.
*
* @param {Function} [onSuccess] - callback function to run on success (optional)
* @param {Function} [onFailureonSuccess] - callbackCallback function to run on failure (optional)success.
* @param {Function} [onFailure] - Callback function to run on failure.
*/
this.move = function(onSuccess, onFailure) {
Line 2,746 ⟶ 3,516:
ctx.onMoveFailure = onFailure || emptyFunction;
 
if (!fnPreflightChecks.call(this, 'move', ctx.editSummaryonMoveFailure)) {
return; // abort
ctx.statusElement.error('Internal error: move reason not set before move (use setEditSummary function)!');
ctx.onMoveFailure(this);
return;
}
 
if (!ctx.moveDestination) {
ctx.statusElement.error('Internal error: destination page name was not set before move!');
Line 2,760 ⟶ 3,529:
fnProcessMove.call(this, this);
} else {
varconst query = fnNeedTokenInfoQuery('move');
 
ctx.moveApi = new Morebits.wiki.api(msg('getting-token', 'retrieving token...'), query, fnProcessMove, ctx.statusElement, ctx.onMoveFailure);
ctx.moveApi.setParent(this);
ctx.moveApi.post();
Line 2,769 ⟶ 3,538:
 
/**
* Marks the page as patrolled, using `rcid` (if available) or `revid`.
*
* Patrolling as such doesn't need to rely on loading the page in
* question; simply passing a revid to the API is sufficient, so in
* those cases just using {@link Morebits.wiki.api} is probably preferable.
*
* No error handling since we don't actually care about the errors.
*/
this.patrol = function() {
Line 2,784 ⟶ 3,553:
// If a link is present, don't need to check if it's patrolled
if ($('.patrollink').length) {
varconst patrolhref = $('.patrollink a').attr('href');
ctx.rcid = mw.util.getParamValue('rcid', patrolhref);
fnProcessPatrol(this, this);
} else {
varconst patrolQuery = {
action: 'query',
prop: 'info',
Line 2,797 ⟶ 3,566:
rcprop: 'patrolled',
rctitle: ctx.pageName,
rclimit: 1,
format: 'json'
};
 
ctx.patrolApi = new Morebits.wiki.api(msg('getting-token', 'retrieving token...'), patrolQuery, fnProcessPatrol);
ctx.patrolApi.setParent(this);
ctx.patrolApi.post();
Line 2,807 ⟶ 3,577:
 
/**
* Marks the page as reviewed by the PageTriage extension.
* https://www.mediawiki.org/wiki/Extension:PageTriage
*
* Referred to as "review" on-wiki
*
* Will, by it's nature, mark as patrolled as well. Falls back to
Line 2,816 ⟶ 3,583:
*
* Doesn't inherently rely on loading the page in question; simply
* passing a `pageid` to the API is sufficient, so in those cases just
* using {@link Morebits.wiki.api} is probably preferable.
*
* Will first check if the page is queued via
* {@link Morebits.wiki.page~fnProcessTriageList|fnProcessTriageList}.
*
* No error handling since we don't actually care about the errors.
*
* @see {@link https://www.mediawiki.org/wiki/Extension:PageTriage} Referred to as "review" on-wiki.
* No error handling since we don't actually care about the errors
*/
this.triage = function() {
// Fall back to patrol if not a valid triage namespace
if (!mw.config.get('pageTriageNamespaces').indexOfincludes(new mw.configTitle(ctx.getpageName).getNamespaceId('wgNamespaceNumber')) === -1) {
this.patrol();
} else {
Line 2,833 ⟶ 3,605:
if (new mw.Title(Morebits.pageNameNorm).getPrefixedText() === new mw.Title(ctx.pageName).getPrefixedText()) {
ctx.pageID = mw.config.get('wgArticleId');
fnProcessTriagefnProcessTriageList(this, this);
} else {
varconst query = fnNeedTokenInfoQuery('triage');
 
ctx.triageApi = new Morebits.wiki.api(msg('getting-token', 'retrieving token...'), query, fnProcessTriagefnProcessTriageList);
ctx.triageApi.setParent(this);
ctx.triageApi.post();
Line 2,846 ⟶ 3,618:
// |delete| is a reserved word in some flavours of JS
/**
* Deletes a page (for admins only).
*
* @param {Function} [onSuccess] - callback function to run on success (optional)
* @param {Function} [onFailureonSuccess] - callbackCallback function to run on failure (optional)success.
* @param {Function} [onFailure] - Callback function to run on failure.
*/
this.deletePage = function(onSuccess, onFailure) {
Line 2,854 ⟶ 3,627:
ctx.onDeleteFailure = onFailure || emptyFunction;
 
if (!fnPreflightChecks.call(this, 'delete', ctx.onDeleteFailure)) {
// if a non-admin tries to do this, don't bother
return; // abort
if (!Morebits.userIsSysop) {
ctx.statusElement.error('Cannot delete page: only admins can do that');
ctx.onDeleteFailure(this);
return;
}
if (!ctx.editSummary) {
ctx.statusElement.error('Internal error: delete reason not set before delete (use setEditSummary function)!');
ctx.onDeleteFailure(this);
return;
}
 
Line 2,869 ⟶ 3,634:
fnProcessDelete.call(this, this);
} else {
varconst query = fnNeedTokenInfoQuery('delete');
 
ctx.deleteApi = new Morebits.wiki.api(msg('getting-token', 'retrieving token...'), query, fnProcessDelete, ctx.statusElement, ctx.onDeleteFailure);
ctx.deleteApi.setParent(this);
ctx.deleteApi.post();
Line 2,878 ⟶ 3,643:
 
/**
* Undeletes a page (for admins only).
*
* @param {Function} [onSuccess] - callback function to run on success (optional)
* @param {Function} [onFailureonSuccess] - callbackCallback function to run on failure (optional)success.
* @param {Function} [onFailure] - Callback function to run on failure.
*/
this.undeletePage = function(onSuccess, onFailure) {
Line 2,886 ⟶ 3,652:
ctx.onUndeleteFailure = onFailure || emptyFunction;
 
if (!fnPreflightChecks.call(this, 'undelete', ctx.onUndeleteFailure)) {
// if a non-admin tries to do this, don't bother
return; // abort
if (!Morebits.userIsSysop) {
ctx.statusElement.error('Cannot undelete page: only admins can do that');
ctx.onUndeleteFailure(this);
return;
}
if (!ctx.editSummary) {
ctx.statusElement.error('Internal error: undelete reason not set before undelete (use setEditSummary function)!');
ctx.onUndeleteFailure(this);
return;
}
 
Line 2,901 ⟶ 3,659:
fnProcessUndelete.call(this, this);
} else {
varconst query = fnNeedTokenInfoQuery('undelete');
 
ctx.undeleteApi = new Morebits.wiki.api(msg('getting-token', 'retrieving token...'), query, fnProcessUndelete, ctx.statusElement, ctx.onUndeleteFailure);
ctx.undeleteApi.setParent(this);
ctx.undeleteApi.post();
Line 2,910 ⟶ 3,668:
 
/**
* Protects a page (for admins only).
*
* @param {Function} [onSuccess] - callback function to run on success (optional)
* @param {Function} [onFailureonSuccess] - callbackCallback function to run on failure (optional)success.
* @param {Function} [onFailure] - Callback function to run on failure.
*/
this.protect = function(onSuccess, onFailure) {
Line 2,918 ⟶ 3,677:
ctx.onProtectFailure = onFailure || emptyFunction;
 
if (!fnPreflightChecks.call(this, 'protect', ctx.onProtectFailure)) {
// if a non-admin tries to do this, don't bother
return; // abort
if (!Morebits.userIsSysop) {
ctx.statusElement.error('Cannot protect page: only admins can do that');
ctx.onProtectFailure(this);
return;
}
 
if (!ctx.protectEdit && !ctx.protectMove && !ctx.protectCreate) {
ctx.statusElement.error('Internal error: you must set edit and/or move and/or create protection before calling protect()!');
ctx.onProtectFailure(this);
return;
}
if (!ctx.editSummary) {
ctx.statusElement.error('Internal error: protection reason not set before protect (use setEditSummary function)!');
ctx.onProtectFailure(this);
return;
Line 2,938 ⟶ 3,690:
// (absolute, not differential), we always need to request
// protection levels from the server
varconst query = fnNeedTokenInfoQuery('protect');
 
ctx.protectApi = new Morebits.wiki.api(msg('getting-token', 'retrieving token...'), query, fnProcessProtect, ctx.statusElement, ctx.onProtectFailure);
ctx.protectApi.setParent(this);
ctx.protectApi.post();
Line 2,946 ⟶ 3,698:
 
/**
* Apply FlaggedRevs protection-style settings. Only works on wikis where
* onlythe worksextension whereis installed (`$wgFlaggedRevsProtection = true (i.e. where FlaggedRevs`
* i.e. where FlaggedRevs settings appear on the wiki's "protect" tab).
*
* @param {function} [onSuccess]
* @see {@link https://www.mediawiki.org/wiki/Extension:FlaggedRevs}
* @param {function} [onFailure]
* Referred to as "pending changes" on-wiki.
*
* @param {Function} [onSuccess]
* @param {Function} [onFailure]
*/
this.stabilize = function(onSuccess, onFailure) {
Line 2,956 ⟶ 3,712:
ctx.onStabilizeFailure = onFailure || emptyFunction;
 
if (!fnPreflightChecks.call(this, 'FlaggedRevs', ctx.onStabilizeFailure)) {
// if a non-admin tries to do this, don't bother
return; // abort
if (!Morebits.userIsSysop) {
ctx.statusElement.error('Cannot apply FlaggedRevs settings: only admins can do that');
ctx.onStabilizeFailure(this);
return;
}
 
if (!ctx.flaggedRevs) {
ctx.statusElement.error('Internal error: you must set flaggedRevs before calling stabilize()!');
ctx.onStabilizeFailure(this);
return;
}
if (!ctx.editSummary) {
ctx.statusElement.error('Internal error: reason not set before calling stabilize() (use setEditSummary function)!');
ctx.onStabilizeFailure(this);
return;
Line 2,976 ⟶ 3,725:
fnProcessStabilize.call(this, this);
} else {
varconst query = fnNeedTokenInfoQuery('stabilize');
 
ctx.stabilizeApi = new Morebits.wiki.api(msg('getting-token', 'retrieving token...'), query, fnProcessStabilize, ctx.statusElement, ctx.onStabilizeFailure);
ctx.stabilizeApi.setParent(this);
ctx.stabilizeApi.post();
Line 2,990 ⟶ 3,739:
 
/**
* Determines whether we can save an API call by using the csrf token sent with the page
* sent with the page HTML, or whether we need to ask the server for
* more info (e.g. protection or watchlist expiry).
*
* Currently used for `append`, `prepend`, `newSection`, `move`,
* Only applicable for csrf token actions, e.g. not patrol
* `stabilize`, `deletePage`, and `undeletePage`. Not used for
* `protect` since it always needs to request protection status.
*
* @param {string} [action=edit] - The action being undertaken, e.g.
* Currently used for append, prepend, deletePage, undeletePage, move,
* and stabilize. Can't use for protect since it always needs to
* request protection status.
*
* @param {string} [action=edit] The action being undertaken, e.g.
* "edit" or "delete". In practice, only "edit" or "notedit" matters.
* @returnsreturn {boolean}
*/
var fnCanUseMwUserToken = function(action = 'edit') {
// If a watchlist expiry is set, we must always load the page
action = typeof action !== 'undefined' ? action : 'edit'; // IE doesn't support default parameters
// to avoid overwriting indefinite protection. Of course, not
// needed if setting indefinite watching!
if (ctx.watchlistExpiry && !Morebits.string.isInfinity(ctx.watchlistExpiry)) {
return false;
}
 
// API-based redirect resolution only works for action=query and
// action=edit in append/prepend/new modes (and section=new, but we don't
// really support that)
if (ctx.followRedirect) {
if (!ctx.followCrossNsRedirect) {
return false; // must load the page to check for cross namespace redirects
}
if (action !== 'edit' || (ctx.editMode !=== 'appendall' &&|| ctx.editMode !=== 'prependrevert')) {
return false;
}
Line 3,020 ⟶ 3,772:
// do we need to fetch the edit protection expiry?
if (Morebits.userIsSysop && !ctx.suppressProtectWarning) {
if (new mw.Title(Morebits.pageNameNorm).getPrefixedText() =!== new mw.Title(ctx.pageName).getPrefixedText()) {
return false;
}
Line 3,026 ⟶ 3,778:
// wgRestrictionEdit is null on non-existent pages,
// so this neatly handles nonexistent pages
varconst editRestriction = mw.config.get('wgRestrictionEdit');
if (!editRestriction || editRestriction.indexOfincludes('sysop') !== -1) {
return false;
}
Line 3,036 ⟶ 3,788:
 
/**
* When functions can't use fnCanUseMwUserToken or require checking
* {@link Morebits.wiki.page~fnCanUseMwUserToken|fnCanUseMwUserToken}
* protection, maintain the query in one place. Used for delete,
* or require checking protection or watched status, maintain the query
* undelete, protect, stabilize, and move (basically, just not load)
* in one place. Used for {@link Morebits.wiki.page#deletePage|delete},
* {@link Morebits.wiki.page#undeletePage|undelete},
* {@link* Morebits.wiki.page#protect|protect},
* {@link Morebits.wiki.page#stabilize|stabilize},
* and {@link Morebits.wiki.page#move|move}
* (basically, just not {@link Morebits.wiki.page#load|load}).
*
* @param {string} action - The action being undertaken, e.g. "edit" or
* "delete".
* @return {Object} Appropriate query.
*/
var fnNeedTokenInfoQuery = function(action) {
varconst query = {
action: 'query',
meta: 'tokens',
type: 'csrf',
titles: ctx.pageName,
prop: 'info',
inprop: 'watched',
format: 'json'
};
// Protection not checked for flagged-revs or non-sysop moves
if (action !== 'stabilize' && (action !== 'move' || Morebits.userIsSysop)) {
query.propinprop += 'info|protection';
query.inprop = 'protection';
}
if (ctx.followRedirect && action !== 'undelete') {
Line 3,061 ⟶ 3,822:
};
 
// callback from loadSuccess() for append(), prepend(), and prependnewSection() threads
var fnAutoSave = function(pageobj) {
pageobj.save(ctx.onSaveSuccess, ctx.onSaveFailure);
Line 3,068 ⟶ 3,829:
// callback from loadApi.post()
var fnLoadSuccess = function() {
varconst xmlresponse = ctx.loadApi.getXMLgetResponse().query;
 
if (!fnCheckPageName(xmlresponse, ctx.onLoadFailure)) {
return; // abort
}
 
const page = response.pages[0];
ctx.pageExists = $(xml).find('page').attr('missing') !== '';
let rev;
ctx.pageExists = !page.missing;
if (ctx.pageExists) {
rev = page.revisions[0];
ctx.pageText = $(xml).find('rev').text();
ctx.pageIDlastEditTime = $(xml)rev.find('page').attr('pageid')timestamp;
ctx.pageText = rev.content;
ctx.pageID = page.pageid;
} else {
ctx.pageText = ''; // allow for concatenation, etc.
ctx.pageID = 0; // nonexistent in response, matches wgArticleId
}
ctx.csrfToken = $(xml)response.find('tokens').attr('csrftoken');
if (!ctx.csrfToken) {
ctx.statusElement.error(msg('token-fetch-fail', 'Failed to retrieve edit token.'));
ctx.onLoadFailure(this);
return;
}
ctx.loadTime = $(xml)ctx.findloadApi.getResponse('api').attr('curtimestamp');
if (!ctx.loadTime) {
ctx.statusElement.error('Failed to retrieve current timestamp.');
Line 3,094 ⟶ 3,859:
return;
}
 
ctx.contentModel = page.contentmodel;
ctx.watched = page.watchlistexpiry || page.watched;
 
// extract protection info, to alert admins when they are about to edit a protected page
// Includes cascading protection
if (Morebits.userIsSysop) {
varconst editproteditProt = $(xml)page.findprotection.filter(('pr[) => pr.type ="== 'edit"]' && pr.level === 'sysop').pop();
if (editProt) {
if (editprot.length > 0 && editprot.attr('level') === 'sysop') {
ctx.fullyProtected = editproteditProt.attr('expiry');
} else {
ctx.fullyProtected = false;
Line 3,105 ⟶ 3,874:
}
 
ctx.revertCurID = page.lastrevid;
ctx.lastEditTime = $(xml).find('rev').attr('timestamp');
 
ctx.revertCurID = $(xml).find('page').attr('lastrevid');
const testactions = page.actions;
ctx.testActions = []; // was null
Object.keys(testactions).forEach((action) => {
if (testactions[action]) {
ctx.testActions.push(action);
}
});
 
if (ctx.editMode === 'revert') {
ctx.revertCurID = $(xml).find('rev') && rev.attr('revid');
if (!ctx.revertCurID) {
ctx.statusElement.error('Failed to retrieve current revision ID.');
Line 3,115 ⟶ 3,891:
return;
}
ctx.revertUser = $(xml).find('rev') && rev.attr('user');
if (!ctx.revertUser) {
if ($(xml).find('rev') && rev.attr('userhidden') === '') { // username was RevDel'd or oversighted
ctx.revertUser = '<username hidden>';
} else {
Line 3,132 ⟶ 3,908:
 
// alert("Generate edit conflict now"); // for testing edit conflict recovery logic
ctx.onLoadSuccess(this); // invoke callback
};
 
// helper function to parse the page name returned from the API
var fnCheckPageName = function(xmlresponse, onFailure) {
if (!onFailure) {
onFailure = emptyFunction;
}
 
const page = response.pages && response.pages[0];
// check for invalid titles
if ($(xml).find('page').attr('invalid') === '') {
// check for invalid titles
ctx.statusElement.error('The page title is invalid: ' + ctx.pageName);
if (page.invalid) {
onFailure(this);
ctx.statusElement.error(msg('invalid-title', ctx.pageName, 'The page title is invalid: ' + ctx.pageName));
return false; // abort
onFailure(this);
}
return false; // abort
}
 
// retrieve actual title of the page after normalization and redirects
if const resolvedName = ($(xml).find('page').attr('title')) {;
var resolvedName = $(xml).find('page').attr('title');
 
if ($(xml)response.find('redirects').length > 0) {
// check for cross-namespace redirect:
varconst origNs = new mw.Title(ctx.pageName).namespace;
varconst newNs = new mw.Title(resolvedName).namespace;
if (origNs !== newNs && !ctx.followCrossNsRedirect) {
ctx.statusElement.error(msg('cross-redirect-abort', ctx.pageName, resolvedName, ctx.pageName + ' is a cross-namespace redirect to ' + resolvedName + ', aborted'));
onFailure(this);
return false;
Line 3,163 ⟶ 3,940:
 
// only notify user for redirects, not normalization
new Morebits.status.info('InfoNote', msg('redirected', ctx.pageName, resolvedName, 'Redirected from ' + ctx.pageName + ' to ' + resolvedName));
}
 
Line 3,170 ⟶ 3,947:
} else {
// could be a circular redirect or other problem
ctx.statusElement.error(msg('redirect-resolution-fail', ctx.pageName, 'Could not resolve redirects for: ' + ctx.pageName));
onFailure(this);
 
Line 3,178 ⟶ 3,955:
}
return true; // all OK
};
 
/**
* Determine whether we should provide a watchlist expiry. Will not
* do so if the page is currently permanently watched, or the current
* expiry is *after* the new, provided expiry. Only handles strings
* recognized by {@link Morebits.date} or relative timeframes with
* unit it can process. Relies on the fact that fnCanUseMwUserToken
* requires page loading if a watchlistexpiry is provided, so we are
* ensured of knowing the watch status by the use of this.
*
* @return {boolean}
*/
var fnApplyWatchlistExpiry = function() {
if (ctx.watchlistExpiry) {
if (!ctx.watched || Morebits.string.isInfinity(ctx.watchlistExpiry)) {
return true;
} else if (typeof ctx.watched === 'string') {
let newExpiry;
// Attempt to determine if the new expiry is a
// relative (e.g. `1 month`) or absolute datetime
const rel = ctx.watchlistExpiry.split(' ');
try {
newExpiry = new Morebits.date().add(rel[0], rel[1]);
} catch (e) {
newExpiry = new Morebits.date(ctx.watchlistExpiry);
}
 
// If the date is valid, only use it if it extends the current expiry
if (newExpiry.isValid()) {
if (newExpiry.isAfter(new Morebits.date(ctx.watched))) {
return true;
}
} else {
// If it's still not valid, hope it's a valid MW expiry format that
// Morebits.date doesn't recognize, so just default to using it.
// This will also include minor typos.
return true;
}
}
}
return false;
};
 
// callback from saveApi.post()
var fnSaveSuccess = function() {
ctx.editMode = 'all'; // cancel append/prepend/newSection/revert modes
varconst xmlresponse = ctx.saveApi.getXMLgetResponse();
 
// see if the API thinks we were successful
if ($(xml)response.find('edit').attr('result') === 'Success') {
 
// real success
// default on success action - display link for edited page
varconst link = document.createElement('a');
link.setAttribute('href', mw.util.getUrl(ctx.pageName));
link.appendChild(document.createTextNode(ctx.pageName));
ctx.statusElement.info(['completed (', link, ')']);
if (ctx.onSaveSuccess) {
ctx.onSaveSuccess(this); // invoke callback
}
return;
Line 3,202 ⟶ 4,021:
// errors here are only generated by extensions which hook APIEditBeforeSave within MediaWiki,
// which as of 1.34.0-wmf.23 (Sept 2019) should only encompass captcha messages
if ($(xml)response.find('captcha')edit.length > 0captcha) {
ctx.statusElement.error('Could not save the page because the wiki server wanted you to fill out a CAPTCHA.');
} else {
ctx.statusElement.error(msg('api-error-unknown', 'Unknown error received from API while saving page'));
}
 
Line 3,216 ⟶ 4,035:
// callback from saveApi.post()
var fnSaveError = function() {
varconst errorCode = ctx.saveApi.getErrorCode();
 
// check for edit conflict
Line 3,222 ⟶ 4,041:
 
// edit conflicts can occur when the page needs to be purged from the server cache
varconst purgeQuery = {
action: 'purge',
titles: ctx.pageName // redirects are already resolved
};
 
varconst purgeApi = new Morebits.wiki.api(msg('editconflict-purging', 'Edit conflict detected, purging server cache'), purgeQuery, function(() => {
--Morebits.wiki.numberOfActionsLeft; // allow for normal completion if retry succeeds
 
ctx.statusElement.info(msg('editconflict-retrying', 'Edit conflict detected, reapplying edit'));
if (fnCanUseMwUserToken('edit')) {
ctx.saveApi.post(); // necessarily append, prepend, or prependnewSection, so this should work as desired
} else {
ctx.loadApi.post(); // reload the page and reapply the edit
}
}), ctx.statusElement);
purgeApi.post();
 
Line 3,243 ⟶ 4,062:
 
// the error might be transient, so try again
ctx.statusElement.info(msg('save-failed-retrying', 2, 'Save failed, retrying in 2 seconds ...'));
--Morebits.wiki.numberOfActionsLeft; // allow for normal completion if retry succeeds
 
// wait for sometime for client to regain connnectivityconnectivity
sleep(2000).then(function() => {
ctx.saveApi.post(); // give it another go!
});
Line 3,253 ⟶ 4,072:
// hard error, give up
} else {
const response = ctx.saveApi.getResponse();
const errorData = response.error || // bc error format
response.errors[0].data; // html/wikitext/plaintext error format
 
switch (errorCode) {
Line 3,262 ⟶ 4,084:
 
case 'abusefilter-disallowed':
ctx.statusElement.error('The edit was disallowed by the edit filter: "' + $(ctxerrorData.saveApi.getXML()).find('abusefilter').attr('description') + '".');
break;
 
case 'abusefilter-warning':
ctx.statusElement.error([ 'A warning was returned by the edit filter: "', $(ctxerrorData.saveApi.getXML()).find('abusefilter').attr('description'), '". If you wish to proceed with the edit, please carry it out again. This warning will not appear a second time.' ]);
// We should provide the user with a way to automatically retry the action if they so choose -
// I can't see how to do this without creating a UI dependency on Morebits.wiki.page though -- TTO
Line 3,272 ⟶ 4,094:
 
case 'spamblacklist':
// .find('matches') returns an array in caseIf multiple items are blacklisted, we only return the first
var spam = $(ctxerrorData.saveApi.getXML()).find('spamblacklist').find('matches').children()[0].textContent;
ctx.statusElement.error('Could not save the page because the URL ' + spam + ' is on the spam blacklist');
break;
Line 3,281 ⟶ 4,103:
}
 
ctx.editMode = 'all'; // cancel append/prepend/newSection/revert modes
if (ctx.onSaveFailure) {
ctx.onSaveFailure(this); // invoke callback
}
}
};
 
const isTextRedirect = function(text) {
if (!text) { // no text - content empty or inaccessible (revdelled or suppressed)
return false;
}
return Morebits.l10n.redirectTagAliases.some((tag) => new RegExp('^\\s*' + tag + '\\W', 'i').test(text));
};
 
var fnLookupCreationSuccess = function() {
varconst xmlresponse = ctx.lookupCreationApi.getXMLgetResponse().query;
 
if (!fnCheckPageName(xmlresponse, ctx.onLookupCreationFailure)) {
return; // abort
}
 
const rev = response.pages[0].revisions && response.pages[0].revisions[0];
if (!ctx.lookupNonRedirectCreator || !/^\s*#redirect/i.test($(xml).find('rev').text())) {
if (!rev) {
ctx.statusElement.error('Could not find any revisions of ' + ctx.pageName);
ctx.onLookupCreationFailure(this);
return;
}
 
if (!ctx.lookupNonRedirectCreator || !isTextRedirect(rev.content)) {
ctx.creator = $(xml).find('rev').attr('user');
 
ctx.creator = rev.user;
if (!ctx.creator) {
ctx.statusElement.error('Could not find name of page creator');
ctx.onLookupCreationFailure(this);
return;
}
ctx.timestamp = $(xml).find('rev').attr('timestamp');
if (!ctx.timestamp) {
ctx.statusElement.error('Could not find timestamp of page creation');
ctx.onLookupCreationFailure(this);
return;
}
 
ctx.statusElement.info('retrieved page creation information');
ctx.onLookupCreationSuccess(this);
 
Line 3,313 ⟶ 4,153:
ctx.lookupCreationApi.query.titles = ctx.pageName; // update pageName if redirect resolution took place in earlier query
 
ctx.lookupCreationApi = new Morebits.wiki.api('Retrieving page creation information', ctx.lookupCreationApi.query, fnLookupNonRedirectCreator, ctx.statusElement, ctx.onLookupCreationFailure);
ctx.lookupCreationApi.setParent(this);
ctx.lookupCreationApi.post();
Line 3,321 ⟶ 4,161:
 
var fnLookupNonRedirectCreator = function() {
varconst xmlresponse = ctx.lookupCreationApi.getXMLgetResponse().query;
const revs = response.pages[0].revisions;
 
for (let i = 0; i < revs.length; i++) {
$(xml).find('rev').each(function(_, rev) {
 
if (!/^\s*#redirect/i.test(rev.textContent)) { // inaccessible revisions also check out
if (!isTextRedirect(revs[i].content)) {
ctx.creator = rev.getAttribute('user');
ctx.timestampcreator = revrevs[i].getAttribute('timestamp')user;
ctx.timestamp = revs[i].timestamp;
return false; // break
break;
}
});
 
if (!ctx.creator) {
// fallback to give first revision author if no non-redirect version in the first 50
ctx.creator = $(xml).find('rev')revs[0].getAttribute('user');
ctx.timestamp = $(xml).find('rev')revs[0].getAttribute('timestamp');
if (!ctx.creator) {
ctx.statusElement.error('Could not find name of page creator');
ctx.onLookupCreationFailure(this);
return;
}
Line 3,343 ⟶ 4,186:
if (!ctx.timestamp) {
ctx.statusElement.error('Could not find timestamp of page creation');
ctx.onLookupCreationFailure(this);
return;
}
 
ctx.statusElement.info('retrieved page creation information');
ctx.onLookupCreationSuccess(this);
 
};
 
/**
* Common checks for action methods. Used for move, undelete, delete,
* protect, stabilize.
*
* @param {string} action - The action being checked.
* @param {string} onFailure - Failure callback.
* @return {boolean}
*/
var fnPreflightChecks = function(action, onFailure) {
// if a non-admin tries to do this, don't bother
if (!Morebits.userIsSysop && action !== 'move') {
ctx.statusElement.error('Cannot ' + action + 'page : only admins can do that');
onFailure(this);
return false;
}
 
if (!ctx.editSummary) {
ctx.statusElement.error('Internal error: ' + action + ' reason not set (use setEditSummary function)!');
onFailure(this);
return false;
}
return true; // all OK
};
 
/**
* Common checks for fnProcess functions (`fnProcessDelete`, `fnProcessMove`, etc.
* Used for move, undelete, delete, protect, stabilize.
*
* @param {string} action - The action being checked.
* @param {string} onFailure - Failure callback.
* @param {string} response - The response document from the API call.
* @return {boolean}
*/
const fnProcessChecks = function(action, onFailure, response) {
const missing = response.pages[0].missing;
 
// No undelete as an existing page could have deleted revisions
const actionMissing = missing && ['delete', 'stabilize', 'move'].includes(action);
const protectMissing = action === 'protect' && missing && (ctx.protectEdit || ctx.protectMove);
const saltMissing = action === 'protect' && !missing && ctx.protectCreate;
 
if (actionMissing || protectMissing || saltMissing) {
ctx.statusElement.error('Cannot ' + action + ' the page because it ' + (missing ? 'no longer' : 'already') + ' exists');
onFailure(this);
return false;
}
 
// Delete, undelete, move
// extract protection info
let editprot;
if (action === 'undelete') {
editprot = response.pages[0].protection.filter((pr) => pr.type === 'create' && pr.level === 'sysop').pop();
} else if (action === 'delete' || action === 'move') {
editprot = response.pages[0].protection.filter((pr) => pr.type === 'edit' && pr.level === 'sysop').pop();
}
if (editprot && !ctx.suppressProtectWarning &&
!confirm('You are about to ' + action + ' the fully protected page "' + ctx.pageName +
(editprot.expiry === 'infinity' ? '" (protected indefinitely)' : '" (protection expiring ' + new Morebits.date(editprot.expiry).calendar('utc') + ' (UTC))') +
'. \n\nClick OK to proceed with ' + action + ', or Cancel to skip.')) {
ctx.statusElement.error('Aborted ' + action + ' on fully protected page.');
onFailure(this);
return false;
}
 
if (!response.tokens.csrftoken) {
ctx.statusElement.error('Failed to retrieve token.');
onFailure(this);
return false;
}
return true; // all OK
};
 
var fnProcessMove = function() {
varlet pageTitle, token;
 
if (fnCanUseMwUserToken('move')) {
Line 3,357 ⟶ 4,274:
pageTitle = ctx.pageName;
} else {
varconst xmlresponse = ctx.moveApi.getXMLgetResponse().query;
 
if ($(xml).find!fnProcessChecks('pagemove'), ctx.attr('missing'onMoveFailure, response) === '') {
return; // abort
ctx.statusElement.error('Cannot move the page, because it no longer exists');
ctx.onMoveFailure(this);
return;
}
 
token = response.tokens.csrftoken;
// extract protection info
const page = response.pages[0];
if (Morebits.userIsSysop) {
pageTitle = page.title;
var editprot = $(xml).find('pr[type="edit"]');
ctx.watched = page.watchlistexpiry || page.watched;
if (editprot.length > 0 && editprot.attr('level') === 'sysop' && !ctx.suppressProtectWarning &&
!confirm('You are about to move the fully protected page "' + ctx.pageName +
(editprot.attr('expiry') === 'infinity' ? '" (protected indefinitely)' : '" (protection expiring ' + new Morebits.date(editprot.attr('expiry')).calendar('utc') + ' (UTC))') +
'. \n\nClick OK to proceed with the move, or Cancel to skip this move.')) {
ctx.statusElement.error('Move of fully protected page was aborted.');
ctx.onMoveFailure(this);
return;
}
}
 
token = $(xml).find('tokens').attr('csrftoken');
if (!token) {
ctx.statusElement.error('Failed to retrieve move token.');
ctx.onMoveFailure(this);
return;
}
 
pageTitle = $(xml).find('page').attr('title');
}
 
varconst query = {
'action': 'move',
'from': pageTitle,
'to': ctx.moveDestination,
'token': token,
'reason': ctx.editSummary,
'watchlist': ctx.watchlistOption,
format: 'json'
};
if (ctx.changeTags) {
Line 3,400 ⟶ 4,299:
}
 
if (fnApplyWatchlistExpiry()) {
query.watchlistexpiry = ctx.watchlistExpiry;
}
if (ctx.moveTalkPage) {
query.movetalk = 'true';
Line 3,410 ⟶ 4,312:
}
 
ctx.moveProcessApi = new Morebits.wiki.api(msg('moving-page', 'moving page...'), query, ctx.onMoveSuccess, ctx.statusElement, ctx.onMoveFailure);
ctx.moveProcessApi.setParent(this);
ctx.moveProcessApi.post();
Line 3,416 ⟶ 4,318:
 
var fnProcessPatrol = function() {
varconst query = {
action: 'patrol',
format: 'json'
};
 
Line 3,425 ⟶ 4,328:
query.token = mw.user.tokens.get('patrolToken');
} else {
varconst xmlresponse = ctx.patrolApi.getResponse().query;
 
// Don't patrol if not unpatrolled
if ($(xml)!response.find('rc')recentchanges[0].attr('unpatrolled') !== '') {
return;
}
 
varconst lastrevid = $(xml)response.find('page')pages[0].attr('lastrevid');
if (!lastrevid) {
return;
Line 3,438 ⟶ 4,341:
query.revid = lastrevid;
 
varconst token = $(xml)response.find('tokens').attr('patroltoken')csrftoken;
if (!token) {
return;
}
 
query.token = token;
}
Line 3,449 ⟶ 4,351:
}
 
varconst patrolStat = new Morebits.status('Marking page as patrolled');
 
ctx.patrolProcessApi = new Morebits.wiki.api('patrolling page...', query, null, patrolStat);
Line 3,456 ⟶ 4,358:
};
 
// Ensure that the page is curatable
var fnProcessTriage = function() {
var fnProcessTriageList = function() {
var pageID, token;
 
if (ctx.pageID) {
tokenctx.csrfToken = mw.user.tokens.get('csrfToken');
pageID = ctx.pageID;
} else {
varconst xmlresponse = ctx.triageApi.getXMLgetResponse().query;
 
ctx.pageID = $(xml)response.find('page')pages[0].attr('pageid');
if (!ctx.pageID) {
return;
}
 
tokenctx.csrfToken = $(xml)response.find('tokens').attr('csrftoken');
if (!tokenctx.csrfToken) {
return;
}
}
 
varconst query = {
action: 'pagetriageactionpagetriagelist',
pageidpage_id: ctx.pageID,
reviewedformat: 1,'json'
// tags: ctx.changeTags, // pagetriage tag support: [[phab:T252980]]
// Could use an adder to modify/create note:
// summaryAd, but that seems overwrought
token: token
};
 
var triageStatctx.triageProcessListApi = new Morebits.statuswiki.api('Markingchecking pagecuration as curatedstatus...', query, fnProcessTriage);
ctx.triageProcessListApi.setParent(this);
 
ctx.triageProcessListApi.post();
ctx.triageProcessApi = new Morebits.wiki.api('curating page...', query, null, triageStat, fnProcessTriageError);
ctx.triageProcessApi.setParent(this);
ctx.triageProcessApi.post();
};
 
// callback from triageProcessApitriageProcessListApi.post()
var fnProcessTriageErrorfnProcessTriage = function() {
const responseList = ctx.triageProcessListApi.getResponse().pagetriagelist;
// Ignore error if page not in queue, see https://github.com/azatoth/twinkle/pull/930
// Exit if not in the queue
if (ctx.triageProcessApi.getErrorCode() === 'bad-pagetriage-page') {
if (!responseList || responseList.result !== 'success') {
ctx.triageProcessApi.getStatusElement().unlink();
return;
}
const page = responseList.pages && responseList.pages[0];
// Do nothing if page already triaged/patrolled
if (!page || !parseInt(page.patrol_status, 10)) {
const query = {
action: 'pagetriageaction',
pageid: ctx.pageID,
reviewed: 1,
// tags: ctx.changeTags, // pagetriage tag support: [[phab:T252980]]
// Could use an adder to modify/create note:
// summaryAd, but that seems overwrought
token: ctx.csrfToken,
format: 'json'
};
const triageStat = new Morebits.status('Marking page as curated');
ctx.triageProcessApi = new Morebits.wiki.api('curating page...', query, null, triageStat);
ctx.triageProcessApi.setParent(this);
ctx.triageProcessApi.post();
}
};
 
var fnProcessDelete = function() {
varlet pageTitle, token;
 
if (fnCanUseMwUserToken('delete')) {
Line 3,508 ⟶ 4,421:
pageTitle = ctx.pageName;
} else {
varconst xmlresponse = ctx.deleteApi.getXMLgetResponse().query;
 
if ($(xml).find!fnProcessChecks('pagedelete'), ctx.attr('missing'onDeleteFailure, response) === '') {
return; // abort
ctx.statusElement.error('Cannot delete the page, because it no longer exists');
ctx.onDeleteFailure(this);
return;
}
 
// extract protection info
var editprot = $(xml).find('pr[type="edit"]');
if (editprot.length > 0 && editprot.attr('level') === 'sysop' && !ctx.suppressProtectWarning &&
!confirm('You are about to delete the fully protected page "' + ctx.pageName +
(editprot.attr('expiry') === 'infinity' ? '" (protected indefinitely)' : '" (protection expiring ' + new Morebits.date(editprot.attr('expiry')).calendar('utc') + ' (UTC))') +
'. \n\nClick OK to proceed with the deletion, or Cancel to skip this deletion.')) {
ctx.statusElement.error('Deletion of fully protected page was aborted.');
ctx.onDeleteFailure(this);
return;
}
 
token = $(xml)response.find('tokens').attr('csrftoken');
const page = response.pages[0];
if (!token) {
pageTitle = page.title;
ctx.statusElement.error('Failed to retrieve delete token.');
ctx.watched = page.watchlistexpiry || page.watched;
ctx.onDeleteFailure(this);
return;
}
 
pageTitle = $(xml).find('page').attr('title');
}
 
varconst query = {
'action': 'delete',
'title': pageTitle,
'token': token,
'reason': ctx.editSummary,
'watchlist': ctx.watchlistOption,
format: 'json'
};
if (ctx.changeTags) {
query.tags = ctx.changeTags;
}
if (ctx.deleteTalkPage) {
query.deletetalk = 'true';
}
 
if (fnApplyWatchlistExpiry()) {
query.watchlistexpiry = ctx.watchlistExpiry;
}
 
ctx.deleteProcessApi = new Morebits.wiki.api('deleting page...', query, ctx.onDeleteSuccess, ctx.statusElement, fnProcessDeleteError);
Line 3,557 ⟶ 4,460:
var fnProcessDeleteError = function() {
 
varconst errorCode = ctx.deleteProcessApi.getErrorCode();
 
// check for "Database query error"
if (errorCode === 'internal_api_error_DBQueryError' && ctx.retries++ < ctx.maxRetries) {
ctx.statusElement.info('Database query error, retrying');
--Morebits.wiki.numberOfActionsLeft; // allow for normal completion if retry succeeds
ctx.deleteProcessApi.post(); // give it another go!
 
Line 3,568 ⟶ 4,471:
ctx.statusElement.error('Cannot delete the page, because it no longer exists');
if (ctx.onDeleteFailure) {
ctx.onDeleteFailure.call(this, ctx.deleteProcessApi); // invoke callback
}
// hard error, give up
Line 3,574 ⟶ 4,477:
ctx.statusElement.error('Failed to delete the page: ' + ctx.deleteProcessApi.getErrorText());
if (ctx.onDeleteFailure) {
ctx.onDeleteFailure.call(this, ctx.deleteProcessApi); // invoke callback
}
}
Line 3,580 ⟶ 4,483:
 
var fnProcessUndelete = function() {
varlet pageTitle, token;
 
if (fnCanUseMwUserToken('undelete')) {
Line 3,586 ⟶ 4,489:
pageTitle = ctx.pageName;
} else {
varconst xmlresponse = ctx.undeleteApi.getXMLgetResponse().query;
 
if (!fnProcessChecks('undelete', ctx.onUndeleteFailure, response)) {
if ($(xml).find('page').attr('missing') !== '') {
return; // abort
ctx.statusElement.error('Cannot undelete the page, because it already exists');
ctx.onUndeleteFailure(this);
return;
}
 
token = response.tokens.csrftoken;
// extract protection info
const page = response.pages[0];
var editprot = $(xml).find('pr[type="create"]');
pageTitle = page.title;
if (editprot.length > 0 && editprot.attr('level') === 'sysop' && !ctx.suppressProtectWarning &&
ctx.watched = page.watchlistexpiry || page.watched;
!confirm('You are about to undelete the fully create protected page "' + ctx.pageName +
(editprot.attr('expiry') === 'infinity' ? '" (protected indefinitely)' : '" (protection expiring ' + new Morebits.date(editprot.attr('expiry')).calendar('utc') + ' (UTC))') +
'. \n\nClick OK to proceed with the undeletion, or Cancel to skip this undeletion.')) {
ctx.statusElement.error('Undeletion of fully create protected page was aborted.');
ctx.onUndeleteFailure(this);
return;
}
 
token = $(xml).find('tokens').attr('csrftoken');
if (!token) {
ctx.statusElement.error('Failed to retrieve undelete token.');
ctx.onUndeleteFailure(this);
return;
}
 
pageTitle = $(xml).find('page').attr('title');
}
 
varconst query = {
'action': 'undelete',
'title': pageTitle,
'token': token,
'reason': ctx.editSummary,
'watchlist': ctx.watchlistOption,
format: 'json'
};
if (ctx.changeTags) {
query.tags = ctx.changeTags;
}
if (ctx.undeleteTalkPage) {
query.undeletetalk = 'true';
}
 
if (fnApplyWatchlistExpiry()) {
query.watchlistexpiry = ctx.watchlistExpiry;
}
 
ctx.undeleteProcessApi = new Morebits.wiki.api('undeleting page...', query, ctx.onUndeleteSuccess, ctx.statusElement, fnProcessUndeleteError);
Line 3,635 ⟶ 4,528:
var fnProcessUndeleteError = function() {
 
varconst errorCode = ctx.undeleteProcessApi.getErrorCode();
 
// check for "Database query error"
Line 3,641 ⟶ 4,534:
if (ctx.retries++ < ctx.maxRetries) {
ctx.statusElement.info('Database query error, retrying');
--Morebits.wiki.numberOfActionsLeft; // allow for normal completion if retry succeeds
ctx.undeleteProcessApi.post(); // give it another go!
} else {
ctx.statusElement.error('Repeated database query error, please try again');
if (ctx.onUndeleteFailure) {
ctx.onUndeleteFailure.call(this, ctx.undeleteProcessApi); // invoke callback
}
}
Line 3,652 ⟶ 4,545:
ctx.statusElement.error('Cannot undelete the page, either because there are no revisions to undelete or because it has already been undeleted');
if (ctx.onUndeleteFailure) {
ctx.onUndeleteFailure.call(this, ctx.undeleteProcessApi); // invoke callback
}
// hard error, give up
Line 3,658 ⟶ 4,551:
ctx.statusElement.error('Failed to undelete the page: ' + ctx.undeleteProcessApi.getErrorText());
if (ctx.onUndeleteFailure) {
ctx.onUndeleteFailure.call(this, ctx.undeleteProcessApi); // invoke callback
}
}
Line 3,664 ⟶ 4,557:
 
var fnProcessProtect = function() {
varconst xmlresponse = ctx.protectApi.getXMLgetResponse().query;
 
if (!fnProcessChecks('protect', ctx.onProtectFailure, response)) {
var missing = $(xml).find('page').attr('missing') === '';
return; // abort
if ((ctx.protectEdit || ctx.protectMove) && missing) {
ctx.statusElement.error('Cannot protect the page, because it no longer exists');
ctx.onProtectFailure(this);
return;
}
if (ctx.protectCreate && !missing) {
ctx.statusElement.error('Cannot create protect the page, because it already exists');
ctx.onProtectFailure(this);
return;
}
 
const token = response.tokens.csrftoken;
// TODO cascading protection not possible on edit<sysop
const page = response.pages[0];
const pageTitle = page.title;
ctx.watched = page.watchlistexpiry || page.watched;
 
// Fetch existing protection levels
var token = $(xml).find('tokens').attr('csrftoken');
const prs = response.pages[0].protection;
if (!token) {
let editprot, moveprot, createprot;
ctx.statusElement.error('Failed to retrieve protect token.');
prs.forEach((pr) => {
ctx.onProtectFailure(this);
// Filter out protection from cascading
return;
if (pr.type === 'edit' && !pr.source) {
editprot = pr;
} else if (pr.type === 'move') {
moveprot = pr;
} else if (pr.type === 'create') {
createprot = pr;
}
});
 
// Fall back to current levels if not explicitly set
if (!ctx.protectEdit && editprot) {
ctx.protectEdit = { level: editprot.level, expiry: editprot.expiry };
}
if (!ctx.protectMove && moveprot) {
ctx.protectMove = { level: moveprot.level, expiry: moveprot.expiry };
}
if (!ctx.protectCreate && createprot) {
ctx.protectCreate = { level: createprot.level, expiry: createprot.expiry };
}
 
// Default to pre-existing cascading protection if unchanged (similar to above)
var pageTitle = $(xml).find('page').attr('title');
if (ctx.protectCascade === null) {
ctx.protectCascade = !!prs.filter((pr) => pr.cascade).length;
}
// Warn if cascading protection being applied with an invalid protection level,
// which for edit protection will cause cascading to be silently stripped
if (ctx.protectCascade) {
// On move protection, this is technically stricter than the MW API,
// but seems reasonable to avoid dumb values and misleading log entries (T265626)
if (((!ctx.protectEdit || ctx.protectEdit.level !== 'sysop') ||
(!ctx.protectMove || ctx.protectMove.level !== 'sysop')) &&
!confirm('You have cascading protection enabled on "' + ctx.pageName +
'" but have not selected uniform sysop-level protection.\n\n' +
'Click OK to adjust and proceed with sysop-level cascading protection, or Cancel to skip this action.')) {
ctx.statusElement.error('Cascading protection was aborted.');
ctx.onProtectFailure(this);
return;
}
 
ctx.protectEdit.level = 'sysop';
// fetch existing protection levels
ctx.protectMove.level = 'sysop';
var prs = $(xml).find('pr');
}
var editprot = prs.filter('[type="edit"]');
var moveprot = prs.filter('[type="move"]');
var createprot = prs.filter('[type="create"]');
 
var protections = [], expirys = [];
 
// set editBuild protection levellevels and expirys (expiries?) for query
const protections = [], expirys = [];
if (ctx.protectEdit) {
protections.push('edit=' + ctx.protectEdit.level);
expirys.push(ctx.protectEdit.expiry);
} else if (editprot.length) {
protections.push('edit=' + editprot.attr('level'));
expirys.push(editprot.attr('expiry').replace('infinity', 'indefinite'));
}
 
Line 3,709 ⟶ 4,626:
protections.push('move=' + ctx.protectMove.level);
expirys.push(ctx.protectMove.expiry);
} else if (moveprot.length) {
protections.push('move=' + moveprot.attr('level'));
expirys.push(moveprot.attr('expiry').replace('infinity', 'indefinite'));
}
 
Line 3,717 ⟶ 4,631:
protections.push('create=' + ctx.protectCreate.level);
expirys.push(ctx.protectCreate.expiry);
} else if (createprot.length) {
protections.push('create=' + createprot.attr('level'));
expirys.push(createprot.attr('expiry').replace('infinity', 'indefinite'));
}
 
varconst query = {
action: 'protect',
title: pageTitle,
Line 3,729 ⟶ 4,640:
expiry: expirys.join('|'),
reason: ctx.editSummary,
watchlist: ctx.watchlistOption,
format: 'json'
};
// Only shows up in logs, not page history [[phab:T259983]]
Line 3,736 ⟶ 4,648:
}
 
if (fnApplyWatchlistExpiry()) {
query.watchlistexpiry = ctx.watchlistExpiry;
}
if (ctx.protectCascade) {
query.cascade = 'true';
Line 3,746 ⟶ 4,661:
 
var fnProcessStabilize = function() {
varlet pageTitle, token;
 
if (fnCanUseMwUserToken('stabilize')) {
Line 3,752 ⟶ 4,667:
pageTitle = ctx.pageName;
} else {
varconst xmlresponse = ctx.stabilizeApi.getXMLgetResponse().query;
 
// 'stabilize' as a verb not necessarily well understood
var missing = $(xml).find('page').attr('missing') === '';
if (!fnProcessChecks('stabilize', ctx.onStabilizeFailure, response)) {
if (missing) {
return; // abort
ctx.statusElement.error('Cannot protect the page, because it no longer exists');
ctx.onStabilizeFailure(this);
return;
}
 
token = $(xml).find('tokens').attr('csrftoken');
if (!token) {
ctx.statusElement.error('Failed to retrieve stabilize token.');
ctx.onStabilizeFailure(this);
return;
}
 
token = response.tokens.csrftoken;
pageTitle = $(xml).find('page').attr('title');
const page = response.pages[0];
pageTitle = page.title;
// Doesn't support watchlist expiry [[phab:T263336]]
// ctx.watched = page.watchlistexpiry || page.watched;
}
 
varconst query = {
action: 'stabilize',
title: pageTitle,
Line 3,779 ⟶ 4,689:
// tags: ctx.changeTags, // flaggedrevs tag support: [[phab:T247721]]
reason: ctx.editSummary,
watchlist: ctx.watchlistOption,
format: 'json'
};
 
/* Doesn't support watchlist expiry [[phab:T263336]]
if (fnApplyWatchlistExpiry()) {
query.watchlistexpiry = ctx.watchlistExpiry;
}
*/
 
ctx.stabilizeProcessApi = new Morebits.wiki.api('configuring stabilization settings...', query, ctx.onStabilizeSuccess, ctx.statusElement, ctx.onStabilizeFailure);
Line 3,788 ⟶ 4,705:
 
var sleep = function(milliseconds) {
varconst deferred = $.Deferred();
setTimeout(deferred.resolve, milliseconds);
return deferred;
Line 3,802 ⟶ 4,719:
*/
 
/* **************** Morebits.wiki.preview **************** */
 
 
/**
* Use the API to parse a fragment of wikitext and render it as HTML.
* **************** Morebits.wiki.preview ****************
* Uses the API to parse a fragment of wikitext and render it as HTML.
*
* The suggested implementation pattern (in {@link Morebits.simpleWindow} +and
* {@link Morebits.quickForm} situations) is to construct a
* construct a `Morebits.wiki.preview` object after rendering a `Morebits.quickForm`, and bind the object
* bind the object to an arbitrary property of the form (e.g. |previewer|).
* For an example, see twinklewarn.js.
*
* twinklewarn.js.
* @memberof Morebits.wiki
*/
* @class
 
* @param {HTMLElement} previewbox - The element that will contain the rendered HTML,
/**
* usually a <div> element.
* @constructor
* @param {HTMLElement} previewbox - the element that will contain the rendered HTML,
* usually a <div> element
*/
Morebits.wiki.preview = function(previewbox) {
Line 3,826 ⟶ 4,741:
* Displays the preview box, and begins an asynchronous attempt
* to render the specified wikitext.
*
* @param {string} wikitext - wikitext to render; most things should work, including subst: and ~~~~
* @param {string} [pageTitle]wikitext - optionalWikitext parameterto forrender; themost page thisthings should be rendered as being onwork, if omitted it is taken asincluding the`subst:` currentand page`~~~~`.
* @param {string} [pageTitle] - Optional parameter for the page this should be rendered as being on, if omitted it is taken as the current page.
* @param {string} [sectionTitle] - If provided, render the text as a new section using this as the title.
* @return {jQuery.promise}
*/
this.beginRender = function(wikitext, pageTitle, sectionTitle) {
$(previewbox).show();
 
varconst statusspan = document.createElement('span');
previewbox.appendChild(statusspan);
Morebits.status.init(statusspan);
 
varconst query = {
action: 'parse',
prop: ['text', 'modules'],
pst: 'true', // PST = pre-save transform; this makes substitution work properly
preview: true,
text: wikitext,
title: pageTitle || mw.config.get('wgPageName'),
disablelimitreport: true,
disableeditsection: true,
format: 'json'
};
if (sectionTitle) {
var renderApi = new Morebits.wiki.api('loading...', query, fnRenderSuccess, new Morebits.status('Preview'));
query.section = 'new';
renderApi.post();
query.sectiontitle = sectionTitle;
}
const renderApi = new Morebits.wiki.api('loading...', query, fnRenderSuccess, new Morebits.status('Preview'));
return renderApi.post();
};
 
var fnRenderSuccess = function(apiobj) {
varconst xmlresponse = apiobj.getXMLgetResponse();
varconst html = $(xml)response.find('text')parse.text();
if (!html) {
apiobj.statelem.error('failed to retrieve preview, or template was blanked');
Line 3,856 ⟶ 4,781:
}
previewbox.innerHTML = html;
mw.loader.load(response.parse.modulestyles);
$(previewbox).find('a').attr('target', '_blank'); // this makes links open in new tab
mw.loader.load(response.parse.modules);
 
// this makes links open in new tab
$(previewbox).find('a').attr('target', '_blank');
};
 
Line 3,865 ⟶ 4,794:
};
 
/* **************** Morebits.wikitext **************** */
 
 
/**
* Wikitext manipulation.
* **************** Morebits.wikitext ****************
*
* Wikitext manipulation
* @namespace Morebits.wikitext
* @memberof Morebits
*/
 
Morebits.wikitext = {};
 
/**
* Get the value of every parameter found in the wikitext of a given template.
*
* @param {string} text Wikitext containing a template
* @memberof Morebits.wikitext
* @param {number} [start=0] Index noting where in the text the template begins
* @param {string} text - Wikitext containing a template.
* @returns {Object} {name: templateName, parameters: {key: value}}
* @param {number} [start=0] - Index noting where in the text the template begins.
* @return {Object} `{name: templateName, parameters: {key: value}}`.
*/
Morebits.wikitext.parseTemplate = function(text, start) {
start = start || 0;
 
const level = []; // Track of how deep we are ({{, {{{, or [[)
var count = -1;
let count = -1; // Number of parameters found
var level = -1;
let unnamed = 0; // Keep track of what number an unnamed parameter should receive
var equals = -1;
let equals = -1; // After finding "=" before a parameter, the index; otherwise, -1
var current = '';
varlet resultcurrent = {'';
const result = {
name: '',
parameters: {}
};
varlet key, value;
 
/**
for (var i = start; i < text.length; ++i) {
* Function to handle finding parameter values.
var test3 = text.substr(i, 3);
*
if (test3 === '{{{') {
* @param {boolean} [final=false] - Whether this is the final
current += '{{{';
* parameter and we need to remove the trailing `}}`.
i += 2;
*/
++level;
function findParam(final) {
continue;
// Nothing found yet, this must be the template name
if (count === -1) {
result.name = current.slice(2).trim();
++count;
} else {
// In a parameter
if (equals !== -1) {
// We found an equals, so save the parameter as key: value
key = current.substring(0, equals).trim();
value = final ? current.substring(equals + 1, current.length - 2).trim() : current.substring(equals + 1).trim();
result.parameters[key] = value;
equals = -1;
} else {
// No equals, so it must be unnamed; no trim since whitespace allowed
const param = final ? current.substring(equals + 1, current.length - 2) : current;
if (param) {
result.parameters[++unnamed] = param;
++count;
}
}
}
}
if (test3 === '}}}') {
 
current += '}}}';
for (let i = start; i < text.length; ++i) {
const test3 = text.substr(i, 3);
if (test3 === '{{{' || (test3 === '}}}' && level[level.length - 1] === 3)) {
current += test3;
i += 2;
if (test3 === '{{{') {
--level;
level.push(3);
} else {
level.pop();
}
continue;
}
varconst test2 = text.substr(i, 2);
// Entering a template (or link)
if (test2 === '{{' || test2 === '[[') {
current += test2;
++i;
if (test2 === '{{') {
++level;
continue level.push(2);
} else {
level.push('wl');
if (test2 === ']]') {
}
current += ']]';
++i;
--level;
continue;
}
// Either leaving a link or template/parser function
if (test2 === '}}') {
if ((test2 === '}}' && level[level.length - 1] === 2) ||
(test2 === ']]' && level[level.length - 1] === 'wl')) {
current += test2;
++i;
--level.pop();
 
// Find the final parameter if this really is the end
if (level <= 0) {
if (counttest2 === -1'}}' && level.length === 0) {
findParam(true);
result.name = current.substring(2).trim();
++count;
} else {
if (equals !== -1) {
key = current.substring(0, equals).trim();
value = current.substring(equals).trim();
result.parameters[key] = value;
equals = -1;
} else {
result.parameters[count] = current;
++count;
}
}
break;
}
Line 3,945 ⟶ 4,895:
}
 
if (text.charAt(i) === '|' && level.length <=== 01) {
// Another pipe found, toplevel, so parameter coming up!
if (count === -1) {
findParam();
result.name = current.substring(2).trim();
++count;
} else {
if (equals !== -1) {
key = current.substring(0, equals).trim();
value = current.substring(equals + 1).trim();
result.parameters[key] = value;
equals = -1;
} else {
result.parameters[count] = current;
++count;
}
}
current = '';
} else if (equals === -1 && text.charAt(i) === '=' && level.length <=== 01) {
// Equals found, toplevel
equals = current.length;
current += text.charAt(i);
} else {
// Just advance the position
current += text.charAt(i);
}
Line 3,973 ⟶ 4,913:
 
/**
* Adjust and manipulate the wikitext of a page.
* @constructor
*
* @param {string} text
* @class
* @memberof Morebits.wikitext
* @param {string} text - Wikitext to be manipulated.
*/
Morebits.wikitext.page = function mediawikiPage(text) {
Line 3,985 ⟶ 4,928:
/**
* Removes links to `link_target` from the page text.
* @param {string} link_target
*
* @param {string} link_target
* @returns {Morebits.wikitext.page}
* @return {Morebits.wikitext.page}
*/
removeLink: function(link_target) {
const mwTitle = mw.Title.newFromText(link_target);
var first_char = link_target.substr(0, 1);
const namespaceID = mwTitle.getNamespaceId();
var link_re_string = '[' + first_char.toUpperCase() + first_char.toLowerCase() + ']' + Morebits.string.escapeRegExp(link_target.substr(1));
const title = mwTitle.getMainText();
 
let link_regex_string = '';
// Files and Categories become links with a leading colon, e.g. [[:File:Test.png]]
if (namespaceID !== 0) {
// Otherwise, allow for an optional leading colon, e.g. [[:User:Test]]
link_regex_string = Morebits.namespaceRegex(namespaceID) + ':';
var special_ns_re = /^(?:[Ff]ile|[Ii]mage|[Cc]ategory):/;
}
var colon = special_ns_re.test(link_target) ? ':' : ':?';
link_regex_string += Morebits.pageNameRegex(title);
 
// For most namespaces, unlink both [[User:Test]] and [[:User:Test]]
// For files and categories, only unlink [[:Category:Test]]. Do not unlink [[Category:Test]]
const isFileOrCategory = [6, 14].includes(namespaceID);
const colon = isFileOrCategory ? ':' : ':?';
 
varconst link_simple_resimple_link_regex = new RegExp('\\[\\[' + colon + '(' + link_re_stringlink_regex_string + ')\\]\\]', 'g');
varconst link_named_repiped_link_regex = new RegExp('\\[\\[' + colon + link_re_stringlink_regex_string + '\\|(.+?)\\]\\]', 'g');
this.text = this.text.replace(link_simple_resimple_link_regex, '$1').replace(link_named_repiped_link_regex, '$1');
return this;
},
 
/**
* Comments out images from page text.; Ifif used in a gallery, deletes the whole line.
* If used as a template argument (not necessarily with `File:` prefix), the template parameter is commented out.
* @param {string} image - Image name without File: prefix
* @param {string} reason - Reason to be included in comment, alongside the commented-out image
*
* @param {string} image - Image name without `File:` prefix.
* @returns {Morebits.wikitext.page}
* @param {string} [reason] - Reason to be included in comment, alongside the commented-out image.
* @return {Morebits.wikitext.page}
*/
commentOutImage: function(image, reason) {
varconst unbinder = new Morebits.unbinder(this.text);
unbinder.unbind('<!--', '-->');
 
reason = reason ? reason + ': ' : '';
const image_re_string = Morebits.pageNameRegex(image);
var first_char = image.substr(0, 1);
var image_re_string = '[' + first_char.toUpperCase() + first_char.toLowerCase() + ']' + Morebits.string.escapeRegExp(image.substr(1));
 
// Check for normal image links, i.e. [[File:Foobar.png|...]]
// Will eat the whole link
varconst links_re = new RegExp('\\[\\[' + Morebits.namespaceRegex(?:[Ii]mage|[Ff]ile6) + ':\\s*' + image_re_string + '\\s*[\\|(?:\\]\\])]');
varconst allLinks = Morebits.array.uniq(Morebits.string.splitWeightedByKeys(unbinder.content, '[[', ']]'));
for (varlet i = 0; i < allLinks.length; ++i) {
if (links_re.test(allLinks[i])) {
varconst replacement = '<!-- ' + reason + allLinks[i] + ' -->';
unbinder.content = unbinder.content.replace(allLinks[i], replacement, 'g');
// unbind the newly created comments
unbinder.unbind('<!--', '-->');
}
}
// unbind the newly created comments
unbinder.unbind('<!--', '-->');
 
// Check for gallery images, i.e. instances that must start on a new line,
// eventually preceded with some space, and must include File: prefix
// Will eat the whole line.
varconst gallery_image_re = new RegExp('(^\\s*' + Morebits.namespaceRegex(?:[Ii]mage|[Ff]ile6) + ':\\s*' + image_re_string + '\\s*(?:\\|.*?$|$))', 'mg');
unbinder.content = unbinder.content.replace(gallery_image_re, '<!-- ' + reason + '$1 -->');
 
Line 4,042 ⟶ 4,991:
unbinder.unbind('<!--', '-->');
 
// Check free image usages, for example as template arguments, might have the File: prefix excluded, but must be preceededpreceded by an |
// Will only eat the image name and the preceedingpreceding bar and an eventual named parameter
varconst free_image_re = new RegExp('(\\|\\s*(?:[\\w\\s]+\\=)?\\s*(?:' + Morebits.namespaceRegex(?:[Ii]mage|[Ff]ile6) + ':\\s*)?' + image_re_string + ')', 'mg');
unbinder.content = unbinder.content.replace(free_image_re, '<!-- ' + reason + '$1 -->');
// Rebind the content now, we are done!
Line 4,052 ⟶ 5,001:
 
/**
* Converts first usageuses of [[File:`image`]] to [[File:`image`|`data`]].
* @param {string} image - Image name without File: prefix
* @param {string} data
*
* @param {string} image - Image name without File: prefix.
* @returns {Morebits.wikitext.page}
* @param {string} data - The display options.
* @return {Morebits.wikitext.page}
*/
addToImageComment: function(image, data) {
const image_re_string = Morebits.pageNameRegex(image);
var first_char = image.substr(0, 1);
const links_re = new RegExp('\\[\\[' + Morebits.namespaceRegex(6) + ':\\s*' + image_re_string + '\\s*[\\|(?:\\]\\])]');
var first_char_regex = Morebits.string.escapeRegExp(first_char);
const allLinks = Morebits.string.splitWeightedByKeys(this.text, '[[', ']]');
if (first_char.toUpperCase() !== first_char.toLowerCase()) {
for (let i = 0; i < allLinks.length; ++i) {
first_char_regex = '[' + Morebits.string.escapeRegExp(first_char.toUpperCase()) + Morebits.string.escapeRegExp(first_char.toLowerCase()) + ']';
}
var image_re_string = '(?:[Ii]mage|[Ff]ile):\\s*' + first_char_regex + Morebits.string.escapeRegExp(image.substr(1));
var links_re = new RegExp('\\[\\[' + image_re_string);
var allLinks = Morebits.array.uniq(Morebits.string.splitWeightedByKeys(this.text, '[[', ']]'));
for (var i = 0; i < allLinks.length; ++i) {
if (links_re.test(allLinks[i])) {
varlet replacement = allLinks[i];
// just put it at the end?
replacement = replacement.replace(/\]\]$/, '|' + data + ']]');
this.text = this.text.replace(allLinks[i], replacement, 'g');
}
}
varconst gallery_re = new RegExp('^(\\s*' + image_re_string + '.*?)\\|?(.*?)$', 'mg');
varconst newtext = '$1|$2 ' + data;
this.text = this.text.replace(gallery_re, newtext);
return this;
Line 4,082 ⟶ 5,026:
 
/**
* RemovesRemove all transclusions of a template from page text.
*
* @param {string} template - Page name whose transclusions are to be removed,
* include namespace prefix only if not in template namespace.
* @return {Morebits.wikitext.page}
*
* @returns {Morebits.wikitext.page}
*/
removeTemplate: function(template) {
const template_re_string = Morebits.pageNameRegex(template);
var first_char = template.substr(0, 1);
const links_re = new RegExp('\\{\\{(?:' + Morebits.namespaceRegex(10) + ':)?\\s*' + template_re_string + '\\s*[\\|(?:\\}\\})]');
var template_re_string = '(?:[Tt]emplate:)?\\s*[' + first_char.toUpperCase() + first_char.toLowerCase() + ']' + Morebits.string.escapeRegExp(template.substr(1));
const allTemplates = Morebits.string.splitWeightedByKeys(this.text, '{{', '}}', [ '{{{', '}}}' ]);
var links_re = new RegExp('\\{\\{' + template_re_string);
for (let i = 0; i < allTemplates.length; ++i) {
var allTemplates = Morebits.array.uniq(Morebits.string.splitWeightedByKeys(this.text, '{{', '}}', [ '{{{', '}}}' ]));
for (var i = 0; i < allTemplates.length; ++i) {
if (links_re.test(allTemplates[i])) {
this.text = this.text.replace(allTemplates[i], '', 'g');
}
}
Line 4,104 ⟶ 5,047:
* Smartly insert a tag atop page text but after specified templates,
* such as hatnotes, short description, or deletion and protection templates.
* Notably, does *not* insert a newline after the tag.
*
* @param {string} tag - The tag to be inserted.
* @param {string|string[]} regex - Templates after which to insert tag,
* given as either as a (regex-valid) string or an array to be joined by pipes.
* @param {string} [flags=i] - Regex flags to apply. Optional, defaults`''` to /iprovide no flags;
* other falsey values will default to `i`.
* @param {string|string[]} [preRegex] - Optional regex string or array to match
* before any template matches (i.e. before `{{`), such as html comments.
* @return {Morebits.wikitext.page}
*
* @returns {Morebits.wikitext.page}
*/
insertAfterTemplates: function(tag, regex, flags, preRegex) {
Line 4,128 ⟶ 5,071:
}
 
flagsif =(typeof flags ||!== 'istring';) {
flags = 'i';
}
 
if (!preRegex || !preRegex.length) {
Line 4,135 ⟶ 5,080:
preRegex = preRegex.join('|');
}
 
 
// Regex is extra complicated to allow for templates with
Line 4,167 ⟶ 5,111:
},
 
/**
/** @returns {string} */
* Get the manipulated wikitext.
*
* @return {string}
*/
getText: function() {
return this.text;
Line 4,173 ⟶ 5,121:
};
 
/* *********** Morebits.userspaceLogger ************ */
/**
* Handles logging actions to a userspace log.
* *********** Morebits.userspaceLogger ************
* Used in CSD, PROD, and XFD.
* Handles logging actions to a userspace log, used in
*
* twinklespeedy and twinkleprod.
* @memberof Morebits
* @class
* @param {string} logPageName - Title of the subpage of the current user's log.
*/
 
Morebits.userspaceLogger = function(logPageName) {
if (!logPageName) {
throw new Error('no log page name specified');
}
/**
* The text to prefix the log with upon creation, defaults to empty.
*
* @type {string}
*/
this.initialText = '';
/**
* The header level to use for months, defaults to 3 (`===`).
*
* @type {number}
*/
this.headerLevel = 3;
this.changeTags = '';
 
/**
* Log the entry.
*
* @param {string} logText - Doesn't include leading `#` or `*`.
* @param {string} summaryText - Edit summary.
* @return {jQuery.Promise}
*/
this.log = function(logText, summaryText) {
const def = $.Deferred();
if (!logText) {
return def.reject();
}
varconst page = new Morebits.wiki.page('User:' + mw.config.get('wgUserName') + '/' + logPageName,
'Adding entry to userspace log'); // make this '... to ' + logPageName ?
return page.load(function(pageobj) => {
// add blurb if log page doesn't exist or is blank
varlet text = pageobj.getPageText() || this.initialText;
 
// create monthly header if it doesn't exist already
varconst date = new Morebits.date(pageobj.getLoadTime());
if (!date.monthHeaderRegex().exec(text)) {
text += '\n\n' + date.monthHeader(this.headerLevel);
Line 4,207 ⟶ 5,176:
pageobj.setChangeTags(this.changeTags);
pageobj.setCreateOption('recreate');
pageobj.save(def.resolve, def.reject);
}.bind(this));
return def;
};
};
 
/* **************** Morebits.status **************** */
/**
* Create and show status messages of varying urgency.
* **************** Morebits.status ****************
* {@link Morebits.status.init|Morebits.status.init()} must be called before
*/
* any status object is created, otherwise those statuses won't be visible.
 
/* *
* @memberof Morebits
* @constructor
* @class
* Morebits.status.init() must be called before any status object is created, otherwise
* @param {string} text - Text before the the colon `:`.
* those statuses won't be visible.
* @param {Stringstring} textstat - Text before theafter the colon `:`.
* @param {Stringstring} stat[type=status] - Text afterDetermine the colonfont color of the `:`status
* line, allowable values are: `status` (blue), `info` (green), `warn` (red),
* @param {String} [type=status] - This parameter determines the font color of the status line,
* this can be 'status' (blue), 'info' (green), 'warn' (red), or '`error'` (bold red).
* The default is 'status'
*/
 
Morebits.status = function Status(text, stat, type) {
this.textRaw = text;
this.text = thisMorebits.codifycreateHtml(text);
this.type = type || 'status';
this.generate();
Line 4,238 ⟶ 5,208:
 
/**
* Specify an area for status message elements to be added to.
*
* @param {HTMLElement} root - usually a div element
* @memberof Morebits.status
* @param {HTMLElement} root - Usually a div element.
* @throws If `root` is not an `HTMLElement`.
*/
Morebits.status.init = function(root) {
Line 4,254 ⟶ 5,227:
Morebits.status.root = null;
 
/**
/** @param {Function} handler - function to execute on error */
* @memberof Morebits.status
* @param {Function} handler - Function to execute on error.
* @throws When `handler` is not a function.
*/
Morebits.status.onError = function(handler) {
if (typeof handler === 'function') {
Morebits.status.errorEvent = handler;
} else {
throw new Error('Morebits.status.onError: handler is not a function');
}
};
Line 4,265 ⟶ 5,242:
Morebits.status.prototype = {
stat: null,
statRaw: null,
text: null,
textRaw: null,
Line 4,272 ⟶ 5,250:
linked: false,
 
/** Add the status element node to the DOM. */
link: function() {
if (!this.linked && Morebits.status.root) {
Line 4,280 ⟶ 5,258:
},
 
/** Remove the status element node from the DOM. */
unlink: function() {
if (this.linked) {
Line 4,289 ⟶ 5,267:
 
/**
* Create a document fragment withUpdate the status text.
*
* @param {(string|Element|Array)} obj
* @param {string} status - Part of status message after colon.
* @returns {DocumentFragment}
* @param {string} type - 'status' (blue), 'info' (green), 'warn'
*/
* (red), or 'error' (bold red).
codify: function(obj) {
if (!Array.isArray(obj)) {
obj = [ obj ];
}
var result;
result = document.createDocumentFragment();
for (var i = 0; i < obj.length; ++i) {
if (typeof obj[i] === 'string') {
result.appendChild(document.createTextNode(obj[i]));
} else if (obj[i] instanceof Element) {
result.appendChild(obj[i]);
} // Else cosmic radiation made something shit
}
return result;
 
},
 
/**
* Update the status
* @param {String} status - Part of status message after colon `:`
* @param {String} type - 'status' (blue), 'info' (green), 'warn' (red), or 'error' (bold red)
*/
update: function(status, type) {
this.statstatRaw = this.codify(status);
this.stat = Morebits.createHtml(status);
if (type) {
this.type = type;
Line 4,329 ⟶ 5,288:
 
// also log error messages in the browser console
console.error(this.textRaw + ': ' + statusthis.statRaw); // eslint-disable-line no-console
}
}
Line 4,335 ⟶ 5,294:
},
 
/** Produce the html for first part of the status message. */
generate: function() {
this.node = document.createElement('div');
Line 4,344 ⟶ 5,303:
},
 
/** Complete the html, for the second part of the status message. */
render: function() {
this.node.className = 'morebits_status_' + this.type;
Line 4,366 ⟶ 5,325:
}
};
/**
 
* @memberof Morebits.status
* @param {string} text - Before colon
* @param {string} status - After colon
* @return {Morebits.status} - `status`-type (blue)
*/
Morebits.status.status = function(text, status) {
return new Morebits.status(text, status);
};
/**
* @memberof Morebits.status
* @param {string} text - Before colon
* @param {string} status - After colon
* @return {Morebits.status} - `info`-type (green)
*/
Morebits.status.info = function(text, status) {
return new Morebits.status(text, status, 'info');
};
/**
 
* @memberof Morebits.status
* @param {string} text - Before colon
* @param {string} status - After colon
* @return {Morebits.status} - `warn`-type (red)
*/
Morebits.status.warn = function(text, status) {
return new Morebits.status(text, status, 'warn');
};
/**
 
* @memberof Morebits.status
* @param {string} text - Before colon
* @param {string} status - After colon
* @return {Morebits.status} - `error`-type (bold red)
*/
Morebits.status.error = function(text, status) {
return new Morebits.status(text, status, 'error');
Line 4,382 ⟶ 5,365:
* For the action complete message at the end, create a status line without
* a colon separator.
*
* @param {String} text
* @memberof Morebits.status
* @param {string} text
*/
Morebits.status.actionCompleted = function(text) {
varconst node = document.createElement('div');
node.appendChild(document.createElement('b')).appendChild(document.createTextNode(text));
node.className = 'morebits_status_info morebits_action_complete';
if (Morebits.status.root) {
Morebits.status.root.appendChild(node);
Line 4,394 ⟶ 5,379:
 
/**
* Display the user's rationale, comments, etc. backBack to them after a failure,
* so that they may re-use it.
*
* @memberof Morebits.status
* @param {string} comments
* @param {string} message
*/
Morebits.status.printUserText = function(comments, message) {
varconst p = document.createElement('p');
p.innerHTML = message;
varconst div = document.createElement('div');
div.className = 'toccoloursmorebits-usertext';
div.style.marginTop = '0';
div.style.whiteSpace = 'pre-wrap';
Line 4,410 ⟶ 5,397:
Morebits.status.root.appendChild(p);
};
 
 
 
/**
* Simple helper function to create a simple node.
* **************** Morebits.htmlNode() ****************
*
* Simple helper function to create a simple node
* @param {string} type - typeType of HTML element.
* @param {string} textcontent - textText content.
* @param {string} [color] - fontFont color.
* @returnsreturn {HTMLElement}
*/
Morebits.htmlNode = function (type, content, color) {
varconst node = document.createElement(type);
if (color) {
node.style.color = color;
Line 4,429 ⟶ 5,414:
return node;
};
 
 
 
/**
* Add shift-click support for checkboxes. The wikibits version
* **************** Morebits.checkboxShiftClickSupport() ****************
* (`window.addCheckboxClickHandlers`) has some restrictions, and doesn't work
* shift-click-support for checkboxes
* with checkboxes inside a sortable table, so let's build our own.
* wikibits version (window.addCheckboxClickHandlers) has some restrictions, and
*
* doesn't work with checkboxes inside a sortable table, so let's build our own.
* @param jQuerySelector
* @param jQueryContext
*/
Morebits.checkboxShiftClickSupport = function (jQuerySelector, jQueryContext) {
varlet lastCheckbox = null;
 
function clickHandler(event) {
varconst thisCb = this;
if (event.shiftKey && lastCheckbox !== null) {
varconst $cbs = $(jQuerySelector, jQueryContext); // can't cache them, obviously, if we want to support resortingre-sorting
varlet index = -1, lastIndex = -1, i;
for (i = 0; i < $cbs.length; i++) {
if ($cbs[i] === thisCb) {
index = i;
if (lastIndex > -1) {
Line 4,453 ⟶ 5,438:
}
}
if ($cbs[i] === lastCheckbox) {
lastIndex = i;
if (index > -1) {
Line 4,463 ⟶ 5,448:
if (index > -1 && lastIndex > -1) {
// inspired by wikibits
varconst endState = thisCb.checked;
varlet start, finish;
if (index < lastIndex) {
start = index + 1;
Line 4,474 ⟶ 5,459:
 
for (i = start; i <= finish; i++) {
if ($cbs[i].checked !== endState) {
$cbs[i].click();
}
}
Line 4,484 ⟶ 5,469:
}
 
$(jQuerySelector, jQueryContext).clickon('click', clickHandler);
};
 
/* **************** Morebits.batchOperation **************** */
 
/**
 
/** **************** Morebits.batchOperation ****************
* Iterates over a group of pages (or arbitrary objects) and executes a worker function
* for each.
*
* `setPageList(pageList)`: Sets the list of pages to work on. It should be an
* Constructor: Morebits.batchOperation(currentAction)
* array of page names strings.
*
* `setOption(optionName, optionValue)`: Sets a known option:
* setPageList(wikitext): Sets the list of pages to work on.
* - `chunkSize` (integer): The size of chunks to break the array into (default
* It should be an array of page names (strings).
* 50). Setting this to a small value (<5) can cause problems.
* - `preserveIndividualStatusLines` (boolean): Keep each page's status element
* visible when worker is complete? See note below.
*
* `run(worker, postFinish)`: Runs the callback `worker` for each page in the
* setOption(optionName, optionValue): Sets a known option:
* list. The callback must call `workerSuccess` when succeeding, or
* - chunkSize (integer): the size of chunks to break the array into (default 50).
* `workerFailure` when failing. If using {@link Morebits.wiki.api} or
* Setting this to a small value (<5) can cause problems.
* {@link Morebits.wiki.page}, this is easily done by passing these two
* - preserveIndividualStatusLines (boolean): keep each page's status element visible
* functions as parameters to the methods on those objects: for instance,
* when worker is complete? See note below
* `page.save(batchOp.workerSuccess, batchOp.workerFailure)`. Make sure the
* methods are called directly if special success/failure cases arise. If you
* omit to call these methods, the batch operation will stall after the first
* chunk! Also ensure that either workerSuccess or workerFailure is called no
* more than once. The second callback `postFinish` is executed when the
* entire batch has been processed.
*
* If using `preserveIndividualStatusLines`, you should try to ensure that the
* run(worker, postFinish): Runs the callback `worker` for each page in the list.
* `workerSuccess` callback has access to the page title. This is no problem for
* The callback must call workerSuccess when succeeding, or workerFailure
* {@link Morebits.wiki.page} objects. But when using the API, please set the
* when failing. If using Morebits.wiki.api or Morebits.wiki.page, this is easily
* |pageName| property on the {@link Morebits.wiki.api} object.
* done by passing these two functions as parameters to the methods on those
* objects, for instance, page.save(batchOp.workerSuccess, batchOp.workerFailure).
* Make sure the methods are called directly if special success/failure cases arise.
* If you omit to call these methods, the batch operation will stall after the first
* chunk! Also ensure that either workerSuccess or workerFailure is called no more
* than once.
* The second callback `postFinish` is executed when the entire batch has been processed.
*
* If using preserveIndividualStatusLines, you should try to ensure that the
* workerSuccess callback has access to the page title. This is no problem for
* Morebits.wiki.page objects. But when using the API, please set the
* |pageName| property on the Morebits.wiki.api object.
*
* There are sample batchOperation implementations using Morebits.wiki.page in
* twinklebatchdelete.js, twinklebatchundelete.js, and twinklebatchprotect.js.
*/
* @memberof Morebits
 
* @class
/**
* @constructor
* @param {string} [currentAction]
*/
Morebits.batchOperation = function(currentAction) {
varconst ctx = {
// backing fields for public properties
pageList: null,
Line 4,538 ⟶ 5,520:
 
// internal counters, etc.
statusElement: new Morebits.status(currentAction || msg('batch-starting', 'Performing batch operation')),
worker: null, // function that executes for each item in pageList
postFinish: null, // function that executes when the whole batch has been processed
Line 4,555 ⟶ 5,537:
 
/**
* Sets the list of pages to work on.
*
* @param {Array} pageList Array of objects over which you wish to execute the worker function
* @param {Array} pageList - Array of objects over which you wish to execute the worker function
* This is usually the list of page names (strings).
*/
Line 4,564 ⟶ 5,547:
 
/**
* Sets a known option:.
*
* - chunkSize (integer):
* @param {string} optionName - Name of the option:
* The size of chunks to break the array into (default 50).
* - chunkSize (integer): The size of chunks to break the array into
* Setting this to a small value (<5) can cause problems.
* (default 50). Setting this to a small value (<5) can cause problems.
* - preserveIndividualStatusLines (boolean):
* - preserveIndividualStatusLines (boolean): Keep each page's status
* element visible when worker is complete?
* @param {number|boolean} optionValue - Value to which the option is
* to be set. Should be an integer for chunkSize and a boolean for
* preserveIndividualStatusLines.
*/
this.setOption = function(optionName, optionValue) {
Line 4,578 ⟶ 5,565:
* Runs the first callback for each page in the list.
* The callback must call workerSuccess when succeeding, or workerFailure when failing.
* Runs the optional second callback when the whole batch has been processed (optional).
*
* @param {Function} worker
* @param {Function} [postFinish]
Line 4,597 ⟶ 5,585:
ctx.pageChunks = [];
 
varconst total = ctx.pageList.length;
if (!total) {
ctx.statusElement.info(msg('batch-no-pages', 'no pages specified'));
ctx.running = false;
if (ctx.postFinish) {
Line 4,617 ⟶ 5,605:
 
/**
* To be called by worker before it terminates succesfullysuccessfully.
*
* @param {(Morebits.wiki.page|Morebits.wiki.api|string)} arg
* @param {(Morebits.wiki.page|Morebits.wiki.api|string)} arg -
* This should be the `Morebits.wiki.page` or `Morebits.wiki.api` object used by worker
* (for the adjustment of status lines emitted by them).
* If no Morebits.wiki.* object is used (ege.g. you're using `mw.Api()` or something else), and
* `preserveIndividualStatusLines` option is on, give the page name (string) as argument.
*/
this.workerSuccess = function(arg) {
 
var createPageLink = function(pageName) {
var link = document.createElement('a');
link.setAttribute('href', mw.util.getUrl(pageName));
link.appendChild(document.createTextNode(pageName));
return link;
};
 
if (arg instanceof Morebits.wiki.api || arg instanceof Morebits.wiki.page) {
// update or remove status line
varconst statelem = arg.getStatusElement();
if (ctx.options.preserveIndividualStatusLines) {
if (arg.getPageName || arg.pageName || (arg.query && arg.query.title)) {
// we know the page title - display a relevant message
varconst pageName = arg.getPageName ? arg.getPageName() : arg.pageName || arg.query.title;
statelem.info([msg('batch-done-page', pageName, 'completed ([[', createPageLink(+ pageName), + ']])']));
} else {
// we don't know the page title - just display a generic message
statelem.info(msg('done', 'done'));
}
} else {
Line 4,651 ⟶ 5,633:
 
} else if (typeof arg === 'string' && ctx.options.preserveIndividualStatusLines) {
new Morebits.status(arg, [msg('batch-done (-page', createPageLink(arg), ')completed ([[' + arg + ']])'));
}
 
Line 4,664 ⟶ 5,646:
// private functions
 
varconst thisProxy = this;
 
var fnStartNewChunk = function() {
varconst chunk = ctx.pageChunks[++ctx.currentChunkIndex];
if (!chunk) {
return; // done! yay
}
 
// start workers for the current chunk
ctx.countStarted += chunk.length;
chunk.forEach(function(page) => {
ctx.worker(page, thisProxy);
});
Line 4,683 ⟶ 5,665:
 
// update overall status line
varconst total = ctx.pageList.length;
if (ctx.countFinished < total) {
ctxconst progress = Math.statusElement.status(parseIntround(100 * ctx.countFinished / total, 10) + '%');
ctx.statusElement.status(msg('percent', progress, progress + '%'));
 
// start a new chunk if we're close enough to the end of the previous chunk, and
Line 4,694 ⟶ 5,677:
}
} else if (ctx.countFinished === total) {
varconst statusString = msg('batch-progress', ctx.countFinishedSuccess, ctx.countFinished, 'Done (' + ctx.countFinishedSuccess +
'/' + ctx.countFinished + ' actions completed successfully)');
if (ctx.countFinishedSuccess < ctx.countFinished) {
ctx.statusElement.warn(statusString);
Line 4,715 ⟶ 5,698:
};
};
 
 
 
/**
* Given a set of asynchronous functions to run along with their dependencies,
* **************** Morebits.simpleWindow ****************
* run them in an efficient sequence so that multiple functions
* A simple draggable window
* that don't depend on each other are triggered simultaneously. Where
* now a wrapper for jQuery UI's dialog feature
* dependencies exist, it ensures that the dependency functions finish running
* @requires {jquery.ui.dialog}
* before the dependent function runs. The values resolved by the dependencies
* are made available to the dependant as arguments.
*
* @memberof Morebits
* @class
*/
Morebits.taskManager = function(context) {
this.taskDependencyMap = new Map();
this.failureCallbackMap = new Map();
this.deferreds = new Map();
this.context = context || window;
 
/**
* Register a task along with its dependencies (tasks which should have finished
* execution before we can begin this one). Each task is a function that must return
* a promise. The function will get the values resolved by the dependency functions
* as arguments.
*
* @param {Function} func - A task.
* @param {Function[]} deps - Its dependencies.
* @param {Function} [onFailure] - a failure callback that's run if the task or any one
* of its dependencies fail.
*/
this.add = function(func, deps, onFailure) {
this.taskDependencyMap.set(func, deps);
this.failureCallbackMap.set(func, onFailure || (() => {}));
const deferred = $.Deferred();
this.deferreds.set(func, deferred);
};
 
/**
* Run all the tasks. Multiple tasks may be run at once.
*
* @return {jQuery.Promise} - Resolved if all tasks succeed, rejected otherwise.
*/
this.execute = function() {
const self = this; // proxy for `this` for use inside functions where `this` is something else
this.taskDependencyMap.forEach((deps, task) => {
const dependencyPromisesArray = deps.map((dep) => self.deferreds.get(dep));
$.when.apply(self.context, dependencyPromisesArray).then(function() {
const result = task.apply(self.context, arguments);
if (result === undefined) { // maybe the function threw, or it didn't return anything
mw.log.error('Morebits.taskManager: task returned undefined');
self.deferreds.get(task).reject.apply(self.context, arguments);
self.failureCallbackMap.get(task).apply(self.context, []);
}
result.then(function() {
self.deferreds.get(task).resolve.apply(self.context, arguments);
}, function() { // task failed
self.deferreds.get(task).reject.apply(self.context, arguments);
self.failureCallbackMap.get(task).apply(self.context, arguments);
});
}, function() { // one or more of the dependencies failed
self.failureCallbackMap.get(task).apply(self.context, arguments);
});
});
return $.when.apply(null, [...this.deferreds.values()]); // resolved when everything is done!
};
 
};
 
/**
* A simple draggable window, now a wrapper for jQuery UI's dialog feature.
* @constructor
*
* @memberof Morebits
* @class
* @requires jQuery.ui.dialog
* @param {number} width
* @param {number} height - The maximum allowable height for the content area.
*/
Morebits.simpleWindow = function SimpleWindow(width, height) {
varconst content = document.createElement('div');
this.content = content;
content.className = 'morebits-dialog-content';
Line 4,742 ⟶ 5,786:
buttons: { 'Placeholder button': function() {} },
dialogClass: 'morebits-dialog',
width: Math.min(parseInt(window.innerWidth, 10), parseInt(width ? width :|| 800, 10)),
// give jQuery the given height value (which represents the anticipated height of the dialog) here, so
// it can position the dialog appropriately
Line 4,758 ⟶ 5,802:
}
},
resizeEndresizeStop: function() {
this.scrollbox = null;
},
Line 4,769 ⟶ 5,813:
});
 
varconst $widget = $(this.content).dialog('widget');
 
// delete the placeholder button (it's only there so the buttonpane gets created)
$widget.find('button').each(function(key, value) => {
value.parentNode.removeChild(value);
});
 
// add container for the buttons we add, and the footer links (if any)
varconst buttonspan = document.createElement('span');
buttonspan.className = 'morebits-dialog-buttons';
varconst linksspan = document.createElement('span');
linksspan.className = 'morebits-dialog-footerlinks';
$widget.find('.ui-dialog-buttonpane').append(buttonspan, linksspan);
Line 4,785 ⟶ 5,829:
// resize the scrollbox with the dialog, if one is present
$widget.resizable('option', 'alsoResize', '#' + this.content.id + ' .morebits-scrollbox, #' + this.content.id);
 
// add skin-invert to "close" button
$('.morebits-dialog .ui-dialog-titlebar-close').addClass('skin-invert');
};
 
Line 4,795 ⟶ 5,842:
/**
* Focuses the dialog. This might work, or on the contrary, it might not.
*
* @returns {Morebits.simpleWindow}
* @return {Morebits.simpleWindow}
*/
focus: function() {
Line 4,805 ⟶ 5,853:
* Closes the dialog. If this is set as an event handler, it will stop the event
* from doing anything more.
*
* @returns {Morebits.simpleWindow}
* @param {event} [event]
* @return {Morebits.simpleWindow}
*/
close: function(event) {
Line 4,818 ⟶ 5,868:
* Shows the dialog. Calling display() on a dialog that has previously been closed
* might work, but it is not guaranteed.
*
* @returns {Morebits.simpleWindow}
* @return {Morebits.simpleWindow}
*/
display: function() {
if (this.scriptName) {
varconst $widget = $(this.content).dialog('widget');
$widget.find('.morebits-dialog-scriptname').remove();
varconst scriptnamespan = document.createElement('span');
scriptnamespan.className = 'morebits-dialog-scriptname';
scriptnamespan.textContent = this.scriptName + ' \u00B7 '; // U+00B7 MIDDLE DOT = &middot;
$widget.find('.ui-dialog-title').prepend(scriptnamespan);
}
 
varconst dialog = $(this.content).dialog('open');
if (window.setupTooltips && window.pg && window.pg.re && window.pg.re.diff) { // tie in with NAVPOP
dialog.parent()[0].ranSetupTooltipsAlready = false;
window.setupTooltips(dialog.parent()[0]);
}
this.setHeight(this.height); // init height algorithm
return this;
},
Line 4,841 ⟶ 5,892:
/**
* Sets the dialog title.
*
* @param {string} title
* @returnsreturn {Morebits.simpleWindow}
*/
setTitle: function(title) {
Line 4,852 ⟶ 5,904:
* Sets the script name, appearing as a prefix to the title to help users determine which
* user script is producing which dialog. For instance, Twinkle modules set this to "Twinkle".
*
* @param {string} name
* @returnsreturn {Morebits.simpleWindow}
*/
setScriptName: function(name) {
Line 4,862 ⟶ 5,915:
/**
* Sets the dialog width.
*
* @param {number} width
* @returnsreturn {Morebits.simpleWindow}
*/
setWidth: function(width) {
Line 4,873 ⟶ 5,927:
* Sets the dialog's maximum height. The dialog will auto-size to fit its contents,
* but the content area will grow no larger than the height given here.
*
* @param {number} height
* @returnsreturn {Morebits.simpleWindow}
*/
setHeight: function(height) {
Line 4,895 ⟶ 5,950:
/**
* Sets the content of the dialog to the given element node, usually from rendering
* a {@link Morebits.quickForm}.
* Re-enumerates the footer buttons, but leaves the footer links as they are.
* Be sure to call this at least once before the dialog is displayed...
*
* @param {HTMLElement} content
* @returnsreturn {Morebits.simpleWindow}
*/
setContent: function(content) {
Line 4,909 ⟶ 5,965:
/**
* Adds the given element node to the dialog content.
*
* @param {HTMLElement} content
* @returnsreturn {Morebits.simpleWindow}
*/
addContent: function(content) {
Line 4,916 ⟶ 5,973:
 
// look for submit buttons in the content, hide them, and add a proxy button to the button pane
varconst thisproxy = this;
$(this.content).find('input[type="submit"], button[type="submit"]').each(function(key, value) => {
value.style.display = 'none';
varconst button = document.createElement('button');
 
button.textContent = value.hasAttribute('value') ? value.getAttribute('value') : value.textContent ? value.textContent : 'Submit Query';
if (value.hasAttribute('value')) {
button.textContent = value.getAttribute('value');
} else if (value.textContent) {
button.textContent = value.textContent;
} else {
button.textContent = msg('submit', 'Submit');
}
 
button.className = value.className || 'submitButtonProxy';
// here is an instance of cheap coding, probably a memory-usage hit in using a closure here
button.addEventListener('click', function() => {
value.click();
}, false);
Line 4,932 ⟶ 5,997:
$(this.content).dialog('widget').find('.morebits-dialog-buttons').empty().append(this.buttons)[0].removeAttribute('data-empty');
} else {
$(this.content).dialog('widget').find('.morebits-dialog-buttons')[0].setAttribute('data-empty', 'data-empty'); // used by CSS
}
return this;
Line 4,938 ⟶ 6,003:
 
/**
* Removes all contents from the dialog, barring any footer links.
*
* @returns {Morebits.simpleWindow}
* @return {Morebits.simpleWindow}
*/
purgeContent: function() {
Line 4,957 ⟶ 6,023:
* For example, Twinkle's CSD module adds a link to the CSD policy page,
* as well as a link to Twinkle's documentation.
*
* @param {string} text Link's text content
* @param {string} wikiPagetext - LinkDisplay targettext.
* @param {string} wikiPage - Link target.
* @param {boolean} [prep=false] - Set true to prepend rather than append.
* @returnsreturn {Morebits.simpleWindow}
*/
addFooterLink: function(text, wikiPage, prep) {
varconst $footerlinks = $(this.content).dialog('widget').find('.morebits-dialog-footerlinks');
if (this.hasFooterLinks) {
varconst bullet = document.createElement('span');
bullet.textContent = msg('bullet-separator', ' \u2022 '); // U+2022 BULLET
if (prep) {
$footerlinks.prepend(bullet);
Line 4,973 ⟶ 6,040:
}
}
varconst link = document.createElement('a');
link.setAttribute('href', mw.util.getUrl(wikiPage));
link.setAttribute('title', wikiPage);
Line 4,988 ⟶ 6,055:
 
/**
* SetSets whether the window should be modal or not. Modal dialogs create
* Ifan setoverlay tobelow true,the otherdialog itemsbut onabove theother page will be disabled, ielements.e., cannot beThis
* must be used (if necessary) before calling display().
* interacted with. Modal dialogs create an overlay below the dialog but above
*
* other page elements.
* @param {boolean} [modal=false] - If set to true, other items on the
* This must be used (if necessary) before calling display()
* page will be disabled, i.e., cannot be interacted with.
* Default: false
* @return {Morebits.simpleWindow}
* @param {boolean} modal
* @returns {Morebits.simpleWindow}
*/
setModality: function(modal) {
Line 5,004 ⟶ 6,070:
 
/**
* Enables or disables all footer buttons on all {@link Morebits.simpleWindowssimpleWindow}s in the current page.
* This should be called with `false` when the button(s) become irrelevant (e.g. just before
* {@link Morebits.status.init} is called).
* This is not an instance method so that consumers don't have to keep a reference to the
* original `Morebits.simpleWindow` object sitting around somewhere. Anyway, most of the time
* there will only be one `Morebits.simpleWindow` open, so this shouldn't matter.
*
* @memberof Morebits.simpleWindow
* @param {boolean} enabled
*/
Line 5,016 ⟶ 6,084:
};
 
// Create capital letter aliases for all Morebits @classes (functions that work with the `new` keyword), to follow the coding convention that classes should start with an uppercase letter. This will let us start fixing ESLint `new-cap` errors in other files.
Morebits.BatchOperation = Morebits.batchOperation;
Morebits.Date = Morebits.date;
Morebits.QuickForm = Morebits.quickForm;
Morebits.QuickForm.Element = Morebits.quickForm.element;
Morebits.SimpleWindow = Morebits.simpleWindow;
Morebits.Status = Morebits.status;
Morebits.TaskManager = Morebits.taskManager;
Morebits.Unbinder = Morebits.unbinder;
Morebits.UserspaceLogger = Morebits.userspaceLogger;
Morebits.wiki.Api = Morebits.wiki.api;
Morebits.wiki.Page = Morebits.wiki.page;
Morebits.wiki.Preview = Morebits.wiki.preview;
Morebits.wikitext.Page = Morebits.wikitext.page;
 
}());
}(window, document, jQuery)); // End wrap with anonymous function
 
 
/**
* If this script is being executed outside a ResourceLoader context, we add some
* global assignments for legacy scripts, hopefully these can be removed down the line.
*
* IMPORTANT NOTE:
Line 5,029 ⟶ 6,110:
*/
 
if (typeof arguments === 'undefined') { // typeof is here for a reason...
/* global Morebits */
window.SimpleWindow = Morebits.simpleWindow;