/* fore.st is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. fore.st 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 Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with fore.st. If not, see < http://www.gnu.org/licenses/ >. (C) 2022- by rainbownapkin, Original cytube license: MIT License Copyright (c) 2013-2022 Calvin Montgomery Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /* window focus/blur */ CyTube.ui.onPageFocus = function () { FOCUSED = true; clearInterval(TITLE_BLINK); TITLE_BLINK = false; document.title = PAGETITLE; }; CyTube.ui.onPageBlur = function (event) { FOCUSED = false; }; $(window).focus(CyTube.ui.onPageFocus).blur(CyTube.ui.onPageBlur); // See #783 $(".modal").focus(CyTube.ui.onPageFocus); $("#togglemotd").click(function () { var hidden = $("#motdwrap")[0].style.display === "none"; $("#motdwrap").toggle("blind", function(){handleWindowResize()}); if (hidden) { $("#togglemotd").find(".glyphicon-plus") .removeClass("glyphicon-plus") .addClass("glyphicon-minus"); } else { $("#togglemotd").find(".glyphicon-minus") .removeClass("glyphicon-minus") .addClass("glyphicon-plus"); } }); /* main */ let draggingVidSplit = false; let motdOpen = false; let chatWidthLockoff = 0; $("#main").mousemove(function(evnt){ var mdist = Math.abs(evnt.pageX - parseInt($("#videowrap").css("width"))); if(mdist <= 1 && $("#videowrap").is(":visible") && $("#chatwrap").is(":visible")){ $("#main").css("cursor", "col-resize"); $("#ytapiplayer").css("pointer-events", draggingVidSplit ? "none" : "auto"); $("#main").css("user-select", draggingVidSplit ? "none" : "auto"); }else{ $("#main").css("cursor", ""); } if(draggingVidSplit){ dpercent = ((evnt.pageX )/$("body").outerWidth()) * 100; moveSplit(dpercent, evnt.pageX); $("#main").css("cursor", "col-resize"); } }); function moveSplit(dper, mx){//Gross and hacky, but this prevents code re-use if($("#videowrap").is(":visible") && $("#chatwrap").is(":visible")){ if(($("#chatwrap").offset().left + $("#chatwrap").outerWidth() - $("body").outerWidth() >= 1)){ lastmin = ((($("#videowrap").outerWidth() - ($("#chatwrap").offset().left + $("#chatwrap").outerWidth() - $("body").outerWidth())) / $("body").outerWidth()) * 100); $("#videowrap").css("flex-basis", lastmin + "%"); $("#videowrap-header").css("flex-basis", lastmin + "%"); chatWidthLockoff = $("#chatwrap").offset().left; }else if(chatWidthLockoff === 0 || chatWidthLockoff > mx){ $("#videowrap").css("flex-basis", dper + "%"); $("#videowrap-header").css("flex-basis", dper + "%"); } } $("#fpaneldiv").outerWidth($("#chatwrap").outerWidth() * 0.7); } $("#main").mousedown(function(evnt){ if(draggingVidSplit = $("#videowrap").is(":visible") && $("#chatwrap").is(":visible") && (Math.abs(evnt.pageX - parseInt($("#videowrap").css("width"))) <= 1)){ RATIO_LOCKED = false; $("#lockaspect").show(""); } }); $("#main").mouseup(function(evnt){ draggingVidSplit = false; $("#ytapiplayer").css("pointer-events","auto"); $("#main").css("user-select", "auto"); }); $("#cinemode").click(function(){ if($("#footer").is(":visible") || $(".navbar").is(":visible") || $("#motdwrap").is(":visible")){ motdOpen = $("#motdwrap").is(":visible"); $("#motdwrap").hide( "blind"); $("#footer").hide("blind"); $(".navbar").hide("blind", function(){handleWindowResize()}); }else{ if(motdOpen){ $("#motdwrap").show( "blind"); } $("#footer").show("blind"); $(".navbar").show("blind", function(){handleWindowResize()}); } }); $("#lockaspect").click(function() { RATIO_LOCKED = true; $("#lockaspect").hide(""); handleVideoResize(); }); /* chatbox */ $("#blindchat").click(function() { if($("#chatwrap").is(":visible")){ $("#blindchat").css("rotate","270deg"); }else{ $("#blindchat").css("rotate",""); } blindChat(); }); $("#modflair").click(function () { var m = $("#modflair"); if (m.hasClass("label-success")) { USEROPTS.modhat = false; m.removeClass("label-success"); if (SUPERADMIN) { USEROPTS.adminhat = true; m.addClass("label-admin"); } else { m.addClass("label-default"); } } else if (m.hasClass("label-admin")) { USEROPTS.adminhat = false; m.removeClass("label-admin") .addClass("label-default"); } else { USEROPTS.modhat = true; m.removeClass("label-default") .addClass("label-success"); } $("#us-modflair").prop("checked", USEROPTS.modhat); setOpt('modhat', USEROPTS.modhat); }); $("#usercount").mouseenter(function (ev) { var breakdown = calcUserBreakdown(); // re-using profile-box class for convenience var popup = $("
") .addClass("profile-box") .css("top", (ev.clientY + 5) + "px") .css("left", (ev.clientX - 120) + "px") .appendTo($("#usercount")); var contents = ""; for(var key in breakdown) { contents += "" + key + ": " + breakdown[key]; contents += "
" } popup.html(contents); }); $("#usercount").mousemove(function (ev) { var popup = $("#usercount").find(".profile-box"); if(popup.length == 0) return; popup.css("top", (ev.clientY + 5) + "px"); popup.css("left", (ev.clientX - 120) + "px"); }); $("#usercount").mouseleave(function () { $("#usercount").find(".profile-box").remove(); }); $("#messagebuffer").scroll(function (ev) { if (IGNORE_SCROLL_EVENT) { // Skip event, this was triggered by scrollChat() and not by a user action. // Reset for next event. IGNORE_SCROLL_EVENT = false; return; } var m = $("#messagebuffer"); var lastChildHeight = 0; var messages = m.children(); if (messages.length > 0) { lastChildHeight = messages[messages.length - 1].clientHeight || 0; } var isCaughtUp = m.height() + m.scrollTop() >= m.prop("scrollHeight") - lastChildHeight; if (isCaughtUp) { SCROLLCHAT = true; $("#newmessages-indicator").remove(); } else { SCROLLCHAT = false; } }); $("#guestname").keydown(function (ev) { if (ev.keyCode === 13) { socket.emit("login", { name: $("#guestname").val() }); } }); CyTube.chatTabCompleteData = { context: {} }; function chatTabComplete(chatline) { if (!CyTube.tabCompleteMethods) { console.error('Missing CyTube.tabCompleteMethods!'); return; } var currentText = chatline.value; var currentPosition = chatline.selectionEnd; if (typeof currentPosition !== 'number' || !chatline.setSelectionRange) { // Bail, we're on IE8 or something similarly dysfunctional return; } var firstWord = !/\s/.test(currentText.trim()); var options = []; var userlistElems = document.getElementById("userlist").children; for (var i = 0; i < userlistElems.length; i++) { var username = userlistElems[i].children[1].textContent; //if (firstWord) { // username += ':'; //} options.push(username); } let tokeList = loadTokes(); if(tokeList === undefined || tokeList === null){ tokeList = [];//create var tokeList.push("!toke"); } for (var i = 0; i < tokeList.length; i++) { options.push(tokeList[i]); } CHANNEL.emotes.forEach(function (emote) { options.push(emote.name); }); var method = USEROPTS.chat_tab_method; if (!CyTube.tabCompleteMethods[method]) { console.error("Unknown chat tab completion method '" + method + "', using default"); method = "Cycle options"; } var result = CyTube.tabCompleteMethods[method]( currentText, currentPosition, options, CyTube.chatTabCompleteData.context ); chatline.value = result.text; chatline.setSelectionRange(result.newPosition, result.newPosition); } function callChat(){ if (CHATTHROTTLE) { return; } var msg = $("#chatline").val(); if(msg.trim()) { var meta = {}; if (USEROPTS.adminhat && CLIENT.rank >= 255) { msg = "!a " + msg; } else if (USEROPTS.modhat && CLIENT.rank >= Rank.Moderator) { meta.modflair = CLIENT.rank; } // The /m command no longer exists, so emulate it clientside if (CLIENT.rank >= 2 && msg.indexOf("/m ") === 0) { meta.modflair = CLIENT.rank; msg = msg.substring(3); } if (msg.charAt(0) === '!' && msg != "!toke"){ storeToke(msg); } socket.emit("chatMsg", { msg: msg, meta: meta }); CHATHIST.push($("#chatline").val()); CHATHISTIDX = CHATHIST.length; $("#chatline").val(""); } return; } $("#chatline").keydown(function(ev) { // Enter/return if(ev.keyCode == 13) { callChat(); } else if(ev.keyCode == 9) { // Tab completion try { chatTabComplete(ev.target); } catch (error) { console.error(error); } ev.preventDefault(); return false; } else if(ev.keyCode == 38) { // Up arrow (input history) if(CHATHISTIDX == CHATHIST.length) { CHATHIST.push($("#chatline").val()); } if(CHATHISTIDX > 0) { CHATHISTIDX--; $("#chatline").val(CHATHIST[CHATHISTIDX]); } ev.preventDefault(); return false; } else if(ev.keyCode == 40) { // Down arrow (input history) if(CHATHISTIDX < CHATHIST.length - 1) { CHATHISTIDX++; $("#chatline").val(CHATHIST[CHATHISTIDX]); } ev.preventDefault(); return false; } }); $("#chatsend").click(function () { callChat(); }); /* poll controls */ $("#newpollbtn").click(showPollMenu); /* search controls */ $("#library_search").click(function() { if (!hasPermission("seeplaylist")) { $("#searchcontrol .alert").remove(); var al = makeAlert("Permission Denied", "This channel does not allow you to search its library", "alert-danger"); al.find(".alert").insertAfter($("#library_query").parent()); return; } socket.emit("searchMedia", { source: "library", query: $("#library_query").val().toLowerCase() }); }); $("#library_query").keydown(function(ev) { if(ev.keyCode == 13) { if (!hasPermission("seeplaylist")) { $("#searchcontrol .alert").remove(); var al = makeAlert("Permission Denied", "This channel does not allow you to search its library", "alert-danger"); al.find(".alert").insertAfter($("#library_query").parent()); return; } socket.emit("searchMedia", { source: "library", query: $("#library_query").val().toLowerCase() }); } }); $("#youtube_search").click(function () { var query = $("#library_query").val().toLowerCase(); try { parseMediaLink(query); makeAlert("Media Link", "If you already have the link, paste it " + "in the 'Media URL' box under Playlist Controls. This "+ "searchbar works like YouTube's search function.", "alert-danger") .insertBefore($("#library")); } catch (e) {} socket.emit("searchMedia", { source: "yt", query: query }); }); /* user playlists */ $("#userpl_save").click(function() { if($("#userpl_name").val().trim() == "") { makeAlert("Invalid Name", "Playlist name cannot be empty", "alert-danger") .insertAfter($("#userpl_save").parent()); return; } socket.emit("clonePlaylist", { name: $("#userpl_name").val() }); }); /* video controls */ $("#mediarefresh").click(function() { PLAYER.mediaType = ""; PLAYER.mediaId = ""; // playerReady triggers the server to send a changeMedia. // the changeMedia handler then reloads the player socket.emit("playerReady"); }); $("#latchvid").click(function() { PLAYER.latch(); PLAYER.play(); PLAYER.latchseek() PLAYER.seekTo(PLAYER.lastSTime); $("#latchvid").hide(); }); $("#blindvideo").click(function() { if($("#videowrap").is(":visible")){ $("#blindvideo").css("rotate","270deg"); }else{ $("#blindvideo").css("rotate",""); } blindVideo(); }); $("#vidplay").click(function(){ window.PLAYER.isPaused(function(p){ if(p){ window.PLAYER.play(); }else{ window.PLAYER.pause(); } }); }); $("#vidmute").on("wheel",function(evnt){ evnt.originalEvent.preventDefault(); wup = evnt.originalEvent.deltaY < 0; window.PLAYER.getVolume(function(v){ window.PLAYER.setVolume(vu = (((wup ? 1 : -1) * 0.05) + v)); }); }); $("#vidmute").click(function(){ window.PLAYER.getVolume(function(v){ if(v == 0){ window.PLAYER.setVolume(MUTED_VOL); }else{ MUTED_VOL = v; window.PLAYER.setVolume(0); } }); }); $("#viddur").on("wheel",function(evnt){ evnt.originalEvent.preventDefault(); wup = evnt.originalEvent.deltaY < 0; window.PLAYER.getTime(function (t){ window.PLAYER.seekTo(((wup ? 1 : -1) * 5) + t); }); }); function setDur(){ window.PLAYER.getTime(function (t){ min = Math.floor(t / 60); hour = Math.floor(min / 60); min = min - (hour * 60); sec = Math.floor(t % 60); dmin = Math.floor(window.PLAYER.mediaLength / 60); dhour = Math.floor(dmin/60); dmin = dmin - (60 * dhour); dsec = (window.PLAYER.mediaLength % 60).toFixed(); $("#viddur").html((hour > 0 ? (padtime(hour) + ":") : "") + padtime(min) + ":" + padtime(sec) + "/" + (dhour > 0 ? (padtime(dhour) + ":") : "") + padtime(dmin) + ":" + padtime(dsec)); }); } /* playlist controls */ $("#queue").sortable({ start: function(ev, ui) { PL_FROM = ui.item.data("uid"); }, update: function(ev, ui) { var prev = ui.item.prevAll(); if(prev.length == 0) PL_AFTER = "prepend"; else PL_AFTER = $(prev[0]).data("uid"); socket.emit("moveMedia", { from: PL_FROM, after: PL_AFTER, sTimes: [[],[]] }); $("#queue").sortable("cancel"); } }); $("#queue").disableSelection(); function queue(pos, src) { if (!src) { src = "url"; } if (src === "customembed") { var title = $("#customembed-title").val(); if (!title) { title = false; } var content = $("#customembed-content").val(); socket.emit("queue", { id: content, title: title, pos: pos, type: "cu", temp: $(".add-temp").prop("checked") }); } else { var linkList = $("#mediaurl").val(); var links = linkList.split(",http").map(function (link, i) { if (i > 0) { return "http" + link; } else { return link; } }); if (pos === "next") links = links.reverse(); if (pos === "next" && $("#queue li").length === 0) links.unshift(links.pop()); var emitQueue = []; var addTemp = $(".add-temp").prop("checked"); var notification = document.getElementById("addfromurl-queue"); if (!notification) { notification = document.createElement("div"); notification.id = "addfromurl-queue"; document.getElementById("addfromurl").appendChild(notification); } links.forEach(function (link) { var data; try { data = parseMediaLink(link); } catch (error) { Callbacks.queueFail({ link: link, msg: error.message }); return; } var duration = undefined; var title = undefined; var subtitle = ""; if (data.type === "fi") { if (data.id.match(/^http:/)) { Callbacks.queueFail({ link: data.id, msg: "Raw files must begin with 'https'. Plain http is not supported." }); return; } // Explicit checks for kissanime and mega.nz since everyone // asks about them if (data.id.match(/kissanime|kimcartoon|kisscartoon/i)) { Callbacks.queueFail({ link: data.id, msg: "Kisscartoon and Kissanime are not supported. See https://git.io/vxS9n" + " for more information about why these cannot be supported." }); return; } else if (data.id.match(/mega\.nz/)) { Callbacks.queueFail({ link: data.id, msg: "Mega.nz is not supported. See https://git.io/fx6fz" + " for more information about why mega.nz cannot be supported." }); return; } // Raw files allow title overrides since the ffprobe tag data // is not always correct. title = $("#addfromurl-title-val").val(); subtitle = $("#addfromurl-subtitle-val").val(); } if (data.id == null || data.type == null) { makeAlert("Error", "Failed to parse link " + link + ". Please check that it is correct", "alert-danger", true) .insertAfter($("#addfromurl")); } else { emitQueue.push({ id: data.id, type: data.type, pos: pos, duration: duration, title: title, temp: addTemp, link: link, subtitle: subtitle }); } }); var nextQueueDelay = 1020; function next() { var data = emitQueue.shift(); if (!data) { $("#mediaurl").val(""); $("#addfromurl-title").remove(); return; } var link = data.link; delete data.link; socket.emit("queue", data); startQueueSpinner(data); if (emitQueue.length > 0) { notification.textContent = "Waiting to queue " + emitQueue[0].link; } else { notification.textContent = ""; } setTimeout(next, nextQueueDelay); } next(); } } $("#queue_next").click(queue.bind(this, "next", "url")); $("#queue_end").click(queue.bind(this, "end", "url")); $("#ce_queue_next").click(queue.bind(this, "next", "customembed")); $("#ce_queue_end").click(queue.bind(this, "end", "customembed")); $("#mediaurl").keyup(function(ev) { if (ev.keyCode === 13) { queue("end", "url"); } else { var editTitle = false; try { if (parseMediaLink($("#mediaurl").val()).type === "fi") { editTitle = true; } } catch (error) { } if (editTitle) {//Add title and subtitles fieldS var title = $("#addfromurl-title"); var subtitle = $("#addfromurl-subtitle"); if (title.length === 0) {//if there is no title set title = $("
")//create title div .attr("id", "addfromurl-title")//title div attr .insertAfter($("#addfromurl").find(".input-group"));//insert after URL bar $("").addClass("form-control")//create title field .attr("type", "text")//the attributes .attr("id", "addfromurl-title-val") .attr("placeholder", "Alternate Title") .attr("style", "display: none; width: 100%;") .keydown(function (ev) { if (ev.keyCode === 13) { queue("end", "url"); } }) .appendTo($("#addfromurl-title")).show("blind");//append and show $("").addClass("form-control")//create title field .attr("type", "text")//the attributes .attr("id", "addfromurl-subtitle-val") .attr("placeholder", "Alternate Subtitle Track") .attr("style", "display: none; width: 100%;") .keydown(function (ev) { if (ev.keyCode === 13) { queue("end", "url"); } }) .appendTo($("#addfromurl-title")).show("blind");//append and show } } else { $("#addfromurl-title").hide("blind"); $("#addfromurl-title").remove();//otherwise remove } } }); $("#customembed-content").keydown(function(ev) { if (ev.keyCode === 13) { queue("end", "customembed"); } }); $("#qlockbtn").click(function() { socket.emit("togglePlaylistLock"); }); $("#voteskip").click(function() { socket.emit("voteskip"); $("#voteskip").attr("disabled", true); }); $("#blindItems").click(function(){ $("#blindItems").toggleClass("glyphicon-resize-small"); $("#blindItems").toggleClass("glyphicon-resize-full"); $("#blindItems").prop("title", ($("#blindItems").prop("title") == "Collapse All Items") ? "Expand All Items" : "Collapse All Items" ) toggleItems(); }); $("#hideplaylist").click(function(){ $("#rightcontrols").hide("blind"); $("#playlistrow").hide("blind"); $("#showplaylist").show(""); }); $("#showplaylist").click(function(){ $("#rightcontrols").show("blind"); $("#playlistrow").show("blind"); $("#showplaylist").hide(""); }); $("#getplaylist").click(function() { var callback = function(data) { var idx = socket.listeners("errorMsg").indexOf(errCallback); if (idx >= 0) { socket.listeners("errorMsg").splice(idx); } idx = socket.listeners("playlist").indexOf(callback); if (idx >= 0) { socket.listeners("playlist").splice(idx); } var list = []; for(var i = 0; i < data.length; i++) { var entry = formatURL(data[i].media); list.push(entry); } var urls = list.join(","); var outer = $("
").addClass("modal fade") .appendTo($("body")); modal = $("
").addClass("modal-dialog").appendTo(outer); modal = $("
").addClass("modal-content").appendTo(modal); var head = $("
").addClass("modal-header") .appendTo(modal); $("