User:Writ Keeper/Scripts/peerReviewCloser.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. |
![]() | This user script seems to have a documentation page at User:Writ Keeper/Scripts/peerReviewCloser. |
function closePeerReview()
{
mw.loader.using("mediawiki.api.edit").done( function ()
{
$("#ca-closepeer>a").text("closing...");
var talkPage = $("a:contains('Article talk')").attr("href");
var talkPageName = "";
if(talkPage != null)
{
talkPage = talkPage.match(/\/wiki\/(\w+:\w+)/);
if(talkPage != null)
{
talkPageName = talkPage[1];
}
}
var api = new mw.Api();
api.edit(talkPageName, function(revision)
{
var regexResult = revision.content.match(/\{\Peer review(\|archive=\d)\}\}/);
if(regexResult != null && typeof regexResult[1] != "undefined")
{
return {
text: revision.content.replace("{{peer review" + regexResult[1] + "}}", "{{Old peer review" + regexResult[1] + "}}"),
summary: "Closing peer review"
};
}
else
{
alert("Error updating the article talk page.");
return null;
}
}).done(function()
{
api.edit(mw.config.get("wgPageName"), function(revision)
{
var regexResult = revision.content.match(/\{\{Peer review page\|topic=\w+\}\}/);
if(regexResult != null)
{
return {
text: revision.content.replace(/\{\{Peer review page\|topic=\w+\}\}/, "{{Ombox|text='''This [[WP:PR|peer review]] discussion has been closed.'''}} <noinclude>[[Category:November 2018 peer reviews]]</noinclude>"),
summary: "Closing peer review"
};
}
else
{
alert("Error updating the Peer Review page.");
return null;
}
}).done(function()
{
location.reload();
});
});
});
}
mw.hook("wikipage-content").add(function()
{
if(mw.config.get("wgCategories").indexOf("Current peer reviews") >= 0)
{
mw.loader.using("mediawiki.util").done( function ()
{
mw.util.addPortletLink('p-cactions', '#', "close peer review", "ca-closepeer", "close this peer review");
$("#ca-closepeer").click( function(event)
{
event.preventDefault();
mw.loader.load( [ 'mediawiki.api.edit' ] ); //start loading, while the user is in the prompt
return closePeerReview();
});
});
}
});