User:Ebrahim/ArticleTranslator.js
//
/*global jQuery, mediaWiki*/
(function ($, mw) {
'use strict';
var action = mw.config.get('wgAction');
if (action === 'history') {
return;
}
function linkFromWikiLang(page, lang) {
if (lang === 'imdb')
return 'https://www.imdb.com/title/' + page + '/';
if (lang === 'wikidata')
return 'https://wikidata.org' + mw.util.getUrl(page);
return 'https://' + lang + '.wikipedia.org' + mw.util.getUrl(page);
}
{
var searchParams = new URL(location).searchParams;
var golang = searchParams.get('golang') || searchParams.get('gotolang');
if (golang) {
$.post('https://linkstranslator.toolforge.org/', {
p: mw.config.get('wgPageName'),
from: mw.config.get('wgPageContentLanguage'),
to: golang
}).then(function (response) {
var result = Object.values(response)[0];
if (result) location.href = linkFromWikiLang(result, golang);
else mw.notify('The page wasn\'t available on the requested language');
});
}
}
var conf = {
homeWiki: 'fa',
fromLang: mw.config.get('wgPageContentLanguage'),
translatorBarFormat: '$1translate$2 links from $3 to $4 $5',
templateTranslatorText: 'Template translation',
removeLinksAliasesText: 'Remove Links Aliases',
enableTemplateTranslation: true,
removeLinksAliases: true,
name: 'Name',
interwikiCount: 'Language links count',
linkedTo: 'Linked to',
listOfUnavailablePagesOn: 'List of not present pages on',
definedTemplates: ['Portal', 'About', 'ADB', 'Alsoknown', 'Alternateuses', 'Cat main',
'Cat main article', 'Category disambiguation', 'Category main', 'Catmain', 'Consider disambiguation', 'Contrast',
'Dabprefixes', 'Detail', 'Details', 'Disambiguation needed', 'Distinguish', 'Distinguish2', 'For', 'For other uses',
'For2', 'In title', 'Introductory article', 'Look from', 'Main', 'Main cat', 'Main category', 'Maincat', 'More', 'Moredetails',
'Navbox hatnote *Templates', 'Other', 'Other hurricanes', 'Other meanings', 'Other people', 'Other people2', 'Other people3',
'Other people5', 'Other places', 'Other places3', 'Other ships', 'Other use', 'Other uses', 'Other uses of', 'Other uses1',
'Other uses2', 'Other uses-section', 'Othermeanings', 'Otheruse', 'OtherUses', 'Otheruses1', 'Otheruses3', 'OtherusesSubtopic',
'Othervalues', 'Outline', 'Previously', 'Redirect', 'Redirect10', 'Redirect2', 'Redirect3', 'Redirect4', 'Redirect6', 'Redirect-distinguish2',
'Redirect-synonym', 'See introduction', 'See Wiktionary', 'Seesubarticle', 'Selfref', 'Srlink', 'Surname links', 'Technical reasons',
'Template ambiguous', 'Template shortcut', 'This user talk', 'Three other uses', 'Two other uses', 'WikiProject Disambiguation'],
blacklistedTemplatePattern: /Template:(cite|citation|infobox) [a-z]+/i,
};
$.extend(conf, window.articleTranslatorConf);
// getting the last translator preference from the cookie
if ($.cookie && $.cookie('homeWiki') !== null) { conf.homeWiki = $.cookie('homeWiki'); }
if ($.cookie && $.cookie('fromLang') !== null) { conf.fromLang = $.cookie('fromLang'); }
function translate(links, showMissings) {
// unique titles
links = Object.keys(links.reduce(function (object, item) {
object[item] = true;
return object;
}, {}));
var request = {
from: conf.fromLang,
to: conf.homeWiki,
missings: !!showMissings,
p: links.join('|')
};
// https://github.com/ebraminio/linkstranslator
return $.post('https://linkstranslator.toolforge.org/', request).then(null, function () {
return $.post('https://linkstranslator.toolforge.org/', request);
});
}
function hasNotPersianCharacter(x) {
return !/[كﮑﮐﮏﮎﻜﻛﻚﻙىﻯيہەھﻰ-ﻴً-ِْٰء-ٕپچژگکكڪﻙﻚیﻱﻲٔ۱۲۳۴۵۶۷۸۹۰]/.test(x);
}
function editboxTranslator() {
var translationTextArea;
if (conf.fromLang === mw.config.get('wgPageContentLanguage')) {
$('#wpTextbox2').remove();
translationTextArea = $('#wpTextbox1').clone()
.prop('id', 'wpTextbox2')
.attr('style', 'background-color: var(--background-color-progressive-subtle--hover, #CCCEFF); height: 400px')
.val($('#wpTextbox1').val());
$('#wpTextbox1').before(translationTextArea);
} else {
translationTextArea = $('#wpTextbox1');
}
var raw = translationTextArea.val();
if (raw.match(/\{\{(Navbox|Sidebar|Campaignbox)/)) {
raw = raw.replace(/(\|\s*name\s*=\s*)([^\n\|\}]*)/, '$1' + mw.config.get('wgTitle'));
}
$.Deferred().resolve().then(function () {
var links = (raw.match(/\[\[.*?[|\]]/g) || []).map(function (x) { return x.split(/\[\[:?/)[1].split(/[|\]]/)[0]; });
if (links.length === 0) {
return;
}
if (conf.homeWiki === 'fa') {
links = links.filter(hasNotPersianCharacter);
}
return translate(links).then(function (result) {
Object.keys(result).forEach(function (from) {
raw = raw.replace(
new RegExp('(\\[\\[:?)' + mw.RegExp.escape(from) + '((?:\\|[^\\]]*)?)(\\]\\])', 'g'),
'$1' + result[from] + (conf.removeLinksAliases ? '' : '$2') + '$3'
);
});
});
}).then(function () {
if (!conf.enableTemplateTranslation) { return; }
var templateLinksRegexp = new RegExp('(\\{\\{\\s*(?:Template:)?(?:' + conf.definedTemplates.join('|') + ')\\|)([^\n|]+?)((?:\\|[^\n\}]*?)?\\}\\})', 'ig');
var links = (raw.match(templateLinksRegexp) || []).map(function (x) { return x.split('|')[1].split('}')[0]; });
if (links.length === 0) {
return;
}
return translate(links).then(function (result) {
raw = raw.replace(templateLinksRegexp, function ($0, $1, $2, $3) {
return $1 + (result[$2] || $2) + $3;
});
});
}).then(function () {
if (!conf.enableTemplateTranslation) { return; }
var templatesRegexp = /((?:[^{]|^)\{\{\s*(?:Template:|))([^\n|{]+?)([|}\n])/ig;
var links = (raw.match(templatesRegexp) || [])
.map(function (x) { return 'Template:' + x.split(/\{\{/)[1].split(/[|}\n]/)[0]; })
.filter(function (x) { return !conf.blacklistedTemplatePattern.test(x); });
if (links.length === 0) {
return;
}
if (conf.homeWiki === 'fa') {
links = links.filter(hasNotPersianCharacter);
}
return translate(links).then(function (result) {
raw = raw.replace(templatesRegexp, function ($0, $1, $2, $3) {
return result['Template:' + $2] ? ($1 + result['Template:' + $2].replace(/[^:]*:/, '') + $3) : $0;
});
});
}).then(function () {
// Persian specific cleanings, disabled: https://fa.wikipedia.org/?diff=18668571
//if (conf.homeWiki === 'fa')
// raw = raw.replace(/\]\]s/g, ']]').replace(/, /g, '، ');
translationTextArea.val(raw);
});
}
function viewTranslator(translatorBar, showMissings) {
$('.linkstranslator-added-content, .linkstranslator-missings-wrapper').remove();
var pageLinks = {};
document.querySelectorAll('#bodyContent a').forEach(function (x) {
var href = x.getAttribute('href');
if (!href || href.indexOf('/wiki/') === -1) return;
var title = decodeURIComponent(href.replace(/.*?\/wiki\//, ''))
.replace(/_/g, ' ').replace(/#.*$/g, '');
if (title.length) {
if (!pageLinks[title]) pageLinks[title] = [];
pageLinks[title].push(x);
}
});
$('.linkstranslator-added-content, .linkstranslator-missings-wrapper', translatorBar).remove();
$('.translator-button, .translator-plus', translatorBar).css('color', 'lightgray');
translate(Object.keys(pageLinks), showMissings).then(function (result) {
$('.linkstranslator-added-content, .linkstranslator-missings-wrapper').remove();
$('.translator-button, .translator-plus', translatorBar).css('color', '#808b96');
var processedResult = Object.keys(result).reduce(function (o, key) {
if (key.indexOf('#') !== 0)
o[mw.util.getUrl(key).split('/wiki/')[1]] = result[key];
return o;
}, {});
Object.entries(result).forEach(function (entry) {
(pageLinks[entry[0]] || []).forEach(function (x) {
$(x).after($('', {
class: 'linkstranslator-added-content'
}).append('(', !navigator.clipboard ? '' : $('', {
href: '#',
style: 'font-size: 140%; font-weight: normal; line-height: 0;',
title: 'Copy to clipboard',
text: '⎘',
click: function (e) {
e.preventDefault();
navigator.clipboard.writeText(entry[1]).then(function () {
e.target.animate && e.target.animate([
{ fontSize: '140%' }, { fontSize: '100%' }
], { duration: 220, iterations: 1 });
}, console.error);
}
}), ' ', $('').append($('', {
lang: conf.homeWiki,
href: linkFromWikiLang(entry[1], conf.homeWiki),
text: entry[1]
})), ')'));
});
});
if (showMissings) showTables(translatorBar, result, pageLinks);
if (result['#debug']) console.log('Server debug:', result['#debug']);
});
}
function showTables(translatorBar, result, pageLinks) {
var missings = result['#missings'];
// Red nodes inserted after the missing pages
Object.keys(missings).map(function (page) {
if (!missings[page].langlinks) return;
(pageLinks[page] || []).forEach(function (link) {
$(link).after($('', {
class: 'linkstranslator-added-content'
}).append('(', $('', {
style: 'color: red',
text: missings[page].langlinks,
class: 'translatorNeededLink'
}), ')'));
});
});
// Missings table
var links = Object.keys(missings).map(function (page) {
return [page, missings[page].langlinks, missings[page].links];
}).filter(function (x) { return x[1]; });
links = links.sort(function (x, y) { return y[1] - x[1]; });
var start = document.dir === 'ltr' ? 'left' : 'right';
$('header').after($('
style: 'line-height: 1.25; font-size: 50%;',
class: 'linkstranslator-missings-wrapper'
}).append(
conf.listOfUnavailablePagesOn + ' ' + conf.homeWiki + '.wiki: ',
$('
style: 'height: 10em; overflow-y: scroll; overflow-x: hidden; width: 100em;'
}).append(
$('
$('
', { text: conf.name }),
$(' | ', { text: conf.interwikiCount }),
$(' | ', { text: conf.linkedTo })
)).append(links.map(function (x) { return $(' | ||||
---|---|---|---|---|---|---|
').append($('', {
href: linkFromWikiLang(x[0], conf.fromLang), text: x[0] })), $(' | ', { text: x[1].toLocaleString(mw.config.get('wgUserLanguage')) }),
$(' | ', { text: x[2].toLocaleString(mw.config.get('wgUserLanguage')) })
); })) ), $(' ', { style: 'width: 2em; float: ' + start }).append(' '), $(' ', { style: 'float: ' + start }).append(
$('
|