User:Abelmoschus Esculentus/AFCRHS.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
Documentation for this user script can be added at User:Abelmoschus Esculentus/AFCRHS. |
//Forked from [[User:EnterpriseyBot/AFCRHS.js]]
//<nowiki>
(function() {
if (wgPageName.indexOf('Wikipedia:Articles_for_creation/Redirects') === -1) {
return;
}
var afcHelper_RedirectPageName = wgPageName.replace(/_/g, ' ');
var afcHelper_RedirectSubmissions = new Array();
var afcHelper_RedirectSections = new Array();
var afcHelper_numTotal = 0;
var afcHelper_AJAXnumber = 0;
var afcHelper_Submissions = new Array();
var needsupdate = new Array();
var afcHelper_redirectDecline_reasonhash = {
'exists': 'The title you suggested already exists on Wikipedia',
'blank': 'We cannot accept empty submissions',
'notarget': ' A redirect cannot be created unless the target is an existing article. Either you have not specified the target, or the target does not exist',
'unlikely': 'The title you suggested seems unlikely. Could you provide a source showing that it is a commonly used alternate name?',
'notredirect': 'This request is not a redirect request',
'custom': ''
};
var afcHelper_categoryDecline_reasonhash = {
'exists': 'The category you suggested already exists on Wikipedia',
'blank': 'We cannot accept empty submissions',
'unlikely': 'It seems unlikely that there are enough pages to support this category',
'notcategory': 'This request is not a category request',
'custom': ''
};
function afcHelper_redirect_init() {
pagetext = afcHelper_getPageText(afcHelper_RedirectPageName);
// cleanup the wikipedia links for preventing stuff like https://wiki.riteme.site/w/index.php?diff=576244067&oldid=576221437
pagetext = afcHelper_cleanuplinks(pagetext);
// first, strip out the parts before the first section.
var section_re = /==.*?==/;
pagetext = pagetext.substring(pagetext.search(section_re));
// then split it into the rest of the sections
afcHelper_RedirectSections = pagetext.match(/^==.*?==$((\r?\n?)(?!==[^=]).*)*/img);
// parse the sections.
for (var i = 0; i < afcHelper_RedirectSections.length; i++) {
var closed = /(\{\{\s*afc(?!\s+comment)|This is an archived discussion)/i.test(afcHelper_RedirectSections[i]);
if (!closed) {
// parse.
var header = afcHelper_RedirectSections[i].match(section_re)[0];
if (header.search(/Redirect request/i) !== -1) {
var wikilink_re = /\[\[(\s*[^=]*?)*?\]\]/g;
var links = header.match(wikilink_re);
if (!links) continue;
for (var l = 0; l < links.length; l++) {
links[l] = links[l].replace(/[\[\]]/g, '');
if (links[l].charAt(0) === ':') links[l] = links[l].substring(1);
}
var re = /Target of redirect:\s*\[\[([^\[\]]*)\]\]/i;
re.test(afcHelper_RedirectSections[i]);
var to = $.trim(RegExp.$1);
var reasonRe = /Reason:[ \t]*?(.+)/i;
var reasonMatch = reasonRe.exec(afcHelper_RedirectSections[i]);
var reason = reasonMatch && reasonMatch[1].trim() ? reasonMatch[1] : null;
var sourceRe = /Source.*?:[ \t]*?(.+)/i;
var sourceMatch = sourceRe.exec(afcHelper_RedirectSections[i]);
var source = sourceMatch && sourceMatch[1].trim() ? sourceMatch[1] : null;
var submission = {
type: 'redirect',
from: new Array(),
section: i,
to: to,
title: to,
reason: reason,
source: source
};
for (var j = 0; j < links.length; j++) {
var sub = {
type: 'redirect',
to: to,
id: afcHelper_numTotal,
title: links[j],
action: ''
};
submission.from.push(sub);
afcHelper_Submissions.push(sub);
afcHelper_numTotal++;
}
afcHelper_RedirectSubmissions.push(submission);
} else if (header.search(/Category request/i) !== -1) {
// Find a wikilink in the header, and assume it's the category to create
var category_name = /\[\[[^\[\]]+\]\]/.exec(header);
if (!category_name) continue;
category_name = category_name[0];
category_name = category_name.replace(/[\[\]]/g, '');
category_name = category_name.replace(/Category\s*:\s*/gi, 'Category:');
if (category_name.charAt(0) === ':') category_name = category_name.substring(1);
// Figure out the parent categories
var request_text = afcHelper_RedirectSections[i].substring(header.length);
var parent_cats = [];
var parent_cat_match = null;
var parent_cat_regex = /\[\[\s*:\s*(Category:[^\]\[]*)\]\]/ig;
do {
parent_cat_match = parent_cat_regex.exec(request_text);
if (parent_cat_match) {
parent_cats.push(parent_cat_match[1]);
}
} while (parent_cat_match);
var submission = {
type: 'category',
title: category_name,
section: i,
id: afcHelper_numTotal,
action: '',
parents: parent_cats.join(',')
};
afcHelper_numTotal++;
afcHelper_RedirectSubmissions.push(submission);
afcHelper_Submissions.push(submission);
}
} // end if (!closed)
} // end loop over sections
// Build the form
var $form = $('<h3>Reviewing AfC redirect requests</h3>');
displayMessage($form);
var $messageDiv = $form.parent();
// now layout the text.
var afcHelper_Redirect_empty = 1;
var ACTIONS = [
{label: 'Accept', value: 'accept'},
{label: 'Decline', value: 'decline'},
{label: 'Comment',value: 'comment'},
{label: 'None', selected: true, value: 'none'}
];
for (var k = 0; k < afcHelper_RedirectSubmissions.length; k++) {
if (afcHelper_RedirectSubmissions[k].to !== undefined)
var submissionname = afcHelper_RedirectSubmissions[k].to.replace(/\s/g,'');
else
var submissionname = "";
var $thisSubList = $('<ul>');
var $thisSubListElement = $('<li>');
if (afcHelper_RedirectSubmissions[k].type === 'redirect') {
$thisSubListElement.append('Redirect(s) to ');
if (!submissionname) {
for (var i = afcHelper_RedirectSubmissions[k].from.length - 1; i >= 0; i--) {
needsupdate.push({
id: afcHelper_RedirectSubmissions[k].from[i].id,
reason: 'notarget'
});
}
} else if (!afcHelper_RedirectSubmissions[k].to) {
for (var i = afcHelper_RedirectSubmissions[k].from.length - 1; i >= 0; i--) {
needsupdate.push({
id: afcHelper_RedirectSubmissions[k].from[i].id,
reason: 'notredirect'
});
}
}
if (afcHelper_RedirectSubmissions[k] === '' || afcHelper_RedirectSubmissions[k] === ' ') {
$thisSubListElement.append('Empty submission \#' + afcHelper_Redirect_empty);
afcHelper_Redirect_empty++;
} else {
if (submissionname.length > 0) {
$thisSubListElement.append($('<a>')
.attr('href', wgArticlePath.replace("$1", encodeURIComponent(afcHelper_RedirectSubmissions[k].to)))
.attr('target', '_blank')
.text(afcHelper_RedirectSubmissions[k].to));
} else {
$thisSubListElement.append('<b>no target given</b>: ');
}
}
var $fromList = $('<ul>').appendTo($thisSubListElement);
for (var l = 0; l < afcHelper_RedirectSubmissions[k].from.length; l++) {
var from = afcHelper_RedirectSubmissions[k].from[l];
var toarticle = from.title;
if (toarticle.replace(/\s*/gi, "").length == 0) toarticle = "<b>no title specified</b>, check the request details";
var reasonAndSource = $('<ul>');
if(afcHelper_RedirectSubmissions[k].reason)
reasonAndSource.append('<li>Reason: ' + afcHelper_RedirectSubmissions[k].reason + '</li>');
if(afcHelper_RedirectSubmissions[k].source)
reasonAndSource.append('<li>Source: ' + afcHelper_RedirectSubmissions[k].source + '</li>');
var googleSearchUrl = 'http://www.google.com/search?q="' +
encodeURIComponent(toarticle) + '"+-wikipedia.org';
$fromList.append($('<li>')
.append('From: ' + toarticle + ' (<small><a href=\'' + googleSearchUrl + '\'" target="_blank">' +
'Google</a> <b>·</b> <a href="https://wiki.riteme.site/wiki/Special:WhatLinksHere/' +
encodeURIComponent(toarticle) + '" target="_blank">what links here</a>)</small><br/>')
.append(reasonAndSource)
.append($('<label>').attr('for', 'afcHelper_redirect_action_' + from.id).text('Action: '))
.append(afcHelper_generateSelectObject('afcHelper_redirect_action_' + from.id, ACTIONS,
afcHelper_redirect_makeActionChange(from.id)))
.append($('<div>').attr('id', 'afcHelper_redirect_extra_' + from.id)));
}
} else {
var subId = afcHelper_RedirectSubmissions[k].id;
$thisSubListElement.append('Category submission: ')
.append($('<a>')
.attr('href', '/wiki/' + afcHelper_RedirectSubmissions[k].title)
.attr('title', afcHelper_RedirectSubmissions[k].title)
.text(afcHelper_RedirectSubmissions[k].title))
.append('<br />')
.append($('<label>').attr('for', 'afcHelper_redirect_action_' + subId).text('Action: '))
.append(afcHelper_generateSelectObject('afcHelper_redirect_action_' + subId, ACTIONS,
afcHelper_redirect_makeActionChange(subId)))
.append($('<div>').attr('id', 'afcHelper_redirect_extra_' + subId));
}
$thisSubList.append($thisSubListElement);
$messageDiv.append($thisSubList);
} // end loop over sections
$messageDiv.append($('<button>')
.attr('id', 'afcHelper_redirect_done_button')
.attr('name', 'afcHelper_redirect_done_button')
.text('Done')
.click(afcHelper_redirect_performActions));
for (var y = 0; y < needsupdate.length; y++){
$('#afcHelper_redirect_action_'+needsupdate[y].id).attr('value', 'decline');
afcHelper_redirect_onActionChange(needsupdate[y].id);
$('#afcHelper_redirect_decline_'+needsupdate[y].id).attr('value', needsupdate[y].reason);
}
}
function afcHelper_redirect_makeActionChange(id) {
return function() { afcHelper_redirect_onActionChange(id); };
}
function afcHelper_redirect_onActionChange(id) {
console.log("Entering afcHelper_redirect_onActionChange, id = " + id);
var $extra = $("#afcHelper_redirect_extra_" + id);
var selectValue = $("#afcHelper_redirect_action_" + id).val();
$extra.html(''); // Blank it first
if (selectValue === 'accept') {
if (afcHelper_Submissions[id].type === 'redirect') {
$extra.append('<label for="afcHelper_redirect_from_' + id + '">From: </label>');
$extra.append($('<input>')
.attr('type', 'text')
.attr('name', 'afcHelper_redirect_from_' + id)
.attr('id', 'afcHelper_redirect_from_' + id)
.attr('value', afcHelper_escapeHtmlChars(afcHelper_Submissions[id].title)));
$extra.html($extra.html() + ' <br /><label for="afcHelper_redirect_to_' + id + '">To: </label><input type="text" ' + 'name="afcHelper_redirect_to_' + id + '" id="afcHelper_redirect_to_' + id + '" value="' + afcHelper_escapeHtmlChars(afcHelper_Submissions[id].to) + '" />');
$extra.html($extra.html() + '<br /><label for="afcHelper_redirect_append_' + id + '">Template to append: (<a href="https://wiki.riteme.site/wiki/Wikipedia:TMR" target="_blank">Help</a>)</label>');
$extra.html($extra.html() + afcHelper_generateSelect('afcHelper_redirect_append_' + id, [{
label: 'None',
selected: true,
value: 'none'
}, {
label: 'Frequently used',
value: 'Frequently used',
disabled: true
}, {
label: 'R from alternative language',
value: 'R from alternative language'
}, {
label: 'R from alternative name',
value: 'R from alternative name'
}, {
label: 'R from modification',
value: 'R from modification'
}, {
label: 'R to section',
value: 'R to section'
}, {
label: 'R from diacritic',
value: 'R from diacritic'
}, {
label: 'R to diacritic',
value: 'R to diacritic'
}, {
label: 'From – abbreviation, capitalisation, and grammar',
value: 'From – abbreviation, capitalisation, and grammar',
disabled: true
}, {
label: 'R from acronym',
value: 'R from acronym'
}, {
label: 'R from initialism',
value: 'R from initialism'
}, {
label: 'R from CamelCase',
value: 'R from CamelCase'
}, {
label: 'R from miscapitalisation',
value: 'R from miscapitalisation'
}, {
label: 'R from other capitalisation',
value: 'R from other capitalisation'
}, {
label: 'R from modification',
value: 'R from modification'
}, {
label: 'R from plural',
value: 'R from plural'
}, {
label: 'From parts of speach',
value: 'From parts of speach',
disabled: true
}, {
label: 'R from adjective',
value: 'R from adjective'
}, {
label: 'R from adverb',
value: 'R from adverb'
}, {
label: 'R from common noun',
value: 'R from common noun'
}, {
label: 'R from gerund',
value: 'R from gerund'
}, {
label: 'R from proper noun',
value: 'R from proper noun'
}, {
label: 'R from verb',
value: 'R from verb'
}, {
label: 'From – spelling',
value: 'From – spelling',
disabled: true
}, {
label: 'R from alternative spelling',
value: 'R from alternative spelling'
}, {
label: 'R from misspelling',
value: 'R from misspelling'
}, {
label: 'R from American English',
value: 'R from American English'
}, {
label: 'R from British English',
value: 'R from British English'
}, {
label: 'R from ASCII-only',
value: 'R from ASCII-only'
}, {
label: 'R from diacritic',
value: 'R from diacritic'
}, {
label: 'R from ligature',
value: 'R from ligature'
}, {
label: 'R from stylization',
value: 'R from stylization'
}, {
label: 'R from alternative transliteration',
value: 'R from alternative transliteration'
}, {
label: 'R from Wade–Giles romanization',
value: 'R from Wade–Giles romanization'
}, {
label: 'From alternative names, general',
value: 'From alternative names, general',
disabled: true
}, {
label: 'R from alternative language',
value: 'R from alternative language'
}, {
label: 'R from alternative name',
value: 'R from alternative name'
}, {
label: 'R from former name',
value: 'R from former name'
}, {
label: 'R from historic name',
value: 'R from historic name'
}, {
label: 'R from incomplete name',
value: 'R from incomplete name'
}, {
label: 'R from incorrect name',
value: 'R from incorrect name'
}, {
label: 'R from letter–word combination',
value: 'R from letter–word combination'
}, {
label: 'R from long name',
value: 'R from long name'
}, {
label: 'R from portmanteau',
value: 'R from portmanteau'
}, {
label: 'R from predecessor company name',
value: 'R from predecessor company name'
}, {
label: 'R from short name',
value: 'R from short name'
}, {
label: 'R from sort name',
value: 'R from sort name'
}, {
label: 'R from less specific name',
value: 'R from less specific name'
}, {
label: 'R from more specific name',
value: 'R from more specific name'
}, {
label: 'R from antonym',
value: 'R from antonym'
}, {
label: 'R from eponym',
value: 'R from eponym'
}, {
label: 'R from synonym',
value: 'R from synonym'
}, {
label: 'R from Roman numerals',
value: 'R from Roman numerals'
}, {
label: 'From alternative names, geography',
value: 'From alternative names, geography',
disabled: true
}, {
label: 'R from Canadian settlement name',
value: 'R from Canadian settlement name'
}, {
label: 'R from name and country',
value: 'R from name and country'
}, {
label: 'R from city and state',
value: 'R from city and state'
}, {
label: 'R from city and province',
value: 'R from city and province'
}, {
label: 'R from more specific geographic name',
value: 'R from more specific geographic name'
}, {
label: 'R from postal abbreviation',
value: 'R from postal abbreviation'
}, {
label: 'R from postal code',
value: 'R from postal code'
}, {
label: 'R from US postal abbreviation',
value: 'R from US postal abbreviation'
}, {
label: 'From alternative names, organisms',
value: 'From alternative names, organisms',
disabled: true
}, {
label: 'R from scientific abbreviation',
value: 'R from scientific abbreviation'
}, {
label: 'R from scientific name',
value: 'R from scientific name'
}, {
label: 'R from alternative scientific name',
value: 'R from alternative scientific name'
}, {
label: 'R from monotypic taxon',
value: 'R from monotypic taxon'
}, {
label: 'From alternative names, people',
value: 'From alternative names, people',
disabled: true
}, {
label: 'R from birth name',
value: 'R from birth name'
}, {
label: 'R from given name',
value: 'R from given name'
}, {
label: 'R from married name',
value: 'R from married name'
}, {
label: 'R from name with title',
value: 'R from name with title'
}, {
label: 'R from non-neutral name',
value: 'R from non-neutral name'
}, {
label: 'R from personal name',
value: 'R from personal name'
}, {
label: 'R from pseudonym',
value: 'R from pseudonym'
}, {
label: 'R from relative',
value: 'R from relative'
}, {
label: 'R from spouse',
value: 'R from spouse'
}, {
label: 'R from surname',
value: 'R from surname'
}, {
label: 'From alternative names, technical',
value: 'From alternative names, technical',
disabled: true
}, {
label: 'R from Bluebook abbreviation',
value: 'R from Bluebook abbreviation'
}, {
label: 'R from brand name',
value: 'R from brand name'
}, {
label: 'R from drug trade name',
value: 'R from drug trade name'
}, {
label: 'R from file name',
value: 'R from file name'
}, {
label: 'R from Java package name',
value: 'R from Java package name'
}, {
label: 'R from MathSciNet abbreviation',
value: 'R from MathSciNet abbreviation'
}, {
label: 'R from molecular formula',
value: 'R from molecular formula'
}, {
label: 'R from NLM abbreviation',
value: 'R from NLM abbreviation'
}, {
label: 'R from product name',
value: 'R from product name'
}, {
label: 'R from slogan',
value: 'R from slogan'
}, {
label: 'R from symbol',
value: 'R from symbol'
}, {
label: 'R from systematic abbreviations',
value: 'R from systematic abbreviations'
}, {
label: 'R from technical name',
value: 'R from technical name'
}, {
label: 'R from trademark',
value: 'R from trademark'
}, {
label: 'From – navigation',
value: 'From – navigation',
disabled: true
}, {
label: 'R from file metadata link',
value: 'R from file metadata link'
}, {
label: 'R mentioned in hatnote',
value: 'R mentioned in hatnote'
}, {
label: 'R from shortcut',
value: 'R from shortcut'
}, {
label: 'R from template shortcut',
value: 'R from template shortcut'
}, {
label: 'From disambiguations',
value: 'From disambiguations',
disabled: true
}, {
label: 'R from ambiguous term',
value: 'R from ambiguous term'
}, {
label: 'R from incomplete disambiguation',
value: 'R from incomplete disambiguation'
}, {
label: 'R from incorrect disambiguation',
value: 'R from incorrect disambiguation'
}, {
label: 'R from other disambiguation',
value: 'R from other disambiguation'
}, {
label: 'R from predictable disambiguation',
value: 'R from predictable disambiguation'
}, {
label: 'R from unnecessary disambiguation',
value: 'R from unnecessary disambiguation'
}, {
label: 'From mergers, duplicates, and moves',
value: 'From mergers, duplicates, and moves',
disabled: true
}, {
label: 'R from duplicated article',
value: 'R from duplicated article'
}, {
label: 'R with history',
value: 'R with history'
}, {
label: 'R from merge',
value: 'R from merge'
}, {
label: 'R from move',
value: 'R from move'
}, {
label: 'R with old history',
value: 'R with old history'
}, {
label: 'From fiction',
value: 'From fiction',
disabled: true
}, {
label: 'R from fictional character',
value: 'R from fictional character'
}, {
label: 'R from fictional element',
value: 'R from fictional element'
}, {
label: 'R from fictional location',
value: 'R from fictional location'
}, {
label: 'From related info',
value: 'From related info',
disabled: true
}, {
label: 'R from album',
value: 'R from album'
}, {
label: 'R from animal',
value: 'R from animal'
}, {
label: 'R from book',
value: 'R from book'
}, {
label: 'R from catchphrase',
value: 'R from catchphrase'
}, {
label: 'R from domain name',
value: 'R from domain name'
}, {
label: 'R from top-level domain',
value: 'R from top-level domain'
}, {
label: 'R from film',
value: 'R from film'
}, {
label: 'R from gender',
value: 'R from gender'
}, {
label: 'R from legislation',
value: 'R from legislation'
}, {
label: 'R from list topic',
value: 'R from list topic'
}, {
label: 'R from member',
value: 'R from member'
}, {
label: 'R from person',
value: 'R from person'
}, {
label: 'R from phrase',
value: 'R from phrase'
}, {
label: 'R from quotation',
value: 'R from quotation'
}, {
label: 'R from related word',
value: 'R from related word'
}, {
label: 'R from school',
value: 'R from school'
}, {
label: 'R from song',
value: 'R from song'
}, {
label: 'R from subtopic',
value: 'R from subtopic'
}, {
label: 'R from team',
value: 'R from team'
}, {
label: 'R from work',
value: 'R from work'
}, {
label: 'R from writer',
value: 'R from writer'
}, {
label: 'R from Unicode',
value: 'R from Unicode'
}, {
label: 'To – grammar, punctuation, and spelling',
value: 'To – grammar, punctuation, and spelling',
disabled: true
}, {
label: 'R to acronym',
value: 'R to acronym'
}, {
label: 'R to initialism',
value: 'R to initialism'
}, {
label: 'R to ASCII-only title',
value: 'R to ASCII-only title'
}, {
label: 'R to diacritic',
value: 'R to diacritic'
}, {
label: 'R to ligature',
value: 'R to ligature'
}, {
label: 'R to plural',
value: 'R to plural'
}, {
label: 'To alternative names',
value: 'To alternative names',
disabled: true
}, {
label: 'R to former name',
value: 'R to former name'
}, {
label: 'R to historic name',
value: 'R to historic name'
}, {
label: 'R to joint biography',
value: 'R to joint biography'
}, {
label: 'R to name with title',
value: 'R to name with title'
}, {
label: 'R to monotypic taxon',
value: 'R to scientific name'
}, {
label: 'R to scientific name',
value: 'R to scientific name'
}, {
label: 'R to systematic name',
value: 'R to systematic name'
}, {
label: 'R to technical name',
value: 'R to technical name'
}, {
label: 'To – navigation and disambiguation',
value: 'To – navigation and disambiguation',
disabled: true
}, {
label: 'R to anchor',
value: 'R to anchor'
}, {
label: 'R to anthroponymy page',
value: 'R to anthroponymy page'
}, {
label: 'R to disambiguation page',
value: 'R to disambiguation page'
}, {
label: 'R to list entry',
value: 'R to list entry'
}, {
label: 'R to section',
value: 'R to section'
}, {
label: 'To miscellaneous',
value: 'To miscellaneous',
disabled: true
}, {
label: 'R to decade',
value: 'R to decade'
}, {
label: 'R to related topic',
value: 'R to related topic'
}, {
label: 'R to subpage',
value: 'R to subpage'
}, {
label: 'R to subtopic',
value: 'R to subtopic'
}, {
label: 'R to TV episode list entry',
value: 'R to TV episode list entry'
}, {
label: 'Custom - prompt me',
value: 'custom'
}]));
} else {
// now Categories
$extra.html('<label for="afcHelper_redirect_name_' + id + '">Category name: </label><input type="text" size="100" ' + 'name="afcHelper_redirect_name_' + id + '" id="afcHelper_redirect_name_' + id + '" value="' + afcHelper_escapeHtmlChars(afcHelper_Submissions[id].title) + '" />');
$extra.html($extra.html() + '<br /><label for="afcHelper_redirect_parents_' + id + '">Parent categories (comma-separated):</label>' + '<input type="text" size="100" id="afcHelper_redirect_parents_' + id + '" name="afcHelper_redirect_parents_' + id + '" value="' + afcHelper_escapeHtmlChars(afcHelper_Submissions[id].parents) + '" />');
$extra.append('<br />');
$extra.append($('<input>', {type: 'checkbox', name: 'afcHelper_redirect_container_' + id, id: 'afcHelper_redirect_container_' + id}));
$extra.append('<label for="afcHelper_redirect_container_' + id + '">This is a <a href="/wiki/Wikipedia:Container_category" title="Wikipedia:Container category">container category</a></label>');
$extra.html($extra.html() + '<br /><input type="checkbox" name="afcHelper_redirect_container_' + id + '"');
}
$extra.html($extra.html() + '<br /><label for="afcHelper_redirect_comment_' + id + '">Comment:</label>' + '<input type="text" size="100" id="afcHelper_redirect_comment_' + id + '" name="afcHelper_redirect_comment_' + id + '"/>');
} else if (selectValue === 'decline') {
if (afcHelper_Submissions[id].type === 'redirect') {
$extra.html('<label for="afcHelper_redirect_decline_' + id + '">Reason for decline: </label>' + afcHelper_generateSelect('afcHelper_redirect_decline_' + id, [
{
label: 'Already exists',
value: 'exists'
}, {
label: 'Blank request',
value: 'blank'
}, {
label: 'No valid target specified',
value: 'notarget'
}, {
label: 'Unlikely search term',
value: 'unlikely'
}, {
label: 'Not a redirect request',
value: 'notredirect'
}, {
label: 'Custom - reason below',
selected: true,
value: 'custom'
}]));
} else {
// now Categories
$extra.html('<label for="afcHelper_redirect_decline_' + id + '">Reason for decline: </label>' + afcHelper_generateSelect('afcHelper_redirect_decline_' + id, [{
label: 'Already exists',
value: 'exists'
}, {
label: 'Blank request',
value: 'blank'
}, {
label: 'Unlikely category',
value: 'unlikely'
}, {
label: 'Not a category request',
value: 'notcategory'
}, {
label: 'Custom - reason below',
selected: true,
value: 'custom'
}]));
}
$extra.html($extra.html() + '<br/><label for="afcHelper_redirect_comment_' + id + '">Comment: </label>' + '<input type="text" size="100" id="afcHelper_redirect_comment_' + id + '" name="afcHelper_redirect_comment_' + id + '"/>');
} else if (selectValue === 'none'){
// for categories and redirects!
$extra.html('');
} else {
$extra.html($extra.html() + '<label for="afcHelper_redirect_comment_' + id + '">Comment: </label>' + '<input type="text" size="100" id="afcHelper_redirect_comment_' + id + '" name="afcHelper_redirect_comment_' + id + '"/>');
}
}
function afcHelper_redirect_performActions() {
// Load all of the data.
for (var i = 0; i < afcHelper_Submissions.length; i++) {
var action = $("#afcHelper_redirect_action_" + i).val();
afcHelper_Submissions[i].action = action;
if (action === 'none') continue;
if (action === 'accept') {
if (afcHelper_Submissions[i].type === 'redirect') {
afcHelper_Submissions[i].title = $("#afcHelper_redirect_from_" + i).val();
afcHelper_Submissions[i].to = $("#afcHelper_redirect_to_" + i).val();
afcHelper_Submissions[i].append = $("#afcHelper_redirect_append_" + i).val();
if (afcHelper_Submissions[i].append === 'custom') {
afcHelper_Submissions[i].append = prompt("Please enter the template to append to " + afcHelper_Submissions[i].title + ". Do not include the curly brackets.");
}
if (afcHelper_Submissions[i].append === 'none' || afcHelper_Submissions[i].append === null) afcHelper_Submissions[i].append = '';
else afcHelper_Submissions[i].append = '\{\{' + afcHelper_Submissions[i].append + '\}\}';
} else {
afcHelper_Submissions[i].title = $("#afcHelper_redirect_name_" + i).val();
afcHelper_Submissions[i].parents = $("#afcHelper_redirect_parents_" + i).val();
afcHelper_Submissions[i].container = $("#afcHelper_redirect_container_" + i).is(':checked');
}
} else if (action === 'decline') {
afcHelper_Submissions[i].reason = $('#afcHelper_redirect_decline_' + i).val();
}
afcHelper_Submissions[i].comment = $("#afcHelper_redirect_comment_" + i).val();
}
// Data loaded. Show progress screen and get WP:AFC/R page text.
displayMessage('<ul id="afcHelper_status"></ul><ul id="afcHelper_finish"></ul>');
var addStatus = function ( status ) { $('#afcHelper_status').append( status ); };
$('#afcHelper_finish').html($('#afcHelper_finish').html() + '<span id="afcHelper_finished_wrapper"><span id="afcHelper_finished_main" style="display:none"><li id="afcHelper_done"><b>Done (<a href="' + wgArticlePath.replace("$1", encodeURI(afcHelper_RedirectPageName)) + '?action=purge" title="' + afcHelper_RedirectPageName + '">Reload page</a>)</b></li></span></span>');
pagetext = afcHelper_getPageText(afcHelper_RedirectPageName, addStatus);
var totalaccept = 0;
var totaldecline = 0;
var totalcomment = 0;
// traverse the submissions and locate the relevant sections.
addStatus('<li>Processing ' + afcHelper_RedirectSubmissions.length + ' submission' +
(afcHelper_RedirectSubmissions.length === 1 ? '' : 's') + '...</li>');
for (var i = 0; i < afcHelper_RedirectSubmissions.length; i++) {
var sub = afcHelper_RedirectSubmissions[i];
if (pagetext.indexOf(afcHelper_RedirectSections[sub.section]) === -1) {
// Someone has modified the section in the mean time. Skip.
addStatus('<li>Skipping ' + sub.title + ': Cannot find section. Perhaps it was modified in the mean time?</li>');
continue;
}
var text = afcHelper_RedirectSections[sub.section];
var startindex = pagetext.indexOf(afcHelper_RedirectSections[sub.section]);
var endindex = startindex + text.length;
// First deal with cats. These are easy.
if (sub.type === 'category') {
if (sub.action === 'accept') {
var cattext = '<!--Created by WP:AFC -->';
if (sub.container) {
cattext += '\n{{Container category}}';
}
if (sub.parents !== '') {
cattext = sub.parents
.split(',')
.map(function(cat){ return '\[\[' + cat + '\]\]'; })
.join('\n');
}
afcHelper_editPage(sub.title, cattext, 'Created via \[\[WP:AFC|Articles for Creation\]\] (\[\[WP:WPAFC|you can help!\]\])', true);
var talktext = '\{\{subst:WPAFC/article|class=Cat\}\}';
var talktitle = sub.title.replace(/Category:/gi, 'Category talk:');
afcHelper_editPage(talktitle, talktext, 'Placing WPAFC project banner', true);
var header = text.match(/==[^=]*==/)[0];
text = header + "\n\{\{AfC-c|a\}\}\n" + text.substring(header.length);
if (sub.comment !== '') text += '\n*\{\{subst:afc category|accept|2=' + sub.comment + '\}\} \~\~\~\~\n';
else text += '\n*\{\{subst:afc category\}\} \~\~\~\~\n';
text += '\{\{AfC-c|b\}\}\n';
totalaccept++;
} else if (sub.action === 'decline') {
var header = text.match(/==[^=]*==/)[0];
var reason = afcHelper_categoryDecline_reasonhash[sub.reason];
if (reason === '') reason = sub.comment;
else if (sub.comment !== '') reason = reason + ': ' + sub.comment;
if (reason === '') {
$('afcHelper_status').html($('#afcHelper_status').html() + '<li>Skipping ' + sub.title + ': No decline reason specified.</li>');
continue;
}
text = header + "\n\{\{AfC-c|d\}\}\n" + text.substring(header.length);
if (sub.comment === '') text += '\n*\{\{subst:afc category|' + sub.reason + '\}\} \~\~\~\~\n';
else text += '\n*\{\{subst:afc category|decline|2=' + reason + '\}\} \~\~\~\~\n';
text += '\{\{AfC-c|b\}\}\n';
totaldecline++;
} else if (sub.action === 'comment') {
if (sub.comment !== '') text += '\n\n\{\{afc comment|1=' + sub.comment + ' \~\~\~\~\}\}\n';
totalcomment++;
}
} else {
// redirects......
var acceptcomment = '';
var declinecomment = '';
var othercomment = '';
var acceptcount = 0,
declinecount = 0,
commentcount = 0,
hascomment = false;
for (var j = 0; j < sub.from.length; j++) {
var redirect = sub.from[j];
if (redirect.action === 'accept') {
var redirecttext = '#REDIRECT \[\[' + redirect.to + '\]\]\n' + redirect.append;
afcHelper_editPage(redirect.title, redirecttext, 'Redirected page to \[\[' + redirect.to + '\]\] via \[\[WP:AFC|Articles for Creation\]\] (\[\[WP:WPAFC|you can help!\]\])', true);
var talktext = '\{\{subst:WPAFC/redirect\}\}';
var talktitle = 'Talk:' + redirect.title;
afcHelper_editPage(talktitle, talktext, 'Placing WPAFC project banner', true);
acceptcomment += redirect.title + " → " + redirect.to;
if (redirect.comment !== '') {
acceptcomment += ': ' + redirect.comment;
hascomment = true;
} else {
acceptcomment += '. ';
}
acceptcount++;
} else if (redirect.action === 'decline') {
var reason = afcHelper_redirectDecline_reasonhash[redirect.reason];
if (reason === '') reason = redirect.comment;
else if (redirect.comment !== '') reason = reason + ': ' + redirect.comment;
if (reason === '') {
$('#afcHelper_status').html($('#afcHelper_status').html() + '<li>Skipping ' + redirect.title + ': No decline reason specified.</li>');
continue;
}
declinecomment += ((redirect.reason === 'blank' || redirect.reason === 'notredirect') ? reason + ". " : redirect.title + " → " + redirect.to + ": " + reason + ". ");
declinecount++;
} else if (redirect.action === 'comment') {
othercomment += redirect.title + ": " + redirect.comment + ". ";
commentcount++;
}
}
var reason = '';
if (acceptcount > 0) reason += '\n*\{\{subst:afc redirect|accept|2=' + acceptcomment + ' Thank you for your contributions to Wikipedia!\}\} \~\~\~\~';
if (declinecount > 0) reason += '\n*\{\{subst:afc redirect|decline|2=' + declinecomment + '\}\} \~\~\~\~';
if (commentcount > 0) reason += '\n*\{\{afc comment|1=' + othercomment + '\~\~\~\~\}\}';
reason += '\n';
if (!hascomment && acceptcount === sub.from.length) {
if (acceptcount > 1) reason = '\n*\{\{subst:afc redirect|all\}\} \~\~\~\~\n';
else reason = '\n*\{\{subst:afc redirect\}\} \~\~\~\~\n';
}
if (acceptcount + declinecount + commentcount > 0) {
if (acceptcount + declinecount === sub.from.length) {
// Every request disposed of. Close.
var header = text.match(/==[^=]*==/)[0];
if (acceptcount > declinecount) text = header + "\n\{\{AfC-c|a\}\}\n" + text.substring(header.length);
else text = header + "\n\{\{AfC-c|d\}\}\n" + text.substring(header.length);
text += reason;
text += '\{\{AfC-c|b\}\}\n';
} else text += reason + '\n';
}
totalaccept += acceptcount;
totaldecline += declinecount;
totalcomment += commentcount;
}
pagetext = pagetext.substring(0, startindex) + text + pagetext.substring(endindex);
}
var summary = "Updating submission status:";
if (totalaccept > 0) summary += " accepting " + totalaccept + " request" + (totalaccept > 1 ? 's' : '');
if (totaldecline > 0) {
if (totalaccept > 0) summary += ',';
summary += " declining " + totaldecline + " request" + (totaldecline > 1 ? 's' : '');
}
if (totalcomment > 0) {
if (totalaccept > 0 || totaldecline > 0) summary += ',';
summary += " commenting on " + totalcomment + " request" + (totalcomment > 1 ? 's' : '');
}
afcHelper_editPage(afcHelper_RedirectPageName, pagetext, summary + ' ([[User:Enterprisey/AFCRHS|AFCRHS.js]])', false);
// Display the "Done" text only after all ajax requests are completed
$(document).ajaxStop(function () {
$("#afcHelper_finished_main").css("display", "");
});
}
/**
* Gets the text of a page.
* @param {string} The title of the page to get.
* @param {function} A function that takes a HTML string to report status.
*/
function afcHelper_getPageText(title, addStatus) {
var addStatus = typeof addStatus !== 'undefined' ? addStatus : function ( status ) {};
addStatus('<li id="afcHelper_get' + jqEsc(title) + '">Getting <a href="' +
wgArticlePath.replace("$1", encodeURI(title)) + '" title="' + title + '">' +
title + '</a></li>');
var request = {
'action': 'query',
'prop': 'revisions',
'rvprop': 'content',
'format': 'json',
'indexpageids': true,
'titles' : title
};
var response = JSON.parse(
$.ajax({
url: mw.util.wikiScript('api'),
data: request,
async: false
})
.responseText
);
pageid = response['query']['pageids'][0];
if (pageid === "-1") {
addStatus('The page <a class="new" href="' + wgArticlePath.replace("$1", encodeURI(title)) +
'" title="' + title + '">' + title + '</a> does not exist');
return '';
}
var newtext = response['query']['pages'][pageid]['revisions'][0]['*'];
addStatus('<li id="afcHelper_get' + jqEsc(title) + '">Got <a href="' +
wgArticlePath.replace("$1", encodeURI(title)) + '" title="' + title + '">' + title + '</a></li>');
return newtext;
}
function afcHelper_cleanuplinks(text) {
// Convert external links to Wikipedia articles to proper wikilinks
var wikilink_re = /(\[){1,2}(?:https?:)?\/\/(wiki.riteme.site\/wiki|enwp.org)\/([^\s\|\]\[]+)(\s|\|)?((?:\[\[[^\[\]]*\]\]|[^\]\[])*)(\]){1,2}/gi;
var temptext = text;
var match;
while (match = wikilink_re.exec(temptext)) {
var pagename = decodeURI(match[3].replace(/_/g,' '));
var displayname = decodeURI(match[5].replace(/_/g,' '));
if (pagename === displayname) displayname = '';
var replacetext = '[[' + pagename + ((displayname) ? '|' + displayname : '') + ']]';
pagetext = pagetext.replace(match[0],replacetext);
}
return text;
}
function afcHelper_generateSelect(title, options, onchange) {
var text = '<select name="' + title + '" id="' + title + '" ';
if (onchange !== null) text += 'onchange = "' + onchange + '" ';
text += '>';
for (var i = 0; i < options.length; i++) {
var o = options[i];
text += '<option value="' + afcHelper_escapeHtmlChars(o.value) + '" ';
if (o.selected) text += 'selected="selected" ';
if (o.disabled) text += 'disabled ';
text += '>' + o.label + '</option>';
}
text += "</select>";
return text;
}
/**
* Like the other function, except this one returns a jQuery object.
* This time, however, onchange should be an actual function object.
*/
function afcHelper_generateSelectObject(title, options, onchange) {
var $select = $('<select>')
.attr('name', title)
.attr('id', title);
if ( onchange !== null ) {
$select.change(function(){console.log("IN CHANGE HANDLER");});
$select.change(onchange);
}
options.forEach( function ( option ) {
var $option = $( '<option>' )
.appendTo( $select )
.val( afcHelper_escapeHtmlChars( option.value) )
.text( option.label );
if ( option.selected ) $option.attr( 'selected', 'selected' );
if ( option.disabled ) $option.attr( 'disabled', 'disabled' );
} );
return $select;
}
function afcHelper_escapeHtmlChars(original) {
return original.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">").replace(/"/g, """).replace(/'/g, "'");
}
/**
* The old mw.util.jsMessage function before https://gerrit.wikimedia.org/r/#/c/17605/, which
* introduced the silly auto-hide function. Also with the original styles.
* Add a little box at the top of the screen to inform the user of
* something, replacing any previous message.
* Calling with no arguments, with an empty string or null will hide the message
* Taken from [[User:Timotheus Canens/displaymessage.js]]
*
* @param message {mixed} The DOM-element, jQuery object or HTML-string to be put inside the message box.
* @param className {String} Used in adding a class; should be different for each call
* to allow CSS/JS to hide different boxes. null = no class used.
* @return {Boolean} True on success, false on failure.
*/
function displayMessage( message, className ){
if ( !arguments.length || message === '' || message === null ) {
$( '#display-message' ).empty().hide();
return true; // Emptying and hiding message is intended behaviour, return true
} else {
// We special-case skin structures provided by the software. Skins that
// choose to abandon or significantly modify our formatting can just define
// an mw-js-message div to start with.
var $messageDiv = $( '#display-message' );
if ( !$messageDiv.length ) {
$messageDiv = $( '<div id="display-message" style="margin:1em;padding:0.5em 2.5%;border:solid 1px #ddd;background-color:#fcfcfc;font-size: 0.8em"></div>' );
if ( mw.util.$content.length ) {
mw.util.$content.prepend( $messageDiv );
} else {
return false;
}
}
if ( className ) {
$messageDiv.prop( 'class', 'display-message-' + className );
}
if ( typeof message === 'object' ) {
$messageDiv.empty();
$messageDiv.append( message );
} else {
$messageDiv.html( message );
}
$messageDiv.slideDown();
return true;
}
}
function jqEsc(expression) {
return expression.replace(/[!"#$%&'()*+,.\/:;<=>?@\[\\\]^`{|}~ ]/g, '');
}
function afcHelper_editPage(title, newtext, summary, createonly, nopatrol) {
var edittoken = mw.user.tokens.get('editToken');
$("#afcHelper_finished_wrapper").html('<span id="afcHelper_AJAX_finished_' + afcHelper_AJAXnumber + '" style="display:none">' + $("#afcHelper_finished_wrapper").html() + '</span>');
var func_id = afcHelper_AJAXnumber;
afcHelper_AJAXnumber++;
$('#afcHelper_status').html($('#afcHelper_status').html() + '<li id="afcHelper_edit' + jqEsc(title) + '">Editing <a href="' + wgArticlePath.replace("$1", encodeURI(title)) + '" title="' + title + '">' + title + '</a></li>');
var request = {
'action': 'edit',
'title': title,
'text': newtext,
'summary': summary,
'token': edittoken,
'watchlist': 'nochange'
};
if (createonly) request.createonly = true;
var api = new mw.Api();
api.post(request)
.done(function ( data ) {
if ( data && data.edit && data.edit.result && data.edit.result == 'Success' ) {
$('#afcHelper_edit' + jqEsc(title)).html('Saved <a href="' + wgArticlePath.replace("$1", encodeURI(title)) + '" title="' + title + '">' + title + '</a>');
} else {
$('#afcHelper_edit' + jqEsc(title)).html('<span class="afcHelper_notice"><b>Edit failed on <a href="' + wgArticlePath.replace("$1", encodeURI(title)) + '" title="' + title + '">' + title + '</a></b></span>. Error info: ' + JSON.stringify(data));
window.console && console.error('Edit failed on %s (%s). Error info: %s', wgArticlePath.replace("$1", encodeURI(title)), title, JSON.stringify(data));
}
} )
.fail( function ( error ) {
if (createonly && error == "articleexists")
$('#afcHelper_edit' + jqEsc(title)).html('<span class="afcHelper_notice"><b>Edit failed on <a href="' + wgArticlePath.replace("$1", encodeURI(title)) + '" title="' + title + '">' + title + '</a></b></span>. Error info: The article already exists!');
else
$('#afcHelper_edit' + jqEsc(title)).html('<span class="afcHelper_notice"><b>Edit failed on <a href="' + wgArticlePath.replace("$1", encodeURI(title)) + '" title="' + title + '">' + title + '</a></b></span>. Error info: ' + error);
})
.always( function () {
$("#afcHelper_AJAX_finished_" + func_id).css("display", '');
});
if (!nopatrol) {
/* We patrol by default */
if ($('.patrollink').length) {
// Extract the rcid token from the "Mark page as patrolled" link on page
var patrolhref = $('.patrollink a').attr('href');
var rcid = mw.util.getParamValue('rcid', patrolhref);
if (rcid) {
$('#afcHelper_status').html($('#afcHelper_status').html() + '<li id="afcHelper_patrol' + jqEsc(title) + '">Marking <a href="' + wgArticlePath.replace("$1", encodeURI(title)) + '" title="' + title + '">' + title + ' as patrolled</a></li>');
var patrolrequest = {
'action': 'patrol',
'format': 'json',
'token': mw.user.tokens.get('patrolToken'),
'rcid': rcid
};
api.post(patrolrequest)
.done(function ( data ) {
if ( data ) {
$('#afcHelper_patrol' + jqEsc(title)).html('Marked <a href="' + wgArticlePath.replace("$1", encodeURI(title)) + '" title="' + title + '">' + title + '</a> as patrolled');
} else {
$('#afcHelper_patrol' + jqEsc(title)).html('<span class="afcHelper_notice"><b>Patrolling failed on <a href="' + wgArticlePath.replace("$1", encodeURI(title)) + '" title="' + title + '">' + title + '</a></b></span> with an unknown error');
window.console && console.error('Patrolling failed on %s (%s) with an unknown error.', wgArticlePath.replace("$1", encodeURI(title)), title);
}
} )
.fail( function ( error ) {
$('#afcHelper_patrol' + jqEsc(title)).html('<span class="afcHelper_notice"><b>Patrolling failed on <a href="' + wgArticlePath.replace("$1", encodeURI(title)) + '" title="' + title + '">' + title + '</a></b></span>. Error info: ' + error);
});
}
}
}
}
// From http://stackoverflow.com/a/6323598/1757964
function allMatches ( regex, string ) {
var matches = [],
match;
do {
match = regex.exec( string );
if ( match ) {
matches.push( match );
}
} while ( match );
return matches;
}
// Create portlet link
var redirectportletLink = mw.util.addPortletLink('p-cactions', '#', 'Review AFC/R', 'ca-afcrhs', 'Review', 'a');
// Bind click handler
$(redirectportletLink).click(function(e) {
e.preventDefault();
// clear variables for the case somebody is clicking multiple times on "review"
afcHelper_RedirectSubmissions.length = 0;
afcHelper_RedirectSections.length = 0;
afcHelper_numTotal = 0;
afcHelper_Submissions.length = 0;
needsupdate.length = 0;
afcHelper_redirect_init();
});
})();
//</nowiki>