User:Doğu/Adiutor-COV.js
Appearance
(Redirected from User:Doǵu/Adiutor-COV.js)
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:Doğu/Adiutor-COV. |
/*
* Adiutor: A gadget to assist various user actions
* Author: User:Vikipolimer
* Credits: User:The Earwig
* Licencing and attribution: [[VP:Adiutor#Lisanslama ve atıf]]
* Module: Copyright checker
/* <nowiki> */
$.when(mw.loader.using(["mediawiki.user", "oojs-ui-core", "oojs-ui-windows", ]), $.ready).then(function() {
var mwConfig = mw.config.get(["wgAction", "wgPageName", "wgTitle", "wgUserGroups", "wgUserName", "wgCanonicalNamespace", "wgNamespaceNumber"]);
var messageDialog = new OO.ui.MessageDialog();
var windowManager = new OO.ui.WindowManager();
$('body').append(windowManager.$element);
windowManager.addWindows([messageDialog]);
var progressBar = new OO.ui.ProgressBarWidget({
progress: false
});
windowManager.openWindow(messageDialog, {
title: 'Checking...',
message: progressBar.$element
});
$.get("https://copyvios.toolforge.org/api.json?", {
action: "search",
lang: "en",
project: "wikipedia",
title: mwConfig.wgPageName,
oldid: "",
use_engine: "1",
use_links: "1",
turnitin: "0",
}, function(data) {
messageDialog.close();
function CopyVioDialog(config) {
CopyVioDialog.super.call(this, config);
}
OO.inheritClass(CopyVioDialog, OO.ui.ProcessDialog);
var copVioRatio = (data.best.confidence * 100).toFixed(2);
CopyVioDialog.static.title = 'Result ( %' + copVioRatio + ' )';
CopyVioDialog.static.name = 'CopyVioDialog';
var headerTitle;
if (copVioRatio > 45) {
headerTitle = new OO.ui.MessageWidget({
type: 'error',
inline: true,
label: 'Violation Possible: % ' + copVioRatio
});
CopyVioDialog.static.actions = [{
action: 'continue',
modes: 'edit',
label: 'Request Speedy Deletion',
flags: ['primary', 'destructive']
}, {
modes: 'edit',
label: 'Close',
flags: 'safe'
}, {
action: 'back',
modes: 'help',
label: 'Help',
flags: 'safe'
}];
} else if (copVioRatio < 10) {
headerTitle = new OO.ui.MessageWidget({
type: 'success',
inline: true,
label: 'No Violation: %' + copVioRatio
});
CopyVioDialog.static.actions = [{
modes: 'edit',
label: 'Close',
flags: 'safe'
}, {
action: 'back',
modes: 'help',
label: 'Help',
flags: 'safe'
}];
} else {
headerTitle = new OO.ui.MessageWidget({
type: 'warning',
inline: true,
label: 'Violation Possible: %' + copVioRatio + ' | This page has a near-critical level of copyright violation, you can remove the copyrighted parts.'
});
CopyVioDialog.static.actions = [{
modes: 'edit',
label: 'Close',
flags: 'safe'
}, {
action: 'back',
modes: 'help',
label: 'Help',
flags: 'safe'
}];
}
CopyVioDialog.prototype.initialize = function() {
CopyVioDialog.super.prototype.initialize.apply(this, arguments);
var cvRelSource = data.sources.filter(function(source) {
return source.excluded == false;
});
var cvSources = document.createElement('ul');
cvSources.classList.add("cov-url-list");
for (var i = 0; i < cvRelSource.length; i++) {
var li = document.createElement('li');
li.classList.add("cov-url-list-item");
if ((cvRelSource[i].confidence * 100).toFixed(2) > 40) {
li.classList.add("cov-url-list-item-vio-high");
}
var a = document.createElement("a");
a.classList.add("cov-url-list-item-link");
var img = document.createElement("span");
img.innerText = cvRelSource[i].url;
img.title = cvRelSource[i].url;
a.href = cvRelSource[i].url;
a.appendChild(img);
li.id = cvRelSource[i].id;
li.appendChild(a);
cvSources.appendChild(li);
}
this.panel1 = new OO.ui.PanelLayout({
padded: true,
expanded: false
});
this.panel1.$element.append(headerTitle.$element, '<br><hr><br>', cvSources);
this.panel2 = new OO.ui.PanelLayout({
padded: true,
expanded: false
});
this.panel2.$element.append('Empty');
this.stackLayout = new OO.ui.StackLayout({
items: [this.panel1, this.panel2]
});
this.$body.append(this.stackLayout.$element);
};
CopyVioDialog.prototype.getSetupProcess = function(data) {
return CopyVioDialog.super.prototype.getSetupProcess.call(this, data).next(function() {
this.actions.setMode('edit');
}, this);
};
CopyVioDialog.prototype.getActionProcess = function(action) {
if (action === 'help') {
this.actions.setMode('help');
this.stackLayout.setItem(this.panel2);
} else if (action === 'back') {
this.actions.setMode('edit');
this.stackLayout.setItem(this.panel1);
} else if (action === 'continue') {
var dialog = this;
return new OO.ui.Process(function() {
dialog.close();
mw.loader.load('//en.wikipedia.org/w/index.php?action=raw&ctype=text/javascript&title=User:Vikipolimer/Adiutor-CSD.js');
});
}
return CopyVioDialog.super.prototype.getActionProcess.call(this, action);
};
CopyVioDialog.prototype.getBodyHeight = function() {
return this.panel1.$element.outerHeight(true);
};
var windowManager = new OO.ui.WindowManager();
$(document.body).append(windowManager.$element);
var dialog = new CopyVioDialog({
size: 'larger'
});
windowManager.addWindows([dialog]);
windowManager.openWindow(dialog);
});
});
/* </nowiki> */