// ==UserScript==
// @name add IMDb rating & votes next to all IMDb Movie/Series Links (improved)
// @description Adds movie ratings and number of voters to any imdb link. Modified version of http://userscripts.org/scripts/show/96884
// @author StackOverflow community (especially Brock Adams)
// @version 2016-03-06rev2
// @match *://www.imdb.com/*
// @grant GM_xmlhttpRequest
// @namespace https://greasyfork.org/users/2427
// ==/UserScript==
// Special Thanks to Brock Adams for this script: http://stackoverflow.com/questions/23974801/gm-xmlhttprequest-data-is-being-placed-in-the-wrong-places/23992742
var maxLinksAtATime = 30; //-- pages can have 100's of links to fetch. Don't spam server or browser.
var fetchedLinkCnt = 0;
var ContinueOrSkip = 0;
function processIMDB_Links () {
//--- Get only links that could be to IMBD movie/TV pages.
var linksToIMBD_Shows = document.querySelectorAll ("a[href*='/title/']");
for (var J = 0, L = linksToIMBD_Shows.length; J < L; J++) {
var currentLink = linksToIMBD_Shows[J];
/*--- Strict tests for the correct IMDB link to keep from spamming the page
with erroneous results.
*/
if ( ! /^(?:www\.)?IMDB\.com$/i.test (currentLink.hostname)
|| ! /^\/title\/tt\d+\/?$/i.test (currentLink.pathname)
)
continue;
/*
if (ContinueOrSkip == 0) {
continueBttn.style.display = 'inline';
currentLink.parentNode.insertBefore (continueBttn, currentLink);
skipBttn.style.display = 'inline';
currentLink.parentNode.insertBefore (skipBttn, currentLink);
ContinueOrSkip = 1;
break;
}
*/
if (! currentLink.getAttribute ("data-gm-fetched") ){
if (fetchedLinkCnt >= maxLinksAtATime){
//--- Position the "continue" button.
continueBttn.style.display = 'inline';
currentLink.parentNode.insertBefore (continueBttn, currentLink);
skipBttn.style.display = 'inline';
currentLink.parentNode.insertBefore (skipBttn, currentLink);
break;
}
fetchTargetLink (currentLink); //-- AJAX-in the ratings for a given link.
//---Mark the link with a data attribute, so we know it's been fetched.
currentLink.setAttribute ("data-gm-fetched", "true");
fetchedLinkCnt++;
}
}
}
function skipIMDB_Links () {
//--- Get only links that could be to IMBD movie/TV pages.
var linksToIMBD_Shows = document.querySelectorAll ("a[href*='/title/']");
for (var J = 0, L = linksToIMBD_Shows.length; J < L; J++) {
var currentLink = linksToIMBD_Shows[J];
/*--- Strict tests for the correct IMDB link to keep from spamming the page
with erroneous results.
*/
if ( ! /^(?:www\.)?IMDB\.com$/i.test (currentLink.hostname)
|| ! /^\/title\/tt\d+\/?$/i.test (currentLink.pathname)
)
continue;
if (! currentLink.getAttribute ("data-gm-fetched") ){
if (fetchedLinkCnt >= maxLinksAtATime){
//--- Position the "continue" button.
continueBttn.style.display = 'inline';
currentLink.parentNode.insertBefore (continueBttn, currentLink);
skipBttn.style.display = 'inline';
currentLink.parentNode.insertBefore (skipBttn, currentLink);
break;
}
// fetchTargetLink (currentLink); //-- AJAX-in the ratings for a given link.
//---Mark the link with a data attribute, so we know it's been fetched.
currentLink.setAttribute ("data-gm-fetched", "true");
fetchedLinkCnt++;
}
}
}
function fetchTargetLink (linkNode) {
//--- This function provides a closure so that the callbacks can work correctly.
/*--- Must either call AJAX in a closure or pass a context.
But Tampermonkey does not implement context correctly!
(Tries to JSON serialize a DOM node.)
*/
GM_xmlhttpRequest ( {
method: 'get',
url: linkNode.href,
//context: linkNode,
onload: function (response) {
prependIMDB_Rating (response, linkNode);
},
onload: function (response) {
prependIMDB_Rating (response, linkNode);
},
onabort: function (response) {
prependIMDB_Rating (response, linkNode);
}
} );
}
function prependIMDB_Rating (resp, targetLink) {
var isError = true;
var ratingTxt = "** Unknown Error!";
if (resp.status != 200 && resp.status != 304) {
ratingTxt = '** ' + resp.status + ' Error!';
}
else {
// var ratingM = resp.responseText.match (/Users rated this (.*) \(/);
// var votesM = resp.responseText.match (/\((.*) votes\) -/);
// var ratingM = resp.responseText.document.querySelector('[itemprop="ratingValue"]').innerHTML;
// var votesM = resp.responseText.document.querySelector('[itemprop="ratingCount"]').innerHTML;
//old = "Users rated this 7.9/10 (102,375 votes)
//new = "7.7 based on 127,116 user ratings"
var ratingM = resp.responseText.match (/\"(.*) based on .* user ratings/) + "/10";
var votesM = resp.responseText.match (/based on (.*) user ratings/);
// if (/\(awaiting \d+ votes\)|\(voting begins after release\)/i.test (resp.responseText) ) {
// if (/\(awaiting \d+ votes\)|\Pre-production|\Post-production|\Treatment\/Outline|\(voting begins after release\)|in development,/i.test (resp.responseText) ) {
if (/\Status\:|\b0\b episodes|in development,/i.test (resp.responseText) ) {
ratingTxt = "NR";
isError = false;
colnumber = 0;
} else {
if (ratingM && ratingM.length > 1 && votesM && votesM.length > 1) {
isError = false;
// justrate = ratingM[1].substr(0, ratingM[1].indexOf("/"));
justrate = ratingM[1] + ratingM[2] + ratingM[3];
// ratingTxt = ratingM[1] + " - " + votesM[1];
ratingTxt = justrate + " - " + votesM[1];
colnumber = Math.round(justrate);
}
}
}
color = ["#Faa", "#Faa","#Faa", "#Faa","#Faa", "#F88","#Faa", "#ff7","#7e7", "#5e5", "#0e0", "#ddd"]
var resltSpan = document.createElement ("span");
resltSpan.innerHTML = '<b><font style="border-radius: 5px;padding: 1px;border: #575757 solid 1px; background-color:' + color[colnumber] + ';">' + ' [' + ratingTxt + '] </font></b> ';
// resltSpan.innerHTML = '<b><font style="background-color:' + justrate + '">' + ' [' + ratingTxt + '] </font></b> ';
if (isError)
resltSpan.style.color = 'red';
//var targetLink = resp.context;
//console.log ("targetLink: ", targetLink);
targetLink.parentNode.insertBefore (resltSpan, targetLink);
}
//--- Create the continue button
var continueBttn = document.createElement ("button");
continueBttn.innerHTML = "Get ratings";
continueBttn.addEventListener ("click", function (){
fetchedLinkCnt = 0;
ContinueOrSkip = 1;
continueBttn.style.display = 'none';
skipBttn.style.display = 'none';
processIMDB_Links ();
},
false
);
//--- Create the skip button
var skipBttn = document.createElement ("button");
skipBttn.innerHTML = "Skip 30";
skipBttn.addEventListener ("click", function (){
fetchedLinkCnt = 0;
ContinueOrSkip = 1;
continueBttn.style.display = 'none';
skipBttn.style.display = 'none';
skipIMDB_Links ();
},
false
);
processIMDB_Links ();