mirror of https://github.com/Ombi-app/Ombi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
480 lines
14 KiB
480 lines
14 KiB
Handlebars.registerHelper('if_eq', function (a, b, opts) {
|
|
if (a == b)
|
|
return opts.fn(this);
|
|
else
|
|
return opts.inverse(this);
|
|
});
|
|
|
|
var searchSource = $("#search-template").html();
|
|
var searchTemplate = Handlebars.compile(searchSource);
|
|
var movieTimer = 0;
|
|
var tvimer = 0;
|
|
var mixItUpDefault = {
|
|
animation: { enable: true },
|
|
load: {
|
|
filter: 'all',
|
|
sort: 'requestorder:desc'
|
|
},
|
|
layout: {
|
|
display: 'block'
|
|
},
|
|
callbacks: {
|
|
onMixStart: function (state, futureState) {
|
|
$('.mix', this).removeAttr('data-bound').removeData('bound'); // fix for animation issues in other tabs
|
|
}
|
|
}
|
|
};
|
|
|
|
initLoad();
|
|
|
|
|
|
$('a[data-toggle="tab"]').on('shown.bs.tab', function (e) {
|
|
var target = $(e.target).attr('href');
|
|
var activeState = "";
|
|
|
|
var $ml = $('#movieList');
|
|
var $tvl = $('#tvList');
|
|
|
|
$('.approve-category').hide();
|
|
if (target === "#TvShowTab") {
|
|
$('#approveTVShows').show();
|
|
if ($ml.mixItUp('isLoaded')) {
|
|
activeState = $ml.mixItUp('getState');
|
|
$ml.mixItUp('destroy');
|
|
}
|
|
if ($tvl.mixItUp('isLoaded')) $tvl.mixItUp('destroy');
|
|
$tvl.mixItUp(mixItUpConfig(activeState)); // init or reinit
|
|
}
|
|
if (target === "#MoviesTab") {
|
|
$('#approveMovies').show();
|
|
if ($tvl.mixItUp('isLoaded')) {
|
|
activeState = $tvl.mixItUp('getState');
|
|
$tvl.mixItUp('destroy');
|
|
}
|
|
if ($ml.mixItUp('isLoaded')) $ml.mixItUp('destroy');
|
|
$ml.mixItUp(mixItUpConfig(activeState)); // init or reinit
|
|
}
|
|
//$('.mix[data-bound]').removeAttr('data-bound');
|
|
});
|
|
|
|
// Approve all
|
|
$('#approveAll').click(function (e) {
|
|
e.preventDefault();
|
|
var buttonId = e.target.id;
|
|
var origHtml = $(this).html();
|
|
|
|
if ($('#' + buttonId).text() === " Loading...") {
|
|
return;
|
|
}
|
|
|
|
loadingButton(buttonId, "success");
|
|
|
|
$.ajax({
|
|
type: 'post',
|
|
url: '/approval/approveall',
|
|
dataType: "json",
|
|
success: function (response) {
|
|
if (checkJsonResponse(response)) {
|
|
generateNotify("Success! All requests approved!", "success");
|
|
initLoad();
|
|
}
|
|
},
|
|
error: function (e) {
|
|
console.log(e);
|
|
generateNotify("Something went wrong!", "danger");
|
|
},
|
|
complete: function (e) {
|
|
finishLoading(buttonId, "success", origHtml)
|
|
}
|
|
});
|
|
});
|
|
$('#approveMovies').click(function (e) {
|
|
e.preventDefault();
|
|
var buttonId = e.target.id;
|
|
var origHtml = $(this).html();
|
|
|
|
if ($('#' + buttonId).text() === " Loading...") {
|
|
return;
|
|
}
|
|
|
|
loadingButton(buttonId, "success");
|
|
|
|
$.ajax({
|
|
type: 'post',
|
|
url: '/approval/approveallmovies',
|
|
dataType: "json",
|
|
success: function (response) {
|
|
if (checkJsonResponse(response)) {
|
|
generateNotify("Success! All Movie requests approved!", "success");
|
|
movieLoad();
|
|
}
|
|
},
|
|
error: function (e) {
|
|
console.log(e);
|
|
generateNotify("Something went wrong!", "danger");
|
|
},
|
|
complete: function (e) {
|
|
finishLoading(buttonId, "success", origHtml)
|
|
}
|
|
});
|
|
});
|
|
$('#approveTVShows').click(function (e) {
|
|
e.preventDefault();
|
|
var buttonId = e.target.id;
|
|
var origHtml = $(this).html();
|
|
|
|
if ($('#' + buttonId).text() === " Loading...") {
|
|
return;
|
|
}
|
|
|
|
loadingButton(buttonId, "success");
|
|
|
|
$.ajax({
|
|
type: 'post',
|
|
url: '/approval/approvealltvshows',
|
|
dataType: "json",
|
|
success: function (response) {
|
|
if (checkJsonResponse(response)) {
|
|
generateNotify("Success! All TV Show requests approved!", "success");
|
|
tvLoad();
|
|
}
|
|
},
|
|
error: function (e) {
|
|
console.log(e);
|
|
generateNotify("Something went wrong!", "danger");
|
|
},
|
|
complete: function (e) {
|
|
finishLoading(buttonId, "success", origHtml)
|
|
}
|
|
});
|
|
});
|
|
|
|
// filtering/sorting
|
|
$('.filter,.sort', '.dropdown-menu').click(function (e) {
|
|
var $this = $(this);
|
|
$('.fa-square', $this.parents('.dropdown-menu:first')).removeClass('fa-square').addClass('fa-square-o');
|
|
$this.children('.fa').first().removeClass('fa-square-o').addClass('fa-square');
|
|
});
|
|
|
|
|
|
// Report Issue
|
|
$(document).on("click", ".dropdownIssue", function (e) {
|
|
var issue = $(this).attr("issue-select");
|
|
var id = e.target.id;
|
|
// Other issue so the modal is opening
|
|
if (issue == 4) {
|
|
return;
|
|
}
|
|
e.preventDefault();
|
|
|
|
var $form = $('#report' + id);
|
|
var data = $form.serialize();
|
|
data = data + "&issue=" + issue;
|
|
|
|
$.ajax({
|
|
type: $form.prop('method'),
|
|
url: $form.prop('action'),
|
|
data: data,
|
|
dataType: "json",
|
|
success: function (response) {
|
|
if (checkJsonResponse(response)) {
|
|
generateNotify("Success! Added Issue.", "success");
|
|
}
|
|
},
|
|
error: function (e) {
|
|
console.log(e);
|
|
generateNotify("Something went wrong!", "danger");
|
|
}
|
|
});
|
|
});
|
|
|
|
// Modal click
|
|
$(".theSaveButton").click(function (e) {
|
|
var comment = $("#commentArea").val();
|
|
e.preventDefault();
|
|
|
|
var $form = $("#commentForm");
|
|
var data = $form.serialize();
|
|
data = data + "&issue=" + 4 + "&comment=" + comment;
|
|
|
|
$.ajax({
|
|
type: $form.prop("method"),
|
|
url: $form.prop("action"),
|
|
data: data,
|
|
dataType: "json",
|
|
success: function (response) {
|
|
if (checkJsonResponse(response)) {
|
|
generateNotify("Success! Added Issue.", "success");
|
|
$("#myModal").modal("hide");
|
|
}
|
|
},
|
|
error: function (e) {
|
|
console.log(e);
|
|
generateNotify("Something went wrong!", "danger");
|
|
}
|
|
});
|
|
});
|
|
|
|
// Note Modal click
|
|
$(".theNoteSaveButton").click(function (e) {
|
|
var comment = $("#noteArea").val();
|
|
e.preventDefault();
|
|
|
|
var $form = $("#noteForm");
|
|
var data = $form.serialize();
|
|
|
|
|
|
$.ajax({
|
|
type: $form.prop("method"),
|
|
url: $form.prop("action"),
|
|
data: data,
|
|
dataType: "json",
|
|
success: function (response) {
|
|
if (checkJsonResponse(response)) {
|
|
generateNotify("Success! Added Note.", "success");
|
|
$("#myModal").modal("hide");
|
|
$('#adminNotesArea' + e.target.value).html("<div>Note from Admin: " + comment + "</div>");
|
|
}
|
|
},
|
|
error: function (e) {
|
|
console.log(e);
|
|
generateNotify("Something went wrong!", "danger");
|
|
}
|
|
});
|
|
});
|
|
|
|
// Update the modal
|
|
$('#myModal').on('show.bs.modal', function (event) {
|
|
var button = $(event.relatedTarget); // Button that triggered the modal
|
|
var id = button.data('identifier'); // Extract info from data-* attributes
|
|
|
|
var modal = $(this);
|
|
modal.find('.theSaveButton').val(id); // Add ID to the button
|
|
var requestField = modal.find('input');
|
|
requestField.val(id); // Add ID to the hidden field
|
|
});
|
|
|
|
// Update the note modal
|
|
$('#noteModal').on('show.bs.modal', function (event) {
|
|
var button = $(event.relatedTarget); // Button that triggered the modal
|
|
var id = button.data('identifier'); // Extract info from data-* attributes
|
|
|
|
var modal = $(this);
|
|
modal.find('.theNoteSaveButton').val(id); // Add ID to the button
|
|
var requestField = modal.find('.noteId');
|
|
requestField.val(id); // Add ID to the hidden field
|
|
});
|
|
|
|
// Delete
|
|
$(document).on("click", ".delete", function (e) {
|
|
e.preventDefault();
|
|
var buttonId = e.target.id;
|
|
var $form = $('#delete' + buttonId);
|
|
|
|
$.ajax({
|
|
type: $form.prop('method'),
|
|
url: $form.prop('action'),
|
|
data: $form.serialize(),
|
|
dataType: "json",
|
|
success: function (response) {
|
|
|
|
if (checkJsonResponse(response)) {
|
|
generateNotify("Success! Request Deleted.", "success");
|
|
|
|
$("#" + buttonId + "Template").slideUp();
|
|
}
|
|
},
|
|
error: function (e) {
|
|
console.log(e);
|
|
generateNotify("Something went wrong!", "danger");
|
|
}
|
|
});
|
|
|
|
});
|
|
|
|
// Approve single request
|
|
$(document).on("click", ".approve", function (e) {
|
|
e.preventDefault();
|
|
var buttonId = e.target.id;
|
|
var $form = $('#approve' + buttonId);
|
|
|
|
if ($('#' + buttonId).text() === " Loading...") {
|
|
return;
|
|
}
|
|
|
|
loadingButton(buttonId, "success");
|
|
|
|
$.ajax({
|
|
type: $form.prop('method'),
|
|
url: $form.prop('action'),
|
|
data: $form.serialize(),
|
|
dataType: "json",
|
|
success: function (response) {
|
|
|
|
if (checkJsonResponse(response)) {
|
|
if (response.message) {
|
|
generateNotify(response.message, "success");
|
|
} else {
|
|
generateNotify("Success! Request Approved.", "success");
|
|
}
|
|
|
|
$("button[custom-button='" + buttonId + "']").remove();
|
|
$("#" + buttonId + "notapproved").prop("class", "fa fa-check");
|
|
}
|
|
},
|
|
error: function (e) {
|
|
console.log(e);
|
|
generateNotify("Something went wrong!", "danger");
|
|
}
|
|
});
|
|
|
|
});
|
|
|
|
// Clear issues
|
|
$(document).on("click", ".clear", function (e) {
|
|
e.preventDefault();
|
|
var buttonId = e.target.id;
|
|
var $form = $('#clear' + buttonId);
|
|
|
|
$.ajax({
|
|
type: $form.prop('method'),
|
|
url: $form.prop('action'),
|
|
data: $form.serialize(),
|
|
dataType: "json",
|
|
success: function (response) {
|
|
|
|
if (checkJsonResponse(response)) {
|
|
generateNotify("Success! Issues Cleared.", "info");
|
|
$('#issueArea' + buttonId).html("<div>Issue: None</div>");
|
|
}
|
|
},
|
|
error: function (e) {
|
|
console.log(e);
|
|
generateNotify("Something went wrong!", "danger");
|
|
}
|
|
});
|
|
|
|
});
|
|
|
|
// Change Availability
|
|
$(document).on("click", ".change", function (e) {
|
|
e.preventDefault();
|
|
var buttonId = e.target.id;
|
|
|
|
var availablity = $("button[custom-availibility='" + buttonId + "']").val();
|
|
var $form = $('#change' + buttonId);
|
|
var data = $form.serialize();
|
|
data = data + "&Available=" + availablity;
|
|
|
|
$.ajax({
|
|
type: $form.prop('method'),
|
|
url: $form.prop('action'),
|
|
data: data,
|
|
dataType: "json",
|
|
success: function (response) {
|
|
|
|
if (checkJsonResponse(response)) {
|
|
generateNotify("Success! Availibility changed.", "info");
|
|
var button = $("button[custom-availibility='" + buttonId + "']");
|
|
var icon = $('#availableIcon' + buttonId);
|
|
|
|
if (response.available) {
|
|
button.text("Mark Unavailable");
|
|
button.val("false");
|
|
button.prop("class", "btn btn-sm btn-info-outline change");
|
|
icon.prop("class", "fa fa-check");
|
|
} else {
|
|
button.text("Mark Available");
|
|
button.prop("class", "btn btn-sm btn-success-outline change");
|
|
icon.prop("class", "fa fa-times");
|
|
button.val("true");
|
|
}
|
|
}
|
|
},
|
|
error: function (e) {
|
|
console.log(e);
|
|
generateNotify("Something went wrong!", "danger");
|
|
}
|
|
});
|
|
|
|
});
|
|
|
|
function mixItUpConfig(activeState) {
|
|
var conf = mixItUpDefault;
|
|
|
|
if (activeState) {
|
|
if (activeState.activeFilter) conf['load']['filter'] = activeState.activeFilter;
|
|
if (activeState.activeSort) conf['load']['sort'] = activeState.activeSort;
|
|
}
|
|
return conf;
|
|
};
|
|
|
|
function initLoad() {
|
|
movieLoad();
|
|
tvLoad();
|
|
}
|
|
|
|
function movieLoad() {
|
|
var $ml = $('#movieList');
|
|
if ($ml.mixItUp('isLoaded')) {
|
|
activeState = $ml.mixItUp('getState');
|
|
$ml.mixItUp('destroy');
|
|
}
|
|
$ml.html("");
|
|
|
|
$.ajax("/requests/movies/").success(function (results) {
|
|
results.forEach(function (result) {
|
|
var context = buildRequestContext(result, "movie");
|
|
var html = searchTemplate(context);
|
|
$ml.append(html);
|
|
});
|
|
$ml.mixItUp(mixItUpConfig());
|
|
});
|
|
};
|
|
|
|
function tvLoad() {
|
|
var $tvl = $('#tvList');
|
|
if ($tvl.mixItUp('isLoaded')) {
|
|
activeState = $tvl.mixItUp('getState');
|
|
$tvl.mixItUp('destroy');
|
|
}
|
|
$tvl.html("");
|
|
|
|
$.ajax("/requests/tvshows/").success(function (results) {
|
|
results.forEach(function (result) {
|
|
var context = buildRequestContext(result, "tv");
|
|
var html = searchTemplate(context);
|
|
$tvl.append(html);
|
|
});
|
|
$tvl.mixItUp(mixItUpConfig());
|
|
});
|
|
};
|
|
|
|
// Builds the request context.
|
|
function buildRequestContext(result, type) {
|
|
var context = {
|
|
posterPath: result.posterPath,
|
|
id: result.providerId,
|
|
title: result.title,
|
|
overview: result.overview,
|
|
year: result.releaseYear,
|
|
type: type,
|
|
status: result.status,
|
|
releaseDate: result.releaseDate,
|
|
releaseDateTicks: result.releaseDateTicks,
|
|
approved: result.approved,
|
|
requestedBy: result.requestedBy,
|
|
requestedDate: result.requestedDate,
|
|
requestedDateTicks: result.requestedDateTicks,
|
|
available: result.available,
|
|
admin: result.admin,
|
|
issues: result.issues,
|
|
otherMessage: result.otherMessage,
|
|
requestId: result.id,
|
|
adminNote: result.adminNotes,
|
|
imdb: result.imdbId,
|
|
seriesRequested: result.tvSeriesRequestType
|
|
};
|
|
|
|
return context;
|
|
} |