Misplaced Pages

User:Δ/Spam.js

Article snapshot taken from Wikipedia with creative commons attribution-sharealike license. Give it a read and then ask your questions in the chat. We can research this topic together.
< User:Δ

This is the current revision of this page, as edited by Ladsgroup (talk | contribs) at 08:12, 29 November 2021 (Maintenance: Replacing addPortletLink() with mw.util.addPortletLink() (mw:ResourceLoader/Migration_guide_(users)#addPortletLink)). The present address (URL) is a permanent link to this version.

Revision as of 08:12, 29 November 2021 by Ladsgroup (talk | contribs) (Maintenance: Replacing addPortletLink() with mw.util.addPortletLink() (mw:ResourceLoader/Migration_guide_(users)#addPortletLink))(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
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:Δ/Spam.
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Misplaced Pages:Bypass your cache.
//<nowiki>
//Written by ], thanks to ] and ] for help with this!
//Modified by ]


if(mw.config.get('wgNamespaceNumber') == -1) {
 addOnloadHook(function() {
 var tbs = document.getElementById('p-cactions').getElementsByTagName('ul');
 addlilink(tbs, "javascript:rem_spam()", "remove external links", 'ca-remspam', 'Alter all the links on this page to autorem the external link on the page when clicked');
 });
}

if(location.href.indexOf('action=edit') != -1 && location.href.indexOf('remspam=') != -1) {
 addOnloadHook(function() {
 var tag = query_get('remspam');
 var box = document.getElementById('wpTextbox1');
 var txt = box.value;
 var reg = tag.replace('http://', '').replace(/\./g, '\\.').replace(/\*\\?\./g, '(?:.*?\\.)?');
 var newtext = ''+txt;
 newtext = newtext.replace(new RegExp('^\\s*\\*.*?\\?.*?$', 'igm'), '');
 newtext = newtext.replace(new RegExp('(?:<ref(?:\\s*name=.*?)?>\\s*)?\\{\\{\\s*citeweb\\s*\\|(?:.*?\\|)*\\s*url\\s*=\\s*https?\\://'+reg+'/?.*?\\s*(?:\\|.*?)?\\}\\}(?:\\s*<\/ref>)?', 'ig'), '');
 newtext = newtext.replace(new RegExp('(?:<ref(?:\\s*name=.*?)?>\\s*)?\\?(?:\\s*<\/ref>)?', 'ig'), '$1');
 box.value = newtext;
 document.getElementById('wpSummary').value = 'Removing external link: '+tag+' -- per ]';
 document.getElementById('wpMinoredit').checked = true;
 document.getElementById('wpWatchthis').checked = true;
 document.getElementById('wpDiff').click();
 });
}

function rem_spam() {
 var targ = query_get('target') || unescape(location.href).split('/').reverse().split('?').split('#');
 var tag = prompt('Please insert a link (without http://) to remove from\nall pages listed here. Example (and default if textbox is blank):\n'+targ);
 if(tag == null) { alert('Action canceled.'); return; }
 if(tag === "") tag = targ;
 var links = document.getElementById('bodyContent').getElementsByTagName('a');
 for(var i=0; i<links.length; i++) {
 var link = links;
 var cha = (link.href.indexOf('?') != -1) ? '&' : '?';
 link.href += cha + 'linkmodified=yes&action=edit&remspam='+escape(tag);
 link.style.color = "green";
 link.onmouseup = function() { this.style.color = 'orange'; }; 
 link.innerHTML = link.innerHTML.replace(/(<(+)>)/g, '');
 }
 var btn = document.getElementById('ca-remspam').firstChild;
 btn.href = 'javascript:unrem_spam();';
 btn.innerHTML = 'un-highlight links';
 btn.title = '';
 addTab(tbs, "javascript:void(filter_main())", "filter", 'ca-filter', 'Filter all pages on here to only be for mainspace');
};

function unrem_spam() {
 var links = document.getElementById('bodyContent').getElementsByTagName('a');
 for(var i=0; i<links.length; i++) {
 var link = links;
 link.href = link.href.split('linkmodified=yes');
 link.style.color = "";
 }
 alert('All links will now be safe to click...');
 var btn = document.getElementById('ca-remspam').firstChild;
 btn.href = 'javascript:rem_spam();';
 btn.innerHTML = 'remove external links';
 btn.title = '';
};

//parse paramName out of query string
//stolen from Lupin's popups
function query_get(paramName) {
  var cmdRe=RegExp(''+paramName+'=(*)');
  var h=document.location;
  var m;
  if (m=cmdRe.exec(h)) {
    try { 
      return unescape(m);
    } catch (someError) {}
  }
  return null;
};


function filter_main() {
 var lis = document.getElementById('bodyContent').getElementsByTagName('li'); 
 var len = lis.length;
 for(var i=0; i<len; i++) { 
 var li = lis; 
 if(li.getElementsByTagName('a').innerHTML.indexOf(':') != -1) { 
 //li.parentNode.removeChild(li);
 li.style.display = 'none';
 }
 }
};

if(mw.config.get('wgPageName') == 'Special:LinkSearch') {
 addOnloadHook(function() {
 var tbs = document.getElementById('p-cactions').getElementsByTagName('ul');
 addlilink(tbs, "javascript:filter_main();", "filter", 'ca-filter', 'Filter all pages on here to only be for mainspace');
 });
};

function substNRD() {
  if (document.editform) {
    document.editform.wpTextbox1.value = "\n{{" + "db-f8}}\n"+document.editform.wpTextbox1.value;
    document.editform.wpSummary.value = "commons dupe";
    document.editform.submit();
  } else
    document.location = mw.config.get('wgServer') + mw.config.get('wgScript') + "?title=" + mw.config.get('wgPageName') + "&action=edit&substNRD=1";
};
function addSubstNRD(){
  if (mw.config.get('wgCanonicalNamespace') == "File")
    mw.util.addPortletLink("p-cactions", "javascript:substNRD()", "{{" + "dfu}}", "");
  if (document.location.href.indexOf("substNRD=1") > 0)
    substNRD();
};
$(addSubstNRD);
//</nowiki>
User:Δ/Spam.js Add topic