/**
* wef-history
*
* Questo script permette di aggiungere alla cronologia di una pagina Wikipedia le modifiche effettuate su Wikidata
*
* Autore : H4stings.
*/
// Documentazione :
// 1. Aggiungere la seguente linea al proprio commons.js: importScript('Utente:ValterVB/wef-history.js');
// 2. Controllare la cronologia di una voce : è tutto !
//
// Per ulteriori informazioni, lisez ].
//
//////////////////////Personalizzzazione//////////////////////
if (typeof cacherModifLabel == 'undefined') { //true per mostrare le modifiche di etichette, false per non mostrarle
cacherModifLabel = true;
}
if (typeof cacherModifAlias == 'undefined') { //true per mostrare le modifiche degli alias, false per non mostrarle
cacherModifAlias = true;
}
if (typeof cacherModifLiens == 'undefined') { //true per mostrare le modifiche dei sitelink, false per non mostrarle
cacherModifLiens = true;
}
if (typeof afficherTout == 'undefined') { ////true per attivare i tre valori a true
afficherTout = false;
}
if (afficherTout === true) { //afficher tout
cacherModifLabel = false;
cacherModifAlias = false;
cacherModifLiens = false;
}
if (typeof excludeUsers == 'undefined') { //true per escludere le modifiche degli utenti elencati in exludeUsers
excludeUsers = false;
}
/////////////////FIN DE LA ZONE PERSONNALISABLE/////////////////
/** @const liée au script initial */
var version = 1455143959;
try {
mw.loader.addSource( "ruwiki", "//ru.wikipedia.org/w/load.php" );
mw.loader.register( 'ext.gadget.wefcore', version, [ 'jquery.ui', //
'jquery.ui', //
'jquery.ui', //
'jquery.uls.data', //
'mediawiki.ForeignApi', //
], undefined, 'ruwiki' );
mw.loader.register( 'ext.gadget.isbnjs', version, undefined, undefined, 'ruwiki' );
mw.loader.register( 'ext.gadget.wefflags', version, undefined, undefined, 'ruwiki' );
mw.loader.register( 'ext.gadget.wefcore', version, , undefined, 'ruwiki' );
} catch ( error ) {
// already registered
}
if ( mw.config.get( 'wgAction' ) === 'history' ) {
mw.loader.using( , function() {
var notifyOptions = {
autoHide: true,
tag: 'WEF-history',
};
var i18n = {
actionObtain: 'Recupero delle modifiche da Wikidata',
actionIntegrate: 'Visualizzazione delle modifiche da Wikidata',
linePartLetter: 'd',
linePartTooltip: 'Wikidata',
linePartChange: 'diff.',
linePartHistory: 'historique',
// the same as in watchlist
monthes: ,
revMonthes: { "gen" : 1, "feb" : 2, "mar": 3, "apr" : 4, "mag" : 5, "giu": 6, "lug" : 7, "ago" : 8, "set": 9, "ott" : 10, "nov" : 11, "dic": 12 },
dico : {"wbsetsitelink-add" : "Aggiunto collegamento", "wbsetdescription-add" : "Aggiunta descrizione", "wbsetdescription-set" : "Modificata descrizione", "wbremoveclaims-remove" : "Rimossa un'asserzione", "wbcreateclaim-value" : "Rimossa un'asserzione", "wbsetlabel-add" : "Aggiunta etichetta", "wbeditentity-update" : "Modificato un elemento", "wbsetreference-add" : "Aggiunto riferimento a un'asserzione", "wbcreateclaim-create" : "Creata asserzione", "wbsetreference" : "Impostato un riferimento", "wbsetclaim-create" : "Creata un'asserzione", "wbsetclaim-update-qualifiers" : "Modificato un qualificatore di un'asserzione", "wbsetqualifier-add" : "Aggiunto qualificatore"},
reP : /\*)\]\]/,
reQ : /\*)\]\]/,
reD : /\/\* (*)/,
reH : /():(), (+) (\w+) ()/, //IT
exludeUsers: , //Elencare utenti da escludere
};
var entityId = null;
var revs = null;
function affichage() {
//"use strict";
mw.notify( i18n.actionIntegrate, notifyOptions );
//affichage des révisions
$.each(revs, function(keyr, valr){
try {
generateWatchlistLine( valr, i18n.dico );
} catch ( error ) {
mw.log.warn( "Can't add change line", error );
}
});
}
function showChanges() {
//"use strict";
mw.notify( i18n.actionObtain, notifyOptions );
if ( mw.config.get( 'wgArticleId' ) ) {
WEF_Utils.getEntityIdDeferred().done( function( entityId ) {
if ( !WEF_Utils.isEmpty( entityId ) ) {
//api des modifs à afficher
//console.log( 'https://www.wikidata.org/w/api.php?action=query&prop=revisions&rvlimit=50&titles=' + entityId );
WEF_Utils.getWikidataApi().get( {
rvlimit: 50,
titles: entityId,
prop: 'revisions',
action: 'query',
} ).done( function( result ) {
//en principe, y'a qu'une page...
var page=result.query.pages;
var listePQ = "";
$.each(page, function(key, val){
//console.log ("id page " + key);
revs=val.revisions;
//1ere boucle pour lister les P & Q qu'on va devoir traduire
$.each(revs, function(keyr, valr){
if (valr.comment){
var res1 = i18n.reP.exec(valr.comment);
if (res1 !== null){
if (listePQ.indexOf(res1)==-1) {
listePQ = listePQ + "|" + res1;
}
}
var res2 = i18n.reQ.exec(valr.comment);
if (res2 !== null){
if (listePQ.indexOf(res2)==-1) {
listePQ = listePQ + "|" + res2;
}
}
//console.log (res1 + " " + res2);
}
});
});
listePQ = listePQ.substring(1);
completedico(listePQ);
} );
}
});
}
}
function completedico(liste) {
//"use strict";
//2e api de récup pour construire le i18n.dico des labels
//console.log("https://www.wikidata.org/w/api.php?action=wbgetentities&ids=" + liste + "&props=labels&languages=it");
WEF_Utils.getWikidataApi().get( {
action: 'wbgetentities',
props: 'labels',
languages: 'it',
ids: liste,
format: 'json',
} ).done( function( result ) {
//faire un i18n.dico avec P/Q => label
var entities=result.entities;
$.each(entities, function(keyr, valr){
if(valr.labels && valr.labels.it && valr.labels.it.value){
i18n.dico = valr.labels.it.value;
}else{
i18n.dico = keyr;
}
});
affichage();
});
}
function pad( src ) {
"use strict";
if ( src < 10 ) {
return "0" + src;
} else {
return "" + src;
}
}
function generateWatchlistLine( jEntry, dico ) {
//"use strict";
var id = jEntry.revid;
var testSummary = jEntry.comment;
var author = jEntry.user;
//console.log( "id "+ id + " summary "+ testSummary );
//if (false) {
if (testSummary.indexOf("|it") == -1 && ((testSummary.indexOf("wbsetlabel") > -1 && cacherModifLabel)
|| (testSummary.indexOf("wbsetaliases") > -1 && cacherModifAlias) || (testSummary.indexOf("wbsetsitelink") > -1 && cacherModifLiens)
|| (testSummary.indexOf("clientsitelink") > -1 && cacherModifLiens) || (testSummary.indexOf("wbsetdescription") > -1) ) ) {
//console.log( "diff " + id + " not displayed (no it)");
}else if (i18n.exludeUsers.indexOf(author) > -1 && excludeUsers ) {
}else{
var changeUrl = "https://www.wikidata.org/w/index.php?diff=" + id;
var updated = new Date(jEntry.timestamp);
var dateAff = updated.getDate() + ' ' + i18n.monthes + ' ' + updated.getFullYear();
var heureAff = pad( updated.getHours() ) + ':' + pad( updated.getMinutes() );
//traduction commentaire sur la base du i18n.dico
var resSum1 = i18n.reP.exec(testSummary);
if (resSum1 !== null && i18n.dico] !== null){
testSummary = testSummary.replace("+"]]", i18n.dico] + " <small>(<a href=\"https://www.wikidata.orghttps://wikifreehand.com/it/Property:"+resSum1+"\">Property:"+resSum1+"</a>)</small>");
}
var resSum2 = i18n.reQ.exec(testSummary);
if (resSum2 !== null && i18n.dico] !== null){
testSummary = testSummary.replace("+"]]", i18n.dico] + " <small>(<a href=\"https://www.wikidata.orghttps://wikifreehand.com/it/"+resSum2+"\">"+resSum2+"</a>)</small>");
}
var resSum3 = i18n.reD.exec(testSummary);
if (resSum3 !== null && typeof i18n.dico] != 'undefined'){
testSummary = testSummary.replace(resSum3, i18n.dico]+" ");
}
testSummary = testSummary.replace("/*", "<span class=\"autocomment\">");
testSummary = testSummary.replace("*/", "</span>");
var txt = "<li id=\"wef-history\"><span>"
+ "<abbr style=\"font-size:bold; margin-left:0.5em;\" title=\"" + i18n.linePartTooltip + "\">" + i18n.linePartLetter + "</abbr> <span class=\"mw-changeslist-separator\">. .</span> "
+ "(<a href=\"https://www.wikidata.org/w/index.php?diff=" + id + "\">diff</a>)</span> <span class=\"mw-changeslist-separator\">. . . . .</span> "
+ "<span class=\"mw-changeslist-date\">" + heureAff + " " + dateAff + "</span> "
+ "<span class=\"history-user\">" + author + "</span><span class=\"mw-changeslist-separator\">. .</span> "
+ "<span class=\"comment\">" + testSummary + "</span></li>";
insertChang (txt, updated) ;
}
}
function insertChang( txt, updated ) {
"use strict";
$('ul#pagehistory > li ').each(function(){
//si c'est pas du wikidata
if ($(this).text().substr(0,1) != 'd'){
var resH = i18n.reH.exec($(this).text());
if (resH !== null){
var d = new Date( parseInt(resH), parseInt(i18n.revMonthes]-1), parseInt(pad(resH)), parseInt(resH), parseInt(resH), 0);
if (d<updated) {
$(this).before(txt);
return false;
}
}
}
});
}
{
mw.loader.using( , function() {
showChanges();
} );
}
} );
}