sync/www/js/util.js

3361 lines
105 KiB
JavaScript
Raw Normal View History

function makeAlert(title, text, klass, textOnly) {
2013-06-11 23:51:00 +00:00
if(!klass) {
klass = "alert-info";
}
2014-01-26 20:15:50 +00:00
var wrap = $("<div/>").addClass("col-md-12");
2013-06-11 23:51:00 +00:00
var al = $("<div/>").addClass("alert")
.addClass(klass)
2014-01-26 20:15:50 +00:00
.appendTo(wrap);
textOnly ? al.text(text) : al.html(text) ;
2013-06-11 23:51:00 +00:00
$("<br/>").prependTo(al);
$("<strong/>").text(title).prependTo(al);
$("<button/>").addClass("close pull-right").html("&times;")
.click(function() {
2014-01-14 06:52:56 +00:00
al.hide("fade", function() {
2014-01-26 20:15:50 +00:00
wrap.remove();
2013-06-11 23:51:00 +00:00
});
})
.prependTo(al);
2014-01-26 20:15:50 +00:00
return wrap;
2013-06-11 23:51:00 +00:00
}
function formatURL(data) {
switch(data.type) {
case "yt":
return "http://youtube.com/watch?v=" + data.id;
case "vi":
return "http://vimeo.com/" + data.id;
case "dm":
return "http://dailymotion.com/video/" + data.id;
2016-07-08 06:32:09 +00:00
case "vm":
return "https://vid.me/" + data.id;
2013-06-11 23:51:00 +00:00
case "sc":
return data.id;
case "li":
return "http://livestream.com/" + data.id;
case "tw":
return "http://twitch.tv/" + data.id;
case "rt":
return data.id;
case "jw":
return data.id;
case "im":
return "http://imgur.com/a/" + data.id;
case "us":
return "http://ustream.tv/" + data.id;
2013-12-19 04:50:19 +00:00
case "gd":
return "https://docs.google.com/file/d/" + data.id;
2014-06-04 04:21:00 +00:00
case "fi":
return data.id;
2015-01-23 05:21:31 +00:00
case "hb":
return "http://hitbox.tv/" + data.id;
2016-08-09 03:34:03 +00:00
case "hl":
return data.id;
2016-08-03 05:35:00 +00:00
case "sb":
return "https://streamable.com/" + data.id;
2013-06-11 23:51:00 +00:00
default:
return "#";
}
}
2013-08-07 21:55:39 +00:00
function findUserlistItem(name) {
var children = $("#userlist .userlist_item");
if(children.length == 0)
return null;
name = name.toLowerCase();
// WARNING: Incoming hax because of jQuery and bootstrap bullshit
var keys = Object.keys(children);
for(var k in keys) {
var i = keys[k];
if(isNaN(parseInt(i))) {
continue;
}
var child = children[i];
if($(child.children[1]).text().toLowerCase() == name)
2013-08-07 21:55:39 +00:00
return $(child);
}
return null;
}
2013-11-09 04:12:17 +00:00
function formatUserlistItem(div) {
var data = {
name: div.data("name") || "",
rank: div.data("rank"),
profile: div.data("profile") || { image: "", text: ""},
2013-11-09 18:33:18 +00:00
leader: div.data("leader") || false,
2013-11-15 01:50:17 +00:00
icon: div.data("icon") || false,
afk: div.data("afk") || false
2013-11-09 04:12:17 +00:00
};
2013-06-11 23:51:00 +00:00
var name = $(div.children()[1]);
name.removeClass();
name.css("font-style", "");
name.addClass(getNameColor(data.rank));
div.find(".profile-box").remove();
if (data.afk) {
div.addClass("userlist_afk");
} else {
div.removeClass("userlist_afk");
}
if (div.data("meta") && div.data("meta").muted) {
div.addClass("userlist_muted");
} else {
div.removeClass("userlist_muted");
}
if (div.data("meta") && div.data("meta").smuted) {
div.addClass("userlist_smuted");
} else {
div.removeClass("userlist_smuted");
}
var profile = null;
/*
* 2015-10-19
* Prevent rendering unnecessary duplicates of the profile box when
* a user's status changes.
*/
name.unbind("mouseenter");
name.unbind("mousemove");
name.unbind("mouseleave");
2013-06-11 23:51:00 +00:00
name.mouseenter(function(ev) {
if (profile)
profile.remove();
2014-11-11 21:48:34 +00:00
var top = ev.clientY + 5;
var horiz = ev.clientX;
2013-06-11 23:51:00 +00:00
profile = $("<div/>")
2014-02-27 23:26:49 +00:00
.addClass("profile-box linewrap")
2014-01-26 00:12:49 +00:00
.css("top", top + "px")
2013-06-11 23:51:00 +00:00
.appendTo(div);
2014-11-11 21:48:34 +00:00
2013-06-11 23:51:00 +00:00
if(data.profile.image) {
$("<img/>").addClass("profile-image")
.attr("src", data.profile.image)
.appendTo(profile);
}
$("<strong/>").text(data.name).appendTo(profile);
2014-01-08 04:47:00 +00:00
var meta = div.data("meta") || {};
if (meta.ip) {
$("<br/>").appendTo(profile);
$("<em/>").text(meta.ip).appendTo(profile);
}
if (meta.aliases) {
2014-01-26 06:13:33 +00:00
$("<br/>").appendTo(profile);
$("<em/>").text("aliases: " + meta.aliases.join(", ")).appendTo(profile);
2014-01-08 04:47:00 +00:00
}
2014-01-26 06:13:33 +00:00
$("<hr/>").css("margin-top", "5px").css("margin-bottom", "5px").appendTo(profile);
2013-06-11 23:51:00 +00:00
$("<p/>").text(data.profile.text).appendTo(profile);
2014-11-11 21:48:34 +00:00
if ($("body").hasClass("synchtube")) horiz -= profile.outerWidth();
profile.css("left", horiz + "px")
2013-06-11 23:51:00 +00:00
});
name.mousemove(function(ev) {
2014-11-11 21:48:34 +00:00
var top = ev.clientY + 5;
var horiz = ev.clientX;
if ($("body").hasClass("synchtube")) horiz -= profile.outerWidth();
profile.css("left", horiz + "px")
.css("top", top + "px");
2013-06-11 23:51:00 +00:00
});
name.mouseleave(function() {
profile.remove();
});
2013-12-19 04:50:19 +00:00
var icon = div.children()[0];
icon.innerHTML = "";
2013-06-11 23:51:00 +00:00
// denote current leader with a star
if(data.leader) {
2013-12-19 04:50:19 +00:00
$("<span/>").addClass("glyphicon glyphicon-star-empty").appendTo(icon);
2013-06-11 23:51:00 +00:00
}
2013-11-15 01:50:17 +00:00
if(data.afk) {
2013-06-11 23:51:00 +00:00
name.css("font-style", "italic");
2013-12-19 04:50:19 +00:00
$("<span/>").addClass("glyphicon glyphicon-time").appendTo(icon);
2013-06-11 23:51:00 +00:00
}
2013-11-09 18:33:18 +00:00
if (data.icon) {
2014-01-19 02:18:00 +00:00
$("<span/>").addClass("glyphicon " + data.icon).prependTo(icon);
2013-06-25 14:18:33 +00:00
}
2013-06-11 23:51:00 +00:00
}
function getNameColor(rank) {
if(rank >= Rank.Siteadmin)
return "userlist_siteadmin";
2013-06-18 14:46:28 +00:00
else if(rank >= Rank.Admin)
2013-06-11 23:51:00 +00:00
return "userlist_owner";
else if(rank >= Rank.Moderator)
return "userlist_op";
else if(rank == Rank.Guest)
return "userlist_guest";
else
return "";
}
2013-11-09 04:12:17 +00:00
function addUserDropdown(entry) {
var name = entry.data("name"),
rank = entry.data("rank"),
leader = entry.data("leader"),
meta = entry.data("meta") || {};
2013-06-11 23:51:00 +00:00
entry.find(".user-dropdown").remove();
var menu = $("<div/>")
.addClass("user-dropdown")
.appendTo(entry)
.hide();
2013-06-11 23:51:00 +00:00
$("<strong/>").text(name).appendTo(menu);
$("<br/>").appendTo(menu);
2014-01-12 05:55:52 +00:00
var btngroup = $("<div/>").addClass("btn-group-vertical").appendTo(menu);
2013-08-31 03:12:28 +00:00
/* ignore button */
2014-01-12 05:55:52 +00:00
var ignore = $("<button/>").addClass("btn btn-xs btn-default")
.appendTo(btngroup)
.click(function () {
if(IGNORED.indexOf(name) == -1) {
ignore.text("Unignore User");
IGNORED.push(name);
} else {
ignore.text("Ignore User");
IGNORED.splice(IGNORED.indexOf(name), 1);
}
});
2013-06-25 14:06:01 +00:00
if(IGNORED.indexOf(name) == -1) {
ignore.text("Ignore User");
} else {
2013-06-25 14:06:01 +00:00
ignore.text("Unignore User");
}
2014-02-15 07:40:14 +00:00
/* pm button */
2014-02-15 18:29:05 +00:00
if (name !== CLIENT.name) {
var pm = $("<button/>").addClass("btn btn-xs btn-default")
.text("Private Message")
.appendTo(btngroup)
.click(function () {
initPm(name).find(".panel-heading").click();
menu.hide();
});
}
2014-02-15 07:40:14 +00:00
2014-01-23 22:03:50 +00:00
/* give/remove leader (moderator+ only) */
if (hasPermission("leaderctl")) {
2014-01-12 05:55:52 +00:00
var ldr = $("<button/>").addClass("btn btn-xs btn-default")
.appendTo(btngroup);
if(leader) {
ldr.text("Remove Leader");
ldr.click(function () {
socket.emit("assignLeader", {
name: ""
});
});
} else {
ldr.text("Give Leader");
ldr.click(function () {
2013-06-11 23:51:00 +00:00
socket.emit("assignLeader", {
name: name
});
});
}
}
/* kick button */
if(hasPermission("kick")) {
2014-01-12 05:55:52 +00:00
$("<button/>").addClass("btn btn-xs btn-default")
.text("Kick")
.click(function () {
2014-01-20 23:35:55 +00:00
var reason = prompt("Enter kick reason (optional)");
2015-02-22 02:34:25 +00:00
if (reason === null) {
return;
}
socket.emit("chatMsg", {
2014-05-21 03:11:40 +00:00
msg: "/kick " + name + " " + reason,
meta: {}
2013-06-11 23:51:00 +00:00
});
})
2014-01-12 05:55:52 +00:00
.appendTo(btngroup);
2013-06-11 23:51:00 +00:00
}
/* mute buttons */
if (hasPermission("mute")) {
var mute = $("<button/>").addClass("btn btn-xs btn-default")
.text("Mute")
.click(function () {
socket.emit("chatMsg", {
2014-05-21 03:11:40 +00:00
msg: "/mute " + name,
meta: {}
});
})
.appendTo(btngroup);
var smute = $("<button/>").addClass("btn btn-xs btn-default")
.text("Shadow Mute")
.click(function () {
socket.emit("chatMsg", {
2014-05-21 03:11:40 +00:00
msg: "/smute " + name,
meta: {}
});
})
.appendTo(btngroup);
var unmute = $("<button/>").addClass("btn btn-xs btn-default")
.text("Unmute")
.click(function () {
socket.emit("chatMsg", {
2014-05-21 03:11:40 +00:00
msg: "/unmute " + name,
meta: {}
});
})
.appendTo(btngroup);
if (meta.muted) {
mute.hide();
smute.hide();
} else {
unmute.hide();
}
}
/* ban buttons */
2013-06-11 23:51:00 +00:00
if(hasPermission("ban")) {
2014-01-12 05:55:52 +00:00
$("<button/>").addClass("btn btn-xs btn-default")
2013-06-11 23:51:00 +00:00
.text("Name Ban")
.click(function () {
2014-01-20 23:35:55 +00:00
var reason = prompt("Enter ban reason (optional)");
2015-02-22 02:34:25 +00:00
if (reason === null) {
return;
}
2013-06-11 23:51:00 +00:00
socket.emit("chatMsg", {
2014-05-21 03:11:40 +00:00
msg: "/ban " + name + " " + reason,
meta: {}
2013-06-11 23:51:00 +00:00
});
})
2014-01-12 05:55:52 +00:00
.appendTo(btngroup);
$("<button/>").addClass("btn btn-xs btn-default")
2013-06-11 23:51:00 +00:00
.text("IP Ban")
.click(function () {
2014-01-20 23:35:55 +00:00
var reason = prompt("Enter ban reason (optional)");
2015-02-22 02:34:25 +00:00
if (reason === null) {
return;
}
2013-06-11 23:51:00 +00:00
socket.emit("chatMsg", {
2014-05-21 03:11:40 +00:00
msg: "/ipban " + name + " " + reason,
meta: {}
2013-06-11 23:51:00 +00:00
});
})
2014-01-12 05:55:52 +00:00
.appendTo(btngroup);
2013-06-11 23:51:00 +00:00
}
2014-04-30 22:40:16 +00:00
var showdd = function(ev) {
// Workaround for Chrome
if (ev.shiftKey) return true;
2013-06-11 23:51:00 +00:00
ev.preventDefault();
if(menu.css("display") == "none") {
$(".user-dropdown").hide();
$(document).bind("mouseup.userlist-ddown", function (e) {
if (menu.has(e.target).length === 0 &&
entry.parent().has(e.target).length === 0) {
menu.hide();
$(document).unbind("mouseup.userlist-ddown");
}
});
2013-06-11 23:51:00 +00:00
menu.show();
2014-02-28 06:23:41 +00:00
menu.css("top", entry.position().top);
} else {
2013-06-11 23:51:00 +00:00
menu.hide();
}
return false;
2014-04-30 22:40:16 +00:00
};
entry.contextmenu(showdd);
entry.click(showdd);
2013-06-11 23:51:00 +00:00
}
function calcUserBreakdown() {
var breakdown = {
"Site Admins": 0,
"Channel Admins": 0,
"Moderators": 0,
"Regular Users": 0,
"Guests": 0,
2013-09-04 22:47:24 +00:00
"Anonymous": 0,
"AFK": 0
};
2013-09-04 22:47:24 +00:00
var total = 0;
$("#userlist .userlist_item").each(function (index, item) {
2013-11-09 04:12:17 +00:00
var data = {
rank: $(item).data("rank")
};
2013-11-16 05:44:53 +00:00
if(data.rank >= 255)
breakdown["Site Admins"]++;
else if(data.rank >= 3)
breakdown["Channel Admins"]++;
else if(data.rank == 2)
breakdown["Moderators"]++;
else if(data.rank >= 1)
breakdown["Regular Users"]++;
else
breakdown["Guests"]++;
2013-09-04 22:47:24 +00:00
total++;
if($(item).data("afk"))
breakdown["AFK"]++;
});
2013-08-31 03:12:28 +00:00
2013-09-04 22:47:24 +00:00
breakdown["Anonymous"] = CHANNEL.usercount - total;
return breakdown;
}
function sortUserlist() {
var slice = Array.prototype.slice;
var list = slice.call($("#userlist .userlist_item"));
list.sort(function (a, b) {
2013-11-09 04:12:17 +00:00
var r1 = $(a).data("rank");
var r2 = $(b).data("rank");
2013-12-19 04:50:19 +00:00
var afk1 = $(a).find(".glyphicon-time").length > 0;
var afk2 = $(b).find(".glyphicon-time").length > 0;
var name1 = a.children[1].innerHTML.toLowerCase();
var name2 = b.children[1].innerHTML.toLowerCase();
if(USEROPTS.sort_afk) {
if(afk1 && !afk2)
return 1;
if(!afk1 && afk2)
return -1;
}
if(USEROPTS.sort_rank) {
if(r1 < r2)
return 1;
if(r1 > r2)
return -1;
}
return name1 === name2 ? 0 : (name1 < name2 ? -1 : 1);
});
list.forEach(function (item) {
$(item).detach();
});
list.forEach(function (item) {
$(item).appendTo($("#userlist"));
});
}
2013-06-11 23:51:00 +00:00
/* queue stuff */
2013-07-03 21:29:49 +00:00
function scrollQueue() {
var li = playlistFind(PL_CURRENT);
if(!li)
return;
li = $(li);
$("#queue").scrollTop(0);
var scroll = li.position().top - $("#queue").position().top;
$("#queue").scrollTop(scroll);
}
2013-06-29 22:09:20 +00:00
function makeQueueEntry(item, addbtns) {
var video = item.media;
2013-06-11 23:51:00 +00:00
var li = $("<li/>");
li.addClass("queue_entry");
2013-06-29 22:09:20 +00:00
li.addClass("pluid-" + item.uid);
li.data("uid", item.uid);
2013-06-11 23:51:00 +00:00
li.data("media", video);
2013-06-29 22:09:20 +00:00
li.data("temp", item.temp);
2013-06-11 23:51:00 +00:00
if(video.thumb) {
$("<img/>").attr("src", video.thumb.url)
.css("float", "left")
.css("clear", "both")
.appendTo(li);
}
var title = $("<a/>").addClass("qe_title").appendTo(li)
.text(video.title)
.attr("href", formatURL(video))
.attr("target", "_blank");
var time = $("<span/>").addClass("qe_time").appendTo(li);
time.text(video.duration);
var clear = $("<div/>").addClass("qe_clear").appendTo(li);
2013-06-29 22:09:20 +00:00
if(item.temp) {
2013-06-11 23:51:00 +00:00
li.addClass("queue_temp");
}
if(addbtns)
addQueueButtons(li);
return li;
}
2013-06-29 22:09:20 +00:00
function makeSearchEntry(video) {
var li = $("<li/>");
li.addClass("queue_entry");
li.data("media", video);
if(video.thumb) {
$("<img/>").attr("src", video.thumb.url)
.css("float", "left")
.css("clear", "both")
.appendTo(li);
}
var title = $("<a/>").addClass("qe_title").appendTo(li)
.text(video.title)
.attr("href", formatURL(video))
.attr("target", "_blank");
var time = $("<span/>").addClass("qe_time").appendTo(li);
time.text(video.duration);
var clear = $("<div/>").addClass("qe_clear").appendTo(li);
return li;
}
2013-06-11 23:51:00 +00:00
function addQueueButtons(li) {
li.find(".btn-group").remove();
var menu = $("<div/>").addClass("btn-group").appendTo(li);
// Play
if(hasPermission("playlistjump")) {
2013-12-19 04:50:19 +00:00
$("<button/>").addClass("btn btn-xs btn-default qbtn-play")
2013-12-19 17:14:48 +00:00
.html("<span class='glyphicon glyphicon-play'></span>Play")
2013-06-11 23:51:00 +00:00
.click(function() {
2013-06-29 22:09:20 +00:00
socket.emit("jumpTo", li.data("uid"));
2013-06-11 23:51:00 +00:00
})
.appendTo(menu);
}
// Queue next
2013-07-28 18:10:47 +00:00
if(hasPermission("playlistmove")) {
2013-12-19 04:50:19 +00:00
$("<button/>").addClass("btn btn-xs btn-default qbtn-next")
2013-12-19 17:14:48 +00:00
.html("<span class='glyphicon glyphicon-share-alt'></span>Queue Next")
2013-06-11 23:51:00 +00:00
.click(function() {
socket.emit("moveMedia", {
2013-06-29 22:09:20 +00:00
from: li.data("uid"),
2013-10-04 03:11:47 +00:00
after: PL_CURRENT
2013-06-11 23:51:00 +00:00
});
})
.appendTo(menu);
}
// Temp/Untemp
if(hasPermission("settemp")) {
2013-06-29 22:09:20 +00:00
var tempstr = li.data("temp")?"Make Permanent":"Make Temporary";
2013-12-19 04:50:19 +00:00
$("<button/>").addClass("btn btn-xs btn-default qbtn-tmp")
2013-12-19 17:14:48 +00:00
.html("<span class='glyphicon glyphicon-flag'></span>" + tempstr)
2013-06-11 23:51:00 +00:00
.click(function() {
socket.emit("setTemp", {
2013-06-29 22:09:20 +00:00
uid: li.data("uid"),
2013-07-09 17:11:44 +00:00
temp: !li.data("temp")
2013-06-11 23:51:00 +00:00
});
})
.appendTo(menu);
}
// Delete
if(hasPermission("playlistdelete")) {
2013-12-19 04:50:19 +00:00
$("<button/>").addClass("btn btn-xs btn-default qbtn-delete")
2013-12-19 17:14:48 +00:00
.html("<span class='glyphicon glyphicon-trash'></span>Delete")
2013-06-11 23:51:00 +00:00
.click(function() {
2013-06-29 22:09:20 +00:00
socket.emit("delete", li.data("uid"));
2013-06-11 23:51:00 +00:00
})
.appendTo(menu);
}
2013-06-20 21:15:41 +00:00
if(USEROPTS.qbtn_hide && !USEROPTS.qbtn_idontlikechange
|| menu.find(".btn").length == 0)
menu.hide();
2013-06-11 23:51:00 +00:00
// I DON'T LIKE CHANGE
if(USEROPTS.qbtn_idontlikechange) {
menu.addClass("pull-left");
menu.detach().prependTo(li);
menu.find(".btn").each(function() {
// Clear icon
2013-12-25 21:18:21 +00:00
var icon = $(this).find(".glyphicon");
$(this).html("");
icon.appendTo(this);
});
menu.find(".qbtn-play").addClass("btn-success");
menu.find(".qbtn-delete").addClass("btn-danger");
}
2013-06-20 21:15:41 +00:00
else if(menu.find(".btn").length != 0) {
2013-06-25 14:38:19 +00:00
li.unbind("contextmenu");
li.contextmenu(function(ev) {
// Allow shift+click to open context menu
// (Chrome workaround, works by default on Firefox)
if (ev.shiftKey) return true;
ev.preventDefault();
if(menu.css("display") == "none")
menu.show("blind");
else
menu.hide("blind");
return false;
});
}
2013-06-11 23:51:00 +00:00
}
function rebuildPlaylist() {
2013-06-25 03:33:00 +00:00
var qli = $("#queue li");
if(qli.length == 0)
return;
2013-06-27 02:44:48 +00:00
REBUILDING = Math.random() + "";
var r = REBUILDING;
2013-06-25 02:45:44 +00:00
var i = 0;
qli.each(function() {
var li = $(this);
2013-06-27 02:44:48 +00:00
(function(i, r) {
2013-06-25 14:38:19 +00:00
setTimeout(function() {
2013-06-27 02:44:48 +00:00
// Stop if another rebuild is running
if(REBUILDING != r)
return;
2013-06-25 14:38:19 +00:00
addQueueButtons(li);
if(i == qli.length - 1) {
scrollQueue();
2013-06-25 14:38:19 +00:00
REBUILDING = false;
}
}, 10*i);
2013-06-27 02:44:48 +00:00
})(i, r);
2013-06-25 02:45:44 +00:00
i++;
2013-06-11 23:51:00 +00:00
});
}
/* menus */
2013-08-31 17:37:37 +00:00
/* user settings menu */
2013-12-25 21:18:21 +00:00
function showUserOptions() {
if (CLIENT.rank < 2) {
$("a[href='#us-mod']").parent().hide();
} else {
$("a[href='#us-mod']").parent().show();
}
$("#us-theme").val(USEROPTS.theme);
$("#us-layout").val(USEROPTS.layout);
$("#us-no-channelcss").prop("checked", USEROPTS.ignore_channelcss);
$("#us-no-channeljs").prop("checked", USEROPTS.ignore_channeljs);
$("#us-synch").prop("checked", USEROPTS.synch);
2014-04-13 02:54:17 +00:00
$("#us-synch-accuracy").val(USEROPTS.sync_accuracy);
2013-12-25 21:18:21 +00:00
$("#us-wmode-transparent").prop("checked", USEROPTS.wmode_transparent);
$("#us-hidevideo").prop("checked", USEROPTS.hidevid);
$("#us-playlistbuttons").prop("checked", USEROPTS.qbtn_hide);
$("#us-oldbtns").prop("checked", USEROPTS.qbtn_idontlikechange);
2014-01-19 02:18:00 +00:00
$("#us-default-quality").val(USEROPTS.default_quality || "auto");
2013-12-25 21:18:21 +00:00
$("#us-chat-timestamp").prop("checked", USEROPTS.show_timestamps);
$("#us-sort-rank").prop("checked", USEROPTS.sort_rank);
$("#us-sort-afk").prop("checked", USEROPTS.sort_afk);
$("#us-blink-title").val(USEROPTS.blink_title);
$("#us-ping-sound").val(USEROPTS.boop);
2013-12-25 21:18:21 +00:00
$("#us-sendbtn").prop("checked", USEROPTS.chatbtn);
2014-10-24 04:21:44 +00:00
$("#us-no-emotes").prop("checked", USEROPTS.no_emotes);
2016-07-12 05:19:39 +00:00
$("#us-strip-image").prop("checked", USEROPTS.strip_image);
$("#us-chat-tab-method").val(USEROPTS.chat_tab_method);
2014-01-08 04:47:00 +00:00
2013-12-25 21:18:21 +00:00
$("#us-modflair").prop("checked", USEROPTS.modhat);
$("#us-shadowchat").prop("checked", USEROPTS.show_shadowchat);
2013-12-25 21:18:21 +00:00
formatScriptAccessPrefs();
2013-12-25 21:18:21 +00:00
$("a[href='#us-general']").click();
$("#useroptions").modal();
2013-06-11 23:51:00 +00:00
}
2013-12-25 21:18:21 +00:00
function saveUserOptions() {
USEROPTS.theme = $("#us-theme").val();
2014-01-30 04:50:14 +00:00
createCookie("cytube-theme", USEROPTS.theme, 1000);
2013-12-25 21:18:21 +00:00
USEROPTS.layout = $("#us-layout").val();
USEROPTS.ignore_channelcss = $("#us-no-channelcss").prop("checked");
USEROPTS.ignore_channeljs = $("#us-no-channeljs").prop("checked");
USEROPTS.secure_connection = $("#us-ssl").prop("checked");
USEROPTS.synch = $("#us-synch").prop("checked");
2014-04-13 02:54:17 +00:00
USEROPTS.sync_accuracy = parseFloat($("#us-synch-accuracy").val()) || 2;
2013-12-25 21:18:21 +00:00
USEROPTS.wmode_transparent = $("#us-wmode-transparent").prop("checked");
USEROPTS.hidevid = $("#us-hidevideo").prop("checked");
USEROPTS.qbtn_hide = $("#us-playlistbuttons").prop("checked");
USEROPTS.qbtn_idontlikechange = $("#us-oldbtns").prop("checked");
2014-01-19 02:18:00 +00:00
USEROPTS.default_quality = $("#us-default-quality").val();
2013-12-25 21:18:21 +00:00
USEROPTS.show_timestamps = $("#us-chat-timestamp").prop("checked");
USEROPTS.sort_rank = $("#us-sort-rank").prop("checked");
USEROPTS.sort_afk = $("#us-sort-afk").prop("checked");
USEROPTS.blink_title = $("#us-blink-title").val();
USEROPTS.boop = $("#us-ping-sound").val();
2013-12-25 21:18:21 +00:00
USEROPTS.chatbtn = $("#us-sendbtn").prop("checked");
2014-10-24 04:21:44 +00:00
USEROPTS.no_emotes = $("#us-no-emotes").prop("checked");
2016-07-12 05:19:39 +00:00
USEROPTS.strip_image = $("#us-strip-image").prop("checked");
USEROPTS.chat_tab_method = $("#us-chat-tab-method").val();
2013-12-25 21:18:21 +00:00
if (CLIENT.rank >= 2) {
USEROPTS.modhat = $("#us-modflair").prop("checked");
USEROPTS.show_shadowchat = $("#us-shadowchat").prop("checked");
2013-12-25 21:18:21 +00:00
}
storeOpts();
2014-01-30 04:50:14 +00:00
applyOpts();
2013-12-25 21:18:21 +00:00
}
function storeOpts() {
2013-06-11 23:51:00 +00:00
for(var key in USEROPTS) {
setOpt(key, USEROPTS[key]);
2013-06-11 23:51:00 +00:00
}
}
function applyOpts() {
2014-01-30 04:50:14 +00:00
if ($("#usertheme").attr("href") !== USEROPTS.theme) {
2014-12-19 19:39:10 +00:00
var old = $("#usertheme").attr("id", "usertheme_old");
2014-02-02 18:41:41 +00:00
var theme = USEROPTS.theme;
if (theme === "default") {
theme = DEFAULT_THEME;
2014-01-30 04:50:14 +00:00
}
2014-02-02 18:41:41 +00:00
$("<link/>").attr("rel", "stylesheet")
.attr("type", "text/css")
.attr("id", "usertheme")
.attr("href", theme)
2014-12-19 19:39:10 +00:00
.attr("onload", "$('#usertheme_old').remove()")
2014-02-02 18:41:41 +00:00
.appendTo($("head"));
2014-01-30 04:50:14 +00:00
fixWeirdButtonAlignmentIssue();
2013-06-11 23:51:00 +00:00
}
2014-01-26 06:13:33 +00:00
switch (USEROPTS.layout) {
case "synchtube-fluid":
fluidLayout();
2013-06-11 23:51:00 +00:00
case "synchtube":
synchtubeLayout();
break;
case "fluid":
fluidLayout();
break;
2014-01-26 20:15:50 +00:00
case "hd":
hdLayout();
break;
2013-06-11 23:51:00 +00:00
default:
compactLayout();
2013-06-11 23:51:00 +00:00
break;
}
if(USEROPTS.hidevid) {
removeVideo();
2013-06-11 23:51:00 +00:00
}
$("#chatbtn").remove();
if(USEROPTS.chatbtn) {
2013-12-25 21:18:21 +00:00
var btn = $("<button/>").addClass("btn btn-default btn-block")
2013-06-11 23:51:00 +00:00
.text("Send")
.attr("id", "chatbtn")
.appendTo($("#chatwrap"));
btn.click(function() {
if($("#chatline").val().trim()) {
socket.emit("chatMsg", {
2014-05-21 03:11:40 +00:00
msg: $("#chatline").val(),
meta: {}
2013-06-11 23:51:00 +00:00
});
$("#chatline").val("");
}
});
}
if (USEROPTS.modhat) {
$("#modflair").removeClass("label-default")
.addClass("label-success");
} else {
$("#modflair").removeClass("label-success")
.addClass("label-default");
}
2013-06-11 23:51:00 +00:00
}
function parseTimeout(t) {
var m;
if (m = t.match(/^(\d+):(\d+):(\d+)$/)) {
// HH:MM:SS
return parseInt(m[1], 10) * 3600 + parseInt(m[2], 10) * 60 + parseInt(m[3], 10);
} else if (m = t.match(/^(\d+):(\d+)$/)) {
// MM:SS
return parseInt(m[1], 10) * 60 + parseInt(m[2], 10);
} else if (m = t.match(/^(\d+)$/)) {
// Seconds
return parseInt(m[1], 10);
} else {
throw new Error("Invalid timeout value '" + t + "'");
}
}
function showPollMenu() {
2013-06-11 23:51:00 +00:00
$("#pollwrap .poll-menu").remove();
var menu = $("<div/>").addClass("well poll-menu")
2013-12-19 17:14:48 +00:00
.prependTo($("#pollwrap"));
2013-06-11 23:51:00 +00:00
2013-12-19 17:14:48 +00:00
$("<button/>").addClass("btn btn-sm btn-danger pull-right")
2013-06-11 23:51:00 +00:00
.text("Cancel")
.appendTo(menu)
.click(function() {
menu.remove();
});
$("<strong/>").text("Title").appendTo(menu);
2013-12-19 17:14:48 +00:00
var title = $("<input/>").addClass("form-control")
.attr("type", "text")
2013-06-11 23:51:00 +00:00
.appendTo(menu);
2014-02-09 05:58:27 +00:00
$("<strong/>").text("Timeout (optional)").appendTo(menu);
$("<p/>").text("If you specify a timeout, the poll will automatically " +
"be closed after that amount of time. You can either " +
"specify the number of seconds or use the format " +
"minutes:seconds. Examples: 90 (90 seconds), 5:30 " +
"(5 minutes, 30 seconds)")
.addClass("text-muted")
.appendTo(menu);
2014-02-09 05:58:27 +00:00
var timeout = $("<input/>").addClass("form-control")
.attr("type", "text")
.appendTo(menu);
var timeoutError = null;
2014-02-09 05:58:27 +00:00
var checkboxOuter = $("<div/>").addClass("checkbox").appendTo(menu);
var lbl = $("<label/>").text("Hide poll results until it closes")
.appendTo(checkboxOuter);
2013-09-12 01:22:00 +00:00
var hidden = $("<input/>").attr("type", "checkbox")
.prependTo(lbl);
2013-09-12 01:22:00 +00:00
2013-06-11 23:51:00 +00:00
$("<strong/>").text("Options").appendTo(menu);
2013-12-19 17:14:48 +00:00
var addbtn = $("<button/>").addClass("btn btn-sm btn-default")
2013-06-11 23:51:00 +00:00
.text("Add Option")
.appendTo(menu);
function addOption() {
2013-12-19 17:14:48 +00:00
$("<input/>").addClass("form-control")
.attr("type", "text")
2013-06-11 23:51:00 +00:00
.addClass("poll-menu-option")
.insertBefore(addbtn);
}
addbtn.click(addOption);
addOption();
addOption();
2013-12-19 17:14:48 +00:00
$("<button/>").addClass("btn btn-default btn-block")
2013-06-11 23:51:00 +00:00
.text("Open Poll")
.appendTo(menu)
.click(function() {
var t = timeout.val().trim();
if (t) {
try {
t = parseTimeout(t);
} catch (e) {
if (timeoutError) {
timeoutError.remove();
}
timeoutError = $("<p/>").addClass("text-danger").text(e.message);
timeoutError.insertAfter(timeout);
timeout.focus();
return;
}
} else {
t = undefined;
}
2014-02-09 05:58:27 +00:00
var opts = [];
2013-06-11 23:51:00 +00:00
menu.find(".poll-menu-option").each(function() {
if($(this).val() != "")
opts.push($(this).val());
});
socket.emit("newPoll", {
title: title.val(),
2013-09-12 01:22:00 +00:00
opts: opts,
2014-02-09 05:58:27 +00:00
obscured: hidden.prop("checked"),
timeout: t
2013-06-11 23:51:00 +00:00
});
2013-06-22 23:02:55 +00:00
menu.remove();
2013-06-11 23:51:00 +00:00
});
}
function scrollChat() {
2015-12-06 01:57:33 +00:00
scrollAndIgnoreEvent($("#messagebuffer").prop("scrollHeight"));
$("#newmessages-indicator").remove();
2013-06-11 23:51:00 +00:00
}
2015-12-06 01:57:33 +00:00
function scrollAndIgnoreEvent(top) {
IGNORE_SCROLL_EVENT = true;
$("#messagebuffer").scrollTop(top);
}
2013-06-11 23:51:00 +00:00
function hasPermission(key) {
if(key.indexOf("playlist") == 0 && CHANNEL.openqueue) {
var key2 = "o" + key;
var v = CHANNEL.perms[key2];
if(typeof v == "number" && CLIENT.rank >= v) {
return true;
}
}
var v = CHANNEL.perms[key];
if(typeof v != "number") {
return false;
}
return CLIENT.rank >= v;
}
2013-06-20 18:54:15 +00:00
function setVisible(selector, bool) {
// I originally added this check because of a race condition
// Now it seems to work without but I don't trust it
if($(selector) && $(selector).attr("id") != selector.substring(1)) {
setTimeout(function() {
setVisible(selector, bool);
}, 100);
return;
}
var disp = bool ? "" : "none";
$(selector).css("display", disp);
}
2014-01-15 06:16:29 +00:00
function setParentVisible(selector, bool) {
var disp = bool ? "" : "none";
$(selector).parent().css("display", disp);
}
2013-06-20 18:43:37 +00:00
function handleModPermissions() {
2014-01-09 23:16:09 +00:00
$("#cs-chanranks-adm").attr("disabled", CLIENT.rank < 4);
$("#cs-chanranks-owner").attr("disabled", CLIENT.rank < 4);
2013-06-20 18:43:37 +00:00
/* update channel controls */
2014-01-15 06:16:29 +00:00
$("#cs-pagetitle").val(CHANNEL.opts.pagetitle);
$("#cs-pagetitle").attr("disabled", CLIENT.rank < 3);
$("#cs-externalcss").val(CHANNEL.opts.externalcss);
$("#cs-externalcss").attr("disabled", CLIENT.rank < 3);
$("#cs-externaljs").val(CHANNEL.opts.externaljs);
$("#cs-externaljs").attr("disabled", CLIENT.rank < 3);
2014-01-16 17:53:34 +00:00
$("#cs-chat_antiflood").prop("checked", CHANNEL.opts.chat_antiflood);
2013-12-07 23:30:34 +00:00
if ("chat_antiflood_params" in CHANNEL.opts) {
2014-01-16 17:53:34 +00:00
$("#cs-chat_antiflood_burst").val(CHANNEL.opts.chat_antiflood_params.burst);
$("#cs-chat_antiflood_sustained").val(CHANNEL.opts.chat_antiflood_params.sustained);
2013-11-25 22:20:15 +00:00
}
2014-01-15 06:16:29 +00:00
$("#cs-show_public").prop("checked", CHANNEL.opts.show_public);
$("#cs-show_public").attr("disabled", CLIENT.rank < 3);
$("#cs-password").val(CHANNEL.opts.password || "");
$("#cs-password").attr("disabled", CLIENT.rank < 3);
$("#cs-enable_link_regex").prop("checked", CHANNEL.opts.enable_link_regex);
$("#cs-afk_timeout").val(CHANNEL.opts.afk_timeout);
$("#cs-allow_voteskip").prop("checked", CHANNEL.opts.allow_voteskip);
$("#cs-voteskip_ratio").val(CHANNEL.opts.voteskip_ratio);
2014-09-02 22:30:41 +00:00
$("#cs-allow_dupes").prop("checked", CHANNEL.opts.allow_dupes);
2014-09-02 22:28:16 +00:00
$("#cs-torbanned").prop("checked", CHANNEL.opts.torbanned);
$("#cs-allow_ascii_control").prop("checked", CHANNEL.opts.allow_ascii_control);
2014-10-06 16:32:25 +00:00
$("#cs-playlist_max_per_user").val(CHANNEL.opts.playlist_max_per_user || 0);
$("#cs-new_user_chat_delay").val(formatTime(CHANNEL.opts.new_user_chat_delay || 0));
$("#cs-new_user_chat_link_delay").val(formatTime(CHANNEL.opts.new_user_chat_link_delay || 0));
2013-07-04 23:11:13 +00:00
(function() {
if(typeof CHANNEL.opts.maxlength != "number") {
2014-01-15 06:16:29 +00:00
$("#cs-maxlength").val("");
2013-07-04 23:11:13 +00:00
return;
}
var h = parseInt(CHANNEL.opts.maxlength / 3600);
h = ""+h;
if(h.length < 2) h = "0" + h;
var m = parseInt((CHANNEL.opts.maxlength % 3600) / 60);
m = ""+m;
if(m.length < 2) m = "0" + m;
var s = parseInt(CHANNEL.opts.maxlength % 60);
s = ""+s;
if(s.length < 2) s = "0" + s;
2014-01-15 06:16:29 +00:00
$("#cs-maxlength").val(h + ":" + m + ":" + s);
2013-07-04 23:11:13 +00:00
})();
2014-01-15 06:16:29 +00:00
$("#cs-csstext").val(CHANNEL.css);
$("#cs-jstext").val(CHANNEL.js);
$("#cs-motdtext").val(CHANNEL.motd);
2014-01-15 06:16:29 +00:00
setParentVisible("a[href='#cs-motdeditor']", hasPermission("motdedit"));
2014-02-28 05:38:22 +00:00
setParentVisible("a[href='#cs-permedit']", CLIENT.rank >= 3);
2014-01-15 06:16:29 +00:00
setParentVisible("a[href='#cs-banlist']", hasPermission("ban"));
setParentVisible("a[href='#cs-csseditor']", CLIENT.rank >= 3);
setParentVisible("a[href='#cs-jseditor']", CLIENT.rank >= 3);
2014-02-28 05:38:22 +00:00
setParentVisible("a[href='#cs-chatfilters']", hasPermission("filteredit"));
setParentVisible("a[href='#cs-emotes']", hasPermission("emoteedit"));
2014-01-15 06:16:29 +00:00
setParentVisible("a[href='#cs-chanranks']", CLIENT.rank >= 3);
setParentVisible("a[href='#cs-chanlog']", CLIENT.rank >= 3);
2014-01-23 22:03:50 +00:00
$("#cs-chatfilters-import").attr("disabled", !hasPermission("filterimport"));
2014-02-28 05:38:22 +00:00
$("#cs-emotes-import").attr("disabled", !hasPermission("filterimport"));
2013-06-20 18:43:37 +00:00
}
2013-06-11 23:51:00 +00:00
function handlePermissionChange() {
2013-12-19 17:14:48 +00:00
if(CLIENT.rank >= 2) {
handleModPermissions();
2013-06-11 23:51:00 +00:00
}
2014-01-24 04:59:08 +00:00
$("#qlockbtn").attr("disabled", !hasPermission("playlistlock"));
setVisible("#showchansettings", CLIENT.rank >= 2);
2013-12-19 17:14:48 +00:00
setVisible("#playlistmanagerwrap", CLIENT.rank >= 1);
setVisible("#modflair", CLIENT.rank >= 2);
2013-12-19 17:14:48 +00:00
setVisible("#guestlogin", CLIENT.rank < 0);
setVisible("#chatline", CLIENT.rank >= 0);
2014-02-18 01:06:49 +00:00
setVisible("#queue", hasPermission("seeplaylist"));
setVisible("#plmeta", hasPermission("seeplaylist"));
$("#getplaylist").attr("disabled", !hasPermission("seeplaylist"));
setVisible("#showplaylistmanager", hasPermission("seeplaylist"));
2014-01-14 00:31:12 +00:00
setVisible("#showmediaurl", hasPermission("playlistadd"));
setVisible("#showcustomembed", hasPermission("playlistaddcustom"));
2013-06-11 23:51:00 +00:00
$("#queue_next").attr("disabled", !hasPermission("playlistnext"));
2013-06-23 18:35:40 +00:00
if(hasPermission("playlistadd") ||
hasPermission("playlistmove") ||
hasPermission("playlistjump") ||
hasPermission("playlistdelete") ||
hasPermission("settemp")) {
2013-07-30 00:06:01 +00:00
if(USEROPTS.first_visit && $("#plonotification").length == 0) {
2013-06-23 18:35:40 +00:00
var al = makeAlert("Playlist Options", [
"From the Options menu, you can choose to automatically",
" hide the buttons on each entry (and show them when",
" you right click). You can also choose to use the old",
" style of playlist buttons.",
"<br>"].join(""))
2013-07-30 00:06:01 +00:00
.attr("id", "plonotification")
2014-02-02 18:41:41 +00:00
.insertAfter($("#queuefail"));
2013-06-23 18:35:40 +00:00
al.find(".close").remove();
$("<button/>").addClass("btn btn-primary")
.text("Dismiss")
2014-02-02 18:41:41 +00:00
.appendTo(al.find(".alert"))
2013-06-23 18:35:40 +00:00
.click(function() {
USEROPTS.first_visit = false;
2013-12-25 21:18:21 +00:00
storeOpts();
2014-01-14 06:52:56 +00:00
al.hide("fade", function() {
2013-06-23 18:35:40 +00:00
al.remove();
});
});
}
}
2013-06-11 23:51:00 +00:00
if(hasPermission("playlistmove")) {
$("#queue").sortable("enable");
$("#queue").addClass("queue_sortable");
}
else {
$("#queue").sortable("disable");
$("#queue").removeClass("queue_sortable");
}
setVisible("#clearplaylist", hasPermission("playlistclear"));
setVisible("#shuffleplaylist", hasPermission("playlistshuffle"));
2014-02-18 00:56:36 +00:00
if (!hasPermission("addnontemp")) {
$(".add-temp").prop("checked", true);
$(".add-temp").attr("disabled", true);
} else {
$(".add-temp").attr("disabled", false);
}
2013-06-11 23:51:00 +00:00
2014-01-30 04:50:14 +00:00
fixWeirdButtonAlignmentIssue();
2014-01-19 02:18:00 +00:00
2013-06-11 23:51:00 +00:00
setVisible("#newpollbtn", hasPermission("pollctl"));
2013-09-12 03:16:56 +00:00
$("#voteskip").attr("disabled", !hasPermission("voteskip") ||
!CHANNEL.opts.allow_voteskip);
2013-06-11 23:51:00 +00:00
2013-06-19 23:41:49 +00:00
$("#pollwrap .active").find(".btn-danger").remove();
2013-06-11 23:51:00 +00:00
if(hasPermission("pollctl")) {
2013-06-19 23:41:49 +00:00
var poll = $("#pollwrap .active");
2013-06-11 23:51:00 +00:00
if(poll.length > 0) {
$("<button/>").addClass("btn btn-danger pull-right")
.text("End Poll")
.insertAfter(poll.find(".close"))
.click(function() {
socket.emit("closePoll");
});
}
}
2013-06-19 23:41:49 +00:00
var poll = $("#pollwrap .active");
2013-06-11 23:51:00 +00:00
if(poll.length > 0) {
poll.find(".btn").attr("disabled", !hasPermission("pollvote"));
}
var users = $("#userlist").children();
for(var i = 0; i < users.length; i++) {
2013-11-09 04:12:17 +00:00
addUserDropdown($(users[i]));
2013-06-11 23:51:00 +00:00
}
2013-06-20 19:02:53 +00:00
$("#chatline").attr("disabled", !hasPermission("chat"));
2013-06-11 23:51:00 +00:00
rebuildPlaylist();
}
2014-01-30 04:50:14 +00:00
function fixWeirdButtonAlignmentIssue() {
// Weird things happen to the alignment in chromium when I toggle visibility
// of the above buttons
// This fixes it?
var wtf = $("#videocontrols").removeClass("pull-right");
setTimeout(function () {
wtf.addClass("pull-right");
}, 1);
}
2013-06-11 23:51:00 +00:00
/* search stuff */
function clearSearchResults() {
$("#library").html("");
2013-06-22 23:02:55 +00:00
$("#search_clear").remove();
2013-07-31 15:05:07 +00:00
var p = $("#library").data("paginator");
if(p) {
p.paginator.html("");
2013-06-11 23:51:00 +00:00
}
}
function addLibraryButtons(li, id, source) {
2013-06-11 23:51:00 +00:00
var btns = $("<div/>").addClass("btn-group")
.addClass("pull-left")
.prependTo(li);
2014-01-14 06:52:56 +00:00
var type = (source === "library") ? "lib" : source;
2013-06-11 23:51:00 +00:00
if(hasPermission("playlistadd")) {
if(hasPermission("playlistnext")) {
2013-12-19 17:14:48 +00:00
$("<button/>").addClass("btn btn-xs btn-default")
2013-06-11 23:51:00 +00:00
.text("Next")
.click(function() {
socket.emit("queue", {
id: id,
pos: "next",
2014-02-09 06:24:20 +00:00
type: type,
temp: $(".add-temp").prop("checked")
2013-06-11 23:51:00 +00:00
});
})
.appendTo(btns);
}
2013-12-19 17:14:48 +00:00
$("<button/>").addClass("btn btn-xs btn-default")
2013-06-11 23:51:00 +00:00
.text("End")
.click(function() {
socket.emit("queue", {
id: id,
pos: "end",
2014-02-09 06:24:20 +00:00
type: type,
temp: $(".add-temp").prop("checked")
2013-06-11 23:51:00 +00:00
});
})
.appendTo(btns);
}
if(hasPermission("deletefromchannellib") && source === "library") {
2013-12-19 17:14:48 +00:00
$("<button/>").addClass("btn btn-xs btn-danger")
.html("<span class='glyphicon glyphicon-trash'></span>")
2013-06-11 23:51:00 +00:00
.click(function() {
socket.emit("uncache", {
id: id
});
2014-01-14 06:52:56 +00:00
li.hide("fade", function() {
2013-06-11 23:51:00 +00:00
li.remove();
});
})
.appendTo(btns);
}
}
/* queue stuff */
2013-10-01 18:35:29 +00:00
var AsyncQueue = function () {
this._q = [];
this._lock = false;
this._tm = 0;
};
AsyncQueue.prototype.next = function () {
if (this._q.length > 0) {
if (!this.lock())
return;
var item = this._q.shift();
var fn = item[0], tm = item[1];
this._tm = Date.now() + item[1];
fn(this);
}
};
2013-07-03 15:26:10 +00:00
2013-10-01 18:35:29 +00:00
AsyncQueue.prototype.lock = function () {
if (this._lock) {
if (this._tm > 0 && Date.now() > this._tm) {
this._tm = 0;
return true;
2013-07-03 15:26:10 +00:00
}
2013-10-01 18:35:29 +00:00
return false;
}
this._lock = true;
return true;
};
AsyncQueue.prototype.release = function () {
var self = this;
if (!self._lock)
return false;
self._lock = false;
self.next();
return true;
};
AsyncQueue.prototype.queue = function (fn) {
var self = this;
self._q.push([fn, 20000]);
self.next();
};
AsyncQueue.prototype.reset = function () {
this._q = [];
this._lock = false;
};
var PL_ACTION_QUEUE = new AsyncQueue();
2013-07-03 15:26:10 +00:00
// Because jQuery UI does weird things
function playlistFind(uid) {
var children = document.getElementById("queue").children;
for(var i in children) {
if(typeof children[i].getAttribute != "function")
continue;
if(children[i].getAttribute("class").indexOf("pluid-" + uid) != -1)
return children[i];
}
return false;
}
2013-10-01 18:35:29 +00:00
function playlistMove(from, after, cb) {
2013-06-29 22:09:20 +00:00
var lifrom = $(".pluid-" + from);
2013-10-01 18:35:29 +00:00
if(lifrom.length == 0) {
cb(false);
return;
}
2013-06-29 22:09:20 +00:00
2013-06-11 23:51:00 +00:00
var q = $("#queue");
2013-06-29 22:09:20 +00:00
if(after === "prepend") {
2014-01-23 04:43:17 +00:00
lifrom.hide("blind", function() {
lifrom.detach();
lifrom.prependTo(q);
2014-01-23 04:43:17 +00:00
lifrom.show("blind", cb);
});
}
2013-06-29 22:09:20 +00:00
else if(after === "append") {
2014-01-23 04:43:17 +00:00
lifrom.hide("blind", function() {
2013-06-29 22:09:20 +00:00
lifrom.detach();
lifrom.appendTo(q);
2014-01-23 04:43:17 +00:00
lifrom.show("blind", cb);
2013-06-29 22:09:20 +00:00
});
}
else {
2013-06-29 22:09:20 +00:00
var liafter = $(".pluid-" + after);
2013-10-01 18:35:29 +00:00
if(liafter.length == 0) {
cb(false);
return;
}
2014-01-23 04:43:17 +00:00
lifrom.hide("blind", function() {
lifrom.detach();
lifrom.insertAfter(liafter);
2014-01-23 04:43:17 +00:00
lifrom.show("blind", cb);
});
}
2013-06-11 23:51:00 +00:00
}
2014-08-13 18:49:32 +00:00
function extractQueryParam(query, param) {
var params = {};
query.split("&").forEach(function (kv) {
kv = kv.split("=");
params[kv[0]] = kv[1];
});
return params[param];
}
2013-06-11 23:51:00 +00:00
function parseMediaLink(url) {
if(typeof url != "string") {
return {
id: null,
type: null
};
}
url = url.trim();
url = url.replace("feature=player_embedded&", "");
2013-06-11 23:51:00 +00:00
if(url.indexOf("jw:") == 0) {
return {
id: url.substring(3),
type: "fi"
2013-06-11 23:51:00 +00:00
};
}
if(url.indexOf("rtmp://") == 0) {
return {
id: url,
type: "rt"
};
}
var m;
2014-08-13 18:49:32 +00:00
if((m = url.match(/youtube\.com\/watch\?([^#]+)/))) {
2013-06-11 23:51:00 +00:00
return {
2014-08-13 18:49:32 +00:00
id: extractQueryParam(m[1], "v"),
2013-06-11 23:51:00 +00:00
type: "yt"
};
}
2014-08-13 18:49:32 +00:00
if((m = url.match(/youtu\.be\/([^\?&#]+)/))) {
2013-06-11 23:51:00 +00:00
return {
id: m[1],
type: "yt"
};
}
2014-08-13 18:49:32 +00:00
if((m = url.match(/youtube\.com\/playlist\?([^#]+)/))) {
2013-06-11 23:51:00 +00:00
return {
2014-08-13 18:49:32 +00:00
id: extractQueryParam(m[1], "list"),
2013-06-11 23:51:00 +00:00
type: "yp"
};
}
2016-09-05 01:53:38 +00:00
if((m = url.match(/twitch\.tv\/(?:.*?)\/([cv])\/(\d+)/))) {
return {
id: m[1] + m[2],
type: "tv"
};
}
if((m = url.match(/twitch\.tv\/([\w-]+)/))) {
2013-06-11 23:51:00 +00:00
return {
id: m[1],
type: "tw"
};
}
2014-08-13 18:49:32 +00:00
if((m = url.match(/livestream\.com\/([^\?&#]+)/))) {
2013-06-11 23:51:00 +00:00
return {
id: m[1],
type: "li"
};
}
2014-08-13 18:49:32 +00:00
if((m = url.match(/ustream\.tv\/([^\?&#]+)/))) {
2013-06-11 23:51:00 +00:00
return {
id: m[1],
type: "us"
};
}
if ((m = url.match(/hitbox\.tv\/([^\?&#]+)/))) {
return {
id: m[1],
type: "hb"
};
}
2014-08-13 18:49:32 +00:00
if((m = url.match(/vimeo\.com\/([^\?&#]+)/))) {
2013-06-11 23:51:00 +00:00
return {
id: m[1],
type: "vi"
};
}
if((m = url.match(/dailymotion\.com\/video\/([^\?&#_]+)/))) {
2013-06-11 23:51:00 +00:00
return {
id: m[1],
type: "dm"
};
}
2014-08-13 18:49:32 +00:00
if((m = url.match(/imgur\.com\/a\/([^\?&#]+)/))) {
2013-06-11 23:51:00 +00:00
return {
id: m[1],
type: "im"
};
}
2014-08-13 18:49:32 +00:00
if((m = url.match(/soundcloud\.com\/([^\?&#]+)/))) {
2013-06-11 23:51:00 +00:00
return {
id: url,
type: "sc"
};
}
2015-03-20 18:57:13 +00:00
if ((m = url.match(/(?:docs|drive)\.google\.com\/file\/d\/([^\/]*)/)) ||
(m = url.match(/drive\.google\.com\/open\?id=([^&]*)/))) {
2013-11-07 23:19:36 +00:00
return {
id: m[1],
type: "gd"
};
}
2014-07-11 06:23:48 +00:00
if ((m = url.match(/plus\.google\.com\/(?:u\/\d+\/)?photos\/(\d+)\/albums\/(\d+)\/(\d+)/))) {
return {
id: m[1] + "_" + m[2] + "_" + m[3],
type: "gp"
};
}
2016-06-26 00:09:48 +00:00
if((m = url.match(/vid\.me\/([\w-]+)/))) {
return {
id: m[1],
type: "vm"
};
}
2016-08-07 04:14:52 +00:00
if ((m = url.match(/(.*\.m3u8)/))) {
return {
id: m[1],
type: "hl"
};
}
2016-08-03 05:35:00 +00:00
if((m = url.match(/streamable\.com\/([\w-]+)/))) {
return {
id: m[1],
type: "sb"
};
}
/* Shorthand URIs */
// To catch Google Plus by ID alone
if ((m = url.match(/^(?:gp:)?(\d{21}_\d{19}_\d{19})/))) {
2015-01-23 05:21:31 +00:00
return {
id: m[1],
type: "gp"
};
}
// So we still trim DailyMotion URLs
if((m = url.match(/^dm:([^\?&#_]+)/))) {
return {
id: m[1],
type: "dm"
};
}
// Raw files need to keep the query string
if ((m = url.match(/^fi:(.*)/))) {
return {
id: m[1],
type: "fi"
};
}
// Generic for the rest.
if ((m = url.match(/^([a-z]{2}):([^\?&#]+)/))) {
return {
id: m[2],
type: m[1]
2015-01-23 05:21:31 +00:00
};
}
2014-06-04 04:21:00 +00:00
/* Raw file */
var tmp = url.split("?")[0];
if (tmp.match(/^https?:\/\//)) {
if (tmp.match(/^http:/)) {
Callbacks.queueFail({
link: url,
msg: "Raw files must begin with 'https'. Plain http is not supported."
});
throw new Error("ERROR_QUEUE_HTTP");
} else if (tmp.match(/\.(mp4|flv|webm|og[gv]|mp3|mov|m4a)$/)) {
2014-06-04 04:21:00 +00:00
return {
id: url,
type: "fi"
};
} else {
Callbacks.queueFail({
link: url,
msg: "The file you are attempting to queue does not match the supported " +
2016-12-18 03:53:17 +00:00
"file extensions mp4, flv, webm, ogg, ogv, mp3, mov, m4a."
2014-06-04 04:21:00 +00:00
});
2016-12-18 03:53:17 +00:00
// Lol I forgot about this hack
2014-06-04 04:21:00 +00:00
throw new Error("ERROR_QUEUE_UNSUPPORTED_EXTENSION");
}
}
return {
id: null,
type: null
};
2013-06-11 23:51:00 +00:00
}
function sendVideoUpdate() {
2013-11-15 04:23:33 +00:00
if (!CLIENT.leader) {
return;
}
2013-08-06 03:30:16 +00:00
PLAYER.getTime(function (seconds) {
2013-06-11 23:51:00 +00:00
socket.emit("mediaUpdate", {
2015-07-05 20:29:06 +00:00
id: PLAYER.mediaId,
2013-06-11 23:51:00 +00:00
currentTime: seconds,
paused: PLAYER.paused,
2015-07-05 20:29:06 +00:00
type: PLAYER.mediaType
2013-06-11 23:51:00 +00:00
});
});
}
/* chat */
2016-07-12 05:19:39 +00:00
function stripImages(msg){
if (!USEROPTS.strip_image) {
return msg;
}
return msg.replace(IMAGE_MATCH, function(match,img){
return CHANNEL.opts.enable_link_regex ?
2016-07-12 05:19:39 +00:00
'<a target="_blank" href="'+img+'">'+img+'</a>' : img;
});
}
2014-02-15 07:40:14 +00:00
function formatChatMessage(data, last) {
// Backwards compat
if (!data.meta || data.msgclass) {
data.meta = {
2013-11-19 22:14:33 +00:00
addClass: data.msgclass,
// And the award for "variable name most like Java source code" goes to...
addClassToNameAndTimestamp: data.msgclass
};
}
2013-11-18 17:11:00 +00:00
// Phase 1: Determine whether to show the username or not
2014-02-15 07:40:14 +00:00
var skip = data.username === last.name;
2013-11-18 17:11:00 +00:00
if(data.meta.addClass === "server-whisper")
2013-11-17 19:12:56 +00:00
skip = true;
// Prevent impersonation by abuse of the bold filter
if(data.msg.match(/^\s*<strong>\w+\s*:\s*<\/strong>\s*/))
skip = false;
2013-11-18 17:11:00 +00:00
if (data.meta.forceShowName)
skip = false;
2016-07-12 05:19:39 +00:00
data.msg = stripImages(data.msg);
2014-02-10 05:53:46 +00:00
data.msg = execEmotes(data.msg);
2014-02-15 07:40:14 +00:00
last.name = data.username;
2013-11-17 19:12:56 +00:00
var div = $("<div/>");
2013-11-18 17:11:00 +00:00
/* drink is a special case because the entire container gets the class, not
just the message */
2013-11-17 21:32:19 +00:00
if (data.meta.addClass === "drink") {
div.addClass("drink");
data.meta.addClass = "";
}
2013-11-18 17:11:00 +00:00
// Add timestamps (unless disabled)
2013-11-17 19:12:56 +00:00
if (USEROPTS.show_timestamps) {
var time = $("<span/>").addClass("timestamp").appendTo(div);
var timestamp = new Date(data.time).toTimeString().split(" ")[0];
time.text("["+timestamp+"] ");
2013-11-19 22:14:33 +00:00
if (data.meta.addClass && data.meta.addClassToNameAndTimestamp) {
2013-11-17 19:12:56 +00:00
time.addClass(data.meta.addClass);
}
}
2013-11-18 17:11:00 +00:00
// Add username
2013-11-17 19:12:56 +00:00
var name = $("<span/>");
if (!skip) {
name.appendTo(div);
}
$("<strong/>").addClass("username").text(data.username + ": ").appendTo(name);
if (data.meta.modflair) {
name.addClass(getNameColor(data.meta.modflair));
}
2013-11-19 22:14:33 +00:00
if (data.meta.addClass && data.meta.addClassToNameAndTimestamp) {
2013-11-17 19:12:56 +00:00
name.addClass(data.meta.addClass);
}
if (data.meta.superadminflair) {
name.addClass("label")
.addClass(data.meta.superadminflair.labelclass);
2014-01-26 06:01:36 +00:00
$("<span/>").addClass(data.meta.superadminflair.icon)
.addClass("glyphicon")
2014-01-26 20:15:50 +00:00
.css("margin-right", "3px")
2013-11-17 19:12:56 +00:00
.prependTo(name);
}
2013-11-18 17:11:00 +00:00
// Add the message itself
2013-11-17 19:12:56 +00:00
var message = $("<span/>").appendTo(div);
message[0].innerHTML = data.msg;
2013-11-18 17:11:00 +00:00
// For /me the username is part of the message
2013-11-17 19:12:56 +00:00
if (data.meta.action) {
name.remove();
message[0].innerHTML = data.username + " " + data.msg;
}
if (data.meta.addClass) {
message.addClass(data.meta.addClass);
}
if (data.meta.shadow) {
div.addClass("chat-shadow");
}
2013-11-17 19:12:56 +00:00
return div;
}
2013-06-11 23:51:00 +00:00
function addChatMessage(data) {
2013-11-18 17:11:00 +00:00
if(IGNORED.indexOf(data.username) !== -1) {
2013-06-11 23:51:00 +00:00
return;
}
if (data.meta.shadow && !USEROPTS.show_shadowchat) {
return;
}
2015-12-06 01:57:33 +00:00
var msgBuf = $("#messagebuffer");
2016-07-12 05:19:39 +00:00
var div = formatChatMessage(data, LASTCHAT);
2013-11-18 17:11:00 +00:00
// Incoming: a bunch of crap for the feature where if you hover over
// a message, it highlights messages from that user
2015-02-06 04:23:54 +00:00
var safeUsername = data.username.replace(/[^\w-]/g, '\\$');
2014-11-25 01:32:06 +00:00
div.addClass("chat-msg-" + safeUsername);
2015-12-06 01:57:33 +00:00
div.appendTo(msgBuf);
2013-06-11 23:51:00 +00:00
div.mouseover(function() {
2014-11-25 01:32:06 +00:00
$(".chat-msg-" + safeUsername).addClass("nick-hover");
2013-06-11 23:51:00 +00:00
});
div.mouseleave(function() {
2014-11-25 01:32:06 +00:00
$(".nick-hover").removeClass("nick-hover");
2013-06-11 23:51:00 +00:00
});
2015-12-06 01:57:33 +00:00
var oldHeight = msgBuf.prop("scrollHeight");
var numRemoved = trimChatBuffer();
if (SCROLLCHAT) {
2013-06-11 23:51:00 +00:00
scrollChat();
} else {
var newMessageDiv = $("#newmessages-indicator");
if (!newMessageDiv.length) {
newMessageDiv = $("<div/>").attr("id", "newmessages-indicator")
.insertBefore($("#chatline"));
var bgHack = $("<span/>").attr("id", "newmessages-indicator-bghack")
.appendTo(newMessageDiv);
$("<span/>").addClass("glyphicon glyphicon-chevron-down")
.appendTo(bgHack);
$("<span/>").text("New Messages Below").appendTo(bgHack);
$("<span/>").addClass("glyphicon glyphicon-chevron-down")
.appendTo(bgHack);
2015-12-06 01:57:33 +00:00
newMessageDiv.click(function () {
SCROLLCHAT = true;
scrollChat();
});
}
if (numRemoved > 0) {
2015-12-06 01:57:33 +00:00
IGNORE_SCROLL_EVENT = true;
var diff = oldHeight - msgBuf.prop("scrollHeight");
scrollAndIgnoreEvent(msgBuf.scrollTop() - diff);
}
}
2015-12-06 01:57:33 +00:00
div.find("img").load(function () {
if (SCROLLCHAT) {
scrollChat();
} else if ($(this).position().top < 0) {
scrollAndIgnoreEvent(msgBuf.scrollTop() + $(this).height());
}
});
var isHighlight = false;
if (CLIENT.name && data.username != CLIENT.name) {
if (data.msg.toLowerCase().indexOf(CLIENT.name.toLowerCase()) != -1) {
2013-06-11 23:51:00 +00:00
div.addClass("nick-highlight");
isHighlight = true;
}
}
pingMessage(isHighlight);
}
2015-06-04 04:57:51 +00:00
function trimChatBuffer() {
var maxSize = window.CHATMAXSIZE;
if (!maxSize || typeof maxSize !== "number")
maxSize = parseInt(maxSize || 100, 10) || 100;
var buffer = document.getElementById("messagebuffer");
var count = buffer.childNodes.length - maxSize;
for (var i = 0; i < count; i++) {
buffer.firstChild.remove();
}
return count;
2015-06-04 04:57:51 +00:00
}
function pingMessage(isHighlight) {
if (!FOCUSED) {
if (!TITLE_BLINK && (USEROPTS.blink_title === "always" ||
USEROPTS.blink_title === "onlyping" && isHighlight)) {
TITLE_BLINK = setInterval(function() {
if(document.title == "*Chat*")
document.title = PAGETITLE;
else
document.title = "*Chat*";
}, 1000);
}
if (USEROPTS.boop === "always" || (USEROPTS.boop === "onlyping" &&
isHighlight)) {
CHATSOUND.play();
2013-06-11 23:51:00 +00:00
}
}
}
/* layouts */
function undoHDLayout() {
$("body").removeClass("hd");
$("#drinkbar").detach().removeClass().addClass("col-lg-12 col-md-12")
.appendTo("#drinkbarwrap");
$("#chatwrap").detach().removeClass().addClass("col-lg-5 col-md-5")
.appendTo("#main");
$("#videowrap").detach().removeClass().addClass("col-lg-7 col-md-7")
.appendTo("#main");
$("#leftcontrols").detach().removeClass().addClass("col-lg-5 col-md-5")
.prependTo("#controlsrow");
$("#plcontrol").detach().appendTo("#rightcontrols");
$("#videocontrols").detach().appendTo("#rightcontrols");
$("#playlistrow").prepend('<div id="leftpane" class="col-lg-5 col-md-5" />');
$("#leftpane").append('<div id="leftpane-inner" class="row" />');
$("#pollwrap").detach().removeClass().addClass("col-lg-12 col-md-12")
.appendTo("#leftpane-inner");
$("#playlistmanagerwrap").detach().removeClass().addClass("col-lg-12 col-md-12")
.css("margin-top", "10px")
.appendTo("#leftpane-inner");
$("#rightpane").detach().removeClass().addClass("col-lg-7 col-md-7")
.appendTo("#playlistrow");
$("nav").addClass("navbar-fixed-top");
$("#mainpage").css("padding-top", "60px");
$("#queue").css("max-height", "500px");
$("#messagebuffer, #userlist").css("max-height", "");
}
function compactLayout() {
/* Undo synchtube layout */
if ($("body").hasClass("synchtube")) {
$("body").removeClass("synchtube")
$("#chatwrap").detach().insertBefore($("#videowrap"));
$("#leftcontrols").detach().insertBefore($("#rightcontrols"));
$("#leftpane").detach().insertBefore($("#rightpane"));
$("#userlist").css("float", "left");
if($("#userlisttoggle").hasClass("glyphicon-chevron-left")){
$("#userlisttoggle").removeClass("glyphicon-chevron-left").addClass("glyphicon-chevron-right")
}
2015-02-05 07:27:25 +00:00
$("#userlisttoggle").removeClass("pull-right").addClass("pull-left")
}
/* Undo fluid layout */
2014-03-29 23:46:53 +00:00
if ($("body").hasClass("fluid")) {
$("body").removeClass("fluid")
2014-03-29 23:46:53 +00:00
$(".container-fluid").removeClass("container-fluid").addClass("container");
}
/* Undo HD layout */
if ($("body").hasClass("hd")) {
undoHDLayout();
}
2014-11-12 01:48:08 +00:00
$("body").addClass("compact");
2014-11-13 01:56:29 +00:00
handleVideoResize();
}
2013-06-11 23:51:00 +00:00
function fluidLayout() {
if ($("body").hasClass("hd")) {
undoHDLayout();
}
2014-01-26 03:29:56 +00:00
$(".container").removeClass("container").addClass("container-fluid");
2014-02-16 19:27:01 +00:00
$("footer .container-fluid").removeClass("container-fluid").addClass("container");
2014-01-26 20:15:50 +00:00
$("body").addClass("fluid");
2014-11-13 01:56:29 +00:00
handleVideoResize();
2013-06-11 23:51:00 +00:00
}
function synchtubeLayout() {
if ($("body").hasClass("hd")) {
undoHDLayout();
}
if($("#userlisttoggle").hasClass("glyphicon-chevron-right")){
$("#userlisttoggle").removeClass("glyphicon-chevron-right").addClass("glyphicon-chevron-left")
}
2015-02-05 07:27:25 +00:00
$("#userlisttoggle").removeClass("pull-left").addClass("pull-right")
2013-06-11 23:51:00 +00:00
$("#videowrap").detach().insertBefore($("#chatwrap"));
2013-12-20 03:33:24 +00:00
$("#rightcontrols").detach().insertBefore($("#leftcontrols"));
$("#rightpane").detach().insertBefore($("#leftpane"));
$("#userlist").css("float", "right");
2014-01-26 20:15:50 +00:00
$("body").addClass("synchtube");
}
/*
* "HD" is kind of a misnomer. Should be renamed at some point.
*/
2014-01-26 20:15:50 +00:00
function hdLayout() {
var videowrap = $("#videowrap"),
chatwrap = $("#chatwrap"),
playlist = $("#rightpane")
videowrap.detach().insertAfter($("#drinkbar"))
.removeClass()
.addClass("col-md-8 col-md-offset-2");
playlist.detach().insertBefore(chatwrap)
.removeClass()
.addClass("col-md-6");
chatwrap.removeClass()
.addClass("col-md-6");
var ch = "320px";
$("#messagebuffer").css("max-height", ch);
$("#userlist").css("max-height", ch);
$("#queue").css("max-height", "312px");
$("#leftcontrols").detach()
.insertAfter(chatwrap)
.removeClass()
.addClass("col-md-6");
$("#playlistmanagerwrap").detach()
.insertBefore($("#leftcontrols"))
.css("margin-top", "0")
.removeClass()
.addClass("col-md-6");
$("#showplaylistmanager").addClass("btn-sm");
var plcontrolwrap = $("<div/>").addClass("col-md-12")
.prependTo($("#rightpane-inner"));
$("#plcontrol").detach().appendTo(plcontrolwrap);
2014-01-30 04:50:14 +00:00
$("#videocontrols").detach()
2014-01-26 20:15:50 +00:00
.appendTo(plcontrolwrap);
$("#controlswrap").remove();
$("#pollwrap").detach()
.insertAfter($("#leftcontrols"))
.removeClass()
.addClass("col-md-6 col-md-offset-6");
2014-01-26 20:18:29 +00:00
$("#leftpane").remove();
2014-01-26 20:15:50 +00:00
$("nav.navbar-fixed-top").removeClass("navbar-fixed-top");
$("#mainpage").css("padding-top", "0");
$("body").addClass("hd");
2014-11-13 01:56:29 +00:00
handleVideoResize();
2013-06-11 23:51:00 +00:00
}
function chatOnly() {
2014-02-16 23:54:33 +00:00
var chat = $("#chatwrap").detach();
removeVideo();
2014-02-16 23:54:33 +00:00
$("#wrap").remove();
$("footer").remove();
chat.prependTo($("body"));
chat.css({
"min-height": "100%",
"min-width": "100%",
margin: "0",
padding: "0"
});
$("<span/>").addClass("label label-default pull-right pointer")
.text("User Options")
.appendTo($("#chatheader"))
.click(showUserOptions);
$("<span/>").addClass("label label-default pull-right pointer")
.attr("id", "showchansettings")
2014-02-16 23:54:33 +00:00
.text("Channel Settings")
.appendTo($("#chatheader"))
.click(function () {
$("#channeloptions").modal();
});
2015-05-14 16:42:26 +00:00
$("<span/>").addClass("label label-default pull-right pointer")
.text("Emote List")
.appendTo($("#chatheader"))
.click(function () {
EMOTELIST.show();
});
setVisible("#showchansettings", CLIENT.rank >= 2);
2015-05-14 16:42:26 +00:00
2014-02-16 23:54:33 +00:00
$("body").addClass("chatOnly");
2014-11-11 04:43:49 +00:00
handleWindowResize();
2013-06-11 23:51:00 +00:00
}
2013-06-17 22:16:59 +00:00
2014-11-11 04:43:49 +00:00
function handleWindowResize() {
2014-02-16 23:54:33 +00:00
if ($("body").hasClass("chatOnly")) {
var h = $("body").outerHeight() - $("#chatline").outerHeight() -
$("#chatheader").outerHeight();
$("#messagebuffer").outerHeight(h);
$("#userlist").outerHeight(h);
return;
2014-11-11 04:43:49 +00:00
} else {
handleVideoResize();
2014-02-16 23:54:33 +00:00
}
2014-11-11 04:43:49 +00:00
}
2014-01-26 03:48:57 +00:00
2014-11-11 04:43:49 +00:00
function handleVideoResize() {
if ($("#ytapiplayer").length === 0) return;
2014-11-11 04:43:49 +00:00
var intv, ticks = 0;
var resize = function () {
if (++ticks > 10) clearInterval(intv);
2015-05-14 18:14:45 +00:00
if ($("#ytapiplayer").parent().outerHeight() <= 0) return;
2014-11-11 04:43:49 +00:00
clearInterval(intv);
2014-01-26 20:15:50 +00:00
2014-11-16 17:19:14 +00:00
var responsiveFrame = $("#ytapiplayer").parent();
var height = responsiveFrame.outerHeight() - $("#chatline").outerHeight() - 2;
2014-11-11 04:43:49 +00:00
$("#messagebuffer").height(height);
$("#userlist").height(height);
2014-11-12 01:48:08 +00:00
2014-11-16 17:19:14 +00:00
$("#ytapiplayer").attr("height", VHEIGHT = responsiveFrame.outerHeight());
$("#ytapiplayer").attr("width", VWIDTH = responsiveFrame.outerWidth());
2014-11-11 04:43:49 +00:00
};
2014-01-26 20:15:50 +00:00
2014-11-11 04:43:49 +00:00
if ($("#ytapiplayer").height() > 0) resize();
2014-11-12 01:48:08 +00:00
else intv = setInterval(resize, 500);
2014-01-26 03:48:57 +00:00
}
2014-11-11 04:43:49 +00:00
$(window).resize(handleWindowResize);
2014-11-12 01:48:08 +00:00
handleWindowResize();
2014-01-26 03:48:57 +00:00
function removeVideo(event) {
try {
PLAYER.setVolume(0);
if (PLAYER.type === "rv") {
2014-03-08 02:37:20 +00:00
killVideoUntilItIsDead($(PLAYER.player));
}
} catch (e) {
}
$("#videowrap").remove();
2014-02-16 23:54:33 +00:00
$("#chatwrap").removeClass("col-lg-5 col-md-5").addClass("col-md-12");
if (event) event.preventDefault();
}
2013-06-17 22:16:59 +00:00
/* channel administration stuff */
function genPermissionsEditor() {
2014-01-20 18:16:30 +00:00
$("#cs-permedit").html("");
2013-06-17 22:16:59 +00:00
var form = $("<form/>").addClass("form-horizontal")
.attr("action", "javascript:void(0)")
2014-01-20 18:16:30 +00:00
.appendTo($("#cs-permedit"));
2013-06-17 22:16:59 +00:00
function makeOption(text, key, permset, defval) {
2014-01-20 18:16:30 +00:00
var group = $("<div/>").addClass("form-group")
.appendTo(form);
$("<label/>").addClass("control-label col-sm-4")
2013-06-17 22:16:59 +00:00
.text(text)
.appendTo(group);
2014-01-20 18:16:30 +00:00
var controls = $("<div/>").addClass("col-sm-8")
2013-06-17 22:16:59 +00:00
.appendTo(group);
2014-01-20 18:16:30 +00:00
var select = $("<select/>").addClass("form-control")
.appendTo(controls)
.data("key", key);
for (var i = 0; i < permset.length; i++) {
2013-06-17 22:16:59 +00:00
$("<option/>").attr("value", permset[i][1])
.text(permset[i][0])
2014-01-20 18:16:30 +00:00
.attr("selected", defval === permset[i][1])
2013-06-17 22:16:59 +00:00
.appendTo(select);
}
}
2014-01-20 18:16:30 +00:00
function addDivider(text, nonewline) {
$("<hr/>").appendTo(form);
if (!nonewline) {
$("<h3/>").text(text).appendTo(form);
}
2013-06-17 22:16:59 +00:00
}
var standard = [
["Anonymous" , "-1"],
["Guest" , "0"],
["Registered" , "1"],
["Leader" , "1.5"],
["Moderator" , "2"],
2013-09-21 05:30:47 +00:00
["Channel Admin", "3"],
["Nobody" , "1000000"]
2013-06-17 22:16:59 +00:00
];
2013-06-22 23:02:55 +00:00
var noanon = [
["Guest" , "0"],
["Registered" , "1"],
["Leader" , "1.5"],
["Moderator" , "2"],
2013-09-21 05:30:47 +00:00
["Channel Admin", "3"],
["Nobody" , "1000000"]
2013-06-22 23:02:55 +00:00
];
2013-06-17 22:16:59 +00:00
var modleader = [
["Leader" , "1.5"],
["Moderator" , "2"],
2013-09-21 05:30:47 +00:00
["Channel Admin", "3"],
["Nobody" , "1000000"]
2013-06-17 22:16:59 +00:00
];
var modplus = [
["Moderator" , "2"],
2013-09-21 05:30:47 +00:00
["Channel Admin", "3"],
["Nobody" , "1000000"]
2013-06-17 22:16:59 +00:00
];
2014-01-20 18:16:30 +00:00
$("<h3/>").text("Open playlist permissions").appendTo(form);
2013-06-17 22:16:59 +00:00
makeOption("Add to playlist", "oplaylistadd", standard, CHANNEL.perms.oplaylistadd+"");
makeOption("Add/move to next", "oplaylistnext", standard, CHANNEL.perms.oplaylistnext+"");
makeOption("Move playlist items", "oplaylistmove", standard, CHANNEL.perms.oplaylistmove+"");
makeOption("Delete playlist items", "oplaylistdelete", standard, CHANNEL.perms.oplaylistdelete+"");
makeOption("Jump to video", "oplaylistjump", standard, CHANNEL.perms.oplaylistjump+"");
makeOption("Queue playlist", "oplaylistaddlist", standard, CHANNEL.perms.oplaylistaddlist+"");
addDivider("General playlist permissions");
2014-02-18 01:06:49 +00:00
makeOption("View the playlist", "seeplaylist", standard, CHANNEL.perms.seeplaylist+"");
2013-06-17 22:16:59 +00:00
makeOption("Add to playlist", "playlistadd", standard, CHANNEL.perms.playlistadd+"");
makeOption("Add/move to next", "playlistnext", standard, CHANNEL.perms.playlistnext+"");
makeOption("Move playlist items", "playlistmove", standard, CHANNEL.perms.playlistmove+"");
makeOption("Delete playlist items", "playlistdelete", standard, CHANNEL.perms.playlistdelete+"");
makeOption("Jump to video", "playlistjump", standard, CHANNEL.perms.playlistjump+"");
makeOption("Queue playlist", "playlistaddlist", standard, CHANNEL.perms.playlistaddlist+"");
makeOption("Queue livestream", "playlistaddlive", standard, CHANNEL.perms.playlistaddlive+"");
makeOption("Embed custom media", "playlistaddcustom", standard, CHANNEL.perms.playlistaddcustom + "");
2014-06-04 04:21:00 +00:00
makeOption("Add raw video file", "playlistaddrawfile", standard, CHANNEL.perms.playlistaddrawfile + "");
2013-07-04 23:11:13 +00:00
makeOption("Exceed maximum media length", "exceedmaxlength", standard, CHANNEL.perms.exceedmaxlength+"");
2014-10-06 16:32:25 +00:00
makeOption("Exceed maximum number of videos per user", "exceedmaxitems", standard, CHANNEL.perms.exceedmaxitems+"");
2013-06-17 22:16:59 +00:00
makeOption("Add nontemporary media", "addnontemp", standard, CHANNEL.perms.addnontemp+"");
makeOption("Temp/untemp playlist item", "settemp", standard, CHANNEL.perms.settemp+"");
2014-01-23 22:03:50 +00:00
makeOption("Lock/unlock playlist", "playlistlock", modleader, CHANNEL.perms.playlistlock+"");
2013-06-17 22:16:59 +00:00
makeOption("Shuffle playlist", "playlistshuffle", standard, CHANNEL.perms.playlistshuffle+"");
makeOption("Clear playlist", "playlistclear", standard, CHANNEL.perms.playlistclear+"");
makeOption("Delete from channel library", "deletefromchannellib", standard, CHANNEL.perms.deletefromchannellib+"");
2013-06-17 22:16:59 +00:00
addDivider("Polls");
makeOption("Open/Close poll", "pollctl", modleader, CHANNEL.perms.pollctl+"");
makeOption("Vote", "pollvote", standard, CHANNEL.perms.pollvote+"");
2013-09-12 01:22:00 +00:00
makeOption("View hidden poll results", "viewhiddenpoll", standard, CHANNEL.perms.viewhiddenpoll+"");
2013-09-12 03:16:56 +00:00
makeOption("Voteskip", "voteskip", standard, CHANNEL.perms.voteskip+"");
makeOption("View voteskip results", "viewvoteskip", standard, CHANNEL.perms.viewvoteskip+"");
2013-06-17 22:16:59 +00:00
addDivider("Moderation");
2014-01-23 22:03:50 +00:00
makeOption("Assign/Remove leader", "leaderctl", modplus, CHANNEL.perms.leaderctl+"");
2013-06-25 14:18:33 +00:00
makeOption("Mute users", "mute", modleader, CHANNEL.perms.mute+"");
2013-06-17 22:16:59 +00:00
makeOption("Kick users", "kick", modleader, CHANNEL.perms.kick+"");
makeOption("Ban users", "ban", modplus, CHANNEL.perms.ban+"");
makeOption("Edit MOTD", "motdedit", modplus, CHANNEL.perms.motdedit+"");
makeOption("Edit chat filters", "filteredit", modplus, CHANNEL.perms.filteredit+"");
2014-01-23 22:03:50 +00:00
makeOption("Import chat filters", "filterimport", modplus, CHANNEL.perms.filterimport+"");
2014-02-15 06:12:11 +00:00
makeOption("Edit chat emotes", "emoteedit", modplus, CHANNEL.perms.emoteedit+"");
makeOption("Import chat emotes", "emoteimport", modplus, CHANNEL.perms.emoteimport+"");
2013-06-17 22:16:59 +00:00
addDivider("Misc");
makeOption("Drink calls", "drink", modleader, CHANNEL.perms.drink+"");
2013-06-22 23:02:55 +00:00
makeOption("Chat", "chat", noanon, CHANNEL.perms.chat+"");
2014-07-11 03:03:47 +00:00
makeOption("Clear Chat", "chatclear", modleader, CHANNEL.perms.chatclear+"");
2013-06-17 22:16:59 +00:00
2014-01-20 18:16:30 +00:00
var sgroup = $("<div/>").addClass("form-group").appendTo(form);
var sgroupinner = $("<div/>").addClass("col-sm-8 col-sm-offset-4").appendTo(sgroup);
var submit = $("<button/>").addClass("btn btn-primary").appendTo(sgroupinner);
2013-06-17 22:16:59 +00:00
submit.text("Save");
submit.click(function() {
var perms = {};
2014-01-20 18:16:30 +00:00
form.find("select").each(function() {
2013-06-17 22:16:59 +00:00
perms[$(this).data("key")] = parseFloat($(this).val());
});
socket.emit("setPermissions", perms);
});
2014-01-20 18:16:30 +00:00
var msggroup = $("<div/>").addClass("form-group").insertAfter(sgroup);
var msginner = $("<div/>").addClass("col-sm-8 col-sm-offset-4").appendTo(msggroup);
var text = $("<span/>").addClass("text-info").text("Permissions updated")
.appendTo(msginner);
setTimeout(function () {
msggroup.hide("fade", function () {
msggroup.remove();
});
}, 5000);
2013-06-17 22:16:59 +00:00
}
2013-06-18 14:46:28 +00:00
function waitUntilDefined(obj, key, fn) {
if(typeof obj[key] === "undefined") {
setTimeout(function () {
waitUntilDefined(obj, key, fn);
}, 100);
return;
}
fn();
}
2013-08-06 03:11:56 +00:00
2013-11-25 22:20:15 +00:00
function chatDialog(div) {
var parent = $("<div/>").addClass("profile-box")
2014-01-26 03:29:56 +00:00
.css({
padding: "10px",
"z-index": "auto",
position: "absolute"
})
.appendTo($("#chatwrap"));
2013-11-25 22:20:15 +00:00
div.appendTo(parent);
var cw = $("#chatwrap").width();
var ch = $("#chatwrap").height();
var x = cw/2 - parent.width()/2;
var y = ch/2 - parent.height()/2;
2013-11-25 22:20:15 +00:00
parent.css("left", x + "px");
parent.css("top", y + "px");
return parent;
}
2013-10-17 04:22:37 +00:00
function errDialog(err) {
var div = $("<div/>").addClass("profile-box")
.css("padding", "10px")
.text(err)
.appendTo($("body"));
$("<br/>").appendTo(div);
2013-12-20 03:33:24 +00:00
$("<button/>").addClass("btn btn-xs btn-default")
2013-10-17 04:22:37 +00:00
.css("width", "100%")
.text("OK")
.click(function () { div.remove(); })
.appendTo(div);
var cw = $("#chatwrap").width();
var ch = $("#chatwrap").height();
var cp = $("#chatwrap").offset();
var x = cp.left + cw/2 - div.width()/2;
var y = cp.top + ch/2 - div.height()/2;
2014-01-30 04:50:14 +00:00
div.css("left", x + "px")
.css("top", y + "px")
.css("position", "absolute");
return div;
2013-10-17 04:22:37 +00:00
}
2013-11-11 04:26:30 +00:00
/**
* 2016-12-08
* I *promise* that one day I will actually split this file into submodules
* -cal
*/
function modalAlert(options) {
if (typeof options !== "object" || options === null) {
throw new Error("modalAlert() called without required parameter");
}
var modal = makeModal();
modal.addClass("cytube-modal-alert");
modal.removeClass("fade");
modal.find(".modal-dialog").addClass("modal-dialog-nonfluid");
if (options.title) {
$("<h3/>").text(options.title).appendTo(modal.find(".modal-header"));
}
var contentDiv = $("<div/>").addClass("modal-body");
if (options.htmlContent) {
contentDiv.html(options.htmlContent);
} else if (options.textContent) {
contentDiv.text(options.textContent);
}
contentDiv.appendTo(modal.find(".modal-content"));
var footer = $("<div/>").addClass("modal-footer");
var okButton = $("<button/>").addClass("btn btn-primary")
.attr({ "data-dismiss": "modal"})
.text("OK")
.appendTo(footer);
footer.appendTo(modal.find(".modal-content"));
modal.appendTo(document.body);
modal.modal();
}
2013-11-11 04:26:30 +00:00
function queueMessage(data, type) {
if (!data)
data = { link: null };
if (!data.msg || data.msg === true) {
data.msg = "Queue failed. Check your link to make sure it is valid.";
}
2013-12-20 03:33:24 +00:00
var ltype = "label-danger";
2013-11-11 04:26:30 +00:00
var title = "Error";
2013-12-20 03:33:24 +00:00
if (type === "alert-warning") {
2013-11-11 04:26:30 +00:00
ltype = "label-warning";
title = "Warning";
2013-12-20 03:33:24 +00:00
}
2013-11-11 04:26:30 +00:00
2014-02-28 19:49:17 +00:00
var alerts = $(".qfalert.qf-" + type + " .alert");
2013-11-11 04:26:30 +00:00
for (var i = 0; i < alerts.length; i++) {
var al = $(alerts[i]);
2015-12-21 06:35:24 +00:00
if (al.data("reason") === data.msg) {
2013-11-11 04:26:30 +00:00
var tag = al.find("." + ltype);
if (tag.length > 0) {
var morelinks = al.find(".qflinks");
$("<a/>").attr("href", data.link)
.attr("target", "_blank")
.text(data.link)
.appendTo(morelinks);
$("<br/>").appendTo(morelinks);
var count = parseInt(tag.text().match(/\d+/)[0]) + 1;
tag.text(tag.text().replace(/\d+/, ""+count));
} else {
var tag = $("<span/>")
.addClass("label pull-right pointer " + ltype)
.text("+ 1 more")
.appendTo(al);
var morelinks = $("<div/>")
.addClass("qflinks")
.appendTo(al)
.hide();
$("<a/>").attr("href", data.link)
.attr("target", "_blank")
.text(data.link)
.appendTo(morelinks);
$("<br/>").appendTo(morelinks);
tag.click(function () {
morelinks.toggle();
});
}
return;
}
}
var text = data.msg;
text = text.replace(/(https?:[^ ]+)/g, "<a href='$1' target='_blank'>$1</a>");
2013-11-11 04:26:30 +00:00
if (typeof data.link === "string") {
text += "<br><a href='" + data.link + "' target='_blank'>" +
data.link + "</a>";
}
2015-12-21 06:35:24 +00:00
var newAlert = makeAlert(title, text, type)
2015-03-28 00:08:58 +00:00
.addClass("linewrap qfalert qf-" + type)
.prependTo($("#queuefail"));
2015-12-21 06:35:24 +00:00
newAlert.find(".alert").data("reason", data.msg);
2013-11-11 04:26:30 +00:00
}
2013-11-14 04:36:43 +00:00
2014-02-08 18:45:07 +00:00
function setupChanlogFilter(data) {
data = data.split("\n").filter(function (ln) {
return ln.indexOf("[") === 0 && ln.indexOf("]") > 0;
});
2013-11-16 05:44:53 +00:00
2014-02-08 18:45:07 +00:00
var log = $("#cs-chanlog-text");
var select = $("#cs-chanlog-filter");
select.html("");
log.data("lines", data);
2013-11-16 05:44:53 +00:00
2014-02-08 18:45:07 +00:00
var keys = {};
data.forEach(function (ln) {
2016-05-21 23:18:52 +00:00
var m = ln.match(/^\[.*?\] \[(\w+?)\].*$/);
if (m) {
keys[m[1]] = true;
}
2014-02-08 18:45:07 +00:00
});
2013-11-16 05:44:53 +00:00
2014-02-08 18:45:07 +00:00
Object.keys(keys).forEach(function (key) {
$("<option/>").attr("value", key).text(key).appendTo(select);
});
2014-02-13 05:33:42 +00:00
$("<option/>").attr("value", "chat").text("chat").prependTo(select);
2014-02-08 18:45:07 +00:00
}
2013-11-16 05:44:53 +00:00
2014-02-08 18:45:07 +00:00
function filterChannelLog() {
var log = $("#cs-chanlog-text");
var filter = $("#cs-chanlog-filter").val();
var getKey = function (ln) {
var left = ln.indexOf("[", 1);
var right = ln.indexOf("]", left);
2014-02-13 05:33:42 +00:00
if (left === -1) {
return false;
}
2014-02-08 18:45:07 +00:00
return ln.substring(left+1, right);
};
2013-11-16 05:44:53 +00:00
2014-02-08 18:45:07 +00:00
var getTimestamp = function (ln) {
var right = ln.indexOf("]");
return ln.substring(1, right);
};
2013-11-16 05:44:53 +00:00
2014-02-08 18:45:07 +00:00
var getMessage = function (ln) {
var right = ln.indexOf("]");
return ln.substring(right + 2);
};
2013-11-16 05:44:53 +00:00
2014-02-08 18:45:07 +00:00
var show = [];
(log.data("lines")||[]).forEach(function (ln) {
2014-02-13 05:33:42 +00:00
var key = getKey(ln);
if (!filter || !key && filter.indexOf("chat") !== -1) {
show.push(ln);
} else if (filter.indexOf(key) >= 0) {
2014-02-08 18:45:07 +00:00
show.push(ln);
2013-11-16 05:44:53 +00:00
}
});
2014-02-08 18:45:07 +00:00
log.text(show.join("\n"));
log.scrollTop(log.prop("scrollHeight"));
2013-11-16 02:23:57 +00:00
}
2013-12-15 03:59:47 +00:00
function makeModal() {
var wrap = $("<div/>").addClass("modal fade");
var dialog = $("<div/>").addClass("modal-dialog").appendTo(wrap);
var content = $("<div/>").addClass("modal-content").appendTo(dialog);
var head = $("<div/>").addClass("modal-header").appendTo(content);
$("<button/>").addClass("close")
.attr("data-dismiss", "modal")
.attr("data-hidden", "true")
.html("&times;")
.appendTo(head);
2014-01-19 02:18:00 +00:00
wrap.on("hidden.bs.modal", function () {
2013-12-15 03:59:47 +00:00
wrap.remove();
});
return wrap;
}
2014-01-09 23:16:09 +00:00
function formatCSModList() {
var tbl = $("#cs-chanranks table");
tbl.find("tbody").remove();
var entries = tbl.data("entries") || [];
entries.sort(function(a, b) {
if (a.rank === b.rank) {
var x = a.name.toLowerCase();
var y = b.name.toLowerCase();
return y == x ? 0 : (x < y ? -1 : 1);
}
return b.rank - a.rank;
});
entries.forEach(function (entry) {
var tr = $("<tr/>").addClass("cs-chanrank-tr-" + entry.name);
var name = $("<td/>").text(entry.name).appendTo(tr);
name.addClass(getNameColor(entry.rank));
var rankwrap = $("<td/>");
var rank = $("<span/>").text(entry.rank).appendTo(rankwrap);
var dd = $("<div/>").addClass("btn-group");
var toggle = $("<button/>")
.addClass("btn btn-xs btn-default dropdown-toggle")
.attr("data-toggle", "dropdown")
.html("Edit <span class=caret></span>")
.appendTo(dd);
2014-03-01 23:37:59 +00:00
if (CLIENT.rank <= entry.rank && !(CLIENT.rank === 4 && entry.rank === 4)) {
2014-01-09 23:16:09 +00:00
toggle.addClass("disabled");
}
var menu = $("<ul/>").addClass("dropdown-menu")
.attr("role", "menu")
.appendTo(dd);
var ranks = [
{ name: "Remove Moderator", rank: 1 },
{ name: "Moderator", rank: 2 },
2014-02-26 20:37:51 +00:00
{ name: "Admin", rank: 3 },
{ name: "Owner", rank: 4 },
{ name: "Founder", rank: 5 }
2014-01-09 23:16:09 +00:00
];
ranks.forEach(function (r) {
var li = $("<li/>").appendTo(menu);
var a = $("<a/>")
.addClass(getNameColor(r.rank))
.attr("href", "javascript:void(0)")
.text(r.name)
.appendTo(li);
if (r.rank !== entry.rank) {
a.click(function () {
socket.emit("setChannelRank", {
2014-05-21 03:11:40 +00:00
name: entry.name,
2014-01-09 23:16:09 +00:00
rank: r.rank
});
});
} else {
2014-02-26 20:37:51 +00:00
$("<span/>").addClass("glyphicon glyphicon-ok")
2014-01-09 23:16:09 +00:00
.appendTo(a);
li.addClass("disabled");
}
if (r.rank > CLIENT.rank || (CLIENT.rank < 4 && r.rank === CLIENT.rank)) {
li.addClass("disabled");
}
});
dd.css("margin-right", "10px").prependTo(rankwrap);
rankwrap.appendTo(tr);
tr.appendTo(tbl);
});
}
2014-01-09 23:43:07 +00:00
function formatCSBanlist() {
var tbl = $("#cs-banlist table");
tbl.find("tbody").remove();
var entries = tbl.data("entries") || [];
var sparse = {};
for (var i = 0; i < entries.length; i++) {
if (!(entries[i].name in sparse)) {
sparse[entries[i].name] = [];
}
sparse[entries[i].name].push(entries[i]);
}
var flat = [];
for (var name in sparse) {
flat.push({
name: name,
bans: sparse[name]
});
}
flat.sort(function (a, b) {
var x = a.name.toLowerCase(),
y = b.name.toLowerCase();
return x === y ? 0 : (x > y ? 1 : -1);
});
var addBanRow = function (entry, after) {
var tr = $("<tr/>");
if (after) {
tr.insertAfter(after);
} else {
tr.appendTo(tbl);
}
var unban = $("<button/>").addClass("btn btn-xs btn-danger")
.appendTo($("<td/>").appendTo(tr));
2014-01-12 05:55:52 +00:00
unban.click(function () {
socket.emit("unban", {
id: entry.id,
name: entry.name
});
});
2014-01-09 23:43:07 +00:00
$("<span/>").addClass("glyphicon glyphicon-remove-circle").appendTo(unban);
$("<td/>").text(entry.ip).appendTo(tr);
$("<td/>").text(entry.name).appendTo(tr);
$("<td/>").text(entry.bannedby).appendTo(tr);
2014-08-18 16:49:03 +00:00
tr.attr("title", "Ban Reason: " + entry.reason);
2014-01-09 23:43:07 +00:00
return tr;
};
flat.forEach(function (person) {
var bans = person.bans;
var name = person.name;
var first = addBanRow(bans.shift());
if (bans.length > 0) {
var showmore = $("<button/>").addClass("btn btn-xs btn-default pull-right");
$("<span/>").addClass("glyphicon glyphicon-list").appendTo(showmore);
showmore.appendTo(first.find("td")[1]);
showmore.click(function () {
if (showmore.data("elems")) {
showmore.data("elems").forEach(function (e) {
e.remove();
});
showmore.data("elems", null);
} else {
var elems = [];
bans.forEach(function (b) {
elems.push(addBanRow(b, first));
});
showmore.data("elems", elems);
}
});
}
});
}
2014-01-16 17:53:34 +00:00
2014-04-13 07:14:34 +00:00
function checkEntitiesInStr(str) {
var entities = {
"&": "&amp;",
"<": "&lt;",
">": "&gt;",
'"': "&quot;",
"'": "&#39;",
2014-05-21 05:41:21 +00:00
"\\(": "&#40;",
"\\)": "&#41;"
2014-04-13 07:14:34 +00:00
};
2014-05-21 05:41:21 +00:00
var m = str.match(/([&<>"'])|(\\\()|(\\\))/);
2014-04-13 07:14:34 +00:00
if (m && m[1] in entities) {
2014-05-21 05:41:21 +00:00
return { src: m[1].replace(/^\\/, ""), replace: entities[m[1]] };
2014-04-13 07:14:34 +00:00
} else {
return false;
}
}
2014-01-16 17:53:34 +00:00
function formatCSChatFilterList() {
var tbl = $("#cs-chatfilters table");
tbl.find("tbody").remove();
tbl.find(".ui-sortable").remove();
var entries = tbl.data("entries") || [];
entries.forEach(function (f) {
var tr = $("<tr/>").appendTo(tbl);
2014-01-16 22:20:08 +00:00
var controlgroup = $("<div/>").addClass("btn-group")
.appendTo($("<td/>").appendTo(tr));
2014-01-16 17:53:34 +00:00
var control = $("<button/>").addClass("btn btn-xs btn-default")
.attr("title", "Edit this filter")
2014-01-16 22:20:08 +00:00
.appendTo(controlgroup);
2014-01-16 17:53:34 +00:00
$("<span/>").addClass("glyphicon glyphicon-list").appendTo(control);
2014-01-16 22:20:08 +00:00
var del = $("<button/>").addClass("btn btn-xs btn-danger")
.appendTo(controlgroup);
$("<span/>").addClass("glyphicon glyphicon-trash").appendTo(del);
del.click(function () {
socket.emit("removeFilter", f);
});
2014-01-16 17:53:34 +00:00
var name = $("<code/>").text(f.name).appendTo($("<td/>").appendTo(tr));
var activetd = $("<td/>").appendTo(tr);
var active = $("<input/>").attr("type", "checkbox")
.prop("checked", f.active)
.appendTo(activetd)
.change(function () {
f.active = $(this).prop("checked");
socket.emit("updateFilter", f);
});
2014-01-16 22:20:08 +00:00
var reset = function () {
control.data("editor") && control.data("editor").remove();
control.data("editor", null);
control.parent().find(".btn-success").remove();
var tbody = $(tbl.children()[1]);
if (tbody.find(".filter-edit-row").length === 0) {
tbody.sortable("enable");
}
};
2014-01-16 17:53:34 +00:00
control.click(function () {
2014-01-16 22:20:08 +00:00
if (control.data("editor")) {
return reset();
}
$(tbl.children()[1]).sortable("disable");
var tr2 = $("<tr/>").insertAfter(tr).addClass("filter-edit-row");
2014-01-16 17:53:34 +00:00
var wrap = $("<td/>").attr("colspan", "3").appendTo(tr2);
var form = $("<form/>").addClass("form-inline").attr("role", "form")
.attr("action", "javascript:void(0)")
.appendTo(wrap);
var addTextbox = function (placeholder) {
var div = $("<div/>").addClass("form-group").appendTo(form)
2014-11-13 01:56:29 +00:00
.css("margin-right", "10px");
2014-01-16 17:53:34 +00:00
var input = $("<input/>").addClass("form-control")
.attr("type", "text")
.attr("placeholder", placeholder)
.attr("title", placeholder)
.appendTo(div);
return input;
};
var regex = addTextbox("Filter regex").val(f.source);
var flags = addTextbox("Regex flags").val(f.flags);
var replace = addTextbox("Replacement text").val(f.replace);
var checkwrap = $("<div/>").addClass("checkbox").appendTo(form);
var checklbl = $("<label/>").text("Filter Links").appendTo(checkwrap);
2014-01-16 22:20:08 +00:00
var filterlinks = $("<input/>").attr("type", "checkbox")
.prependTo(checklbl)
.prop("checked", f.filterlinks);
2014-01-16 17:53:34 +00:00
var save = $("<button/>").addClass("btn btn-xs btn-success")
2014-01-16 22:20:08 +00:00
.attr("title", "Save changes")
2014-01-16 17:53:34 +00:00
.insertAfter(control);
2014-01-16 22:20:08 +00:00
$("<span/>").addClass("glyphicon glyphicon-floppy-save").appendTo(save);
save.click(function () {
f.source = regex.val();
2014-04-13 07:14:34 +00:00
var entcheck = checkEntitiesInStr(f.source);
if (entcheck) {
alert("Warning: " + entcheck.src + " will be replaced by " +
entcheck.replace + " in the message preprocessor. This " +
"regular expression may not match what you intended it to " +
"match.");
}
2014-01-16 22:20:08 +00:00
f.flags = flags.val();
f.replace = replace.val();
f.filterlinks = filterlinks.prop("checked");
socket.emit("updateFilter", f);
2014-12-28 16:12:37 +00:00
socket.once("updateFilterSuccess", function () {
reset();
});
2014-01-16 22:20:08 +00:00
});
control.data("editor", tr2);
2014-01-16 17:53:34 +00:00
});
});
$(tbl.children()[1]).sortable({
start: function(ev, ui) {
FILTER_FROM = ui.item.prevAll().length;
},
update: function(ev, ui) {
FILTER_TO = ui.item.prevAll().length;
if(FILTER_TO != FILTER_FROM) {
socket.emit("moveFilter", {
from: FILTER_FROM,
to: FILTER_TO
});
}
}
});
}
2014-02-02 18:41:41 +00:00
function formatTime(sec) {
var h = Math.floor(sec / 3600) + "";
var m = Math.floor((sec % 3600) / 60) + "";
var s = sec % 60 + "";
if (h.length < 2) {
h = "0" + h;
}
if (m.length < 2) {
m = "0" + m;
}
if (s.length < 2) {
s = "0" + s;
}
if (h === "00") {
return [m, s].join(":");
} else {
return [h, m, s].join(":");
}
}
function formatUserPlaylistList() {
var list = $("#userpl_list").data("entries") || [];
list.sort(function (a, b) {
var x = a.name.toLowerCase();
var y = b.name.toLowerCase();
return x == y ? 0 : (x < y ? -1 : 1);
});
$("#userpl_list").html("");
list.forEach(function (pl) {
var li = $("<li/>").addClass("queue_entry").appendTo($("#userpl_list"));
var title = $("<span/>").addClass("qe_title").appendTo(li)
.text(pl.name);
var time = $("<span/>").addClass("pull-right").appendTo(li)
.text(pl.count + " items, playtime " + formatTime(pl.duration));
var clear = $("<div/>").addClass("qe_clear").appendTo(li);
var btns = $("<div/>").addClass("btn-group pull-left").prependTo(li);
if (hasPermission("playlistadd")) {
$("<button/>").addClass("btn btn-xs btn-default")
.text("End")
.appendTo(btns)
.click(function () {
socket.emit("queuePlaylist", {
name: pl.name,
2014-02-28 14:43:04 +00:00
pos: "end",
temp: $(".add-temp").prop("checked")
2014-02-02 18:41:41 +00:00
});
});
}
if (hasPermission("playlistadd") && hasPermission("playlistnext")) {
$("<button/>").addClass("btn btn-xs btn-default")
.text("Next")
.prependTo(btns)
.click(function () {
socket.emit("queuePlaylist", {
name: pl.name,
2014-02-28 14:43:04 +00:00
pos: "next",
temp: $(".add-temp").prop("checked")
2014-02-02 18:41:41 +00:00
});
});
}
$("<button/>").addClass("btn btn-xs btn-danger")
.html("<span class='glyphicon glyphicon-trash'></span>")
.attr("title", "Delete playlist")
.appendTo(btns)
.click(function () {
var really = confirm("Are you sure you want to delete" +
" this playlist? This cannot be undone.");
if (!really) {
return;
}
2014-02-02 18:41:41 +00:00
socket.emit("deletePlaylist", {
name: pl.name
});
});
});
}
2014-02-10 05:53:46 +00:00
function loadEmotes(data) {
CHANNEL.emotes = [];
data.forEach(function (e) {
2015-12-06 02:52:39 +00:00
if (e.image && e.name) {
e.regex = new RegExp(e.source, "gi");
CHANNEL.emotes.push(e);
} else {
console.error("Rejecting invalid emote: " + JSON.stringify(e));
}
2014-02-10 05:53:46 +00:00
});
}
function execEmotes(msg) {
if (USEROPTS.no_emotes) {
return msg;
}
CHANNEL.emotes.forEach(function (e) {
2014-02-16 07:33:38 +00:00
msg = msg.replace(e.regex, '$1<img class="channel-emote" src="' +
e.image + '" title="' + e.name + '">');
2014-02-10 05:53:46 +00:00
});
return msg;
}
2014-02-15 07:40:14 +00:00
function initPm(user) {
if ($("#pm-" + user).length > 0) {
return $("#pm-" + user);
}
var pm = $("<div/>").addClass("panel panel-default pm-panel")
.appendTo($("#pmbar"))
.data("last", { name: "" })
.attr("id", "pm-" + user);
var title = $("<div/>").addClass("panel-heading").text(user).appendTo(pm);
var close = $("<button/>").addClass("close pull-right")
.html("&times;")
.appendTo(title).click(function () {
pm.remove();
$("#pm-placeholder-" + user).remove();
});
var body = $("<div/>").addClass("panel-body").appendTo(pm).hide();
var placeholder;
title.click(function () {
body.toggle();
pm.removeClass("panel-primary").addClass("panel-default");
if (!body.is(":hidden")) {
placeholder = $("<div/>").addClass("pm-panel-placeholder")
.attr("id", "pm-placeholder-" + user)
.insertAfter(pm);
var left = pm.position().left;
pm.css("position", "absolute")
.css("bottom", "0px")
.css("left", left);
} else {
pm.css("position", "");
$("#pm-placeholder-" + user).remove();
}
});
var buffer = $("<div/>").addClass("pm-buffer linewrap").appendTo(body);
$("<hr/>").appendTo(body);
var input = $("<input/>").addClass("form-control pm-input").attr("type", "text")
2015-04-24 02:49:01 +00:00
.attr("maxlength", 240)
2014-02-15 07:40:14 +00:00
.appendTo(body);
input.keydown(function (ev) {
2014-02-15 07:40:14 +00:00
if (ev.keyCode === 13) {
2015-04-24 02:49:01 +00:00
if (CHATTHROTTLE) {
return;
}
2014-02-15 07:40:14 +00:00
var meta = {};
var msg = input.val();
if (msg.trim() === "") {
return;
}
if (USEROPTS.modhat && CLIENT.rank >= Rank.Moderator) {
meta.modflair = CLIENT.rank;
}
if (CLIENT.rank >= 2 && msg.indexOf("/m ") === 0) {
meta.modflair = CLIENT.rank;
msg = msg.substring(3);
}
socket.emit("pm", {
to: user,
msg: msg,
meta: meta
});
input.val("");
}
});
return pm;
}
2014-03-08 02:37:20 +00:00
function killVideoUntilItIsDead(video) {
try {
video[0].volume = 0;
video[0].muted = true;
video.attr("src", "");
video.remove();
} catch (e) {
}
}
function fallbackRaw(data) {
$("<div/>").insertBefore($("#ytapiplayer")).attr("id", "ytapiplayer");
$("video").each(function () {
killVideoUntilItIsDead($(this));
});
$("audio").each(function () {
killVideoUntilItIsDead($(this));
});
2014-03-08 02:37:20 +00:00
data.type = "fl";
data.url = data.direct.sd.url;
PLAYER.player = undefined;
PLAYER = new FlashPlayer(data);
handleMediaUpdate(data);
}
function checkScriptAccess(source, type, cb) {
var pref = JSPREF[CHANNEL.name.toLowerCase() + "_" + type];
if (pref === "ALLOW") {
return cb("ALLOW");
} else if (pref !== "DENY") {
var div = $("#chanjs-allow-prompt");
if (div.length > 0) {
setTimeout(function () {
checkScriptAccess(source, type, cb);
}, 500);
return;
}
div = $("<div/>").attr("id", "chanjs-allow-prompt");
var close = $("<button/>").addClass("close pull-right")
.html("&times;")
.appendTo(div);
var form = $("<form/>")
2014-07-02 03:29:12 +00:00
.attr("action", "javascript:void(0)")
.attr("id", "chanjs-allow-prompt")
.attr("style", "text-align: center")
.appendTo(div);
form.append("<span>This channel has special features that require your permission to run.</span><br>");
$("<a/>").attr("href", source)
.attr("target", "_blank")
.text(type === "embedded" ? "view embedded script" : source)
.appendTo(form);
form.append("<div id='chanjs-allow-prompt-buttons'>" +
"<button id='chanjs-allow' class='btn btn-xs btn-danger'>Allow</button>" +
"<button id='chanjs-deny' class='btn btn-xs btn-danger'>Deny</button>" +
"</div>");
form.append("<div class='checkbox'><label><input type='checkbox' " +
"id='chanjs-save-pref'/>Remember my choice for this channel" +
"</label></div>");
var dialog = chatDialog(div);
close.click(function () {
dialog.remove();
/* Implicit denial of script access */
cb("DENY");
});
$("#chanjs-allow").click(function () {
var save = $("#chanjs-save-pref").is(":checked");
dialog.remove();
if (save) {
JSPREF[CHANNEL.name.toLowerCase() + "_" + type] = "ALLOW";
setOpt("channel_js_pref", JSPREF);
}
cb("ALLOW");
});
$("#chanjs-deny").click(function () {
var save = $("#chanjs-save-pref").is(":checked");
dialog.remove();
if (save) {
JSPREF[CHANNEL.name.toLowerCase() + "_" + type] = "DENY";
setOpt("channel_js_pref", JSPREF);
}
cb("DENY");
});
}
}
function formatScriptAccessPrefs() {
var tbl = $("#us-scriptcontrol table");
tbl.find("tbody").remove();
var channels = Object.keys(JSPREF).sort();
channels.forEach(function (channel) {
var idx = String(channel).lastIndexOf("_");
if (idx < 0) {
// Invalid
console.error("Channel JS pref: invalid key '" + channel + "', deleting it");
delete JSPREF[channel];
setOpt("channel_js_pref", JSPREF);
return;
}
var channelName = channel.substring(0, idx);
var prefType = channel.substring(idx + 1);
console.log(channelName, prefType);
if (prefType !== "external" && prefType !== "embedded") {
// Invalid
console.error("Channel JS pref: invalid key '" + channel + "', deleting it");
delete JSPREF[channel];
setOpt("channel_js_pref", JSPREF);
return;
}
var pref = JSPREF[channel];
var tr = $("<tr/>").appendTo(tbl);
$("<td/>").text(channelName).appendTo(tr);
$("<td/>").text(prefType).appendTo(tr);
var pref_td = $("<td/>").appendTo(tr);
var allow_label = $("<label/>").addClass("radio-inline")
.text("Allow").appendTo(pref_td);
var allow = $("<input/>").attr("type", "radio")
.prop("checked", pref === "ALLOW").
prependTo(allow_label);
allow.change(function () {
if (allow.is(":checked")) {
JSPREF[channel] = "ALLOW";
setOpt("channel_js_pref", JSPREF);
deny.prop("checked", false);
}
});
var deny_label = $("<label/>").addClass("radio-inline")
.text("Deny").appendTo(pref_td);
var deny = $("<input/>").attr("type", "radio")
.prop("checked", pref === "DENY").
prependTo(deny_label);
deny.change(function () {
if (deny.is(":checked")) {
JSPREF[channel] = "DENY";
setOpt("channel_js_pref", JSPREF);
allow.prop("checked", false);
}
});
var clearpref = $("<button/>").addClass("btn btn-sm btn-danger")
.text("Clear Preference")
.appendTo($("<td/>").appendTo(tr))
.click(function () {
delete JSPREF[channel];
setOpt("channel_js_pref", JSPREF);
tr.remove();
});
});
}
/*
VIMEO SIMULATOR 2014
Vimeo decided to block my domain. After repeated emails, they refused to
unblock it. Rather than give in to their demands, there is a serverside
option which extracts direct links to the h264 encoded MP4 video files.
These files can be loaded in a custom player to allow Vimeo playback without
triggering their dumb API domain block.
It's a little bit hacky, but my only other option is to keep buying new
domains every time one gets blocked. No thanks to Vimeo, who were of no help
and unwilling to compromise on the issue.
*/
function vimeoSimulator2014(data) {
/* Vimeo Simulator uses the raw file player */
data.type = "fi";
/* Convert youtube-style quality key to vimeo workaround quality */
var q = {
small: "mobile",
medium: "sd",
large: "sd",
hd720: "hd",
hd1080:"hd",
highres: "hd"
}[USEROPTS.default_quality] || "sd";
var fallback = {
hd: "sd",
sd: "mobile",
mobile: false
};
/* Pick highest quality less than or equal to user's preference from the options */
while (!(q in data.meta.direct) && q != false) {
q = fallback[q];
}
if (!q) {
q = "sd";
}
data.url = data.meta.direct[q].url;
return data;
}
2014-07-11 06:23:48 +00:00
function googlePlusSimulator2014(data) {
/* Google+ Simulator uses the raw file player */
data.type = "fi";
if (!data.meta.gpdirect) {
data.url = "";
return data;
}
2014-07-11 06:23:48 +00:00
/* Convert youtube-style quality key to vimeo workaround quality */
var q = USEROPTS.default_quality || "auto";
if (q === "highres") {
q = "hd1080";
}
2014-07-11 06:23:48 +00:00
var fallbacks = ["hd1080", "hd720", "large", "medium", "small"];
var i = fallbacks.indexOf(q);
if (i < 0) {
i = fallbacks.indexOf("medium");
}
while (!(q in data.meta.gpdirect) && i < fallbacks.length) {
2014-07-11 06:23:48 +00:00
q = fallbacks[i++];
}
2014-08-14 21:28:44 +00:00
2014-07-11 06:23:48 +00:00
if (i === fallbacks.length) {
2014-08-14 21:28:44 +00:00
var hasCodecs = Object.keys(data.meta.gpdirect);
if (hasCodecs.length > 0) {
q = hasCodecs[0];
}
2014-07-11 06:23:48 +00:00
}
data.url = data.meta.gpdirect[q].url;
data.contentType = data.meta.gpdirect[q].contentType;
2014-07-11 06:23:48 +00:00
return data;
}
2015-05-12 18:50:59 +00:00
2016-05-05 03:52:55 +00:00
function EmoteList(selector, emoteClickCallback) {
this.elem = $(selector);
this.initSearch();
this.initSortOption();
this.table = this.elem.find(".emotelist-table")[0];
this.paginatorContainer = this.elem.find(".emotelist-paginator-container");
2015-05-12 18:50:59 +00:00
this.cols = 5;
this.itemsPerPage = 25;
this.emotes = [];
this.page = 0;
2016-05-05 03:52:55 +00:00
this.emoteClickCallback = emoteClickCallback || function(){};
2015-05-12 18:50:59 +00:00
}
EmoteList.prototype.initSearch = function () {
this.searchbar = this.elem.find(".emotelist-search");
var self = this;
this.searchbar.keyup(function () {
var value = this.value.toLowerCase();
if (value) {
self.filter = function (emote) {
return emote.name.toLowerCase().indexOf(value) >= 0;
};
} else {
self.filter = null;
}
self.handleChange();
self.loadPage(0);
});
};
EmoteList.prototype.initSortOption = function () {
this.sortOption = this.elem.find(".emotelist-alphabetical");
this.sortAlphabetical = false;
var self = this;
this.sortOption.change(function () {
self.sortAlphabetical = this.checked;
self.handleChange();
self.loadPage(0);
});
};
2015-05-13 17:17:32 +00:00
EmoteList.prototype.handleChange = function () {
this.emotes = CHANNEL.emotes.slice();
if (this.sortAlphabetical) {
2015-05-13 17:17:32 +00:00
this.emotes.sort(function (a, b) {
2015-05-12 18:50:59 +00:00
var x = a.name.toLowerCase();
var y = b.name.toLowerCase();
if (x < y) {
return -1;
} else if (x > y) {
return 1;
} else {
return 0;
}
});
2015-05-13 17:17:32 +00:00
}
if (this.filter) {
this.emotes = this.emotes.filter(this.filter);
}
this.paginator = new NewPaginator(this.emotes.length, this.itemsPerPage,
this.loadPage.bind(this));
this.paginatorContainer.html("");
this.paginatorContainer.append(this.paginator.elem);
2015-05-13 17:17:32 +00:00
this.paginator.loadPage(this.page);
2015-05-12 18:50:59 +00:00
};
EmoteList.prototype.loadPage = function (page) {
var tbody = this.table.children[0];
tbody.innerHTML = "";
var row;
var start = page * this.itemsPerPage;
if (start >= this.emotes.length) return;
2015-05-13 17:17:32 +00:00
var end = Math.min(start + this.itemsPerPage, this.emotes.length);
2015-05-12 18:50:59 +00:00
var _this = this;
for (var i = start; i < end; i++) {
if ((i - start) % this.cols === 0) {
row = document.createElement("tr");
tbody.appendChild(row);
}
(function (emote) {
var td = document.createElement("td");
td.className = "emote-preview-container";
// Trick element to vertically align the emote within the container
var hax = document.createElement("span");
hax.className = "emote-preview-hax";
td.appendChild(hax);
var img = document.createElement("img");
img.src = emote.image;
img.className = "emote-preview";
img.title = emote.name;
2016-05-05 03:52:55 +00:00
img.onclick = _this.emoteClickCallback.bind(null, emote);
2015-05-12 18:50:59 +00:00
td.appendChild(img);
row.appendChild(td);
})(this.emotes[i]);
}
this.page = page;
};
2016-05-05 03:52:55 +00:00
function onEmoteClicked(emote) {
var val = chatline.value;
if (!val) {
chatline.value = emote.name;
} else {
if (!val.charAt(val.length - 1).match(/\s/)) {
chatline.value += " ";
}
chatline.value += emote.name;
}
window.EMOTELISTMODAL.modal("hide");
chatline.focus();
}
window.EMOTELIST = new EmoteList("#emotelist", onEmoteClicked);
window.EMOTELIST.sortAlphabetical = USEROPTS.emotelist_sort;
2015-07-17 04:43:21 +00:00
function CSEmoteList(selector) {
EmoteList.call(this, selector);
}
CSEmoteList.prototype = Object.create(EmoteList.prototype);
CSEmoteList.prototype.loadPage = function (page) {
var tbody = this.table.children[1];
tbody.innerHTML = "";
var start = page * this.itemsPerPage;
if (start >= this.emotes.length) {
return;
}
var end = Math.min(start + this.itemsPerPage, this.emotes.length);
var self = this;
2016-07-13 06:04:07 +00:00
this.page = page;
for (var i = start; i < end; i++) {
var row = document.createElement("tr");
tbody.appendChild(row);
(function (emote) {
// Add delete button
var tdDelete = document.createElement("td");
var btnDelete = document.createElement("button");
btnDelete.className = "btn btn-xs btn-danger";
var pennJillette = document.createElement("span");
pennJillette.className = "glyphicon glyphicon-trash";
btnDelete.appendChild(pennJillette);
tdDelete.appendChild(btnDelete);
row.appendChild(tdDelete);
2016-07-13 06:04:07 +00:00
btnDelete.onclick = function deleteEmote() {
document.getElementById("cs-emotes-newname").value = emote.name;
document.getElementById("cs-emotes-newimage").value = emote.image;
socket.emit("removeEmote", emote);
};
// Add emote name
// TODO: editable
var tdName = document.createElement("td");
var nameDisplay = document.createElement("code");
nameDisplay.textContent = emote.name;
tdName.appendChild(nameDisplay);
row.appendChild(tdName);
// Add emote image
var tdImage = document.createElement("td");
var urlDisplay = document.createElement("code");
urlDisplay.textContent = emote.image;
tdImage.appendChild(urlDisplay);
row.appendChild(tdImage);
// Add popover to display the image
var $urlDisplay = $(urlDisplay);
$urlDisplay.popover({
html: true,
trigger: "hover",
content: '<img src="' + emote.image + '" class="channel-emote">'
});
// Change the image for an emote
$urlDisplay.click(function (clickEvent) {
$(tdImage).find(".popover").remove();
$urlDisplay.detach();
var editInput = document.createElement("input");
editInput.className = "form-control";
editInput.type = "text";
editInput.value = emote.image;
tdImage.appendChild(editInput);
editInput.focus();
function save() {
var val = editInput.value;
tdImage.removeChild(editInput);
tdImage.appendChild(urlDisplay);
socket.emit("updateEmote", {
name: emote.name,
image: val
});
}
editInput.onblur = save;
editInput.onkeyup = function (event) {
if (event.keyCode === 13) {
save();
}
};
});
})(this.emotes[i]);
}
};
window.CSEMOTELIST = new CSEmoteList("#cs-emotes");
window.CSEMOTELIST.sortAlphabetical = USEROPTS.emotelist_sort;
2016-07-13 06:04:07 +00:00
function showChannelSettings() {
$("#channeloptions").modal();
}
// There is a point where this file needed to stop and we have clearly passed
// it but let's keep going and see what happens
function startQueueSpinner(data) {
if ($("#queueprogress").length > 0) {
return;
}
var id = data.id;
if (data.type === "yp") {
id = "$any";
}
var progress = $("<div/>").addClass("progress").attr("id", "queueprogress")
.data("queue-id", id);
var progressBar = $("<div/>").addClass("progress-bar progress-bar-striped active")
.attr({
role: "progressbar",
"aria-valuenow": "100",
"aria-valuemin": "0",
"aria-valuemax": "100",
}).css({
width: "100%"
}).appendTo(progress);
progress.appendTo($("#addfromurl"));
}
function stopQueueSpinner(data) {
var shouldRemove = (data !== null &&
typeof data === 'object' &&
$("#queueprogress").data("queue-id") === data.id);
shouldRemove = shouldRemove || data === null;
shouldRemove = shouldRemove || $("#queueprogress").data("queue-id") === "$any";
if (shouldRemove) {
$("#queueprogress").remove();
}
}
2016-10-08 02:55:41 +00:00
function maybePromptToUpgradeUserscript() {
if (document.getElementById('prompt-upgrade-drive-userscript')) {
return;
}
if (!window.hasDriveUserscript) {
return;
}
2016-10-21 02:07:03 +00:00
var currentVersion = [1, 3];
2016-10-08 02:55:41 +00:00
var userscriptVersion = window.driveUserscriptVersion;
if (!userscriptVersion) {
userscriptVersion = '1.0';
}
userscriptVersion = userscriptVersion.split('.').map(function (part) {
return parseInt(part, 10);
});
var older = false;
for (var i = 0; i < currentVersion.length; i++) {
if (userscriptVersion[i] < currentVersion[i]) {
older = true;
}
}
if (!older) {
return;
}
var alertBox = document.createElement('div');
alertBox.id = 'prompt-upgrade-drive-userscript';
alertBox.className = 'alert alert-info'
alertBox.innerHTML = 'A newer version of the Google Drive userscript is available.';
alertBox.appendChild(document.createElement('br'));
var infoLink = document.createElement('a');
infoLink.className = 'btn btn-info';
infoLink.href = '/google_drive_userscript';
infoLink.textContent = 'Click here for installation instructions';
infoLink.target = '_blank';
alertBox.appendChild(infoLink);
var closeButton = document.createElement('button');
closeButton.className = 'close pull-right';
closeButton.innerHTML = '&times;';
closeButton.onclick = function () {
alertBox.parentNode.removeChild(alertBox);
}
alertBox.insertBefore(closeButton, alertBox.firstChild)
document.getElementById('videowrap').appendChild(alertBox);
}
function backoffRetry(fn, cb, options) {
var jitter = options.jitter || 0;
var factor = options.factor || 1;
var isRetryable = options.isRetryable || function () { return true; };
var tries = 0;
function callback(error, result) {
tries++;
factor *= factor;
if (error) {
if (tries >= options.maxTries) {
console.log('Max tries exceeded');
cb(error, result);
} else if (isRetryable(error)) {
var offset = Math.random() * jitter;
var delay = options.delay * factor + offset;
console.log('Retrying on error: ' + error);
console.log('Waiting ' + delay + ' ms before retrying');
setTimeout(function () {
fn(callback);
}, delay);
}
} else {
cb(error, result);
}
}
fn(callback);
}
CyTube.ui.changeVideoWidth = function uiChangeVideoWidth(direction) {
var body = document.body;
if (/hd/.test(body.className)) {
throw new Error("ui::changeVideoWidth does not work with the 'hd' layout");
}
var videoWrap = document.getElementById("videowrap");
var leftControls = document.getElementById("leftcontrols");
var leftPane = document.getElementById("leftpane");
var chatWrap = document.getElementById("chatwrap");
var rightControls = document.getElementById("rightcontrols");
var rightPane = document.getElementById("rightpane");
var match = videoWrap.className.match(/col-md-(\d+)/);
if (!match) {
throw new Error("ui::changeVideoWidth: videowrap is missing bootstrap class!");
}
var videoWidth = parseInt(match[1], 10) + direction;
if (videoWidth < 3 || videoWidth > 9) {
return;
}
var chatWidth = 12 - videoWidth;
videoWrap.className = "col-md-" + videoWidth + " col-lg-" + videoWidth;
rightControls.className = "col-md-" + videoWidth + " col-lg-" + videoWidth;
rightPane.className = "col-md-" + videoWidth + " col-lg-" + videoWidth;
chatWrap.className = "col-md-" + chatWidth + " col-lg-" + chatWidth;
leftControls.className = "col-md-" + chatWidth + " col-lg-" + chatWidth;
leftPane.className = "col-md-" + chatWidth + " col-lg-" + chatWidth;
handleVideoResize();
};