User:Nthep/rescaled.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:Nthep/rescaled. |
//Rescaled - based on both Legotkm and B//
if ( mw.config.get('wgNamespaceNumber') == 6 ) {
mw.loader.using( ['mediawiki.util', 'mediawiki.api'], function() {
var rescaled = mw.util.addPortletLink( 'p-cactions', '#',
'rescaled', 'ca-rescaled', 'Rescaled per F5');
$( rescaled ).click( do_it );
});
}
function do_it() {
var api = new mw.Api();
api.get( {
action: 'query',
prop: 'imageinfo|revisions',
titles: mw.config.get('wgPageName'),
iiprop: 'archivename',
iilimit: 'max',
rvprop: 'content',
rvlimit: '1'
}).done( function ( data ) {
var pgdata = data.query.pages[mw.config.get('wgArticleId')];
var imgs = pgdata.imageinfo;
console.log(imgs);
var todelete = [];
$.each( imgs, function ( index, value ) {
if ( index === 0 || !value.hasOwnProperty( "archivename" ) ) {
return;
}
todelete.push( value.archivename.split('!')[0] );
});
api.postWithToken( 'delete', {
action: 'revisiondelete',
type: 'oldimage',
target: mw.config.get('wgPageName'),
ids: todelete.join('|'),
hide: 'content',
reason: 'Orphaned non-free file(s) deleted per [[WP:F5|F5]]'
}).done( function( data ) {
mw.notify("Deleted old revision.");
});
// Also edit!
var text = pgdata.revisions[0]['*'];
// modified by Legoktm from drilnoth's script
text = text.replace(/\n*\{\{\s?(Non\-free reduced|Orphaned non\-free revisions)\s?\|.*?\}\}/ig,'');
text = text.trim();
api.postWithToken( 'edit', {
action: 'edit',
title: mw.config.get('wgPageName'),
summary: 'Previous version(s) deleted per [[WP:F5|F5]])',
text: text
}).done( function ( data ) {
mw.notify("Removed the template."); setTimeout(function() { window.location.reload();}, 3000);
});
});
}