2014-12-12 14:45:32 -05:00
|
|
|
var search_status_url = sbRoot + '/home/getManualSearchStatus';
|
2014-11-06 23:13:54 -05:00
|
|
|
PNotify.prototype.options.maxonscreen = 5;
|
2014-09-15 03:23:55 -04:00
|
|
|
|
|
|
|
$.fn.manualSearches = [];
|
|
|
|
|
|
|
|
function check_manual_searches() {
|
|
|
|
var poll_interval = 5000;
|
|
|
|
$.ajax({
|
|
|
|
url: search_status_url + '?show=' + $('#showID').val(),
|
|
|
|
success: function (data) {
|
|
|
|
if (data.episodes) {
|
|
|
|
poll_interval = 5000;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
poll_interval = 15000;
|
|
|
|
}
|
|
|
|
|
|
|
|
updateImages(data);
|
|
|
|
//cleanupManualSearches(data);
|
|
|
|
},
|
|
|
|
error: function () {
|
|
|
|
poll_interval = 30000;
|
|
|
|
},
|
|
|
|
type: "GET",
|
|
|
|
dataType: "json",
|
|
|
|
complete: function () {
|
|
|
|
setTimeout(check_manual_searches, poll_interval);
|
|
|
|
},
|
|
|
|
timeout: 15000 // timeout every 15 secs
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function updateImages(data) {
|
|
|
|
$.each(data.episodes, function (name, ep) {
|
|
|
|
// Get td element for current ep
|
2014-10-24 09:16:46 -04:00
|
|
|
var loadingImage = 'loading16.gif';
|
2014-09-15 03:23:55 -04:00
|
|
|
var queuedImage = 'queued.png';
|
2014-09-30 18:20:37 -04:00
|
|
|
var searchImage = 'search16.png';
|
2014-09-15 03:23:55 -04:00
|
|
|
var status = null;
|
|
|
|
//Try to get the <a> Element
|
|
|
|
el=$('a[id=' + ep.season + 'x' + ep.episode+']');
|
|
|
|
img=el.children('img');
|
|
|
|
parent=el.parent();
|
|
|
|
if (el) {
|
|
|
|
if (ep.searchstatus == 'searching') {
|
|
|
|
//el=$('td#' + ep.season + 'x' + ep.episode + '.search img');
|
|
|
|
img.attr('title','Searching');
|
2014-09-30 18:20:37 -04:00
|
|
|
img.attr('alt','earching');
|
2014-09-15 03:23:55 -04:00
|
|
|
img.attr('src',sbRoot+'/images/' + loadingImage);
|
|
|
|
disableLink(el);
|
|
|
|
// Update Status and Quality
|
|
|
|
var rSearchTerm = /(\w+)\s\((.+?)\)/;
|
|
|
|
HtmlContent = ep.searchstatus;
|
|
|
|
|
|
|
|
}
|
|
|
|
else if (ep.searchstatus == 'queued') {
|
|
|
|
//el=$('td#' + ep.season + 'x' + ep.episode + '.search img');
|
|
|
|
img.attr('title','Queued');
|
|
|
|
img.attr('alt','queued');
|
|
|
|
img.attr('src',sbRoot+'/images/' + queuedImage );
|
|
|
|
disableLink(el);
|
|
|
|
HtmlContent = ep.searchstatus;
|
|
|
|
}
|
|
|
|
else if (ep.searchstatus == 'finished') {
|
|
|
|
//el=$('td#' + ep.season + 'x' + ep.episode + '.search img');
|
|
|
|
img.attr('title','Searching');
|
|
|
|
img.attr('alt','searching');
|
|
|
|
img.parent().attr('class','epRetry');
|
|
|
|
img.attr('src',sbRoot+'/images/' + searchImage);
|
|
|
|
enableLink(el);
|
|
|
|
|
|
|
|
// Update Status and Quality
|
|
|
|
var rSearchTerm = /(\w+)\s\((.+?)\)/;
|
|
|
|
HtmlContent = ep.status.replace(rSearchTerm,"$1"+' <span class="quality '+ep.quality+'">'+"$2"+'</span>');
|
|
|
|
|
|
|
|
}
|
|
|
|
// update the status column if it exists
|
2014-11-10 02:29:24 -05:00
|
|
|
parent.siblings('.col-status').html(HtmlContent)
|
2014-09-15 03:23:55 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
$(document).ready(function () {
|
|
|
|
|
|
|
|
check_manual_searches();
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
function enableLink(el) {
|
|
|
|
el.on('click.disabled', false);
|
|
|
|
el.attr('enableClick', '1');
|
|
|
|
el.fadeTo("fast", 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
function disableLink(el) {
|
|
|
|
el.off('click.disabled');
|
|
|
|
el.attr('enableClick', '0');
|
|
|
|
el.fadeTo("fast", .5)
|
|
|
|
}
|
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
(function(){
|
|
|
|
|
|
|
|
$.ajaxEpSearch = {
|
|
|
|
defaults: {
|
|
|
|
size: 16,
|
|
|
|
colorRow: false,
|
2014-10-24 09:16:46 -04:00
|
|
|
loadingImage: 'loading16.gif',
|
2014-09-15 03:23:55 -04:00
|
|
|
queuedImage: 'queued.png',
|
2014-03-10 01:18:05 -04:00
|
|
|
noImage: 'no16.png',
|
|
|
|
yesImage: 'yes16.png'
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
$.fn.ajaxEpSearch = function(options){
|
|
|
|
options = $.extend({}, $.ajaxEpSearch.defaults, options);
|
|
|
|
|
2014-09-15 09:01:18 -04:00
|
|
|
$('.epSearch, .epRetry').click(function(event){
|
2014-09-15 03:23:55 -04:00
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
// Check if we have disabled the click
|
|
|
|
if ( $(this).attr('enableClick') == '0' ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( $(this).attr('class') == "epRetry" ) {
|
|
|
|
if ( !confirm("Mark download as bad and retry?") )
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
|
|
|
var parent = $(this).parent();
|
2014-03-10 01:18:05 -04:00
|
|
|
|
2014-09-15 03:23:55 -04:00
|
|
|
// Create var for anchor
|
|
|
|
link = $(this);
|
|
|
|
|
|
|
|
// Create var for img under anchor and set options for the loading gif
|
|
|
|
img=$(this).children('img');
|
|
|
|
img.attr('title','loading');
|
|
|
|
img.attr('alt','');
|
|
|
|
img.attr('src',sbRoot+'/images/' + options.loadingImage);
|
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
$.getJSON($(this).attr('href'), function(data){
|
2014-09-15 03:23:55 -04:00
|
|
|
|
|
|
|
// if they failed then just put the red X
|
2014-03-10 01:18:05 -04:00
|
|
|
if (data.result == 'failure') {
|
|
|
|
img_name = options.noImage;
|
|
|
|
img_result = 'failed';
|
|
|
|
|
|
|
|
// if the snatch was successful then apply the corresponding class and fill in the row appropriately
|
|
|
|
} else {
|
2014-09-15 03:23:55 -04:00
|
|
|
img_name = options.loadingImage;
|
2014-03-10 01:18:05 -04:00
|
|
|
img_result = 'success';
|
|
|
|
// color the row
|
|
|
|
if (options.colorRow)
|
|
|
|
parent.parent().removeClass('skipped wanted qual good unaired').addClass('snatched');
|
|
|
|
// applying the quality class
|
|
|
|
var rSearchTerm = /(\w+)\s\((.+?)\)/;
|
|
|
|
HtmlContent = data.result.replace(rSearchTerm,"$1"+' <span class="quality '+data.quality+'">'+"$2"+'</span>');
|
|
|
|
// update the status column if it exists
|
2014-11-10 02:29:24 -05:00
|
|
|
parent.siblings('.col-status').html(HtmlContent)
|
2014-09-15 03:23:55 -04:00
|
|
|
// Only if the queing was succesfull, disable the onClick event of the loading image
|
|
|
|
disableLink(link);
|
2014-03-10 01:18:05 -04:00
|
|
|
}
|
|
|
|
|
2014-09-15 03:23:55 -04:00
|
|
|
// put the corresponding image as the result of queuing of the manual search
|
|
|
|
img.attr('title',img_result);
|
|
|
|
img.attr('alt',img_result);
|
|
|
|
img.attr('height', options.size);
|
|
|
|
img.attr('src',sbRoot+"/images/"+img_name);
|
2014-03-10 01:18:05 -04:00
|
|
|
});
|
2014-09-15 03:23:55 -04:00
|
|
|
//
|
|
|
|
|
|
|
|
// don't follow the link
|
2014-03-10 01:18:05 -04:00
|
|
|
return false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
})();
|