function playlist_delete_item(playlist_id, item_id, placeholder) { if (confirm(pm_lang.playlist_delete_item_confirm)) { ajax_request("playlists", "do=remove-item&video-id=" + item_id + "&playlist-id=" + playlist_id, "", "", false, "POST"); $(placeholder).fadeOut('slow'); } return false; } function playlist_delete(playlist_id, btn) { $(btn).attr('disabled', 'disabled'); if (confirm(pm_lang.playlist_delete_confirm)) { $('#playlist-modal-ajax-response').html('').hide(); $('#modal-loading-gif').show(); $.ajax({ type: "POST", url: MELODYURL2 + "/ajax.php", data: { "p" : "playlists", "do": "delete-playlist", "playlist-id" : playlist_id }, dataType: "json", success: function(data) { if ( ! data.success) { $('#playlist-modal-ajax-response').html(data.html).show(); $('#modal-loading-gif').hide(); $(btn).removeAttr('disabled'); } else { window.location = MELODYURL2 + '/playlists.php'; } } }); } else { $('#modal-loading-gif').hide(); } return false; } function playlist_save_settings(playlist_id, btn) { $('#playlist-modal-ajax-response').html('').hide(); $('#modal-loading-gif').show(); $(btn).attr('disabled', 'disabled'); $.ajax({ type: "POST", url: MELODYURL2 + "/ajax.php", data: { "p" : "playlists", "do": "update-playlist", "playlist-id" : playlist_id, "title" : $('input[name="playlist_name"]').val(), "visibility" : $('select[name="visibility"]').val(), "sorting" : $('select[name="sorting"]').val() }, dataType: "json", success: function(data) { if ( ! data.success) { $('#playlist-modal-ajax-response').html(data.html).show(); $('#modal-loading-gif').hide(); $(btn).removeAttr('disabled'); } else { location.reload(); } } }); return false; } function playlist_create(btn, ui) { ui = (typeof ui !== 'undefined') ? ui : 'playlists-modal'; var response_placeholder; if (ui == 'video-watch') { response_placeholder = '#playlist-create-ajax-response'; $('#playlist-container').addClass('opac5'); } else { response_placeholder = '#playlist-modal-ajax-response'; $('#modal-loading-gif').show(); } $(response_placeholder).hide().html(''); $(btn).attr('disabled', true); $.ajax({ type: "POST", url: MELODYURL2 + "/ajax.php", data: { "p" : "playlists", "do": "create-playlist", "title" : $('input[name="playlist_name"]').val(), "visibility" : $('select[name="visibility"]').val(), "sorting" : $('select[name="sorting"]').val(), "video-id" : $('input[name="video_id"]').val(), "ui" : ui }, dataType: "json", success: function(data) { if ( ! data.success) { $(response_placeholder).html(data.html).show(); $(btn).removeAttr('disabled'); if (ui == 'video-watch') { $('#playlist-container').removeClass('opac5'); } else { $('#modal-loading-gif').hide(); } } else { $(response_placeholder).html(data.html).show(); if (ui == 'video-watch') { $('#playlist-container').replaceWith(data.html_content); $('input[name="playlist_name"]').attr('value', ''); $(btn).attr('disabled', true); } else { location.reload(); } } } }); return false; } function playlist_add_item(playlist_id, video_id) { $('#playlist-container').addClass('opac5'); $('#playlist-ajax-response').hide().html(''); $.ajax({ type: "POST", url: MELODYURL2 + "/ajax.php", data: { "p" : "playlists", "do": "add-to-playlist", "playlist-id" : playlist_id, "video-id" : video_id }, dataType: "json", success: function(data) { if ( ! data.success) { $('#playlist-ajax-response').html(data.html).show(); $('#playlist-container').removeClass('opac5'); } else { $('#playlist-container').replaceWith(data.html); } } }); } function playlist_remove_item(playlist_id, video_id) { $('#playlist-container').addClass('opac5'); $('#playlist-ajax-response').hide().html(''); $.ajax({ type: "POST", url: MELODYURL2 + "/ajax.php", data: { "p" : "playlists", "do": "remove-from-playlist", "playlist-id" : playlist_id, "video-id" : video_id }, dataType: "json", success: function(data) { if ( ! data.success) { $('#playlist-ajax-response').html(data.html).show(); $('#playlist-container').removeClass('opac5'); } else { $('#playlist-container').replaceWith(data.html); } } }); } function watch_later_add(video_id) { $('.watch-later-add-btn-'+ video_id).addClass('opac5'); return watch_later(video_id, "watch-later-add"); } function watch_later_remove(video_id) { $('.watch-later-remove-btn-'+ video_id).addClass('opac5'); return watch_later(video_id, "watch-later-remove"); } function watch_later(video_id, action) { $.ajax({ type: "POST", url: MELODYURL2 + "/ajax.php", data: { "p" : "playlists", "do": action, "video-id" : video_id }, dataType: "json", success: function(data) { if (action == 'watch-later-add') { $('.watch-later-add-btn-'+ video_id).hide().removeClass('opac5'); $('.watch-later-remove-btn-'+ video_id).show(); } else { $('.watch-later-add-btn-'+ video_id).show(); $('.watch-later-remove-btn-'+ video_id).hide().removeClass('opac5'); } } }); } // general.js function validateSearch(a){ if (document.forms.search.keywords.value == "" || document.forms.search.keywords.value == "search") { alert("You did not enter a search term. Please try again."); if (a == "true") { return false } } else { document.forms.search.submit() } } function lookup(a){ if (a.length == 0) { $("#suggestions").hide() } else { if (a.length > 2) { $.post(MELODYURL2 + "/ajax-search.php", { queryString: "" + a + "" }, function(b){ if (b.length > 0) { $("#suggestions").show(); $("#autoSuggestionsList").html(b) } }) } } } function fill(a){ $("#inputString").val(a); setTimeout("$('#suggestions').hide();", 200) } function ajax_request(f, e, c, d, a, call_type){ var b = false; call_type = (typeof call_type !== 'undefined') ? call_type : "GET"; if (d.length == 0) { d = "html" } if (c.length > 0) { $(c).html('Loading Loading...').fadeIn("normal") } $.ajax({ type: call_type, url: MELODYURL2 + "/ajax.php", data: "p=" + f + "&" + e, dataType: d, success: function(g){ if (c.length > 0) { $(c).html(g); if (a == true) { $(c).show(); if (f == 'comments') { bind_comment_user_actions(); } } } b = true } }); return b } // Video playback error and 404 reporting for FlowPlayer var arPlayer = null; var arDone = false; function reportNotFound(a){ if (a.length > 0 && !arDone) { ajax_request("video", "do=report&vid=" + a, "", "", false); arDone = true } } // --- // comment.js function onpage_delete_comment(e, d, a){ var b = "You are about to delete this comment. Click 'Cancel' to stop, 'OK' to delete"; var c = false; if (confirm(b)) { if (a.length > 0) { ajax_request("comments", "do=onpage_delete_comment&cid=" + e + "&vid=" + d, "", "", false); $(a).fadeOut("normal") } } } function comment_user_action(button, comment_id, user_id, action) { // TODO: Incorporate Gritter Notification/Confirmation Messages var page = 'comments'; if (action == 'ban' || action == 'allow') { page = 'users'; } $.ajax({ type: 'GET', url: MELODYURL2 + "/ajax.php", data: { 'comment_id': comment_id, 'uid' : user_id, 'p': page, 'do': action }, dataType: "json", success: function(c){ if (c.success) { if(button.hasClass("active")) { button.removeClass("active"); } else { button.addClass("active"); if (action == 'like') { $('#comment-dislike-' + comment_id).removeClass('active'); } else if (action == 'dislike') { $('#comment-like-' + comment_id).removeClass('active'); } } if (action == 'allow' || action == 'ban') { if (c.show_label == true) { $('.label-banned-'+ user_id).removeClass('hide').show(); $('.ban-'+ user_id).addClass("active"); $('.unban-'+ user_id).addClass("active"); } if (c.hide_label == true) { $('.label-banned-'+ user_id).hide(); $('.ban-'+ user_id).removeClass("active"); $('.unban-'+ user_id).removeClass("active"); } } else { if (c.up_vote_count > 0) { $('#comment-like-count-'+ comment_id).html(c.up_vote_count); } else { $('#comment-like-count-'+ comment_id).html(''); } if (c.down_vote_count > 0) { $('#comment-dislike-count-'+ comment_id).html(c.down_vote_count); } else { $('#comment-dislike-count-'+ comment_id).html(''); } } } if ( ! c.success && (action == 'allow' || action == 'ban') && c.error != '') { alert(c.error); } } }); return false; } function bind_comment_user_actions() { // comment rating $('button[id^="comment-like-"]').click(function(){ var comment_id = $(this).attr('id').replace( /^\D+/g, ''); comment_user_action($(this), comment_id, 0, 'like'); return false; }); $('button[id^="comment-dislike-"]').click(function(){ var comment_id = $(this).attr('id').replace( /^\D+/g, ''); comment_user_action($(this), comment_id, 0, 'dislike'); return false; }); $('button[id^="comment-flag-"]').click(function(){ var comment_id = $(this).attr('id').replace( /^\D+/g, ''); comment_user_action($(this), comment_id, 0, 'flag'); return false; }); // ban/unban user $('button[id^="unban-"]').click(function(){ var classes = $(this).attr('class').split(' '); var user_id = classes[0]; user_id = user_id.replace( /^\D+/g, ''); var comment_id = $(this).attr('id').replace( /^\D+/g, ''); comment_user_action($(this), comment_id, user_id, 'allow'); return false; }); $('button[id^="ban-"]').click(function(){ var classes = $(this).attr('class').split(' '); var user_id = classes[0]; user_id = user_id.replace( /^\D+/g, ''); var comment_id = $(this).attr('id').replace( /^\D+/g, ''); comment_user_action($(this), comment_id, user_id, 'ban'); return false; }); } function confirm_action(confirm_message, action_goto_url) { if (confirm(confirm_message)) { window.location = action_goto_url; } return false; } $(document).ready(function(){ bind_comment_user_actions(); // like/dislike video $("#bin-rating-like").click(function(){ var b = $(this); var a = $("#bin-rating-dislike"); $("#bin-rating-response").html("").hide(); $.ajax({ type: "GET", url: MELODYURL2 + "/ajax.php", data: { vid: $('input[name="bin-rating-uniq_id"]').val(), p: "video", "do": "like" }, dataType: "json", success: function(c){ if (c.success) { if (b.hasClass("active")) { b.removeClass("active"); $("#rating-bar-up-pct").width(c.up_pct + "%"); $("#rating-bar-down-pct").width(c.down_pct + "%") } else { b.addClass("active"); a.removeClass("active"); $("#rating-bar-up-pct").width(c.up_pct + "%"); $("#rating-bar-down-pct").width(c.down_pct + "%"); $("#bin-rating-dislike-confirmation").hide(); $("#bin-rating-like-confirmation").slideDown("normal") } } else { if (c.msg != "") { $("#bin-rating-response").html(c.msg).slideToggle("normal"); $.notify({message: c.msg}, {type: 'warning'}); } } } }) }); $("#bin-rating-dislike").click(function(){ var b = $($("#bin-rating-like")); var a = $(this); $("#bin-rating-response").html("").hide(); $.ajax({ type: "GET", url: MELODYURL2 + "/ajax.php", data: { vid: $('input[name="bin-rating-uniq_id"]').val(), p: "video", "do": "dislike" }, dataType: "json", success: function(c){ if (c.success) { if (a.hasClass("active")) { a.removeClass("active"); $("#rating-bar-up-pct").width(c.up_pct + "%"); $("#rating-bar-down-pct").width(c.down_pct + "%") } else { a.addClass("active"); b.removeClass("active"); $("#rating-bar-up-pct").width(c.up_pct + "%"); $("#rating-bar-down-pct").width(c.down_pct + "%"); $("#bin-rating-like-confirmation").hide(); $("#bin-rating-dislike-confirmation").slideDown("normal"); } } else { if (c.msg != "") { $("#bin-rating-response").html(c.msg).slideToggle("normal"); $.notify({message: c.msg}, {type: 'warning'}); } } } }) }); var playlists_loaded = false; $('#pm-vc-playlists').click(function() { if ( ! playlists_loaded) { $.ajax({ type: "GET", url: MELODYURL2 + "/ajax.php", data: { "p" : "playlists", "do": "video-watch-load-my-playlists", "video-id" : $(this).attr('data-video-id') }, dataType: "json", success: function(data) { $('#playlist-container').replaceWith(data.html); playlists_loaded = true; } }); } }); $('.pm-pro-playlists-btn').click(function(){ // profile playlists tab if ( ! playlists_loaded) { $.ajax({ type: "GET", url: MELODYURL2 + "/ajax.php", data: { "p" : "profile", "do": "profile-load-playlists", "uid" : $(this).attr('data-profile-id') }, dataType: "json", success: function(data) { $('#profile-playlists-container').replaceWith(data.html); playlists_loaded = true; } }); } }); $('input[name="playlist_name"]').keyup(function(){ if ($(this).val().length > 0) { $('#create_playlist_submit_btn').removeAttr('disabled'); } else { $('#create_playlist_submit_btn').attr('disabled', true); } }); $("#pm-vc-share").click(function(){ $("#securimage-share").prop("src", MELODYURL2 + "/include/securimage_show.php?sid=" + Math.random()) }); $('form[name="sharetofriend"]').submit(function(){ $("#share-confirmation").hide(); $.ajax({ type: "POST", url: MELODYURL2 + "/ajax.php", data: $(this).serialize(), dataType: "json", success: function(a){ $("#share-confirmation").html(a.msg).show(); if (a.success == true) { $('form[name="sharetofriend"]').slideUp() } } }); return false }); $("#pm-vc-report").click(function(){ $("#securimage-report").prop("src", MELODYURL2 + "/include/securimage_show.php?sid=" + Math.random()) }); $('form[name="reportvideo"]').submit(function(){ $("#report-confirmation").hide(); $.ajax({ type: "POST", url: MELODYURL2 + "/ajax.php", data: $(this).serialize(), dataType: "json", success: function(a){ $("#report-confirmation").html(a.msg).show(); if (a.success == true) { // $('form[name="reportvideo"]').slideUp() } } }); return false }); $('.pm-video-thumb').hover( function(){ var parent = $(this); parent.find('.watch-later').show(0, function() { parent.find('.pm-label-duration').hide(); }); }, function() { var parent = $(this); parent.find('.watch-later').hide(0, function() { parent.find('.pm-label-duration').show(); }); } ); $("#suggest-form").submit(function(){ return false }); $('#suggest-form input[name="yt_id"]').bind("input propertychange", function(f){ if ($(this).val() == "") { return false } $("#loading-gif-top").show(); $("#suggest-video-extra").slideUp(); $("#ajax-error-placeholder").html("").hide(); $("#ajax-success-placeholder").html("").hide(); $.ajax({ type: "POST", url: MELODYURL2 + "/ajax.php", data: { p: "suggest", "do": "getdata", url: $(this).val() }, dataType: "json", success: function(e){ $("#loading-gif-top").hide(); if (e.failed) { $("#ajax-error-placeholder").html(e.message).show() } else { if (e.success) { $("#ajax-error-placeholder").hide(); $("#suggest-video-extra").slideDown(); $("#video-thumb-placeholder").html('
').show(); $('#suggest-form input[name="video_title"]').val(e.videodata.video_title); $('#suggest-form textarea[name="description"]').val(e.videodata.description); $('#suggest-form input[name="tags"]').val(e.videodata.tags); $('#suggest-form input[name="source_id"]').val(e.videodata.source_id); } } } }); return false }); $('#suggest-form button[type="submit"]').click(function(){ $("#ajax-error-placeholder").html("").hide(); $("#ajax-success-placeholder").html("").hide(); if ($('input[name="video_title"]').val() == "") { $("#ajax-error-placeholder").html(pm_lang.validate_video_title).show(); $('input[name="video_title"]').trigger('focus'); return false } if ($('select[name="category"]').val() == "-1") { $("#ajax-error-placeholder").html(pm_lang.choose_category).show(); $('select[name="category"]').trigger('focus'); return false } $("#loading-gif-bottom").show(); var e = $("#suggest-form").serialize(); $.ajax({ type: "POST", url: MELODYURL2 + "/ajax.php", data: e, dataType: "json", success: function(f){ $("#loading-gif-bottom").hide(); if (f.failed) { $("#ajax-error-placeholder").html(f.message).show() } else { if (f.success) { $("#ajax-error-placeholder").hide(); $("#ajax-success-placeholder").html(f.message).show(); $("#suggest-video-extra").slideUp(); $("#suggest-form").each(function(){ this.reset() }) } } } }); return false }); $("#preview_comment").hide(); var a = false; $("#c_comment_txt").click(function(){ if (!a && $("#c_user_id").val() == 0) { $("#captcha-image").prop("src", MELODYURL2 + "/include/securimage_show.php?sid=" + Math.random()); a = true } }); $("#c_submit").click(function(){ $("#mycommentspan").html('Loading Posting...').show(); var b = $("#c_user_id").val(); var e = $("#c_vid").val(); var d = $("#c_comment_txt").val(); var f = $("#c_username").val(); var c = $("#captcha").val(); if (b == 0) { $.post(MELODYURL2 + "/comment.php", { username: f, captcha: c, vid: e, user_id: b, comment_txt: d }, function(g){ if (g.cond == true) { $("#pm-post-form").slideUp("normal", function(){ $("#mycommentspan").html(g.html).show(); if (g.preview == true) { $("#be_the_first").hide(); $("#preview_comment").html(g.preview_html).fadeIn(700) } }) } else { if (g.cond == false) { $("#c_submit").show(); $("#mycommentspan").html(g.html).show(); } } }, "json") } else { if (b > 0) { $.post(MELODYURL2 + "/comment.php", { vid: e, user_id: b, comment_txt: d }, function(g){ if (g.cond == true) { $("#pm-post-form").slideUp("normal", function(){ $("#mycommentspan").html(g.html).show(); if (g.preview == true) { $("#be_the_first").hide(); $("#preview_comment").html(g.preview_html).fadeIn(700) } }) } else { if (g.cond == false) { $("#c_submit").show(); $("#mycommentspan").html(g.html).show(); } } }, "json") } } return false }); if ($('#register-form').length) { if ( ! $('input[name="website"]').is(":visible")) { $('input[name="website"]').val(Math.floor(Date.now() / 1000)); } } $('#autoplayonoff').change(function(){ if ($(this).is(":checked")) { pm_video_data.autoplay_next = true; $.cookie('pm_autoplay_next', 'on', { path: '/' }); } else { pm_video_data.autoplay_next = false; $.cookie('pm_autoplay_next', 'off', { path: '/' }); } }); });