User:Sreejithk2000/nfurReview.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:Sreejithk2000/nfurReview. |
// <nowiki>
if (mw.config.get("wgAction") === "view" && mw.config.get("wgCanonicalNamespace") === "File") {
if ($.inArray("Non-free images for NFUR review", mw.config.get("wgCategories")) > -1) {
var nfurReviewLink = "<center>" + "<a id='nfurReviewLink' href='#'>[append] image has rationale=yes</a>" + "</center>";
$('table.imbox').find('td.mbox-text').last().append(nfurReviewLink);
}
}
$('a#nfurReviewLink').click(function (e) {
"use strict";
e.preventDefault();
$('a#nfurReviewLink').replaceWith("Appending ...");
var query = {
action: 'query',
prop: 'revisions',
titles: mw.config.get("wgPageName"),
rvprop: 'content',
format: 'json'
};
$.getJSON(mw.util.wikiScript('api'), query, function (result) {
var content = result.query.pages[wgArticleId].revisions[0]['*'];
AppendNFurReviewTag(content);
});
});
function AppendNFurReviewTag(content) {
"use strict";
var modifiedContent = content;
var supportedTemplates = new Array("Non-free album cover", "Non-free film screenshot", "Non-free video cover", "Non-free poster", "Non-free logo", "Non-free historic image", "Non-free movie poster", "Non-free fair use in", "Non-free book cover", "Non-free symbol", "Non-free television screenshot");
$.each(supportedTemplates, function (index, item) {
modifiedContent = modifiedContent.replace("{{" + item + "}}", "{{" + item + "|image has rationale=yes}}");
});
/* var matchedText = content.match(/\{\{Non-free[^\}]+/i);
modifiedContent = content.replace(matchedText, matchedText + "|image has rationale=yes"); */
if (modifiedContent === content) {
alert("Unable to find matching tag. Please tag the page manually.");
return;
}
var wpEditToken = mw.user.tokens.get('csrfToken');
var query = {
action: 'edit',
prop: 'revisions',
title: mw.config.get("wgPageName"),
summary: 'Marking as nfur reviewed using [[User:Sreejithk2000/nfurReview.js]]',
text: modifiedContent,
token: wpEditToken,
format: 'json'
};
$.post(mw.util.wikiScript('api'), query, function () {
alert('Appended nFUR review tag. Refreshing page.');
document.location = document.location;
});
}
// </nowiki>