User:Novem Linguae/Scripts/CiteHighlighter.js
Appearance
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. |
This user script seems to have a documentation page at User:Novem Linguae/Scripts/CiteHighlighter. |
// <nowiki>
class CiteHighlighter {
constructor( window, $, mw ) {
this.window = window;
// eslint-disable-next-line no-jquery/variable-pattern
this.$ = $;
this.mw = mw;
}
async execute() {
this.sources = await this.getListOfSourcesAndRatings();
this.unreliableWordsForOrangeHighlighting = this.getUnreliableWords();
this.setConfigVariableDefaultsIfNeeded();
this.articleTitle = this.mw.config.get( 'wgPageName' );
if ( this.isSlowPage() ) {
return;
}
this.highlightSourceListsMoreAggressively();
this.highlightDraftsMoreAggressively();
this.preventWikipediaFalsePositives();
this.colors = this.getColors();
this.writeCSS();
this.wikicode = await this.getWikicode( this.articleTitle );
this.addHTMLClassesToRefs();
this.addHTMLClassesForUnreliableWords();
this.observeAndAddClassesToTooltips();
}
getUnreliableWords() {
return [
'/comment',
'about-me',
'about-us',
'/about/',
'acquire',
'announce',
// 'blockchain',
'blog', // by far the most common hit
'blogspot',
'businesswire',
'caard', // caard.co - "Simple, free, fully responsive one-page sites for pretty much anything."
'contact-us',
'contactus',
// 'crypto',
'essay',
'fandom',
'/forum/',
'google.com/search',
'innovative',
'newswire',
'podcast',
'/post/',
'preprint',
'press-release',
'pressrelease',
'prnews',
'railfan',
'sponsored',
'thread',
'user-review',
'viewtopic',
'weebly',
'wix',
'wordpress',
'/wp-' // WordPress, e.g. wp-content
];
}
async getListOfSourcesAndRatings() {
let sources = await this.getWikicodeFromCache( 'User:Novem Linguae/Scripts/CiteHighlighter/SourcesJSON.js' );
sources = JSON.parse( sources );
return sources;
}
setConfigVariableDefaultsIfNeeded() {
// Defaults
this.config = {
highlightEverything: false,
highlightLighterColors: false,
alwaysHighlightSourceLists: false,
unreliableWord: '#ffb347',
preprint: 'lightcoral',
doi: 'transparent',
medrs: 'limegreen',
green: 'lightgreen',
yellow: 'khaki',
red: 'lightcoral'
};
// Override defaults if window.citeHighlighterXYZ is already set (typically at the top of the user's common.js file)
for ( const key in this.config ) {
const value = this.window[ 'citeHighlighter' + this.capitalizeFirstLetter( key ) ];
if ( value !== undefined ) {
this.config[ key ] = value;
}
}
}
/**
* @copyright Steve Harrison, CC BY-SA 4.0, https://stackoverflow.com/a/1026087/3480193
* @param {string} string
* @return {string}
*/
capitalizeFirstLetter( string ) {
return string.charAt( 0 ).toUpperCase() + string.slice( 1 );
}
/**
* Don't highlight certain pages, for speed and visual appearance reasons.
*
* On pages with a lot of links (watchlist, WP:FA), highlighting EVERYTHING will double the
* load time. e.g. watchlist 5 seconds -> 10 seconds.
*
* @return {boolean}
*/
isSlowPage() {
if (
this.mw.config.get( 'wgAction' ) === 'history' ||
this.articleTitle === 'Main_Page' ||
this.articleTitle === 'Wikipedia:Featured_articles' ||
this.articleTitle === 'Special:Watchlist' ||
this.articleTitle === 'Wikipedia:New_page_patrol_source_guide' ||
this.articleTitle === 'Wikipedia:Redirects_for_discussion'
) {
return true;
}
return false;
}
/**
* If page is a source quality list, highlight everything, even if highlightEverything =
* false. Goal: easily see if the script is highlighting anything wrong.
*/
highlightSourceListsMoreAggressively() {
const highlightEverythingList = [
'Wikipedia:Reliable_sources/Perennial_sources',
// 'Wikipedia:New_page_patrol_source_guide', // so slow that I hard-coded this never to load by placing a check in isSlowPage()
'Wikipedia:WikiProject_Albums/Sources',
'Wikipedia:WikiProject_Video_games/Sources#Reliable_sources',
'Wikipedia:WikiProject_Anime_and_manga/Online_reliable_sources',
'Wikipedia:WikiProject_Africa/Africa_Sources_List',
'Wikipedia:WikiProject_Dungeons_%26_Dragons/References'
];
if ( this.config.alwaysHighlightSourceLists ) {
if ( highlightEverythingList.includes( this.articleTitle ) ) {
this.config.highlightEverything = true;
}
}
}
/**
* If page is a draft, highlight everything, as the # of links is small, and oftentimes
* inline citations are malformed
*/
highlightDraftsMoreAggressively() {
if ( this.mw.config.get( 'wgNamespaceNumber' ) === 118 ) {
this.config.highlightEverything = true;
}
}
/**
* If highlightEverything = true, delete wikipedia.org and wiktionary. Too many false positives.
*/
preventWikipediaFalsePositives() {
if ( this.config.highlightEverything ) {
this.deleteAll( this.sources, 'en.wikipedia.org', 'wikipedia.org', 'wiktionary.org' );
this.deleteFromArray( this.unreliableWordsForOrangeHighlighting, 'wiki' );
}
}
getColors() {
if ( this.config.lighterColors ) {
return {
unreliableWord: '#ffb347',
preprint: '#ffcfd5',
doi: 'transparent',
medrs: '#63ff70',
green: '#a6ffb9',
yellow: '#ffffcc',
red: '#ffcfd5'
};
} else {
return {
// in general, we give less reliable stuff more priority. so if one source list has it as yellow and another has it as red, we highlight it as red. that way we don't accidentally highlight something unreliable with a good color
// order of these first 3 fixes an issue where published academic papers were being colored preprint red
// lowest priority
unreliableWord: this.config.unreliableWord,
preprint: this.config.preprint,
doi: this.config.doi,
medrs: this.config.medrs,
green: this.config.green,
yellow: this.config.yellow,
red: this.config.red
// 'aggregator': 'plum', // turning off aggregator for now, red/yellow/green is nice and simple, purple makes the color scheme more complicated
// highest priority
};
}
}
writeCSS() {
for ( const key in this.colors ) {
this.mw.util.addCSS( '.cite-highlighter-' + key + ' {background-color: ' + this.colors[ key ] + ';}' );
this.mw.util.addCSS( '.rt-tooltipTail.cite-highlighter-' + key + '::after {background: ' + this.colors[ key ] + ';}' );
}
}
addHTMLClassesToRefs() {
for ( const color in this.colors ) {
const colorIsMissing = typeof this.sources[ color ] === 'undefined';
if ( colorIsMissing ) {
continue;
}
for ( const source of this.sources[ color ] ) {
// Don't check the DOM for every domain. Too expensive. Instead, examine the wikitext and only check the DOM for domains found in the wikitext.
// alwaysIncludeDomains are domains that we should always write a CSS rule for, even if they are not found in the wikitext. This makes sure that domains in {{Cite}} templates are detected. For example, {{Cite journal}} uses nih.gov, and {{Cite tweet}} uses twitter.com
const isAlwaysIncludeDomain = source === 'nih.gov' || source === 'twitter.com';
if ( this.wikicode.includes( source ) || isAlwaysIncludeDomain ) {
const isExternalLinkContainingDomainName = source.includes( '.' ) && !source.includes( ' ' );
if ( isExternalLinkContainingDomainName ) {
this.highlightCitation( source, color );
this.highlightUnorderedListItem( source, color );
if ( this.config.highlightEverything ) {
this.highlightExternalLinks( source, color );
}
}
}
}
}
}
highlightCitation( source, color ) {
// highlight whole cite
// [title="source" i]... the "i" part is not working in :has() for some reason
// use .toLowerCase() for now
// using .addClass() instead of .css() or .attr('style') because I'm having issues getting medrs to override arXiv/Wikidata/other red sources
this.$( 'li[id^="cite_note-"]' )
// select /domain.com and .domain.com
.has( 'a[href*="/' + source.toLowerCase() + '"], a[href*=".' + source.toLowerCase() + '"]' )
.addClass( [
'cite-highlighter-' + color,
// in dark mode, make foreground text black instead of white
'notheme'
] );
}
highlightUnorderedListItem( source, color ) {
// Also support any {{Cite}} template inside an unordered list. For example, a works cited section supporting a references section consisting of "Smith 1986, pp. 573-574" type citations. Example: https://en.wikipedia.org/wiki/C._J._Cregg#Articles_and_tweets
this.$( 'li' )
// select /domain.com and .domain.com
.has( '.citation a[href*="/' + source.toLowerCase() + '"], .citation a[href*=".' + source.toLowerCase() + '"]' )
.addClass( [
'cite-highlighter-' + color,
// in dark mode, make foreground text black instead of white
'notheme'
] );
}
highlightExternalLinks( source, color ) {
// highlight external link only
// !important; needed for highlighting PDF external links. otherwise the HTML that generates the PDF icon has higher specificity, and makes it transparent
// [title="source" i]... the "i" means case insensitive. Default is case sensitive.
this.mw.util.addCSS( '#bodyContent a[href*="/' + source + '" i] {background-color: ' + this.colors[ color ] + ' !important;}' );
this.mw.util.addCSS( '#bodyContent a[href*=".' + source + '" i] {background-color: ' + this.colors[ color ] + ' !important;}' );
}
/**
* Observe and highlight popups created by the gadget Reference Tooltips.
*/
observeAndAddClassesToTooltips() {
// TODO: switch from MutationObserver to mw.hook().add(). https://github.com/NovemLinguae/UserScripts/issues/167
new MutationObserver( function () {
const el = document.getElementsByClassName( 'rt-tooltip' )[ 0 ];
if ( el ) {
for ( const color in this.colors ) {
if ( typeof this.sources[ color ] === 'undefined' ) {
continue;
}
for ( const source of this.sources[ color ] ) {
if ( this.wikicode.includes( source ) || source === 'nih.gov' || source === 'twitter.com' ) {
if ( source.includes( '.' ) && !source.includes( ' ' ) ) {
this.$( el )
.has( `a[href*="${ source.toLowerCase() }"]` )
.addClass( [
'cite-highlighter-' + color,
// in dark mode, make foreground text black instead of white
'notheme'
] );
this.$( el )
.has( `a[href*="${ source.toLowerCase() }"]` )
.children()
.first()
.addClass( [
'cite-highlighter-' + color,
// in dark mode, make foreground text black instead of white
'notheme'
] );
}
}
}
}
}
} ).observe( document.body, {
subtree: false,
childList: true
} );
}
/**
* Be more aggressive with this list of words. Doesn't have to be the domain name. Can be
* anywhere in the URL. Example unreliableWord: blog.
*/
addHTMLClassesForUnreliableWords() {
for ( const word of this.unreliableWordsForOrangeHighlighting ) {
const color = 'unreliableWord';
if ( this.wikicode.includes( word ) ) {
this.$( 'li[id^="cite_note-"]' )
.has( 'a[href*="' + word.toLowerCase() + '"]' )
.addClass( [
'cite-highlighter-' + color,
// in dark mode, make foreground text black instead of white
'notheme'
] );
}
}
}
/**
* CAREFUL. This is case sensitive.
*
* @param {Object} haystack
* @param {...any} strings
*/
deleteAll( haystack, ...strings ) {
for ( const string of strings ) {
for ( const key in haystack ) {
haystack[ key ] = this.deleteFromArray( haystack[ key ], string );
}
}
}
deleteFromArray( haystack, needle ) {
const index = haystack.indexOf( needle );
if ( index > -1 ) {
haystack.splice( index, 1 );
}
return haystack;
}
async getWikicode( title ) {
const pageIsDeleted = !this.mw.config.get( 'wgCurRevisionId' );
if ( pageIsDeleted ) {
return '';
}
const api = new this.mw.Api();
const response = await api.get( {
action: 'parse',
page: title,
prop: 'wikitext',
formatversion: '2',
format: 'json'
} );
return response.parse.wikitext;
}
async getWikicodeFromCache( title ) {
// ForeignApi so that CiteHighlighter can be loaded on any wiki
const api = new this.mw.ForeignApi( 'https://en.wikipedia.org/enwiki/w/api.php' );
const response = await api.get( {
action: 'query',
prop: 'revisions',
titles: title,
rvslots: '*',
rvprop: 'content',
formatversion: '2',
uselang: 'content', // needed for caching
smaxage: '86400', // cache for 1 day
maxage: '86400' // cache for 1 day
} );
const wikicode = response.query.pages[ 0 ].revisions[ 0 ].slots.main.content;
return wikicode;
}
}
// Fire after wiki content is added to the DOM, such as when first loading a page, or when a gadget such as the XTools gadget loads.
mw.hook( 'wikipage.content' ).add( async () => {
await mw.loader.using(
[ 'mediawiki.util', 'mediawiki.api' ],
async () => {
await ( new CiteHighlighter( window, $, mw ) ).execute();
}
);
} );
// Fire after an edit is successfully saved via JavaScript, such as edits by the Visual Editor and HotCat.
mw.hook( 'postEdit' ).add( async () => {
await mw.loader.using(
[ 'mediawiki.util', 'mediawiki.api' ],
async () => {
await ( new CiteHighlighter( window, $, mw ) ).execute();
}
);
} );
// </nowiki>