mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
522 lines
19 KiB
JavaScript
Executable File
522 lines
19 KiB
JavaScript
Executable File
//script for frontpage
|
|
|
|
var channel_list;
|
|
var frontpage = true;
|
|
var socket;
|
|
var rotation_timeout;
|
|
|
|
var Frontpage = {
|
|
|
|
blob_list: [],
|
|
|
|
winter: (new Date()).getMonth() >= 10 ? true : false,
|
|
|
|
times_rotated: 0,
|
|
|
|
all_channels: [],
|
|
|
|
frontpage_function: function(msg) {
|
|
frontpage = true;
|
|
|
|
Helper.log([
|
|
"Frontpage fetch",
|
|
msg
|
|
]);
|
|
Frontpage.all_channels = msg.channels;
|
|
if(msg.channels.length == 0) {
|
|
$("#preloader").css("display", "none");
|
|
$("#channel-list-container").append("<p>No channels yet</p>");
|
|
} else {
|
|
Frontpage.populate_channels(msg.channels, true);
|
|
}
|
|
Frontpage.set_viewers(msg.viewers);
|
|
},
|
|
|
|
populate_channels: function(lists, popular) {
|
|
$("#channels").empty();
|
|
|
|
var num = 0;
|
|
|
|
if(popular) {
|
|
lists = lists.sort(Helper.predicate({
|
|
name: 'pinned',
|
|
reverse: true
|
|
}, {
|
|
name: 'viewers',
|
|
reverse: true
|
|
}, {
|
|
name: 'accessed',
|
|
reverse: true
|
|
}, {
|
|
name: 'count',
|
|
reverse: true
|
|
}));
|
|
} else {
|
|
lists = lists.sort(Helper.predicate({
|
|
name: 'viewers',
|
|
reverse: true
|
|
}, {
|
|
name: 'count',
|
|
reverse: true
|
|
}));
|
|
}
|
|
|
|
if(!Helper.mobilecheck()) {
|
|
clearTimeout(rotation_timeout);
|
|
Frontpage.add_backdrop(lists, 0);
|
|
}
|
|
|
|
pre_card = $(channel_list);
|
|
|
|
Helper.log([
|
|
"Pre_card: ",
|
|
pre_card
|
|
]);
|
|
|
|
for(var x in lists) {
|
|
var chan = lists[x]._id;
|
|
if(num<12 || !popular) {
|
|
var id = lists[x].id;
|
|
var viewers = lists[x].viewers;
|
|
var description = lists[x].description;
|
|
var img = "background-image:url('https://img.youtube.com/vi/"+id+"/hqdefault.jpg');";
|
|
if(lists[x].thumbnail) {
|
|
img = "background-image:url('" + lists[x].thumbnail + "');";
|
|
}
|
|
|
|
var song_count = lists[x].count;
|
|
|
|
var card = pre_card.clone();
|
|
if(song_count > 4) {
|
|
if(lists[x].pinned == 1) {
|
|
card.find(".pin").attr("style", "display:block;");
|
|
card.find(".card").attr("title", "Pinned!");
|
|
} else {
|
|
card.find(".pin").attr("style", "display:none;");
|
|
card.find(".card").attr("title", "");
|
|
}
|
|
card.find(".chan-name").text(chan);
|
|
card.find(".chan-name").attr("title", chan);
|
|
card.find(".chan-views").text(viewers);
|
|
card.find(".chan-songs").text(song_count);
|
|
card.find(".chan-bg").attr("style", img);
|
|
card.find(".chan-link").attr("href", chan + "/");
|
|
|
|
if(description != "" && description != undefined && !Helper.mobilecheck()) {
|
|
card.find(".card-title").text(chan);
|
|
card.find(".description_text").text(description);
|
|
description = "";
|
|
} else {
|
|
card.find(".card-reveal").remove();
|
|
card.find(".card").removeClass("sticky-action")
|
|
}
|
|
|
|
$("#channels").append(card.html());
|
|
} else {
|
|
num--;
|
|
}
|
|
}
|
|
num++;
|
|
}
|
|
|
|
var options_list = lists.slice();
|
|
|
|
options_list = options_list.sort(Frontpage.sortFunction_active);
|
|
var data = {};
|
|
for(var x in options_list) {
|
|
data[options_list[x]._id] = null;
|
|
}
|
|
|
|
var to_autocomplete = "input.autocomplete";
|
|
//if(Helper.mobilecheck()) to_autocomplete = "input.mobile-search";
|
|
|
|
$(to_autocomplete).autocomplete({
|
|
data: data,
|
|
limit: 5, // The max amount of results that can be shown at once. Default: Infinity.
|
|
onAutocomplete: function(val) {
|
|
Frontpage.to_channel(val, false);
|
|
},
|
|
});
|
|
|
|
document.getElementById("preloader").style.display = "none";
|
|
//Materialize.fadeInImage('#channels');
|
|
$("#channels").fadeIn(800);
|
|
$("#searchFrontpage").focus();
|
|
num = 0;
|
|
},
|
|
|
|
sortFunction: function(a, b) {
|
|
var o1 = a.viewers;
|
|
var o2 = b.viewers;
|
|
|
|
var p1 = a.count;
|
|
var p2 = b.count;
|
|
|
|
if (o1 < o2) return 1;
|
|
if (o1 > o2) return -1;
|
|
if (p1 < p2) return 1;
|
|
if (p1 > p2) return -1;
|
|
return 0;
|
|
},
|
|
|
|
sortFunction_active: function(a, b){
|
|
var o1 = a.accessed;
|
|
var o2 = b.accessed;
|
|
|
|
var p1 = a.count;
|
|
var p2 = b.count;
|
|
|
|
if (o1 < o2) return 1;
|
|
if (o1 > o2) return -1;
|
|
if (p1 < p2) return 1;
|
|
if (p1 > p2) return -1;
|
|
return 0;
|
|
},
|
|
|
|
getCookie: function(cname) {
|
|
var name = cname + "=";
|
|
var ca = document.cookie.split(';');
|
|
for(var i=0; i<ca.length; i++) {
|
|
var c = ca[i];
|
|
while (c.charAt(0)==' ') c = c.substring(1);
|
|
if (c.indexOf(name) === 0) return c.substring(name.length,c.length);
|
|
}
|
|
return "";
|
|
},
|
|
|
|
add_backdrop: function(list, i) {
|
|
if(i >= list.length || i >= 20) i = 0;
|
|
if(list[i] == undefined) return;
|
|
var id = list[i].id;
|
|
if(Frontpage.blob_list[i] !== undefined){
|
|
//$(".room-namer").css("opacity", 0);
|
|
setTimeout(function(){
|
|
if(frontpage){
|
|
$("#mega-background").css("background", "url(data:image/png;base64,"+Frontpage.blob_list[i]+")");
|
|
$("#mega-background").css("background-size" , "cover");
|
|
$("#mega-background").css("background-repeat" , "no-repeat");
|
|
$("#mega-background").css("opacity", 1);
|
|
$(".autocomplete").attr("placeholder", list[i]._id);
|
|
//$(".room-namer").css("opacity", 1);
|
|
}
|
|
},500);
|
|
} else {
|
|
var img = new Image();
|
|
img.src = "/assets/images/thumbnails/"+id+".jpg";
|
|
|
|
img.onerror = function(e){ // Failed to load
|
|
var add = "";
|
|
if(window.location.hostname == "fb.zoff.me") {
|
|
add = "https://zoff.me";
|
|
}
|
|
$.ajax({
|
|
type: "POST",
|
|
data: {id:id},
|
|
url: add + "/api/imageblob",
|
|
success: function(data){
|
|
setTimeout(function(){
|
|
$("#mega-background").css("background", "url(/assets/images/thumbnails/"+data+")");
|
|
$("#mega-background").css("background-size" , "cover");
|
|
$("#mega-background").css("background-repeat" , "no-repeat");
|
|
$("#mega-background").css("opacity", 1);
|
|
$(".autocomplete").attr("placeholder", list[i]._id);
|
|
},500);
|
|
},
|
|
error: function() {
|
|
$(".autocomplete").attr("placeholder", list[i]._id);
|
|
}
|
|
});
|
|
};
|
|
img.onload = function(){ // Loaded successfully
|
|
$("#mega-background").css("background", "url("+img.src+")");
|
|
$("#mega-background").css("background-size" , "cover");
|
|
$("#mega-background").css("background-repeat" , "no-repeat");
|
|
$("#mega-background").css("opacity", 1);
|
|
$(".autocomplete").attr("placeholder", list[i]._id);
|
|
};
|
|
|
|
}
|
|
rotation_timeout = setTimeout(function(){
|
|
if(Frontpage.times_rotated == 50 && frontpage){
|
|
Frontpage.times_rotated = 0;
|
|
i = 0;
|
|
Frontpage.get_frontpage_lists();
|
|
}else if(frontpage){
|
|
Frontpage.times_rotated += 1;
|
|
Frontpage.add_backdrop(list, i+1);
|
|
}
|
|
},6000);
|
|
},
|
|
|
|
get_frontpage_lists: function() {
|
|
var add = "";
|
|
if(window.location.hostname == "fb.zoff.me") {
|
|
add = "https://zoff.me";
|
|
}
|
|
$.ajax({
|
|
url: add + "/api/frontpages",
|
|
method: "get",
|
|
success: function(response){
|
|
Frontpage.frontpage_function(response.results);
|
|
},
|
|
error: function() {
|
|
Materialize.toast("Couldn't fetch lists, trying again in 3 seconds..", 3000, "red lighten connect_error");
|
|
retry_frontpage = setTimeout(function(){
|
|
Frontpage.get_frontpage_lists();
|
|
}, 3000);
|
|
},
|
|
});
|
|
},
|
|
|
|
start_snowfall: function() {
|
|
setTimeout(function(){
|
|
var x = Math.floor((Math.random() * window.innerWidth) + 1);
|
|
var snow = document.createElement("div");
|
|
var parent = document.getElementsByClassName("mega")[0];
|
|
|
|
snow.className = "snow";
|
|
//snow.attr("left", x);
|
|
snow.style.left = x+"px";
|
|
snow.style.top = "0px";
|
|
parent.appendChild(snow);
|
|
Frontpage.fall_snow(snow);
|
|
Frontpage.start_snowfall();
|
|
}, 800);
|
|
},
|
|
|
|
fall_snow: function(corn) {
|
|
corn.style.top = (parseInt(corn.style.top.replace("px", ""))+2)+"px";
|
|
if(parseInt(corn.style.top.replace("px", "")) < document.getElementById("mega-background").offsetHeight-2.5){
|
|
setTimeout(function(){
|
|
Frontpage.fall_snow(corn);
|
|
},50);
|
|
}else{
|
|
corn.remove();
|
|
}
|
|
},
|
|
|
|
set_viewers: function(viewers) {
|
|
$("#frontpage-viewer-counter").html("<i class='material-icons frontpage-viewers'>visibility</i>" + viewers);
|
|
},
|
|
|
|
to_channel: function(new_channel, popstate) {
|
|
$("#channel-load").css("display", "block");
|
|
window.scrollTo(0, 0);
|
|
frontpage = false;
|
|
new_channel = new_channel.toLowerCase();
|
|
clearTimeout(rotation_timeout);
|
|
if(Helper.mobilecheck()){
|
|
Helper.log(["removing all listeners"]);
|
|
removeAllListeners();
|
|
}
|
|
$("#main-container").css("background-color", "#2d2d2d");
|
|
if(!Helper.mobilecheck()) {
|
|
$("#frontpage-viewer-counter").tooltip("remove");
|
|
$(".generate-channel-name").tooltip("remove");
|
|
$("#offline-mode").tooltip("remove");
|
|
$("#client-mode-button").tooltip("remove");
|
|
}
|
|
currently_showing_channels = 1;
|
|
clearTimeout(retry_frontpage);
|
|
$.ajax({
|
|
url: "/" + new_channel,
|
|
method: "get",
|
|
data: {channel: new_channel},
|
|
success: function(e){
|
|
|
|
if(Player.player !== ""){
|
|
//Player.player.destroy();
|
|
socket.emit("change_channel", {channel: chan.toLowerCase()});
|
|
}
|
|
$("#frontpage_player").empty();
|
|
if(Helper.mobilecheck()) {
|
|
//Helper.log("disconnecting");
|
|
//socket.disconnect();
|
|
socket.removeAllListeners();
|
|
}
|
|
|
|
if(!popstate){
|
|
window.history.pushState("to the channel!", "Title", "/" + new_channel);
|
|
if(prev_chan_list == "") prev_chan_list = new_channel;
|
|
if(prev_chan_player == "") prev_chan_player = new_channel;
|
|
window.chan = new_channel;
|
|
}
|
|
|
|
var response = $("<div>" + e + "</div>");
|
|
|
|
$('select').material_select('destroy');
|
|
$(".mega").remove();
|
|
$(".mobile-search").remove();
|
|
$("main").attr("class", "container center-align main");
|
|
$("#main-container").addClass("channelpage");
|
|
//$("header").html($($(e)[63]).html());
|
|
$("header").html($(response.find("header")).html());
|
|
if($("#alreadychannel").length === 0 || Helper.mobilecheck() || Player.player === undefined){
|
|
$("main").html($(response.find("main")).html());
|
|
} else {
|
|
$("#main-row").append($(response.find("#playlist").wrap("<div>").parent().html()));
|
|
$("#video-container").append($(response.find("#main_components").wrap("<div>").parent().html()));
|
|
$("#main-row").append("<div id='playbar'></div>");
|
|
$("#player").removeClass("player_bottom");
|
|
$("#main-row").removeClass("frontpage_modified_heights");
|
|
$("#main_section_frontpage").remove();
|
|
$("#closePlayer").remove();
|
|
$("#player_bottom_overlay").remove();
|
|
}
|
|
$("#search").attr("placeholder", "Find song on YouTube...");
|
|
$(".page-footer").addClass("padding-bottom-novideo");
|
|
from_frontpage = true;
|
|
if($("#alreadychannel").length == 1){
|
|
Channel.init();
|
|
}else{
|
|
fromFront = true;
|
|
Channel.init();
|
|
}
|
|
if($("#alreadyfp").length === 0) $("head").append("<div id='alreadyfp'></div>");
|
|
|
|
}
|
|
});
|
|
},
|
|
|
|
init: function() {
|
|
|
|
var date = new Date();
|
|
Frontpage.blob_list = [];
|
|
if(date.getMonth() == 3 && date.getDate() == 1){
|
|
$(".mega").css("-webkit-transform", "rotate(180deg)");
|
|
$(".mega").css("-moz-transform", "rotate(180deg)");
|
|
//Materialize.toast('<p id="aprilfools">We suck at pranks..<a class="waves-effect waves-light btn light-green" style="pointer-events:none;">Agreed</a></p>', 100000);
|
|
}
|
|
|
|
if(window.location.hostname != "localhost") {
|
|
ga('send', 'pageview');
|
|
}
|
|
|
|
window.onpopstate = function(e){
|
|
var url_split = window.location.href.split("/");
|
|
|
|
if(url_split[3] !== "" && url_split[3].substring(0,1) != "#"){
|
|
Frontpage.to_channel(url_split[3], true);
|
|
}
|
|
};
|
|
|
|
if(window.location.hostname == "fb.zoff.me") {
|
|
$("footer").addClass("hide");
|
|
}
|
|
|
|
channel_list = $("#channel-list-container").clone().html();
|
|
|
|
if(window.location.hostname != "fb.zoff.me") Frontpage.share_link_modifier();
|
|
|
|
if(window.location.hostname == "zoff.me" || window.location.hostname == "fb.zoff.me") add = "https://zoff.me";
|
|
else add = window.location.hostname;
|
|
if(socket === undefined) {
|
|
no_socket = false;
|
|
socket = io.connect(''+add+':8080', connection_options);
|
|
socket.on('update_required', function(msg) {
|
|
if(window.location.hostname == "localhost") {
|
|
console.log(msg);
|
|
return;
|
|
}
|
|
window.location.reload(true);
|
|
});
|
|
}
|
|
if($("#alreadyfp").length === 0 || Helper.mobilecheck() || !socket._callbacks.$playlists || user_auth_avoid){
|
|
setup_playlist_listener();
|
|
}
|
|
|
|
$("#about").modal();
|
|
$("#help").modal();
|
|
$("#contact").modal();
|
|
$('select').material_select();
|
|
|
|
Helper.log([
|
|
"Sending frontpage_lists",
|
|
"Socket"
|
|
]);
|
|
|
|
Crypt.init();
|
|
if(Crypt.get_offline()){
|
|
change_offline(true, offline);
|
|
} else {
|
|
if(!Helper.mobilecheck()) {
|
|
$("#offline-mode").tooltip({
|
|
delay: 5,
|
|
position: "bottom",
|
|
tooltip: "Enable local mode"
|
|
});
|
|
}
|
|
}
|
|
if(!Helper.mobilecheck()) {
|
|
$("#frontpage-viewer-counter").tooltip({
|
|
delay: 5,
|
|
position: "bottom",
|
|
tooltip: "Total Viewers"
|
|
});
|
|
$("#client-mode-button").tooltip({
|
|
delay: 5,
|
|
position: "bottom",
|
|
tooltip: "Client mode"
|
|
});
|
|
$(".generate-channel-name").tooltip({
|
|
delay: 5,
|
|
position: "bottom",
|
|
tooltip: "Generate name"
|
|
});
|
|
}
|
|
Frontpage.get_frontpage_lists();
|
|
|
|
$("#channel-load").css("display", "none");
|
|
//Materialize.toast("<a href='/remote' style='color:white;'>Try out our new feature, remote!</a>", 8000)
|
|
if(window.location.hash == "#donation") {
|
|
window.location.hash = "#";
|
|
$('#donation').modal();
|
|
$('#donation').modal('open');
|
|
}
|
|
|
|
if(!localStorage.ok_cookie){
|
|
before_toast();
|
|
Materialize.toast("We're using cookies to enhance your experience! <a class='waves-effect waves-light btn light-green' href='#' id='cookieok' style='cursor:pointer;pointer-events:all;margin-left:10px;'> ok</a>", 10000);
|
|
}
|
|
|
|
var pad = 0;
|
|
|
|
$(".zicon").on("click", function(e) {
|
|
e.preventDefault();
|
|
|
|
pad += 10;
|
|
$(".zicon").css("padding-left", pad + "vh");
|
|
if(pad >= 80)
|
|
window.location.href = 'http://etys.no';
|
|
});
|
|
|
|
if(!Helper.mobilecheck() && Frontpage.winter) {
|
|
$(".mega").prepend('<div id="snow"></div>');
|
|
}
|
|
|
|
if(Helper.mobilecheck()){
|
|
$('input#autocomplete-input').characterCounter();
|
|
}
|
|
|
|
window['__onGCastApiAvailable'] = function(loaded, errorInfo) {
|
|
if (loaded) {
|
|
chromecastReady = true;
|
|
} else {
|
|
}
|
|
}
|
|
},
|
|
|
|
share_link_modifier: function() {
|
|
$("#facebook-code-link").attr("href", "https://www.facebook.com/sharer/sharer.php?u=https://zoff.me/");
|
|
$("#facebook-code-link").attr("onclick", "window.open('https://www.facebook.com/sharer/sharer.php?u=https://zoff.me/', 'Share Zoff','width=600,height=300'); return false;");
|
|
$("#twitter-code-link").attr("href", "https://twitter.com/intent/tweet?url=https://zoff.me/&text=Check%20out%20Zoff!&via=zoffmusic");
|
|
$("#twitter-code-link").attr("onclick", "window.open('https://twitter.com/intent/tweet?url=https://zoff.me/&text=Check%20out%20Zoff!&via=zoffmusic','Share Playlist','width=600,height=300'); return false;");
|
|
//$("#qr-code-link").attr("href", "//chart.googleapis.com/chart?chs=500x500&cht=qr&chl=https://zoff.me/&choe=UTF-8&chld=L%7C1");
|
|
//$("#qr-code-image-link").attr("src", "//chart.googleapis.com/chart?chs=150x150&cht=qr&chl=https://zoff.me/&choe=UTF-8&chld=L%7C1");
|
|
}
|
|
};
|
|
|
|
String.prototype.capitalizeFirstLetter = function() {
|
|
return this.charAt(0).toUpperCase() + this.slice(1);
|
|
};
|