// TorrentLeech enhancement suite
// Copyright, Sergey Ragatsky, 2012
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
//contact me at: segrog@gmail.com
//
// ==UserScript==
// @name TorrentLeech Enhancer
// @author Urban48
// @namespace http://userscripts.org/scripts/show/150341
// @description Enhance TorrentLeech
// @include http://www.torrentleech.org/torrents/*
// @resource copy_btn http://dl.dropbox.com/u/29482107/gm/TLE/copy.png
// @resource copyRl_btn http://dl.dropbox.com/u/29482107/gm/TLE/copy_rollover.png
// @resource info_btn http://dl.dropbox.com/u/29482107/gm/TLE/i.png
// @resource infoRl_btn http://dl.dropbox.com/u/29482107/gm/TLE/i_rollover.png
// @resource trailer_btn http://dl.dropbox.com/u/29482107/gm/TLE/trailer_rollover.png
// @resource trailerRl_btn http://dl.dropbox.com/u/29482107/gm/TLE/trailer.png
// @resource episodes_btn http://dl.dropbox.com/u/29482107/gm/TLE/episodes.png
// @resource episodesRl_btn http://dl.dropbox.com/u/29482107/gm/TLE/episodes_rollover.png
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js
// @require http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js
// @license GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html
// @contributor Lara Korik (http://www.larakorik.com)
// @contributor Sandbird
// @version 0.2.4
// ==/UserScript==
this.$ = this.jQuery = jQuery.noConflict(true);
function button(name, src, rollover){
this.type = name;
this.src = src;
this.rollover = rollover;
}
var copy = new button('copy' ,GM_getResourceURL('copy_btn') ,GM_getResourceURL('copyRl_btn'));
var info = new button('info' ,GM_getResourceURL('info_btn') ,GM_getResourceURL('infoRl_btn'));
var video = new button('video' ,GM_getResourceURL('trailer_btn') ,GM_getResourceURL('trailerRl_btn'));
var episodes = new button('episodes' ,GM_getResourceURL('episodes_btn') ,GM_getResourceURL('episodesRl_btn'));
var fixed_words = Array('INTERNAL' ,'READNFO' ,'NFO' ,'XBLA' ,'XBOX360','GERMAN','USA', 'NDS' ,'Update' ,
'Edition' ,'MULTi9' ,'MULTi7' ,'MULTi5' ,'MULTi2' ,'MULTi1' ,'XBLA' ,'Proper' ,
'JTAG' ,'PS3' ,'EUR' ,'DLC' ,'PL' ,'WII' ,'NGC' ,'FIX' ,'CRACK' ,'WORKING' ,
'NTSC' ,'Real' ,'DVDRip' ,'RC' ,'BDRip' ,'TS' ,'RF' ,'PAL' ,'NORDiC' ,'UNRATED');
var buttons_collection = [info,
copy,
video
//episodes
];
function getType(category_value){
switch(category_value){
case 1: case 8: case 9: case 10: case 11: case 12: case 13: case 14: case 15: case 29:
return 'cat_movies';
break;
case 2: case 26: case 27: case 32:
return 'cat_tv';
break;
case 3: case 17: case 18: case 19: case 20: case 21: case 22: case 28: case 30:
return 'cat_games';
break;
}
}
$('td[class = "name"]').each(function(){
$raw_text = $(this).closest('td').prev().find('a').attr('href');
var pattern = /[0-9]+/g;
var category_value = parseInt($raw_text.match(pattern));
var category_type = getType(category_value);
$(this).append($('<div / >').addClass('enhanceWrapper')
.css({float:'right', margin: '3px 5px 0 0'})
.data('category', category_type));
});
$.each(buttons_collection,function(index, value) {
$('.enhanceWrapper').append($('<img />')
.addClass('enhance-buttons_collection')
.attr({src: value.src,
alt: value.rollover,
title: value.type})
.css({margin: "0 8px 0 0",
cursor: 'pointer',
float: 'left'})
.data('name',value.type));
});
$('img[class="enhance-buttons_collection"]').hover(function(){
$src = $(this).attr('src');
$alt = $(this).attr('alt');
$(this).attr('src', $alt);
$(this).attr('alt', $src);
},
function(){
$src = $(this).attr('src');
$alt = $(this).attr('alt');
$(this).stop(false,true).attr('src', $alt);
$(this).stop(false,true).attr('alt', $src);
});
function getImdb(name, type){
var movie_name = cleanName2(name, type);
//http://www.imdbapi.com/?t=movie name --- get json respons with imdb id
//http://www.imdb.com/find?s=tt&q=movie name --- takes you to the movie page or to results
var http = new XMLHttpRequest();
http.open("GET", "http://www.omdbapi.com/?t=" + movie_name);
http.send(null);
// Response to JSON
var omdbData = http.responseText;
var omdbJSON = eval("(" + omdbData + ")");
if (omdbJSON.imdbRating != null)
{
// Returns Movie Title
return (omdbJSON.imdbRating);
}
}
;
/*
$('td[class = "name"]').each(function(i){
$raw_text = $(this).closest('td').prev().find('a').attr('href');
var pattern = /[0-9]+/g;
var category_value = parseInt($raw_text.match(pattern));
var category_type = getType(category_value);
$name = $(this).closest('td').find('a').text();
//cat_movies
if(category_type == 'cat_movies'){
var showScore = getImdb($name, category_type);
$(this).append($('<div / >').addClass('test')
.css({float:'right', margin: '3px 5px 0 0'})
.html(showScore));
}
});
*/
$('td[class = "name"]').each(function(i){
var cache_this = this;
$raw_text = $(this).closest('td').prev().find('a').attr('href');
var pattern = /[0-9]+/g;
var category_value = parseInt($raw_text.match(pattern));
var category_type = getType(category_value);
$name = $(cache_this).closest('td').find('a').text();
var movie_name = cleanName2($name, category_type);
if(category_type == 'cat_movies'){
console.log(movie_name);
GM_xmlhttpRequest({
method: "GET",
url: "http://www.omdbapi.com/?t=" + movie_name,
onload: function(response) {
var foo_result=jQuery.parseJSON(response.responseText);
var rating=foo_result.imdbRating;
if(typeof rating == 'undefined' || typeof rating == 'N/A')
$(cache_this).find('span.title').append(' <span style="color:red">(N/A)</span>');
else
$(cache_this).find('span.title').append(' <span style="color:yellow">('+rating+')</span>');
}
});
}
} );
//OLD way of getting rating
/*
$('td[class = "name"]').each(function(i){
var cache_this = this;
currentTitleChunk = $(this).find('span.title');
currentTitle = currentTitleChunk.text();
console.log(currentTitle);
GM_xmlhttpRequest({
method: "GET",
url: "http://www.omdbapi.com/?t=" + currentTitle,
onload: function(response) {
var foo_result=jQuery.parseJSON(response.responseText);
var rating=foo_result.imdbRating;
$(cache_this).find('span.title').append(' ('+rating+' on IMDb)');
}
});
} );
*/
$('img[class="enhance-buttons_collection"]').click(function(){
//$(this).stop(true,true).effect("bounce", { times:3 }, 300);
//diable the add to bookmark feature if clicking the enhance buttons
$(this).parents('tbody tr').addClass('row_selected');
//$raw_text = $(this).closest('td').prev().find('a').attr('href');
$name = $(this).closest('td').find('a').text();
var cat_type = $(this).parent().data('category');
switch($(this).data('name')){
case 'copy':
window.prompt ("Copy to clipboard: Ctrl+C, Enter", $name);
break;
case 'info':
if(cat_type == 'cat_movies'){
openImdb($name, cat_type);
}
else if(cat_type == 'cat_tv')
openTv($name, cat_type);
else if(cat_type == 'cat_games')
openGameReview($name, cat_type);
break;
case 'video':
if(cat_type == 'cat_games')
openGamePlay($name, cat_type);
else if(cat_type == 'cat_movies')
openTrailer($name, cat_type);
break;
case 'episodes':
if(cat_type == 'cat_tv')
openEpisodes($name, cat_type);
break;
}
});
function splitter(string, type){
var result = "";
var split_str = string.split(' ');
for(index in split_str){
if(type == 'cat_tv')
if(parseInt(split_str[index],10) > 10 ){
result = (split_str.slice(0,index)).join(" ");
splitter(result, type);
break;
}
if(split_str[index].toLowerCase() == "update"){
result = (split_str.slice(0,index)).join(" ");
splitter(result, type);
break;
}
if(split_str[index].charAt(0).toLocaleLowerCase() == 'v' && !isNaN(split_str[index].charAt(1))){
result = (split_str.slice(0,index)).join(" ");
splitter(result, type);
break;
}
if(split_str[index].indexOf('-') != -1){
result = (split_str.slice(0,index)).join(" ");
splitter(result, type);
break;
}
}
if(result.length > 0)
return result;
else
return string;
}
function cleanName2(rawName, type){
var name = "";
var tempName = splitter(rawName, type);
var split_name = tempName.split(" ");
//remove fixed words
for(var j = 0; j < split_name.length; j++){
var found = false;
for(var k = 0; k < fixed_words.length; k++){
if(fixed_words[k].toLowerCase() == split_name[j].toLowerCase()){
found = true;
break;
}
}
if(found)
delete split_name[j];
}
//special case filter
for(index in split_name){
if(isNaN(split_name[index]) &&
isNaN(split_name[index].charAt(0)) &&
split_name[index].indexOf("(") == -1){
if(type == 'cat_tv')
if(split_name[index].indexOf("E") != -1 && split_name[index].indexOf("S") != -1)
break;
name += split_name[index] + " ";
}
else if(!isNaN(split_name[index])){ //handler for numbers in the name
if(type == 'cat_movies')
if(parseInt(split_name[index],10) > 10 )
break;
name += split_name[index] + " ";
}
else
break;
}
if(type== 'cat_tv')
return name.slice(0, - 1);
else
return $.trim(name);
}
function cleanName(rawName, type){
var name = "";
var tempName = splitter(rawName, type);
var split_name = tempName.split(" ");
//remove fixed words
for(var j = 0; j < split_name.length; j++){
var found = false;
for(var k = 0; k < fixed_words.length; k++){
if(fixed_words[k].toLowerCase() == split_name[j].toLowerCase()){
found = true;
break;
}
}
if(found)
delete split_name[j];
}
//special case filter
for(index in split_name){
if(isNaN(split_name[index]) &&
isNaN(split_name[index].charAt(0)) &&
split_name[index].indexOf("(") == -1){
if(type == 'cat_tv')
if(split_name[index].indexOf("E") != -1 && split_name[index].indexOf("S") != -1)
break;
name += split_name[index] + "-";
}
else if(!isNaN(split_name[index])){ //handler for numbers in the name
if(type == 'cat_movies')
if(parseInt(split_name[index],10) > 10 )
break;
name += split_name[index] + " ";
}
else
break;
}
if(type== 'cat_tv')
return name.slice(0, - 1);
else
return $.trim(name);
}
function openImdb(name, type){
var movie_name = cleanName(name, type);
window.open('http://www.imdb.com/find?s=tt&q=' + movie_name);
//http://www.imdbapi.com/?t=movie name --- get json respons with imdb id
//http://www.imdb.com/find?s=tt&q=movie name --- takes you to the movie page or to results
}
function openTv(name , type){
var tv_name = cleanName(name, type);
window.open('http://www.tv.com/shows/' + tv_name);
//http://www.tv.com/search?type=11&stype=all&tag=search%3Bforums&q=tv show name
}
function openEpisodes(name, type){
var episode_name = cleanName(name, type);
window.open('http://www.torrentleech.org/torrents/browse/index/query/'+ episode_name + '/facets/e8044d_877b75');
//www.torrentleech.org/torrents/browse/index/query/The+Big+Bang+Theory/facets/e8044d_877b75
}
function openGamePlay(name, type){
var game_name = cleanName(name, type);
window.open('http://www.youtube.com/results?search_query='+ game_name + " gameplay");
//http://www.youtube.com/results?search_query=game name
}
function openTrailer(name, type){
var movie_name = cleanName(name, type);
window.open('http://www.youtube.com/results?search_query='+ movie_name + " trailer");
//http://www.youtube.com/results?search_query=game name
}
function openGameReview(name, type){
var game_name = cleanName(name, type);
//window.open('http://www.gamespot.com/search/?qs='+ game_name);
window.open('http://www.rlslog.net/?s='+ game_name +'&sbutt=Go');
//http://www.gamespot.com/search/?qs=
}