ميدياويكي:Gadget-quickLinker.js

من كوبتيكبيديا
اذهب إلى التنقل اذهب إلى البحث

ملاحظة: بعد النشر، أنت قد تحتاج إلى إفراغ الكاش الخاص بمتصفحك لرؤية التغييرات.

  • فايرفوكس / سافاري: أمسك Shift أثناء ضغط Reload، أو اضغط على إما Ctrl-F5 أو Ctrl-R (⌘-R على ماك)
  • جوجل كروم: اضغط Ctrl-Shift-R (⌘-Shift-R على ماك)
  • إنترنت إكسبلورر/إيدج: أمسك Ctrl أثناء ضغط Refresh، أو اضغط Ctrl-F5
  • أوبرا: اضغط Ctrl-F5.
/*
This is script for quickly adding links to article from related articles. It is especially useful for orphan articles (invoked automatically), stub articles (invoked automatically) and new articles which usually have less links compared to long existing articles.

Author: [[:he:User:ערן]]
*/
if ( mw.config.get( 'wgNamespaceNumber' ) === 0 ) $(function(){

var titleNoBrackets = /(.+?)( \(|$)/.exec(mw.config.get('wgTitle'));
if (titleNoBrackets) titleNoBrackets = titleNoBrackets[1];
else return;
switch (mw.config.get('wgUserLanguage') )
{
	case 'ar':
		mw.messages.set({
			'qlinker-edit' : 'تعديل طفيف',
			'qlinker-cancel' : 'ألغ',
			'linkify-summary': 'وصل بصفحة [[$1]]',
			'qlinker-save-success': '$1 حفظت',
			'qlinker-save-continue': 'احفظ',
			'qlinker-skip': 'تجاوز',
			'qlinker-skip-match': 'انتقل للنتيجة التالية',
			'qlinker-invoke': 'صل سريعا',
			'qlinker-sidelink': 'وصل الصفحة',
			'qlinker-no-results': 'لا نتائج',
			'qlinker-confirm-masslink': 'الصفحة موصولة كثيرا. هل تريد زيادة وصلها؟'
		});
	break;
	default:
		mw.messages.set({
			'qlinker-edit' : 'Quick edit',
			'qlinker-cancel' : 'Cancel',
			'linkify-summary': 'Adding link to [[$1]]',
			'qlinker-save-success': '$1 has been saved successfully!',
			'qlinker-save-continue': 'Save',
			'qlinker-skip': 'Skip page',
			'qlinker-skip-match': 'Skip to next match',
			'qlinker-invoke': 'Quickly add links',
			'qlinker-sidelink': 'Add links',
			'qlinker-no-results': 'No results found',
			'qlinker-confirm-masslink': 'This page already has many links. Are you sure?'
		});	
	break;
}


function createQuickEditorDialog(searchRes, safeMode){
	function QuickEditorDialog( config ) {
	  this.contextRgx = new RegExp('(.*[^\\[])(' + mw.RegExp.escape(titleNoBrackets) +')((?![^\\[\\{]*[\\]\\}]).*)', 'ig');
	  this.contextRgxLink = new RegExp('(.*\\[\\[)([^\\]]+?)\\|(' + mw.RegExp.escape(titleNoBrackets) +')(\\]\\].*)', 'ig');
	  this.pageI = -1;
	  this.matchI = 0;
	  this.searchData = null;
	  this.curPage = null;
	  this.safeMode = safeMode;
	  this.skipsCounter = 0;
	  this.starttimestamp = null;
	  this.timestamp = null;
	  QuickEditorDialog.super.call( this, config );
	}
	OO.inheritClass( QuickEditorDialog, OO.ui.ProcessDialog ); 

	// Specify a name for .addWindows()
	QuickEditorDialog.static.name = 'QuickEditorDialog';
	// Specify a title statically (or, alternatively, with data passed to the opening() method). 
	QuickEditorDialog.static.title = mw.msg('qlinker-edit');

	QuickEditorDialog.static.actions = [
	  { action: 'saveContinue', label: mw.msg('qlinker-save-continue'), flags: [ 'other', 'constructive' ] },
	  { action: 'skipOne', label: mw.msg('qlinker-skip'), flags: [ 'other', 'progressive' ] },
	  { action: 'skipMatch', label: mw.msg('qlinker-skip-match'), flags: [ 'other', 'progressive' ] },
	  { label: mw.msg('qlinker-cancel'), flags: 'safe' }
	];

	// Customize the initialize() function: This is where to add content to the dialog body and set up event handlers. 
	QuickEditorDialog.prototype.initialize = function () {
	  // Call the parent method
	  QuickEditorDialog.super.prototype.initialize.call( this );
	  // Create and append a layout and some content.
	  this.content = new OO.ui.PanelLayout( { padded: true, expanded: true } );
	  this.$body.append( this.content.$element );
	};
	  
	QuickEditorDialog.prototype.getBodyHeight = function () {
	  return 400;
	};

	QuickEditorDialog.prototype.getSetupProcess = function ( data ) {
	  data = data || {};
	  return QuickEditorDialog.super.prototype.getSetupProcess.call( this, data )
	  .next( function () {
		// Set up contents based on data
	    this.searchData = data.searchData.query;
	    this.starttimestamp = data.searchData.curtimestamp;
		this.nextPage();
	  }, this );
	};

	// Use the getActionProcess() method to specify a process to handle the 
	// actions (for the 'save' action, in this example).
	QuickEditorDialog.prototype.getActionProcess = function ( action ) {
	  var dialog = this;
	  switch ( action ) {
		case 'skipOne':
			return new OO.ui.Process( function () {
			  dialog.skipsCounter++;
			  dialog.nextPage();
			}, this );
		case 'skipMatch':
			return new OO.ui.Process( function () {
			  dialog.skipsCounter++;
			  dialog.nextMatch();
			}, this );
		case 'saveContinue':
			return new OO.ui.Process( function () {
			  dialog.savePage();
			}, this );
	  }

	  // Fallback to parent handler.
	  return QuickEditorDialog.super.prototype.getActionProcess.call( this, action );
	};

	QuickEditorDialog.prototype.savePage = function ( ) {
		if (this.curPage)
		{
			var api = new mw.Api(), pagename = this.curPage;
			api.postWithToken('csrf', {
				action: 'edit',
				title: this.curPage,
				summary: mw.msg('linkify-summary', mw.config.get('wgTitle')),
				minor: 1,
				basetimestamp: this.timestamp,
				starttimestamp: this.starttimestamp,
				text: this.text,
				tags: 'quickLinker'
			}).done(function(d) {
				if (d && d.edit && d.edit.result == 'Success')	mw.notify(mw.msg('qlinker-save-success', pagename));
			});
		}
		var self = this;
		if(this.safeMode) setTimeout(function(){ self.nextPage(); }, 5000/(self.skipsCounter+1));
		else self.nextPage();
	};

	QuickEditorDialog.prototype.nextMatch = function ( ) {
		var m, contextPre, contextPost, contextInner, contextInnerOld, newContext, context;
		this.matchI++;
		if (this.searchData.pageids.length <= this.pageI) {
			return this.nextPage();
		}

		var page = this.searchData.pages[this.searchData.pageids[this.pageI]],
		pagecontent = page.revisions[0]['*'];
		if (page.title == mw.config.get('wgTitle')) {
			return this.nextPage();
		}

		if (m = this.contextRgx.exec(pagecontent)) {
			contextPost = m[3];
			contextInner = (m[2] == mw.config.get('wgTitle')) ? '[['+mw.config.get('wgTitle')+']]' : '[['+mw.config.get('wgTitle')+'|' + m[2] + ']]';
			contextInnerOld = '';
		}
		else if (m = this.contextRgxLink.exec(pagecontent)) {
			if(m[2].endsWith(')')) 
			{
				m = null; // other existing meaning
			}
			else 
			{
				contextPost = m[3] == mw.config.get('wgTitle')? m[4] : '|' + m[3] + m[4];
				contextInner = mw.config.get('wgTitle');
				contextInnerOld = '<s>' + m[2] + (m[3] == mw.config.get('wgTitle')? '|' : '') + '</s>';
			}
		}

		if (!m) return this.nextPage();

		context = m[0];
	 	contextPre = m[1];
		newContext = contextPre+contextInner+contextPost;
		this.content.$element.html('<h1><a href="/wiki/'+encodeURI(page.title)+'" target="_blank">'+page.title+'</a></h1><p style="font-family:consolas,monospace;letter-spacing:-2px;">'+contextPre+contextInnerOld+'<b style="background-color:powderblue;">'+contextInner+'</b>'+contextPost+'</p>');
		this.curPage = page.title;
		this.text = pagecontent.replace(context, newContext);
		this.timestamp = page.revisions[0].timestamp;
	
	};

	QuickEditorDialog.prototype.nextPage = function ( ) {
		var m, contextPre, contextPost, contextInner, contextInnerOld, newContext;
		this.pageI++;
		this.matchI = 0;
		if (this.searchData.pageids.length <= this.pageI)
		{
			if(this.curPage === null) {
				this.content.$element.html('<h1><a target="_blank" href="/wiki/Special:Search/'+encodeURI('"' + titleNoBrackets +'" -linksto:"'+mw.config.get('wgPageName') + '"')+'">'+mw.msg('qlinker-no-results')+'</a></h1>');
				this.actions.setAbilities( {
					saveContinue: false, skipOne: false
				} );
			} else {
				this.close();
			}
			return;
		}

		this.nextMatch();
	}

	// Make the window.
	var qlinkerEditor = new QuickEditorDialog( {
	  size: 'medium'
	} );

	// Create and append a window manager, which will open and close the window. 
	var windowManager = new OO.ui.WindowManager();
	$( 'body' ).append( windowManager.$element );

	// Add the window to the window manager using the addWindows() method.
	windowManager.addWindows( [ qlinkerEditor ] );

	// Open the window!
	windowManager.openWindow( qlinkerEditor,  { searchData: searchRes } );
}

function createAddLinksButton(){
	var addLinksWizard;
	if (mw.config.get('skin') === 'minerva') {
	$('#bodyContent').prepend("<a href='#' style='margin-inline-end: 1em;text-indent:5px;width: fit-content; display: inline-block;' id='quiclink' title=" + mw.msg('qlinker-invoke') + ">" + mw.msg('qlinker-sidelink') + "</span>");
	addLinksWizard = $("#quiclink");
} else {
	addLinksWizard = $(mw.util.addPortletLink(
					'p-tb',
					'#',
					mw.msg('qlinker-sidelink'),
					't-quicklinker',
					mw.msg('qlinker-invoke'),
					'b',
					'#t-whatlinkshere'
	));
}
	
	addLinksWizard.click(function(e){
		protectedSearchQuery();
		e.preventDefault();
	});
	return addLinksWizard;
}
function protectedSearchQuery()
{
	var api = new mw.Api();
	api.get( {
		action: 'query',
		prop: 'linkshere',
		lhlimit: 500,
		titles: mw.config.get('wgPageName'),
		indexpageids: 1
	}).done(function(d) {
		var isValid = true, safeMode = false;
		if(d.query && d.query.pages && d.query.pages[d.query.pageids[0]] && d.query.pages[d.query.pageids[0]].linkshere && d.query.pages[d.query.pageids[0]].linkshere.length > 100)
		{
			isValid = confirm(mw.msg('qlinker-confirm-masslink'));
			safeMode = true;
		}
		if (!isValid) return;
		searchLinksApi().done(function(q){
			if (q.error) mw.notify(q.error.info);
			if (!q.query || !q.query.pageids || q.query.pageids.length<=1) {
				mw.notify(mw.msg('qlinker-no-results'));
				return;
			}
			mw.loader.using('oojs-ui-windows', function() {	createQuickEditorDialog(q, safeMode) } );
		});
	})
}

function searchLinksApi() {
	var api = new mw.Api();
	return api.get( {
		action: 'query',
		generator: 'search',
		gsrnamespace: 0,
		gsrsearch: 'insource:/' + mw.RegExp.escape(titleNoBrackets) +'/ -linksto:'+mw.config.get('wgPageName'),
		gsrlimit: 50,
		prop: 'revisions',
		rvprop: 'content|timestamp',
		indexpageids: 1,
		curtimestamp: 1
	});
}
if ($('.dmbox').length==0) {// Don't show the tool at Disambiguation pages because it is useless
	if ($('.orphanpage, .stub').length>0) {
		searchLinksApi().done(function(d){
			if (d.query && d.query.pageids && d.query.pageids.length>1) createAddLinksButton().css('font-weight', 'bold')
		});
	}
	else {
		createAddLinksButton();
	}
}
});

mw.util.addCSS(".oo-ui-window-frame { 	width:60vw; 	 } .oo-ui-window-frame h1 { 	line-height: 1em; 	font-size: 1.2em; }");