mirror of
https://github.com/KevinMidboe/zoff.git
synced 2026-01-12 04:25:51 +00:00
Compare commits
39 Commits
fix/viewco
...
dependabot
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fef8ad5215 | ||
|
|
938dac703e | ||
|
|
8ca0b2b4dd | ||
|
|
49fceb761c | ||
|
|
bc3328db2b | ||
|
|
9d9c783244 | ||
|
|
ad96e147b1 | ||
|
|
eb0cd96995 | ||
|
|
41a2964533 | ||
|
|
dcf581bb06 | ||
|
|
5e938e8bb2 | ||
|
|
612a76ebf6 | ||
|
|
d228cf223d | ||
|
|
f5d9272a42 | ||
|
|
50694e32db | ||
|
|
ff37946397 | ||
|
|
df353968a6 | ||
|
|
dc7435b4c1 | ||
|
|
82f6e5ed12 | ||
|
|
29c8d2c84b | ||
|
|
b47e38dce4 | ||
|
|
89c4a59ca4 | ||
|
|
116cb3f68d | ||
|
|
13bc8cb0ba | ||
|
|
9ed72c0cc0 | ||
|
|
ad8bc0c05b | ||
|
|
9993a377b8 | ||
|
|
0213c5fe0a | ||
|
|
d820b2daba | ||
|
|
3739a15049 | ||
|
|
cba874510b | ||
|
|
b3a7b95fd6 | ||
|
|
f9b05c11e0 | ||
|
|
e8d49c77df | ||
|
|
07164153b0 | ||
|
|
206321a46f | ||
|
|
460d0138f0 | ||
|
|
4d96763545 | ||
|
|
d3e72202ce |
2
FUNDING.yml
Normal file
2
FUNDING.yml
Normal file
@@ -0,0 +1,2 @@
|
||||
github: [kasperrt]
|
||||
custom: ["https://www.paypal.me/zoffmusic"]
|
||||
@@ -83,5 +83,5 @@ Zoff is licensed under a
|
||||
<a href="http://creativecommons.org/licenses/by-nc-nd/3.0/no/">Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Norway License.</a>.
|
||||
Do not redistribute without permission from the developers.
|
||||
|
||||
Copyright © 2018
|
||||
Copyright © 2019
|
||||
Kasper Rynning-Tønnesen and Nicolas Almagro Tonne
|
||||
|
||||
636
package-lock.json
generated
636
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -38,16 +38,17 @@
|
||||
"express-handlebars": "^3.0.2",
|
||||
"express-recaptcha": "^3.0.1",
|
||||
"express-session": "^1.15.6",
|
||||
"farmhash": "^3.0.0",
|
||||
"feature-policy": "^0.2.0",
|
||||
"gulp-clean-css": "^4.2.0",
|
||||
"gulp-sourcemaps": "^2.6.5",
|
||||
"gulp-uglify-es": "^1.0.4",
|
||||
"helmet": "^3.16.0",
|
||||
"helmet": "^3.21.1",
|
||||
"jimp": "^0.2.28",
|
||||
"mongodb": "^2.2.36",
|
||||
"mongojs": "^2.6.0",
|
||||
"mongojs-paginate": "^1.2.0",
|
||||
"mongoose": "^5.4.18",
|
||||
"mongoose": "^5.7.5",
|
||||
"mpromise": "^0.5.5",
|
||||
"nodemailer": "^4.7.0",
|
||||
"passport": "^0.4.0",
|
||||
|
||||
10
pm2.json
10
pm2.json
@@ -2,18 +2,14 @@
|
||||
"apps": [
|
||||
{
|
||||
"name": "zoff",
|
||||
"script": "./server/app.js",
|
||||
"script": "./server/pm2.js",
|
||||
"watch": true,
|
||||
"instances": "max",
|
||||
"exec_mode": "cluster",
|
||||
"ignore_watch": [
|
||||
"./node_modules",
|
||||
"./server/public/assets/images/thumbnails"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "gulp",
|
||||
"script": "./gulpfile.js",
|
||||
"watch": true,
|
||||
"ignore_watch": ["./node_modules", "./server/"]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ var cluster = require("cluster"),
|
||||
//publicPath = path.join(__dirname, 'public'),
|
||||
http = require("http"),
|
||||
port = 8080,
|
||||
//farmhash = require('farmhash'),
|
||||
farmhash = require("farmhash"),
|
||||
uniqid = require("uniqid"),
|
||||
num_processes = require("os").cpus().length;
|
||||
|
||||
@@ -53,20 +53,22 @@ function startClustered(redis_enabled) {
|
||||
var worker_index = function(ip, len) {
|
||||
//console.log(ip);
|
||||
var s = "";
|
||||
if (ip == undefined) ip = uniqid.time();
|
||||
if (ip !== undefined) {
|
||||
return farmhash.fingerprint32(ip) % len;
|
||||
}
|
||||
ip = uniqid.time();
|
||||
for (var i = 0, _len = ip.length; i < _len; i++) {
|
||||
if (!isNaN(ip[i])) {
|
||||
s += ip[i];
|
||||
}
|
||||
}
|
||||
return Number(s) % len;
|
||||
//eturn farmhash.fingerprint32(ip) % len;
|
||||
};
|
||||
|
||||
var server = net
|
||||
.createServer({ pauseOnConnect: true }, function(connection, a) {
|
||||
var worker =
|
||||
workers[worker_index(connection.remoteAddress, num_processes)];
|
||||
workers[worker_index(connection.address().address, num_processes)];
|
||||
worker.send("sticky-session:connection", connection);
|
||||
})
|
||||
.listen(port);
|
||||
|
||||
@@ -30,6 +30,7 @@ var project_object = {
|
||||
duration: 1,
|
||||
end: 1,
|
||||
type: 1,
|
||||
added_by: { $ifNull: ["$added_by", "Anonymous"] },
|
||||
source: { $ifNull: ["$source", "youtube"] },
|
||||
thumbnail: {
|
||||
$ifNull: [
|
||||
|
||||
@@ -71,6 +71,16 @@ function getAndSendLogs(channel, all, socket, pass, query) {
|
||||
});
|
||||
}
|
||||
|
||||
function getUserNameByGuid(guid, callback) {
|
||||
db.collection("user_names").find({ guid: guid }, function(err, usernames) {
|
||||
if (usernames.length == 1) {
|
||||
callback(usernames[0].name);
|
||||
return;
|
||||
}
|
||||
callback("Anonymous");
|
||||
});
|
||||
}
|
||||
|
||||
function chat(msg, guid, offline, socket) {
|
||||
if (
|
||||
typeof msg !== "object" ||
|
||||
@@ -909,6 +919,7 @@ function get_name_generate(guid, announce_payload, first, channel) {
|
||||
});
|
||||
}
|
||||
|
||||
module.exports.getUserNameByGuid = getUserNameByGuid;
|
||||
module.exports.get_history = get_history;
|
||||
module.exports.chat = chat;
|
||||
module.exports.all_chat = all_chat;
|
||||
|
||||
@@ -332,7 +332,7 @@ module.exports = function() {
|
||||
return;
|
||||
}
|
||||
var status = msg.status;
|
||||
var channel = Functions.encodeChannelName(msg.channel); //.replace(/ /g,'');
|
||||
var channel = msg.channel; //.replace(/ /g,'');
|
||||
if (status) {
|
||||
in_list = false;
|
||||
offline = true;
|
||||
@@ -504,6 +504,19 @@ module.exports = function() {
|
||||
});
|
||||
});
|
||||
|
||||
socket.on("join_silent", function(msg) {
|
||||
if (msg.hasOwnProperty("channel") && msg.channel.indexOf("?") > -1) {
|
||||
var _list = msg.channel.substring(0, msg.channel.indexOf("?"));
|
||||
msg.channel = _list;
|
||||
}
|
||||
if (msg.hasOwnProperty("channel")) {
|
||||
msg.channel = Functions.encodeChannelName(msg.channel);
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
List.join_silent(msg, socket);
|
||||
});
|
||||
|
||||
socket.on("list", function(msg) {
|
||||
if (msg.hasOwnProperty("channel") && msg.channel.indexOf("?") > -1) {
|
||||
var _list = msg.channel.substring(0, msg.channel.indexOf("?"));
|
||||
|
||||
@@ -31,6 +31,41 @@ function now_playing(list, fn, socket) {
|
||||
});
|
||||
}
|
||||
|
||||
function join_silent(msg, socket) {
|
||||
if (typeof msg === "object" && msg !== undefined && msg !== null) {
|
||||
var channelName = msg.channel;
|
||||
var tryingPassword = false;
|
||||
var password = "";
|
||||
if(msg.password != "") {
|
||||
tryingPassword = true;
|
||||
password = Functions.decrypt_string(msg.password);
|
||||
password = crypto
|
||||
.createHash("sha256")
|
||||
.update(password)
|
||||
.digest("base64");
|
||||
}
|
||||
|
||||
channelName = channelName.toLowerCase(); //.replace(/ /g,'');
|
||||
channelName = Functions.removeEmojis(channelName).toLowerCase();
|
||||
db.collection(channelName + "_settings").find(function(err, docs) {
|
||||
if(docs.length == 0) {
|
||||
socket.emit("join_silent_declined", "");
|
||||
return;
|
||||
}
|
||||
if(docs[0].userpass == "" || docs[0].userpass == undefined || docs[0].userpass == password) {
|
||||
socket.join(channelName);
|
||||
socket.emit("join_silent_accepted", "");
|
||||
|
||||
send_play(channelName, socket);
|
||||
} else {
|
||||
socket.emit("join_silent_declined", "");
|
||||
}
|
||||
});
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
function list(msg, guid, coll, offline, socket) {
|
||||
var socketid = socket.zoff_id;
|
||||
if (typeof msg === "object" && msg !== undefined && msg !== null) {
|
||||
@@ -1245,6 +1280,7 @@ function getNextSong(coll, socket, callback) {
|
||||
);
|
||||
}
|
||||
|
||||
module.exports.join_silent = join_silent;
|
||||
module.exports.sendColor = sendColor;
|
||||
module.exports.now_playing = now_playing;
|
||||
module.exports.list = list;
|
||||
|
||||
@@ -2,6 +2,7 @@ var Functions = require(pathThumbnails + "/handlers/functions.js");
|
||||
var List = require(pathThumbnails + "/handlers/list.js");
|
||||
var Frontpage = require(pathThumbnails + "/handlers/frontpage.js");
|
||||
var Search = require(pathThumbnails + "/handlers/search.js");
|
||||
var Chat = require(pathThumbnails + "/handlers/chat.js");
|
||||
var crypto = require("crypto");
|
||||
var Filter = require("bad-words");
|
||||
var filter = new Filter({ placeHolder: "x" });
|
||||
@@ -201,7 +202,7 @@ function addFromOtherList(arr, guid, offline, socket) {
|
||||
accessed: Functions.get_time()
|
||||
};
|
||||
db.collection(
|
||||
channel
|
||||
new_channel
|
||||
).find(
|
||||
{
|
||||
now_playing: true
|
||||
@@ -819,159 +820,167 @@ function add_function(arr, coll, guid, offline, socket) {
|
||||
var source = arr.source;
|
||||
var tags = arr.tags;
|
||||
conf = docs;
|
||||
if (
|
||||
docs !== null &&
|
||||
docs.length !== 0 &&
|
||||
((docs[0].addsongs === true &&
|
||||
(hash == docs[0].adminpass || docs[0].adminpass === "")) ||
|
||||
docs[0].addsongs === false)
|
||||
) {
|
||||
db.collection(coll).find(
|
||||
{ id: id, type: { $ne: "suggested" } },
|
||||
function(err, docs) {
|
||||
if (docs !== null && docs.length === 0) {
|
||||
var guids = [guid];
|
||||
var added = Functions.get_time();
|
||||
var votes = 1;
|
||||
db.collection(coll).find({ now_playing: true }, function(
|
||||
err,
|
||||
docs
|
||||
) {
|
||||
if (docs !== null && docs.length === 0) {
|
||||
np = true;
|
||||
} else {
|
||||
np = false;
|
||||
}
|
||||
var new_song = {
|
||||
added: added,
|
||||
guids: guids,
|
||||
id: id,
|
||||
now_playing: np,
|
||||
title: title,
|
||||
tags: tags,
|
||||
votes: votes,
|
||||
duration: duration,
|
||||
start: parseInt(start),
|
||||
end: parseInt(end),
|
||||
type: "video",
|
||||
source: source
|
||||
};
|
||||
if (source == "soundcloud") {
|
||||
if (
|
||||
arr.thumbnail.indexOf("https://i1.sndcdn.com") > -1 ||
|
||||
arr.thumbnail.indexOf("https://w1.sndcdn.com") > -1
|
||||
) {
|
||||
new_song.thumbnail = arr.thumbnail;
|
||||
Chat.getUserNameByGuid(guid, function(username) {
|
||||
if (
|
||||
docs !== null &&
|
||||
docs.length !== 0 &&
|
||||
((docs[0].addsongs === true &&
|
||||
(hash == docs[0].adminpass || docs[0].adminpass === "")) ||
|
||||
docs[0].addsongs === false)
|
||||
) {
|
||||
db.collection(coll).find(
|
||||
{ id: id, type: { $ne: "suggested" } },
|
||||
function(err, docs) {
|
||||
if (docs !== null && docs.length === 0) {
|
||||
var guids = [guid];
|
||||
var added = Functions.get_time();
|
||||
var votes = 1;
|
||||
db.collection(coll).find({ now_playing: true }, function(
|
||||
err,
|
||||
docs
|
||||
) {
|
||||
if (docs !== null && docs.length === 0) {
|
||||
np = true;
|
||||
} else {
|
||||
new_song.thumbnail =
|
||||
"https://img.youtube.com/vi/404_notfound/mqdefault.jpg";
|
||||
np = false;
|
||||
}
|
||||
} else if (source == "youtube")
|
||||
new_song.thumbnail =
|
||||
"https://img.youtube.com/vi/" +
|
||||
new_song.id +
|
||||
"/mqdefault.jpg";
|
||||
db.collection(coll).update(
|
||||
{ id: id },
|
||||
new_song,
|
||||
{ upsert: true },
|
||||
function(err, docs) {
|
||||
new_song._id = "asd";
|
||||
if (np) {
|
||||
List.send_list(coll, undefined, false, true, false);
|
||||
db.collection(coll + "_settings").update(
|
||||
{ id: "config" },
|
||||
{ $set: { startTime: Functions.get_time() } }
|
||||
);
|
||||
List.send_play(coll, undefined);
|
||||
var thumbnail =
|
||||
arr.thumbnail != undefined
|
||||
? arr.thumbnail
|
||||
: undefined;
|
||||
Frontpage.update_frontpage(
|
||||
coll,
|
||||
id,
|
||||
title,
|
||||
thumbnail,
|
||||
arr.source
|
||||
);
|
||||
if (source != "soundcloud")
|
||||
Search.get_correct_info(new_song, coll, false);
|
||||
else if (source == "soundcloud")
|
||||
Search.get_genres_soundcloud(new_song, coll);
|
||||
var new_song = {
|
||||
added: added,
|
||||
guids: guids,
|
||||
id: id,
|
||||
now_playing: np,
|
||||
title: title,
|
||||
tags: tags,
|
||||
votes: votes,
|
||||
duration: duration,
|
||||
start: parseInt(start),
|
||||
end: parseInt(end),
|
||||
type: "video",
|
||||
source: source,
|
||||
added_by: username
|
||||
};
|
||||
if (source == "soundcloud") {
|
||||
if (
|
||||
arr.thumbnail.indexOf("https://i1.sndcdn.com") > -1 ||
|
||||
arr.thumbnail.indexOf("https://w1.sndcdn.com") > -1
|
||||
) {
|
||||
new_song.thumbnail = arr.thumbnail;
|
||||
} else {
|
||||
io.to(coll).emit("channel", {
|
||||
type: "added",
|
||||
value: new_song
|
||||
});
|
||||
if (source != "soundcloud")
|
||||
Search.get_correct_info(new_song, coll, true);
|
||||
else if (source == "soundcloud")
|
||||
Search.get_genres_soundcloud(new_song, coll);
|
||||
new_song.thumbnail =
|
||||
"https://img.youtube.com/vi/404_notfound/mqdefault.jpg";
|
||||
}
|
||||
db.collection("frontpage_lists").update(
|
||||
{ _id: coll },
|
||||
{
|
||||
$inc: { count: 1 },
|
||||
$set: { accessed: Functions.get_time() }
|
||||
},
|
||||
{ upsert: true },
|
||||
function(err, docs) {}
|
||||
);
|
||||
List.getNextSong(coll, undefined);
|
||||
}
|
||||
);
|
||||
socket.emit("toast", "addedsong");
|
||||
});
|
||||
} else {
|
||||
vote(coll, id, guid, socket);
|
||||
}
|
||||
}
|
||||
);
|
||||
} else {
|
||||
db.collection(coll).find({ id: id }, function(err, docs) {
|
||||
if (docs.length === 0) {
|
||||
var suggestedAdd = {
|
||||
added: Functions.get_time(),
|
||||
guids: [guid],
|
||||
id: id,
|
||||
now_playing: false,
|
||||
title: title,
|
||||
votes: 1,
|
||||
duration: duration,
|
||||
start: start,
|
||||
end: end,
|
||||
type: "suggested",
|
||||
tags: tags
|
||||
};
|
||||
var source = arr.source;
|
||||
if (source == "soundcloud") {
|
||||
suggestedAdd.thumbnail = arr.thumbnail;
|
||||
suggestedAdd.source = source;
|
||||
} else {
|
||||
suggestedAdd.source = "youtube";
|
||||
}
|
||||
db.collection(coll).update(
|
||||
{ id: id },
|
||||
{ $set: suggestedAdd },
|
||||
{ upsert: true },
|
||||
function(err, docs) {
|
||||
socket.emit("toast", "suggested");
|
||||
var toSend = suggestedAdd;
|
||||
toSend.guids = [];
|
||||
if (source == "soundcloud")
|
||||
toSend.thumbnail = arr.thumbnail;
|
||||
io.to(coll).emit("suggested", toSend);
|
||||
} else if (source == "youtube")
|
||||
new_song.thumbnail =
|
||||
"https://img.youtube.com/vi/" +
|
||||
new_song.id +
|
||||
"/mqdefault.jpg";
|
||||
db.collection(coll).update(
|
||||
{ id: id },
|
||||
new_song,
|
||||
{ upsert: true },
|
||||
function(err, docs) {
|
||||
new_song._id = "asd";
|
||||
if (np) {
|
||||
List.send_list(coll, undefined, false, true, false);
|
||||
db.collection(coll + "_settings").update(
|
||||
{ id: "config" },
|
||||
{ $set: { startTime: Functions.get_time() } }
|
||||
);
|
||||
List.send_play(coll, undefined);
|
||||
var thumbnail =
|
||||
arr.thumbnail != undefined
|
||||
? arr.thumbnail
|
||||
: undefined;
|
||||
Frontpage.update_frontpage(
|
||||
coll,
|
||||
id,
|
||||
title,
|
||||
thumbnail,
|
||||
arr.source
|
||||
);
|
||||
if (source != "soundcloud")
|
||||
Search.get_correct_info(new_song, coll, false);
|
||||
else if (source == "soundcloud")
|
||||
Search.get_genres_soundcloud(new_song, coll);
|
||||
} else {
|
||||
io.to(coll).emit("channel", {
|
||||
type: "added",
|
||||
value: new_song
|
||||
});
|
||||
if (source != "soundcloud")
|
||||
Search.get_correct_info(new_song, coll, true);
|
||||
else if (source == "soundcloud")
|
||||
Search.get_genres_soundcloud(new_song, coll);
|
||||
}
|
||||
db.collection("frontpage_lists").update(
|
||||
{ _id: coll },
|
||||
{
|
||||
$inc: { count: 1 },
|
||||
$set: { accessed: Functions.get_time() }
|
||||
},
|
||||
{ upsert: true },
|
||||
function(err, docs) {}
|
||||
);
|
||||
List.getNextSong(coll, undefined);
|
||||
}
|
||||
);
|
||||
socket.emit("toast", "addedsong");
|
||||
});
|
||||
} else {
|
||||
vote(coll, id, guid, socket);
|
||||
}
|
||||
);
|
||||
} else if (docs[0].now_playing === true) {
|
||||
socket.emit("toast", "alreadyplay");
|
||||
} else {
|
||||
if (conf[0].vote === false) vote(coll, id, guid, socket);
|
||||
else socket.emit("toast", "listhaspass");
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
);
|
||||
} else {
|
||||
db.collection(coll).find({ id: id }, function(err, docs) {
|
||||
if (docs.length === 0) {
|
||||
var suggestedAdd = {
|
||||
added: Functions.get_time(),
|
||||
guids: [guid],
|
||||
id: id,
|
||||
now_playing: false,
|
||||
title: title,
|
||||
votes: 1,
|
||||
duration: duration,
|
||||
start: start,
|
||||
end: end,
|
||||
type: "suggested",
|
||||
tags: tags,
|
||||
added_by: username
|
||||
};
|
||||
var source = arr.source;
|
||||
if (source == "soundcloud") {
|
||||
suggestedAdd.thumbnail = arr.thumbnail;
|
||||
suggestedAdd.source = source;
|
||||
} else {
|
||||
suggestedAdd.source = "youtube";
|
||||
}
|
||||
db.collection(coll).update(
|
||||
{ id: id },
|
||||
{ $set: suggestedAdd },
|
||||
{ upsert: true },
|
||||
function(err, docs) {
|
||||
socket.emit("toast", "suggested");
|
||||
var toSend = suggestedAdd;
|
||||
toSend.guids = [];
|
||||
if (source == "soundcloud")
|
||||
toSend.thumbnail = arr.thumbnail;
|
||||
io.to(coll).emit("suggested", toSend);
|
||||
if (source != "soundcloud")
|
||||
Search.get_correct_info(suggestedAdd, coll, false);
|
||||
else if (source == "soundcloud")
|
||||
Search.get_genres_soundcloud(suggestedAdd, coll);
|
||||
}
|
||||
);
|
||||
} else if (docs[0].now_playing === true) {
|
||||
socket.emit("toast", "alreadyplay");
|
||||
} else {
|
||||
if (conf[0].vote === false) vote(coll, id, guid, socket);
|
||||
else socket.emit("toast", "listhaspass");
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
} else {
|
||||
if (
|
||||
(arr.hasOwnProperty("offsiteAdd") && !arr.offsiteAdd) ||
|
||||
|
||||
@@ -244,9 +244,7 @@ function conf_function(params, coll, guid, offline, socket) {
|
||||
var adminpass = params.adminpass;
|
||||
var skipping = params.skipping;
|
||||
var shuffling = params.shuffling;
|
||||
|
||||
var userpass = Functions.decrypt_string(params.userpass);
|
||||
|
||||
if (
|
||||
(!params.userpass_changed && frontpage) ||
|
||||
(params.userpass_changed && userpass == "")
|
||||
|
||||
82
server/pm2.js
Normal file
82
server/pm2.js
Normal file
@@ -0,0 +1,82 @@
|
||||
var cluster = require("cluster"),
|
||||
net = require("net"),
|
||||
path = require("path"),
|
||||
//publicPath = path.join(__dirname, 'public'),
|
||||
http = require("http"),
|
||||
port = 8080,
|
||||
//farmhash = require('farmhash'),
|
||||
uniqid = require("uniqid"),
|
||||
num_processes = require("os").cpus().length;
|
||||
|
||||
publicPath = path.join(__dirname, "public");
|
||||
pathThumbnails = __dirname;
|
||||
|
||||
var redis = require("redis");
|
||||
var client = redis.createClient({ host: "localhost", port: 6379 });
|
||||
|
||||
startSingle(true, true);
|
||||
|
||||
function startSingle(clustered, redis_enabled) {
|
||||
var server;
|
||||
var client = require("./apps/client.js");
|
||||
try {
|
||||
var cert_config = require(path.join(
|
||||
path.join(__dirname, "config"),
|
||||
"cert_config.js"
|
||||
));
|
||||
var fs = require("fs");
|
||||
var privateKey = fs.readFileSync(cert_config.privateKey).toString();
|
||||
var certificate = fs.readFileSync(cert_config.certificate).toString();
|
||||
var ca = fs.readFileSync(cert_config.ca).toString();
|
||||
var credentials = {
|
||||
key: privateKey,
|
||||
cert: certificate,
|
||||
ca: ca
|
||||
};
|
||||
var https = require("https");
|
||||
server = https.Server(credentials, routingFunction);
|
||||
} catch (err) {
|
||||
console.log("Starting without https (probably on localhost)");
|
||||
server = http.createServer(routingFunction);
|
||||
}
|
||||
|
||||
server.listen(port, onListen);
|
||||
|
||||
var socketIO = client.socketIO;
|
||||
|
||||
var redis = require("socket.io-redis");
|
||||
try {
|
||||
socketIO.adapter(redis({ host: "localhost", port: 6379 }));
|
||||
} catch (e) {
|
||||
console.log("No redis-server to connect to..");
|
||||
}
|
||||
socketIO.listen(server);
|
||||
}
|
||||
|
||||
function onListen() {
|
||||
console.log("Started with pid [" + process.pid + "]");
|
||||
}
|
||||
|
||||
function routingFunction(req, res, next) {
|
||||
var client = require("./apps/client.js");
|
||||
var admin = require("./apps/admin.js");
|
||||
try {
|
||||
var url = req.headers["x-forwarded-host"]
|
||||
? req.headers["x-forwarded-host"]
|
||||
: req.headers.host.split(":")[0];
|
||||
var subdomain = req.headers["x-forwarded-host"]
|
||||
? req.headers["x-forwarded-host"].split(".")
|
||||
: req.headers.host.split(":")[0].split(".");
|
||||
|
||||
if (subdomain.length > 1 && subdomain[0] == "admin") {
|
||||
admin(req, res, next);
|
||||
} else {
|
||||
client(req, res, next);
|
||||
}
|
||||
} catch (e) {
|
||||
console.log("Bad request for " + req.headers.host + req.url, e);
|
||||
res.statusCode = 500;
|
||||
res.write("Bad request"); //write a response to the client
|
||||
res.end(); //end the response
|
||||
}
|
||||
}
|
||||
@@ -48,6 +48,10 @@ nav ul li.active {
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.full-height {
|
||||
height:100vh;
|
||||
}
|
||||
|
||||
* {
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||
-moz-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||
|
||||
@@ -1273,7 +1273,7 @@ margin:-1px;
|
||||
cursor: default;
|
||||
display: inline;
|
||||
font-size: 50px;
|
||||
font-weight: 100;
|
||||
/*font-weight: 100;*/
|
||||
height: auto;
|
||||
line-height: 90.069229px;
|
||||
text-align: center;
|
||||
@@ -1384,7 +1384,7 @@ margin:-1px;
|
||||
display: inline;
|
||||
/* font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; */
|
||||
font-size: 18px;
|
||||
font-weight: 300;
|
||||
/*font-weight: 300;*/
|
||||
height: auto;
|
||||
/*line-height: 24.2857151031494px;*/
|
||||
text-align: center;
|
||||
@@ -1539,6 +1539,8 @@ margin:-1px;
|
||||
|
||||
.channel-finder .input-field {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-left: 0px !important;
|
||||
width: max-content !important;
|
||||
justify-content: center;
|
||||
@@ -1552,7 +1554,9 @@ margin:-1px;
|
||||
.channel-finder .input-field .prefix {
|
||||
color: white;
|
||||
font-size: 17px;
|
||||
/*margin-left: -215px;*/
|
||||
position: initial;
|
||||
margin-right: -45px;
|
||||
margin-bottom: 9px;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
|
||||
@@ -3,10 +3,6 @@ var Channel = {
|
||||
if (window.location.hash == "#small" || inIframe()) {
|
||||
small_player = true;
|
||||
document.querySelector("footer").style.display = "none";
|
||||
//addJoinBox();
|
||||
//hideAllExtra();
|
||||
//document.querySelectorAll(".tab.col.s3")[1].remove();
|
||||
//document.querySelectorAll(".tab.col.s3")[1].remove();
|
||||
}
|
||||
if (client) {
|
||||
Helper.addClass(".tabs", "hide");
|
||||
@@ -25,12 +21,7 @@ var Channel = {
|
||||
Helper.addClass(".control-list", "client-control-list");
|
||||
} else {
|
||||
if (!api_key.hasOwnProperty("soundcloud")) soundcloud_enabled = false;
|
||||
else {
|
||||
/*SC.initialize({
|
||||
client_id: api_key.soundcloud
|
||||
}, function() {
|
||||
});*/
|
||||
}
|
||||
|
||||
if (cast_ready_connect || chromecastAvailable || chromecastReady) {
|
||||
Helper.addClass(".volume-container", "volume-container-cast");
|
||||
}
|
||||
@@ -295,10 +286,13 @@ var Channel = {
|
||||
|
||||
if (!client) {
|
||||
if (!Helper.mobilecheck()) {
|
||||
var port = window.location.port;
|
||||
if (port != "") port = ":" + port;
|
||||
var shareCodeUrl =
|
||||
window.location.protocol +
|
||||
"//client." +
|
||||
window.location.hostname +
|
||||
port +
|
||||
"/r/" +
|
||||
btoa(encodeURIComponent(chan.toLowerCase()));
|
||||
document
|
||||
@@ -312,18 +306,11 @@ var Channel = {
|
||||
"#channel-name-join",
|
||||
"client." +
|
||||
window.location.hostname +
|
||||
port +
|
||||
"/" +
|
||||
encodeURIComponent(chan.toLowerCase())
|
||||
);
|
||||
} /*else if(small_player) {
|
||||
document.querySelector("#channel-share-modal .modal-content").innerHTML = "<p>To listen to this channel with more features, go to</p><p>https://zoff.me/" + encodeURIComponent(chan.toLowerCase()) + "</p><img src='/assets/images/favicon.png' height='100' width='100' alt='circle-logo-zoff'>";
|
||||
//M.Modal.getInstance(document.getElementById("channel-share-modal")).open();
|
||||
if(!Helper.mobilecheck()) {
|
||||
setTimeout(function() {
|
||||
M.Modal.getInstance(document.getElementById("channel-share-modal")).close();
|
||||
}, 10000);
|
||||
}
|
||||
}*/
|
||||
}
|
||||
} else {
|
||||
Helper.removeElement(".video-container");
|
||||
Helper.removeElement(".offline-panel");
|
||||
@@ -435,24 +422,6 @@ var Channel = {
|
||||
position: "top",
|
||||
html: "Cast Zoff to TV"
|
||||
});
|
||||
|
||||
/*$("#color_embed").spectrum({
|
||||
color: "#808080",
|
||||
change: function(c) {
|
||||
color = c.toHexString().substring(1); // #ff0000
|
||||
document.getElementById("embed-area").value = embed_code(embed_autoplay, embed_width, embed_height, color);
|
||||
},
|
||||
appendTo: "#embed",
|
||||
containerClassName: 'polyfill-color z-depth-4',
|
||||
show: function(color) {
|
||||
},
|
||||
});*/
|
||||
|
||||
/*Helper.addClass(".sp-choose", "hide");
|
||||
Helper.addClass(".sp-cancel", "btn-flat waves-effect waves-red");
|
||||
Helper.removeClass(".sp-cancel", "sp-cancel");
|
||||
document.getElementsByClassName("sp-button-container")[0].insertAdjacentHTML("beforeend", "<a href='#' class='btn-flat waves-effect waves-green sp-choose-link'>CHOOSE</a>");
|
||||
*/
|
||||
}
|
||||
|
||||
addListener("click", ".sp-choose-link", function(e) {
|
||||
@@ -708,10 +677,6 @@ var Channel = {
|
||||
channel: add + chan.toLowerCase()
|
||||
});
|
||||
} else if (url_split[3] === "") {
|
||||
/*if(client) {
|
||||
var host = window.location.hostname.split(".");
|
||||
window.location.hostname = host[host.length -1];
|
||||
}*/
|
||||
Admin.display_logged_out();
|
||||
if (hostMode) {
|
||||
Helper.removeClass("#main-row", "fullscreened");
|
||||
|
||||
@@ -299,6 +299,9 @@ var Helper = {
|
||||
var this_element = M.Tooltip.getInstance(elem);
|
||||
if (this_element != undefined) this_element.destroy();
|
||||
} else {
|
||||
try {
|
||||
elem.removeAttribute("title");
|
||||
} catch (e) {}
|
||||
M.Tooltip.init(elem, options);
|
||||
}
|
||||
} else {
|
||||
@@ -308,6 +311,9 @@ var Helper = {
|
||||
var this_element = M.Tooltip.getInstance(elem);
|
||||
if (this_element != undefined) this_element.destroy();
|
||||
} else {
|
||||
try {
|
||||
elements[i].removeAttribute("title");
|
||||
} catch (e) {}
|
||||
M.Tooltip.init(elements[i], options);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -13,11 +13,7 @@ var Hostcontroller = {
|
||||
Hostcontroller.old_id = id;
|
||||
}
|
||||
var codeURL =
|
||||
window.location.protocol +
|
||||
"//remote." +
|
||||
window.location.hostname +
|
||||
"/" +
|
||||
id;
|
||||
window.location.protocol + "//remote." + window.location.host + "/" + id;
|
||||
if (embed) {
|
||||
if (window.parentWindow && window.parentOrigin) {
|
||||
window.parentWindow.postMessage(
|
||||
|
||||
@@ -607,7 +607,14 @@ var Player = {
|
||||
}
|
||||
try {
|
||||
if (Player.player.getVideoUrl().indexOf(id) > -1) {
|
||||
Player.player.seekTo(seekTo);
|
||||
if (
|
||||
!(
|
||||
seekTo - 5 < Player.player.getCurrentTime() &&
|
||||
seekTo + 5 > Player.player.getCurrentTime()
|
||||
)
|
||||
) {
|
||||
Player.player.seekTo(seekTo);
|
||||
}
|
||||
} else {
|
||||
Player.player.loadVideoById({
|
||||
videoId: id,
|
||||
|
||||
@@ -32,11 +32,8 @@ window.addEventListener(
|
||||
M.Modal.init(document.getElementById("about"));
|
||||
M.Modal.init(document.getElementById("contact"));
|
||||
M.Modal.init(document.getElementById("help"));
|
||||
|
||||
if (window.location.hostname == "remote.zoff.me") add = "https://zoff.me";
|
||||
else add = "localhost";
|
||||
socket = io.connect(
|
||||
add,
|
||||
window.location.protocol + "//" + window.location.host,
|
||||
connection_options
|
||||
);
|
||||
socket.on("update_required", function() {
|
||||
|
||||
@@ -36,10 +36,6 @@ var Suggestions = {
|
||||
var video_title = params.title;
|
||||
var date = new Date(params.added * 1000);
|
||||
var addedTime =
|
||||
Helper.pad(date.getHours()) +
|
||||
":" +
|
||||
Helper.pad(date.getMinutes()) +
|
||||
" - " +
|
||||
Helper.pad(date.getDate()) +
|
||||
"." +
|
||||
Helper.pad(date.getMonth()) +
|
||||
@@ -53,6 +49,9 @@ var Suggestions = {
|
||||
votes: addedTime,
|
||||
extra: "Added"
|
||||
};
|
||||
if (params.added_by != undefined) {
|
||||
toSend.extra += " by " + params.added_by;
|
||||
}
|
||||
if (params.source) toSend.source = params.source;
|
||||
else {
|
||||
toSend.source = "youtube";
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
<!-- Compiled and minified JavaScript -->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="https://zoff.me/assets/css/style.css" title="Default" />
|
||||
<link rel="stylesheet" type="text/css" href="https://zoff.me/assets/dist/style.css" title="Default" />
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.1.0/socket.io.slim.js"></script>
|
||||
<style>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<main class="container valign-wrapper row">
|
||||
<main class="container valign-wrapper row full-height">
|
||||
<div class="center-align col m6 offset-m3">
|
||||
<img src="https://zoff.me/assets/images/favicon.png" width="100" height="100" alt="image" />
|
||||
<form action="/login" id="login_form" method="POST">
|
||||
|
||||
@@ -43,20 +43,20 @@
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Like what we made? Help us by donating (a) beer!" class="waves-effect waves-light btn orange light-blue share donate-button">
|
||||
<a class="waves-effect waves-light btn orange share donate-button">
|
||||
<i class="material-icons left footer-button-icon">payment</i>Donate
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://github.com/users/kasperrt/sponsorship" target="_blank" class="waves-effect waves-light btn pink accent-1 share">
|
||||
<i class="material-icons left footer-button-icon">favorite</i>Sponsor
|
||||
</a>
|
||||
</li>
|
||||
<li class="google-play-image-list">
|
||||
<a class="android-image-link" href="https://play.google.com/store/apps/details?id=zoff.me.zoff&hl=no&pcampaignid=MKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1">
|
||||
<img alt="Get it on Google Play" src="https://play.google.com/intl/en_us/badges/images/generic/en_badge_web_generic.png"/>
|
||||
</a>
|
||||
</li>
|
||||
<li class="apple-appstore-image-list">
|
||||
<a class="apple-image-link" href="https://itunes.apple.com/us/app/zoff/id1402037061?ls=1&mt=8">
|
||||
<img alt="Get it on the AppStore" src="/assets/images/appstore.svg"/>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -13,7 +13,6 @@ var Functions = require(pathThumbnails + "/handlers/functions.js");
|
||||
var Frontpage = require(pathThumbnails + "/handlers/frontpage.js");
|
||||
|
||||
var db = require(pathThumbnails + "/handlers/db.js");
|
||||
//var db = require(pathThumbnails + '/handlers/db.js');
|
||||
|
||||
try {
|
||||
google = require(path.join(
|
||||
@@ -168,10 +167,6 @@ function root(req, res, next) {
|
||||
var subdomain = req.headers["x-forwarded-host"]
|
||||
? req.headers["x-forwarded-host"].split(".")
|
||||
: req.headers.host.split(":")[0].split(".");
|
||||
/*if(url != "zoff.me" && url != "admin.localhost" && url != "admin.zoff.me" && url != "remote.zoff.me" && url != "fb.zoff.me" && url != "remote.localhost" && url != "localhost") {
|
||||
res.redirect("https://zoff.me");
|
||||
return;
|
||||
}*/
|
||||
if (subdomain[0] == "remote") {
|
||||
var data = {
|
||||
year: year,
|
||||
@@ -228,7 +223,6 @@ function root(req, res, next) {
|
||||
}
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
//res.redirect("https://zoff.me");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -240,10 +234,6 @@ function channel(req, res, next) {
|
||||
var subdomain = req.headers["x-forwarded-host"]
|
||||
? req.headers["x-forwarded-host"].split(".")
|
||||
: req.headers.host.split(":")[0].split(".");
|
||||
/*if(url != "zoff.me" && url != "admin.localhost" && url != "admin.zoff.me" && url != "remote.zoff.me" && url != "fb.zoff.me" && url != "remote.localhost" && url != "localhost") {
|
||||
res.redirect("https://zoff.me");
|
||||
return;
|
||||
}*/
|
||||
if (subdomain[0] == "remote") {
|
||||
var data = {
|
||||
year: year,
|
||||
@@ -264,22 +254,9 @@ function channel(req, res, next) {
|
||||
} else {
|
||||
if (req.params.channel_name == "o_callback") {
|
||||
res.redirect("/api/oauth");
|
||||
//res.sendFile(path.join(pathThumbnails, '/public/assets/html/callback.html'));
|
||||
} else {
|
||||
/*db.collection("frontpage_lists").find({"_id": Functions.encodeChannelName(req.params.channel_name)}, function(err, docs) {
|
||||
console.log(docs);
|
||||
var og_image = "https://zoff.me/assets/images/small-square.jpg";
|
||||
if(docs.length == 1) {
|
||||
if(docs[0].hasOwnProperty("thumbnail")) {
|
||||
if(docs[0].thumbnail.indexOf("mqdefault.jpg") > -1) docs[0].thumbnail = docs[0].thumbnail.replace("mqdefault", "hqdefault");
|
||||
og_image = docs[0].thumbnail;
|
||||
} else {
|
||||
og_image = "https://img.youtube.com/vi/" + docs[0].id + "/hqdefault.jpg";
|
||||
}
|
||||
}*/
|
||||
var data = {
|
||||
title: "404: File Not Found",
|
||||
//list_name: capitalizeFirstLetter(Functions.decodeChannelName(req.params.channel_name)),
|
||||
list_name: capitalizeFirstLetter(req.params.channel_name),
|
||||
year: year,
|
||||
javascript_file: "main.min.js",
|
||||
@@ -296,11 +273,7 @@ function channel(req, res, next) {
|
||||
if (subdomain[0] == "client") {
|
||||
data.client = true;
|
||||
}
|
||||
if (req.params.channel_name == "404") {
|
||||
res.status(404);
|
||||
}
|
||||
res.render("layouts/client/channel", data);
|
||||
//});
|
||||
}
|
||||
}
|
||||
} catch (e) {
|
||||
|
||||
Reference in New Issue
Block a user