123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680 |
- function getSpotifyInfo(title, cb, artist) {
- var q = "";
- q = title;
- if (artist !== undefined) {
- q += " artist:" + artist;
- }
- $.ajax({
- type: "GET",
- url: 'https://api.spotify.com/v1/search?q=' + encodeURIComponent(q) + '&type=track',
- applicationType: "application/json",
- contentType: "json",
- success: function (data) {
- cb(data);
- }
- });
- }
- function executeCommand(command, params){
- if (command === "help" || command === "commands") {
- $('#helpModal').modal('show');
- return true;
- } else if (command === "volume") {
- if (params.length === 1) {
- var volume = Number(params[0]);
- if (volume >= 0 || volume <= 100) {
- if (volume === 0) {
- $("#volume-icon").removeClass("fa-volume-down").addClass("fa-volume-off")
- } else {
- $("#volume-icon").removeClass("fa-volume-off").addClass("fa-volume-down")
- }
- $("#volume-slider").slider("setValue", volume);
- if (YTPlayer !== undefined) {
- YTPlayer.setVolume(volume);
- localStorage.setItem("volume", volume);
- } else if (SCPlayer !== undefined) {
- //SCPlayer
- var volume = volume / 100;
- SCPlayer.setVolume(volume);
- localStorage.setItem("volume", volume * 100);
- }
- return true;
- }
- }
- } else if(command === "mute"){
- $("#volume-slider").slider("setValue", 0);
- $("#volume-icon").removeClass("fa-volume-down").addClass("fa-volume-off");
- if (YTPlayer !== undefined) {
- YTPlayer.setVolume(0);
- localStorage.setItem("volume", 0);
- } else if (SCPlayer !== undefined) {
- //SCPlayer
- SCPlayer.setVolume(0);
- localStorage.setItem("volume", 0);
- }
- } else if(command === "ban"){
- var user = params[0];
- var time = params[1];
- var reason = params[2];
- Meteor.call("banUser", user, time, reason, function(err, res){
- if(err){
- console.log(err);
- }
- });
- } else if(command === "silence"){
- var user = params[0];
- var time = params[1];
- Meteor.call("muteUser", user, time, function(err, res){
- if(err){
- console.log(err);
- }
- });
- } else if(command === "unban"){
- var user = params[0];
- Meteor.call("unbanUser", user, function(err, res){
- if(err){
- console.log(err);
- }
- });
- } else if(command === "unsilence"){
- var user = params[0];
- Meteor.call("unsilenceUser", user, function(err, res){
- if(err){
- console.log(err);
- }
- });
- } else if(command === "pause"){
- Meteor.call("pauseRoom", Session.get("type"), function(err, res){
- if(err){
- console.log(err);
- }
- });
- } else if(command === "resume"){
- Meteor.call("resumeRoom", Session.get("type"), function(err, res){
- if(err){
- console.log(err);
- }
- });
- } else if(command === "shuffle"){
- Meteor.call("shufflePlaylist", Session.get("type"), function(err, res){
- if(err){
- console.log(err);
- }
- });
- } else if(command === "skip"){
- Meteor.call("skipSong", Session.get("type"), function(err, res){
- if(err){
- console.log(err);
- }
- });
- }
- }
- function sendMessage() {
- var message = $("#chat-input").val();
- if (!$("#chat-input").hasClass("disabled")) {
- if (message.length > 0 && message[0] !== " ") {
- if (message[0] === "/") {
- message = message.split("");
- message.shift();
- message = message.join("");
- var params = message.split(" ");
- params = params.map(function(param) {
- return param.replace(/\r?\n|\r/g, "");
- });
- var command = params.shift();
- command = command.replace(/\r?\n|\r/g, "");
- if (executeCommand(command, params)) {
- $("#chat-input").val("");
- } else {
- $("#chat-input").val("");
- }
- } else {
- $("#chat-input").addClass("disabled");
- $("#chat-input").attr("disabled", "");
- Meteor.call("sendMessage", Session.get("type"), message, function (err, res) {
- if(err){
- $("#chat-input").val("");
- $("#chat-input").removeAttr("disabled");
- $("#chat-input").removeClass("disabled");
- }
- if (res) {
- $("#chat-input").val("");
- $("#chat-input").removeAttr("disabled");
- $("#chat-input").removeClass("disabled");
- }
- });
- }
- }
- }
- }
- function sendMessageGlobal() {
- var message = $("#global-chat-input").val();
- if (!$("#global-chat-input").hasClass("disabled")) {
- if (message.length > 0 && message[0] !== " ") {
- if (message[0] === "/") {
- message = message.split("");
- message.shift();
- message = message.join("");
- var params = message.split(" ");
- var command = params.shift();
- command = command.replace(/\r?\n|\r/g, "");
- if (executeCommand(command, params)) {
- $("#global-chat-input").val("");
- } else {
- $("#global-chat-input").val("");
- }
- } else {
- $("#global-chat-input").addClass("disabled");
- $("#global-chat-input").attr("disabled", "");
- Meteor.call("sendMessage", "global", message, function (err, res) {
- if (res) {
- $("#global-chat-input").val("");
- }
- $("#global-chat-input").removeClass("disabled");
- $("#global-chat-input").removeAttr("disabled");
- });
- }
- }
- }
- }
- Template.admin.events({
- "click #croom_create": function() {
- Meteor.call("createRoom", $("#croom_display").val(), $("#croom_tag").val(), function (err, res) {
- if (err) {
- alert("Error " + err.error + ": " + err.reason);
- } else {
- window.location = "/" + $("#croom_tag").val();
- }
- });
- },
- "click a": function(e){
- var id = e.currentTarget.id;
- console.log(id.toLowerCase());
- Session.set("playlistToEdit", id);
- },
- "click #croom_create": function() {
- Meteor.call("createRoom", $("#croom_display").val(), $("#croom_tag").val(), $("#two").prop("checked"), function (err, res) {
- if (err) {
- alert("Error " + err.error + ": " + err.reason);
- } else {
- window.location = "/" + $("#croom_tag").val();
- }
- });
- },
- "click #rreset_confirm": function(){
- $('#confirmModal').modal('hide');
- Meteor.call("resetRating");
- }
- });
- Template.alertsDashboard.events({
- "click #calart-create": function() {
- Meteor.call("addAlert", $("#calert-description").val(), $("#calert-priority").val().toLowerCase(), function (err, res) {
- if (err) {
- alert("Error " + err.error + ": " + err.reason);
- } else {
- $("#calert-description").val("");
- }
- });
- },
- "click #ralert-button": function() {
- Meteor.call("removeAlerts");
- }
- });
- Template.feedback.events({
- "click #feedback_submit": function(){
- if($("#feedback_message").val().length !== 0){
- Meteor.call("sendFeedback", $("#feedback_message").val());
- }
- }
- });
- Template.header.events({
- "click .logout": function(e){
- e.preventDefault();
- Meteor.logout();
- if (hpSound !== undefined) {
- hpSound.stop();
- }
- },
- "click #profile": function(){
- window.location = "/u/" + Meteor.user().profile.username;
- }
- });
- Template.login.events({
- "submit form": function(e){
- e.preventDefault();
- Session.set("github", false);
- var username = $("#username").val()
- var password = $("#password").val();
- Meteor.loginWithPassword(username, password, function(err) {
- if (err) {
- var errAlert = $('<div style="margin-bottom: 0" class="alert alert-danger" role="alert"><strong>Oh Snap!</strong> ' + err.reason + '</div>');
- $(".landing").before(errAlert);
- Meteor.setTimeout(function() {
- errAlert.fadeOut(5000, function() {
- errAlert.remove();
- });
- }, 5000);
- } else {
- window.location.href = "/";
- }
- });
- },
- "click #github-login": function(){
- Meteor.loginWithGithub({loginStyle: "redirect"}, function(err, res) {
- console.log(err, res);
- });
- }
- });
- Template.playlist.events({
- "keyup #search-playlist": function(){
- if($("#search-playlist").val().length === 0){
- $(".pl-item").show();
- } else {
- $(".pl-item").hide();
- var input = $("#search-playlist").val().toLowerCase();
- $(".pl-item strong").each(function(i, el){
- if($(el).text().toLowerCase().indexOf(input) !== -1){
- $(el).parent(".pl-item").show();
- }
- })
- $(".pl-item #pl-artist").each(function(i, el){
- if($(el).text().toLowerCase().indexOf(input) !== -1){
- $(el).parent(".pl-item").show();
- }
- })
- }
- },
- "click #pl-item": function(){
- console.log($(this).text());
- }
- });
- Template.profile.events({
- //Edit real name
- "click #edit-name": function(){
- $("#name").hide();
- $("#name-div").show();
- $("#edit-name").hide();
- $("#cancel-edit").show();
- },
- "click #submit-name": function(){
- var user = Meteor.user();
- $("#name").show();
- $("#name-div").hide();
- $("#edit-name").show();
- $("#cancel-edit").hide();
- var realname = $("#input-name").val();
- var username = user.profile.username;
- $("#name").text("Name: " + realname);
- $("#input-name").val("")
- Meteor.call("updateRealName", realname);
- },
- "click #cancel-edit": function(){
- $("#name").show();
- $("#name-div").hide();
- $("#edit-name").show();
- $("#cancel-edit").hide();
- $("#input-name").val("");
- },
- //Edit username
- "click #edit-username": function(){
- $("#username").hide();
- $("#username-div").show();
- $("#edit-username").hide();
- $("#cancel-username").show();
- },
- "click #submit-username": function(){
- var user = Meteor.user()
- $("#username").show();
- $("#username-div").hide();
- $("#edit-username").show();
- $("#cancel-username").hide();
- var username = user.username;
- var newUserName = $("#input-username").val();
- $("#profile-name").text(newUserName)
- $("#username").text("Username: " + newUserName);
- $("#input-username").val("")
- Meteor.call("updateUserName", newUserName);
- window.location = "/u/" + newUserName;
- },
- "click #cancel-username": function(){
- $("#username").show();
- $("#username-div").hide();
- $("#edit-username").show();
- $("#cancel-username").hide();
- $("#input-username").val("");
- },
- // Admins only Edit Rank
- "click #edit-rank": function() {
- $("#rank").hide();
- $("#rank-div").show();
- $("#edit-rank").hide();
- $("#cancel-rank").show();
- },
- "click #submit-rank": function() {
- $("#rank").show();
- $("#rank-div").hide();
- $("#edit-rank").show();
- $("#cancel-rank").hide();
- var newRank = $("#select-rank option:selected").val();
- var username = Session.get("username");
- console.log(username, newRank);
- },
- "click #cancel-rank": function() {
- $("#rank").show();
- $("#rank-div").hide();
- $("#edit-rank").show();
- $("#cancel-rank").hide();
- }
- });
- Template.queues.events({
- "click .preview-button": function(e){
- Session.set("song", this);
- },
- "click #previewImageButton": function() {
- $("#preview-image").attr("src", Session.get("song").img);
- },
- "click .edit-queue-button": function(e){
- Session.set("song", this);
- Session.set("genre", $(e.target).data("genre"));
- Session.set("type", "queue");
- $("#type").val(this.type);
- $("#mid").val(this.mid);
- $("#artist").val(this.artist);
- $("#title").val(this.title);
- $("#img").val(this.img);
- $("#id").val(this.id);
- $("#likes").val(this.likes);
- $("#dislikes").val(this.dislikes);
- $("#duration").val(this.duration);
- $("#skip-duration").val(this.skipDuration);
- },
- "click .add-song-button": function(e){
- var genre = $(e.target).data("genre") || $(e.target).parent().data("genre");
- Meteor.call("addSongToPlaylist", genre, this);
- },
- "click .deny-song-button": function(e){
- var genre = $(e.target).data("genre") || $(e.target).parent().data("genre");
- Meteor.call("removeSongFromQueue", genre, this.mid);
- },
- "click #play": function() {
- $("#play").attr("disabled", true);
- $("#stop").attr("disabled", false);
- var song = Session.get("song");
- var id = song.id;
- var type = song.type;
- var volume = localStorage.getItem("volume") || 20;
- if (type === "YouTube") {
- if (YTPlayer === undefined) {
- YTPlayer = new YT.Player("previewPlayer", {
- height: 540,
- width: 568,
- videoId: id,
- playerVars: {autoplay: 1, controls: 0, iv_load_policy: 3, showinfo: 0},
- events: {
- 'onReady': function(event) {
- event.target.seekTo(Number(song.skipDuration));
- event.target.playVideo();
- event.target.setVolume(volume);
- },
- 'onStateChange': function(event){
- if (event.data == YT.PlayerState.PAUSED) {
- event.target.playVideo();
- }
- if (event.data == YT.PlayerState.PLAYING) {
- $("#play").attr("disabled", true);
- $("#stop").attr("disabled", false);
- } else {
- $("#play").attr("disabled", false);
- $("#stop").attr("disabled", true);
- }
- }
- }
- });
- } else {
- YTPlayer.loadVideoById(id);
- YTPlayer.seekTo(Number(song.skipDuration));
- }
- $("#previewPlayer").show();
- } else if (type === "SoundCloud") {
- SC.stream("/tracks/" + song.id, function(sound) {
- SCPlayer = sound;
- sound.setVolume(volume / 100);
- sound.play();
- });
- }
- if (previewEndSongTimeout !== undefined) {
- Meteor.clearTimeout(previewEndSongTimeout);
- }
- previewEndSongTimeout = Meteor.setTimeout(function() {
- if (YTPlayer !== undefined) {
- YTPlayer.stopVideo();
- }
- if (SCPlayer !== undefined) {
- SCPlayer.stop();
- }
- $("#play").attr("disabled", false);
- $("#stop").attr("disabled", true);
- $("#previewPlayer").hide();
- }, song.duration * 1000);
- },
- "click #stop": function() {
- $("#play").attr("disabled", false);
- $("#stop").attr("disabled", true);
- if (previewEndSongTimeout !== undefined) {
- Meteor.clearTimeout(previewEndSongTimeout);
- }
- if (YTPlayer !== undefined) {
- YTPlayer.stopVideo();
- }
- if (SCPlayer !== undefined) {
- SCPlayer.stop();
- }
- },
- "click #forward": function() {
- var error = false;
- if (YTPlayer !== undefined) {
- var duration = Number(Session.get("song").duration) | 0;
- var skipDuration = Number(Session.get("song").skipDuration) | 0;
- if (YTPlayer.getDuration() < duration + skipDuration) {
- alert("The duration of the YouTube video is smaller than the duration.");
- error = true;
- } else {
- YTPlayer.seekTo(skipDuration + duration - 10);
- }
- }
- if (SCPlayer !== undefined) {
- SCPlayer.seekTo((skipDuration + duration - 10) * 1000);
- }
- if (!error) {
- if (previewEndSongTimeout !== undefined) {
- Meteor.clearTimeout(previewEndSongTimeout);
- }
- previewEndSongTimeout = Meteor.setTimeout(function() {
- if (YTPlayer !== undefined) {
- YTPlayer.stopVideo();
- }
- if (SCPlayer !== undefined) {
- SCPlayer.stop();
- }
- $("#play").attr("disabled", false);
- $("#stop").attr("disabled", true);
- $("#previewPlayer").hide();
- }, 10000);
- }
- },
- "click #get-spotify-info": function() {
- var search = $("#title").val();
- var artistName = $("#artist").val();
- getSpotifyInfo(search, function(data) {
- for(var i in data){
- for(var j in data[i].items){
- if(search.indexOf(data[i].items[j].name) !== -1 && artistName.indexOf(data[i].items[j].artists[0].name) !== -1){
- $("#img").val(data[i].items[j].album.images[2].url);
- $("#duration").val(data[i].items[j].duration_ms / 1000);
- return;
- }
- }
- }
- }, artistName);
- },
- "click #save-song-button": function() {
- var newSong = {};
- newSong.id = $("#id").val();
- newSong.likes = Number($("#likes").val());
- newSong.dislikes = Number($("#dislikes").val());
- newSong.title = $("#title").val();
- newSong.artist = $("#artist").val();
- newSong.img = $("#img").val();
- newSong.type = $("#type").val();
- newSong.duration = Number($("#duration").val());
- newSong.skipDuration = $("#skip-duration").val();
- if(newSong.skipDuration === undefined){
- newSong.skipDuration = 0;
- };
- if (Session.get("type") === "playlist") {
- Meteor.call("updatePlaylistSong", Session.get("genre"), Session.get("song"), newSong, function() {
- $('#editModal').modal('hide');
- });
- } else {
- Meteor.call("updateQueueSong", Session.get("genre"), Session.get("song"), newSong, function() {
- $('#editModal').modal('hide');
- });
- }
- }
- });
- Template.register.events({
- "submit form": function(e){
- e.preventDefault();
- var username = e.target.registerUsername.value;
- var email = e.target.registerEmail.value;
- var password = e.target.registerPassword.value;
- var captchaData = grecaptcha.getResponse();
- Meteor.call("createUserMethod", {username: username, email: email, password: password}, captchaData, function(err, res) {
- grecaptcha.reset();
- if (err) {
- console.log(err);
- var errAlert = $('<div style="margin-bottom: 0" class="alert alert-danger" role="alert"><strong>Oh Snap!</strong> ' + err.reason + '</div>');
- $(".landing").before(errAlert);
- Meteor.setTimeout(function() {
- errAlert.fadeOut(5000, function() {
- errAlert.remove();
- });
- }, 5000);
- } else {
- Meteor.loginWithPassword(username, password);
- Accounts.onLogin(function(){
- window.location.href = "/";
- })
- }
- });
- },
- "click #github-login": function(){
- Meteor.loginWithGithub({loginStyle: "redirect"}, function(err, res) {
- console.log(err, res);
- });
- }
- });
- Template.room.events({
- "click #youtube-playlist-button": function () {
- if (!Session.get("importingPlaylist")) {
- var playlist_link = $("#youtube-playlist-input").val();
- var playlist_id = gup("list", playlist_link);
- var ytImportQueue = [];
- var totalVideos = 0;
- var videosInvalid = 0;
- var videosInQueue = 0;
- var videosInPlaylist = 0;
- var ranOnce = false;
- Session.set("importingPlaylist", true);
- $("#youtube-playlist-button").attr("disabled", "");
- $("#youtube-playlist-button").addClass("disabled");
- $("#youtube-playlist-input").attr("disabled", "");
- $("#youtube-playlist-input").addClass("disabled");
- $("#playlist-import-queue").empty();
- $("#playlist-import-queue").hide();
- $("#add-youtube-playlist").addClass("hidden-2");
- $("#import-progress").attr("aria-valuenow", 0);
- $("#import-progress").css({width: "0%"});
- $("#import-progress").text("0%");
- function makeAPICall(playlist_id, nextPageToken) {
- if (nextPageToken !== undefined) {
- nextPageToken = "&pageToken=" + nextPageToken;
- } else {
- nextPageToken = "";
- }
- $.ajax({
- type: "GET",
- url: "https://www.googleapis.com/youtube/v3/playlistItems?part=snippet&maxResults=50&playlistId=" + playlist_id + nextPageToken + "&key=AIzaSyAgBdacEWrHCHVPPM4k-AFM7uXg-Q__YXY",
- applicationType: "application/json",
- contentType: "json",
- success: function (data) {
- if (!ranOnce) {
- ranOnce = true;
- totalVideos = data.pageInfo.totalResults;
- }
- var nextToken = data.nextPageToken;
- for (var i in data.items) {
- var item = data.items[i];
- if (item.snippet.thumbnails !== undefined) {
- var genre = Session.get("type");
- if (Playlists.find({
- type: genre,
- "songs.id": item.snippet.resourceId.videoId
- }, {songs: {$elemMatch: {id: item.snippet.resourceId.videoId}}}).count() !== 0) {
- videosInPlaylist++;
- } else if (Queues.find({
- type: genre,
- "songs.id": item.snippet.resourceId.videoId
- }, {songs: {$elemMatch: {id: item.snippet.resourceId.videoId}}}).count() !== 0) {
- videosInQueue++;
- } else {
- $("#playlist-import-queue").append(
- "<div class='youtube-import-queue-item'>" +
- "<img src='" + item.snippet.thumbnails.medium.url + "' class='song-result-thumbnail'/>" +
- "<div>" +
- "<span class='song-result-title'>" + item.snippet.title + "</span>" +
- "<span class='song-result-channel'>" + item.snippet.channelTitle + "</span>" +
- "</div>" +
- "<i class='fa fa-times remove-import-song'></i>" +
- "</div>"
- );
- var percentage = ytImportQueue.length / (totalVideos - videosInvalid) * 100;
- $("#import-progress").attr("aria-valuenow", percentage.toFixed(2));
- $("#import-progress").css({width: percentage + "%"});
- $("#import-progress").text(percentage.toFixed(1) + "%");
- ytImportQueue.push({
- title: item.snippet.title,
- id: item.snippet.resourceId.videoId
- });
- }
- } else {
- videosInvalid++;
- }
- }
- if (nextToken !== undefined) {
- makeAPICall(playlist_id, nextToken);
- } else {
- $("#playlist-import-queue > div > i").click(function () {
- var title = $(this).parent().find("div > .song-result-title").text();
- for (var i in ytImportQueue) {
- if (ytImportQueue[i].title === title) {
- ytImportQueue.splice(i, 1);
- }
- }
- $(this).parent().remove();
- Session.set("YTImportQueue", ytImportQueue);
- });
- Session.set("importingPlaylist", false);
- $("#import-progress").attr("aria-valuenow", 100);
- $("#import-progress").css({width: "100%"});
- $("#import-progress").text("100%");
- $("#youtube-playlist-button").removeAttr("disabled");
- $("#youtube-playlist-button").removeClass("disabled");
- $("#youtube-playlist-input").removeAttr("disabled");
- $("#youtube-playlist-input").removeClass("disabled");
- $("#playlist-import-queue").show();
- $("#add-youtube-playlist").removeClass("hidden-2");
- Session.set("YTImportQueue", ytImportQueue);
- }
- }
- })
- }
- makeAPICall(playlist_id);
- }
- },
- "click #add-youtube-playlist": function () {
- var YTImportQueue = Session.get("YTImportQueue");
- $("#youtube-playlist-button").attr("disabled", "");
- $("#youtube-playlist-button").addClass("disabled");
- $("#youtube-playlist-input").attr("disabled", "");
- $("#youtube-playlist-input").addClass("disabled");
- $("#import-progress").attr("aria-valuenow", 0);
- $("#import-progress").css({width: "0%"});
- $("#import-progress").text("0%");
- var failed = 0;
- var success = 0;
- var processed = 0;
- var total = YTImportQueue.length;
- YTImportQueue.forEach(function (song) {
- var songData = {type: "YouTube", id: song.id, title: song.title, artist: "", img: ""};
- Meteor.call("addSongToQueue", Session.get("type"), songData, function (err, res) {
- if (err) {
- console.log(err);
- failed++;
- } else {
- success++;
- }
- processed++;
- var percentage = processed / total * 100;
- $("#import-progress").attr("aria-valuenow", percentage.toFixed(2));
- $("#import-progress").css({width: percentage + "%"});
- $("#import-progress").text(percentage.toFixed(1) + "%");
- });
- });
- },
- "click #chat-tab": function () {
- $("#chat-tab").removeClass("unread-messages");
- },
- "click #global-chat-tab": function () {
- $("#global-chat-tab").removeClass("unread-messages");
- },
- "click #sync": function () {
- if (Session.get("currentSong") !== undefined) {
- var room = Rooms.findOne({type: Session.get("type")});
- if (room !== undefined) {
- var timeIn = Date.now() - Session.get("currentSong").started - room.timePaused;
- var skipDuration = Number(Session.get("currentSong").skipDuration) | 0;
- if (YTPlayer !== undefined) {
- YTPlayer.seekTo(skipDuration + timeIn / 1000);
- }
- else if (SCPlayer !== undefined) {
- SCPlayer.seekTo(skipDuration * 1000 + timeIn);
- }
- }
- }
- },
- "click #lock": function () {
- Meteor.call("lockRoom", Session.get("type"));
- },
- "click #unlock": function () {
- Meteor.call("unlockRoom", Session.get("type"));
- },
- "click #chat-tab": function (e) {
- Meteor.setTimeout(function () {
- $("#chat-ul").scrollTop(100000);
- }, 1);
- },
- "click #global-chat-tab": function (e) {
- Meteor.setTimeout(function () {
- $("#global-chat-ul").scrollTop(100000);
- }, 1);
- },
- "click #submit": function () {
- sendMessage();
- Meteor.setTimeout(function () {
- $("#chat-ul").scrollTop(100000);
- }, 1000)
- },
- "click #global-submit": function () {
- sendMessageGlobal();
- Meteor.setTimeout(function () {
- $("#global-chat-ul").scrollTop(100000);
- }, 1000)
- },
- "keyup #chat-input": function (e) {
- if (e.type === "keyup" && e.which === 13) {
- e.preventDefault();
- if (!$('#chat-input').data('dropdownshown')) {
- sendMessage();
- Meteor.setTimeout(function () {
- $("#chat-ul").scrollTop(100000);
- }, 1000)
- }
- }
- },
- "keyup #global-chat-input": function (e) {
- if (e.type === "keyup" && e.which === 13) {
- e.preventDefault();
- if (!$('#global-chat-input').data('dropdownshown')) {
- sendMessageGlobal();
- Meteor.setTimeout(function () {
- $("#global-chat-ul").scrollTop(100000);
- }, 1000)
- }
- }
- },
- "click #like": function (e) {
- $("#like").blur();
- Meteor.call("likeSong", Session.get("currentSong").mid);
- },
- "click #dislike": function (e) {
- $("#dislike").blur();
- Meteor.call("dislikeSong", Session.get("currentSong").mid);
- },
- "click #vote-skip": function () {
- Meteor.call("voteSkip", type, function (err, res) {
- $("#vote-skip").attr("disabled", true);
- });
- },
- "click #report-prev": function (e) {
- if (Session.get("previousSong") !== undefined) {
- Session.set("reportPrevious", true);
- $("#report-prev").prop("disabled", true);
- $("#report-curr").prop("disabled", false);
- }
- },
- "click #report-curr": function (e) {
- Session.set("reportPrevious", false);
- $("#report-prev").prop("disabled", false);
- $("#report-curr").prop("disabled", true);
- },
- "click #report-modal": function () {
- Session.set("currentSongR", Session.get("currentSong"));
- Session.set("previousSongR", Session.get("previousSong"));
- },
- "click #add-song-button": function (e) {
- e.preventDefault();
- parts = location.href.split('/');
- var roomType = parts.pop();
- var genre = roomType.toLowerCase();
- var type = $("#type").val();
- id = $("#id").val();
- var title = $("#title").val();
- var artist = $("#artist").val();
- var img = $("#img").val();
- var songData = {type: type, id: id, title: title, artist: artist, img: img};
- if (Playlists.find({
- type: genre,
- "songs.id": songData.id
- }, {songs: {$elemMatch: {id: songData.id}}}).count() !== 0) {
- $("<div class='alert alert-danger alert-dismissible' role='alert' style='margin-bottom: 0'><button type='button' class='close' data-dismiss='alert' aria-label='Close'><span aria-hidden='true'><i class='fa fa-times'></i></span></button><strong>Song not added.</strong> This song is already in the playlist.</div>").prependTo($(".landing")).delay(7000).fadeOut(1000, function () {
- $(this).remove();
- });
- } else if (Queues.find({
- type: genre,
- "songs.id": songData.id
- }, {songs: {$elemMatch: {id: songData.id}}}).count() !== 0) {
- $("<div class='alert alert-danger alert-dismissible' role='alert' style='margin-bottom: 0'><button type='button' class='close' data-dismiss='alert' aria-label='Close'><span aria-hidden='true'><i class='fa fa-times'></i></span></button><strong>Song not added.</strong> This song has already been requested.</div>").prependTo($(".landing")).delay(7000).fadeOut(1000, function () {
- $(this).remove();
- });
- } else {
- Meteor.call("addSongToQueue", genre, songData, function (err, res) {
- console.log(err, res);
- if (err) {
- $("<div class='alert alert-danger alert-dismissible' role='alert' style='margin-bottom: 0'><button type='button' class='close' data-dismiss='alert' aria-label='Close'><span aria-hidden='true'><i class='fa fa-times'></i></span></button><strong>Song not added.</strong> Something went wrong.</div>").prependTo($(".landing")).delay(7000).fadeOut(1000, function () {
- $(this).remove();
- });
- } else {
- $("<div class='alert alert-success alert-dismissible' role='alert' style='margin-bottom: 0'><button type='button' class='close' data-dismiss='alert' aria-label='Close'><span aria-hidden='true'><i class='fa fa-times'></i></span></button><strong>Song added.</strong> Your song has been added to the queue.</div>").prependTo($(".landing")).delay(7000).fadeOut(1000, function () {
- $(this).remove();
- });
- }
- });
- }
- $("#close-modal-a").click();
- },
- "click #toggle-video": function (e) {
- e.preventDefault();
- if (Session.get("mediaHidden")) {
- $("#media-container").removeClass("hidden");
- $("#toggle-video").text("Hide video");
- Session.set("mediaHidden", false);
- } else {
- $("#media-container").addClass("hidden");
- $("#toggle-video").text("Show video");
- Session.set("mediaHidden", true);
- }
- },
- "click #return": function (e) {
- $("#add-info").hide();
- $("#search-info").show();
- },
- "click #search-song": function () {
- var songs = [];
- $("#song-results").empty();
- var search_type = $("#search_type").val();
- if (search_type === "YouTube") {
- $.ajax({
- type: "GET",
- url: "https://www.googleapis.com/youtube/v3/search?part=snippet&q=" + $("#song-input").val() + "&key=AIzaSyAgBdacEWrHCHVPPM4k-AFM7uXg-Q__YXY",
- applicationType: "application/json",
- contentType: "json",
- success: function (data) {
- for (var i in data.items) {
- var item = data.items[i];
- $("#song-results").append(
- "<div>" +
- "<img src='" + item.snippet.thumbnails.medium.url + "' class='song-result-thumbnail'/>" +
- "<div>" +
- "<span class='song-result-title'>" + item.snippet.title + "</span>" +
- "<span class='song-result-channel'>" + item.snippet.channelTitle + "</span>" +
- "</div>" +
- "</div>"
- );
- songs.push({title: item.snippet.title, id: item.id.videoId});
- }
- $("#song-results > div").click(function () {
- $("#search-info").hide();
- $("#add-info").show();
- var title = $(this).find("div > .song-result-title").text();
- for (var i in songs) {
- if (songs[i].title === title) {
- var songObj = {
- id: songs[i].id,
- title: songs[i].title,
- type: "youtube"
- };
- $("#title").val(songObj.title);
- $("#artist").val("");
- $("#id").val(songObj.id);
- $("#type").val("YouTube");
- getSpotifyInfo(songObj.title.replace(/\[.*\]/g, ""), function (data) {
- if (data.tracks.items.length > 0) {
- $("#title").val(data.tracks.items[0].name);
- var artists = [];
- $("#img").val(data.tracks.items[0].album.images[2].url);
- data.tracks.items[0].artists.forEach(function (artist) {
- artists.push(artist.name);
- });
- $("#artist").val(artists.join(", "));
- }
- });
- }
- }
- })
- }
- })
- } else if (search_type === "SoundCloud") {
- SC.get('/tracks', {q: $("#song-input").val()}, function (tracks) {
- for (var i in tracks) {
- $("#song-results").append("<p>" + tracks[i].title + "</p>")
- songsArr.push({title: tracks[i].title, id: tracks[i].id, duration: tracks[i].duration / 1000});
- }
- $("#song-results p").click(function () {
- $("#search-info").hide();
- $("#add-info").show();
- var title = $(this).text();
- for (var i in songsArr) {
- if (songsArr[i].title === title) {
- var id = songsArr[i].id;
- var duration = songsArr[i].duration;
- var songObj = {
- title: songsArr[i].title,
- id: id,
- duration: duration,
- type: "soundcloud"
- }
- $("#title").val(songObj.title);
- // Set ID field
- $("#id").val(songObj.id);
- $("#type").val("SoundCloud");
- getSpotifyInfo(songObj.title.replace(/\[.*\]/g, ""), function (data) {
- if (data.tracks.items.length > 0) {
- $("#title").val(data.tracks.items[0].name);
- var artists = [];
- data.tracks.items[0].artists.forEach(function (artist) {
- artists.push(artist.name);
- });
- $("#artist").val(artists.join(", "));
- }
- // Set title field again if possible
- // Set artist if possible
- });
- }
- }
- })
- });
- }
- },
- "click #volume-icon": function () {
- var volume = 0;
- var slider = $("#volume-slider").slider();
- $("#volume-icon").removeClass("fa-volume-down").addClass("fa-volume-off")
- if (YTPlayer !== undefined) {
- YTPlayer.setVolume(volume);
- localStorage.setItem("volume", volume);
- $("#volume-slider").slider("setValue", volume);
- } else if (SCPlayer !== undefined) {
- SCPlayer.setVolume(volume);
- localStorage.setItem("volume", volume);
- $("#volume-slider").slider("setValue", volume);
- }
- },
- "click #play": function () {
- Meteor.call("resumeRoom", type);
- },
- "click #pause": function () {
- Meteor.call("pauseRoom", type);
- },
- "click #skip": function () {
- Meteor.call("skipSong", type);
- },
- "click #shuffle": function () {
- Meteor.call("shufflePlaylist", type);
- },
- "change input": function (e) {
- if (e.target && e.target.id) {
- var partsOfId = e.target.id.split("-");
- partsOfId[1] = partsOfId[1].charAt(0).toUpperCase() + partsOfId[1].slice(1);
- var camelCase = partsOfId.join("");
- Session.set(camelCase, e.target.checked);
- }
- },
- "click #report-song-button": function () {
- var room = Session.get("type");
- var reportData = {};
- reportData.song = Session.get("currentSong").mid;
- reportData.type = [];
- reportData.reason = [];
- $(".report-layer-1 > .checkbox input:checked").each(function () {
- reportData.type.push(this.id);
- if (this.id == "report-other") {
- var otherText = $(".other-textarea").val();
- }
- });
- $(".report-layer-2 input:checked").each(function () {
- reportData.reason.push(this.id);
- });
- console.log(reportData);
- Meteor.call("submitReport", room, reportData, Session.get("id"), function () {
- $("#close-modal-r").click();
- });
- },
- "change #si_or_pl": function () {
- if ($("#select_playlist").is(':selected')) {
- $("#search-info").hide();
- $("#playlist-import").show();
- }
- if ($("#select_single").is(':selected')) {
- $("#search-info").show();
- $("#playlist-import").hide();
- }
- },
- "click #close-modal-a": function () {
- $("#select_single").attr("selected", true);
- $("#search-info").show();
- $("#playlist-import").hide();
- }
- });
- Template.room.helpers({
- singleVideo: function() {
- return true;
- },
- chat: function() {
- Meteor.setTimeout(function() {
- var elem = document.getElementById('chat');
- if (elem !== undefined && elem !== null) {
- elem.scrollTop = elem.scrollHeight;
- }
- }, 100);
- return Chat.find({type: Session.get("type")}, {sort: {time: -1}, limit: 50 }).fetch().reverse();
- },
- globalChat: function() {
- Meteor.setTimeout(function() {
- var elem = document.getElementById('global-chat');
- if (elem !== undefined && elem !== null) {
- elem.scrollTop = elem.scrollHeight;
- }
- }, 100);
- return Chat.find({type: "global"}, {sort: {time: -1}, limit: 50 }).fetch().reverse();
- },
- likes: function() {
- var playlist = Playlists.findOne({type: Session.get("type")});
- var likes = 0;
- playlist.songs.forEach(function(song) {
- if (Session.get("currentSong") && song.mid === Session.get("currentSong").mid) {
- likes = song.likes;
- return;
- }
- });
- return likes;
- },
- dislikes: function() {
- var playlist = Playlists.findOne({type: Session.get("type")});
- var dislikes = 0;
- playlist.songs.forEach(function(song) {
- if (Session.get("currentSong") && song.mid === Session.get("currentSong").mid) {
- dislikes = song.dislikes;
- return;
- }
- });
- return dislikes;
- },
- liked: function() {
- if (Meteor.userId()) {
- var currentSong = Session.get("currentSong");
- if (currentSong && Meteor.user().profile.liked.indexOf(currentSong.mid) !== -1) {
- return "active";
- } else {
- return "";
- }
- } else {
- "";
- }
- },
- disliked: function() {
- if (Meteor.userId()) {
- var currentSong = Session.get("currentSong");
- if (currentSong && Meteor.user().profile.disliked.indexOf(currentSong.mid) !== -1) {
- return "active";
- } else {
- return "";
- }
- } else {
- "";
- }
- },
- type: function() {
- var parts = location.href.split('/');
- var id = parts.pop().toLowerCase();
- return Rooms.findOne({type: id}).display;
- },
- users: function() {
- var parts = location.href.split('/');
- var id = parts.pop().toLowerCase();
- return Rooms.findOne({type: id}).users;
- },
- title: function(){
- return Session.get("title");
- },
- artist: function(){
- return Session.get("artist");
- },
- loaded: function() {
- return Session.get("loaded");
- },
- paused: function() {
- return Session.get("state") === "paused";
- },
- private: function() {
- return Rooms.findOne({type: Session.get("type")}).private === true;
- },
- report: function() {
- return Session.get("reportObj");
- },
- reportSong: function() {
- return Session.get("reportSong");
- },
- reportTitle: function() {
- return Session.get("reportTitle");
- },
- reportAuthor: function() {
- return Session.get("reportAuthor");
- },
- reportDuration: function() {
- return Session.get("reportDuration");
- },
- reportAudio: function() {
- return Session.get("reportAudio");
- },
- reportAlbumart: function() {
- return Session.get("reportAlbumart");
- },
- reportOther: function() {
- return Session.get("reportOther");
- },
- currentSong: function() {
- return Session.get("currentSong");
- },
- previousSong: function() {
- return Session.get("previousSong");
- },
- currentSongR: function() {
- return Session.get("currentSongR");
- },
- previousSongR: function() {
- return Session.get("previousSongR");
- },
- reportingSong: function() {
- if (Session.get("reportPrevious")) {
- return Session.get("previousSongR");
- } else {
- return Session.get("currentSongR");
- }
- },
- votes: function(){
- return Rooms.findOne({type: Session.get("type")}).votes;
- }
- });
- Template.room.onCreated(function () {
- Chat.after.find(function(userId, selector) {
- if (selector.type === "global") {
- if (!$("#global-chat-tab").hasClass("active")) {
- $("#global-chat-tab").addClass("unread-messages");
- }
- } else if(selector.type === Session.get("type")) {
- if (!$("#chat-tab").hasClass("active")) {
- $("#chat-tab").addClass("unread-messages");
- }
- }
- });
- Session.set("reportSong", false);
- Session.set("reportTitle", false);
- Session.set("reportAuthor", false);
- Session.set("reportDuration", false);
- Session.set("reportAudio", false);
- Session.set("reportAlbumart", false);
- Session.set("reportOther", false);
- if (resizeSeekerbarInterval !== undefined) {
- Meteor.clearInterval(resizeSeekerbarInterval);
- resizeSeekerbarInterval = undefined;
- }
- YTPlayer = undefined;
- SCPlayer = undefined;
- Session.set("videoHidden", false);
- var tag = document.createElement("script");
- tag.src = "https://www.youtube.com/iframe_api";
- var firstScriptTag = document.getElementsByTagName('script')[0];
- firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
- Session.set("singleVideo", true);
- var currentSong = undefined;
- var currentSongR = undefined;
- function getTimeElapsed() {
- if (currentSong !== undefined) {
- var room = Rooms.findOne({type: type});
- if (room !== undefined) {
- return Date.now() - currentSong.started - room.timePaused;
- }
- }
- return 0;
- }
- function getSongInfo(songData){
- Session.set("title", songData.title);
- Session.set("artist", songData.artist);
- Session.set("id", songData.id);
- $("#song-img").attr("src", songData.img);
- Session.set("duration", parseInt(songData.duration));
- var d = moment.duration(parseInt(songData.duration), 'seconds');
- $("#time-total").text(d.minutes() + ":" + ("0" + d.seconds()).slice(-2));
- Session.set("timeFormat", d.minutes() + ":" + ("0" + d.seconds()).slice(-2));
- }
- function resizeSeekerbar() {
- if (Session.get("state") === "playing") {
- $("#seeker-bar").width(((getTimeElapsed() / 1000) / Session.get("duration") * 100) + "%");
- }
- }
- function startSong() {
- $("#time-elapsed").text("0:00");
- $("#vote-skip").attr("disabled", false);
- if (currentSong !== undefined) {
- if (SCPlayer !== undefined) SCPlayer.stop();
- if (YTPlayer !== undefined && YTPlayer.stopVideo !== undefined) YTPlayer.stopVideo();
- var volume = localStorage.getItem("volume") || 20;
- if (currentSong.type === "SoundCloud") {
- if ($("#soundcloud-image").length !== 1) {
- //$("#media-container").append('<img alt="Not loading" src="/soundcloud-image.png" class="embed-responsive-item" id="soundcloud-image" />');
- $("#media-container").append('<h1 id="soundcloud-image">We have temporarily disabled the playing of SoundCloud songs. We are sorry for this inconvenience.</h1>');
- }
- if ($("#player").length === 1) {
- $("#player").hide();
- }
- $("#soundcloud-image").show();
- //getSongInfo(currentSong);
- /*SC.stream("/tracks/" + currentSong.id, function(sound){
- SCPlayer = sound;
- sound.setVolume(volume / 100);
- sound.play();
- var interval = setInterval(function() {
- if (sound.getState() === "playing") {
- sound.seek(getTimeElapsed());
- window.clearInterval(interval);
- }
- }, 200);
- Session.set("duration", parseInt(currentSong.duration));
- var d = moment.duration(parseInt(currentSong.duration), 'seconds');
- $("#time-total").text(d.minutes() + ":" + ("0" + d.seconds()).slice(-2));
- resizeSeekerbar();
- });*/
- } else {
- if ($("#player").length !== 1) {
- $("#media-container").append('<div id="player" class="embed-responsive-item"></div>');
- }
- if ($("#soundcloud-image").length === 1) {
- $("#soundcloud-image").hide();
- }
- $("#player").show();
- function loadVideo() {
- if (!Session.get("YTLoaded")) {
- Session.set("loadVideoTimeout", Meteor.setTimeout(function () {
- loadVideo();
- }, 500));
- } else {
- if (YTPlayer === undefined) {
- YTPlayer = new YT.Player("player", {
- height: 540,
- width: 960,
- videoId: currentSong.id,
- playerVars: {controls: 0, iv_load_policy: 3, rel: 0, showinfo: 0},
- events: {
- 'onReady': function (event) {
- if (currentSong.skipDuration === undefined) {
- currentSong.skipDuration = 0;
- }
- event.target.seekTo(Number(currentSong.skipDuration) + getTimeElapsed() / 1000);
- event.target.playVideo();
- event.target.setVolume(volume);
- resizeSeekerbar();
- },
- 'onStateChange': function (event) {
- if (Session.get("YTLoaded")) {
- if (event.data == YT.PlayerState.PAUSED && Session.get("state") === "playing") {
- event.target.seekTo(Number(currentSong.skipDuration) + getTimeElapsed() / 1000);
- event.target.playVideo();
- }
- if (event.data == YT.PlayerState.PLAYING && Session.get("state") === "paused") {
- event.target.seekTo(Number(currentSong.skipDuration) + getTimeElapsed() / 1000);
- event.target.pauseVideo();
- }
- }
- }
- }
- });
- } else {
- YTPlayer.loadVideoById(currentSong.id);
- if (currentSong.skipDuration === undefined) {
- currentSong.skipDuration = 0;
- }
- YTPlayer.seekTo(Number(currentSong.skipDuration) + getTimeElapsed() / 1000);
- }
- Session.set("pauseVideo", false);
- getSongInfo(currentSong);
- }
- }
- loadVideo();
- }
- }
- }
- Session.set("loaded", false);
- Meteor.subscribe("rooms", function() {
- var parts = location.href.split('/');
- var id = parts.pop();
- var type = id.toLowerCase();
- Session.set("type", type);
- if (Rooms.find({type: type}).count() !== 1) {
- window.location = "/";
- } else {
- StationSubscription = Meteor.subscribe(type);
- Session.set("loaded", true);
- minterval = Meteor.setInterval(function () {
- var room = Rooms.findOne({type: type});
- if (room !== undefined) {
- if (room.state === "paused" || Session.get("pauseVideo")) {
- Session.set("state", "paused");
- // TODO Fix issue where sometimes nothing loads with the YT is not defined error. The error points to around this.
- if (YTPlayer !== undefined && YTPlayer.getPlayerState !== undefined && YTPlayer.getPlayerState() === 1) {
- YTPlayer.pauseVideo();
- } else if (SCPlayer !== undefined && SCPlayer.getState().indexOf("playing") !== -1) {
- SCPlayer.pause();
- }
- } else {
- Session.set("state", "playing");
- if (YTPlayer !== undefined && YTPlayer.getPlayerState !== undefined && YTPlayer.getPlayerState() !== 1) {
- YTPlayer.playVideo();
- } else if (SCPlayer !== undefined && SCPlayer.getState().indexOf("paused") !== -1) {
- SCPlayer.play();
- }
- }
- }
- if (room.currentSong.song !== undefined && (currentSongR === undefined || room.currentSong.started !== currentSongR.started)) {
- Session.set("previousSong", currentSong);
- currentSongR = room.currentSong;
- currentSong = room.currentSong.song;
- currentSong.started = room.currentSong.started;
- Session.set("currentSong", currentSong);
- Meteor.clearTimeout(Session.get("loadVideoTimeout"));
- startSong();
- }
- if (currentSong !== undefined) {
- if (room !== undefined) {
- var duration = (Date.now() - currentSong.started - room.timePaused) / 1000;
- var song_duration = currentSong.duration;
- if (song_duration <= duration) {
- Session.set("pauseVideo", true);
- }
- var d = moment.duration(duration, 'seconds');
- if (Session.get("state") === "playing") {
- $("#time-elapsed").text(d.minutes() + ":" + ("0" + d.seconds()).slice(-2));
- }
- }
- }
- }, 100);
- resizeSeekerbarInterval = Meteor.setInterval(function () {
- resizeSeekerbar();
- }, 500);
- }
- });
- });
- // Settings Template
- Template.settings.events({
- "click #save-settings": function() {
- Meteor.call("updateSettings", $("#showRating").is(":checked"));
- },
- "click #delete-account": function(){
- $("#delete-account").text("Click to confirm");
- $("#delete-account").click(function(){
- var bool = confirm("Are you sure you want to delete your account?");
- if(bool) {
- Meteor.call("deleteAccount");
- }
- })
- },
- "click #change-password": function(){
- var oldPassword = $("#old-password").val();
- var newPassword= $("#new-password").val();
- var confirmPassword = $("#confirm-password").val();
- if(newPassword === confirmPassword){
- Accounts.changePassword(oldPassword, newPassword, function(err){
- if(err){
- $("#old-password").val("");
- $("#new-password").val("");
- $("#confirm-password").val("");
- $("<div class='alert alert-danger alert-dismissible' role='alert' style='margin-bottom: 0'><button type='button' class='close' data-dismiss='alert' aria-label='Close'><span aria-hidden='true'><i class='fa fa-times'></i></span></button><strong>Oh Snap! </strong>" + err.reason + "</div>").prependTo($("#head")).delay(7000).fadeOut(1000, function() { $(this).remove(); });
- } else {
- $("#old-password").val("");
- $("#new-password").val("");
- $("#confirm-password").val("");
- $("<div class='alert alert-success alert-dismissible' role='alert' style='margin-bottom: 0'><button type='button' class='close' data-dismiss='alert' aria-label='Close'><span aria-hidden='true'><i class='fa fa-times'></i></span></button><strong>Hooray!</strong> You changed your password successfully.</div>").prependTo($("#head")).delay(7000).fadeOut(1000, function() { $(this).remove(); });
- }
- });
- }
- }
- });
- Template.stations.events({
- "click .preview-button": function(e){
- Session.set("song", this);
- },
- "click #previewImageButton": function() {
- $("#preview-image").attr("src", Session.get("song").img);
- },
- "click .edit-queue-button": function(e){
- Session.set("song", this);
- Session.set("genre", $(e.target).data("genre"));
- Session.set("type", "queue");
- $("#type").val(this.type);
- $("#mid").val(this.mid);
- $("#artist").val(this.artist);
- $("#title").val(this.title);
- $("#img").val(this.img);
- $("#id").val(this.id);
- $("#likes").val(this.likes);
- $("#dislikes").val(this.dislikes);
- $("#duration").val(this.duration);
- $("#skip-duration").val(this.skipDuration);
- },
- "click .edit-playlist-button": function(e){
- Session.set("song", this);
- Session.set("genre", $(e.target).data("genre"));
- Session.set("type", "playlist");
- $("#type").val(this.type);
- $("#mid").val(this.mid);
- $("#artist").val(this.artist);
- $("#title").val(this.title);
- $("#img").val(this.img);
- $("#id").val(this.id);
- $("#likes").val(this.likes);
- $("#dislikes").val(this.dislikes);
- $("#duration").val(this.duration);
- $("#skip-duration").val(this.skipDuration);
- },
- "click .add-song-button": function(e){
- var genre = $(e.target).data("genre") || $(e.target).parent().data("genre");
- Meteor.call("addSongToPlaylist", genre, this);
- },
- "click .deny-song-button": function(e){
- var genre = $(e.target).data("genre") || $(e.target).parent().data("genre");
- Meteor.call("removeSongFromQueue", genre, this.mid);
- },
- "click .remove-song-button": function(e){
- var genre = $(e.target).data("genre") || $(e.target).parent().data("genre");
- Meteor.call("removeSongFromPlaylist", genre, this.mid);
- },
- "click #moveSong": function(e){
- var genre = $(e.target).data("genre") || $(e.target).parent().data("genre");
- if (genre !== Session.get(genre)) {
- Meteor.call("addSongToPlaylist", genre, {type: Session.get("song").type, mid: Session.get("song").mid, id: Session.get("song").id, title: Session.get("song").title, artist: Session.get("song").artist, duration: Session.get("song").duration, skipDuration: Session.get("song").skipDuration, img: Session.get("song").img, likes: Session.get("song").likes, dislikes: Session.get("song").dislikes});
- Meteor.call("removeSongFromPlaylist", Session.get("genre"), Session.get("song").mid);
- }else {
- console.log("Something Went Wrong?!");
- return false;
- }
- },
- "click #copySong": function(e){
- var genre = $(e.target).data("genre") || $(e.target).parent().data("genre");
- Meteor.call("addSongToPlaylist", genre, {type: Session.get("song").type, mid: Session.get("song").mid, id: Session.get("song").id, title: Session.get("song").title, artist: Session.get("song").artist, duration: Session.get("song").duration, skipDuration: Session.get("song").skipDuration, img: Session.get("song").img, likes: Session.get("song").likes, dislikes: Session.get("song").dislikes});
- },
- "click .copyMove-button": function(e){
- Session.set("song", this);
- Session.set("genre", $(e.target).data("genre"));
- },
- "click #play": function() {
- $("#play").attr("disabled", true);
- $("#stop").attr("disabled", false);
- var song = Session.get("song");
- var id = song.id;
- var type = song.type;
- var volume = localStorage.getItem("volume") || 20;
- if (type === "YouTube") {
- if (YTPlayer === undefined) {
- YTPlayer = new YT.Player("previewPlayer", {
- height: 540,
- width: 568,
- videoId: id,
- playerVars: {controls: 0, iv_load_policy: 3, showinfo: 0},
- events: {
- 'onReady': function(event) {
- event.target.seekTo(Number(song.skipDuration));
- event.target.playVideo();
- event.target.setVolume(volume);
- },
- 'onStateChange': function(event){
- if (event.data == YT.PlayerState.PAUSED) {
- event.target.playVideo();
- }
- if (event.data == YT.PlayerState.PLAYING) {
- $("#play").attr("disabled", true);
- $("#stop").attr("disabled", false);
- } else {
- $("#play").attr("disabled", false);
- $("#stop").attr("disabled", true);
- }
- }
- }
- });
- } else {
- YTPlayer.loadVideoById(id);
- YTPlayer.seekTo(Number(song.skipDuration));
- }
- $("#previewPlayer").show();
- } else if (type === "SoundCloud") {
- SC.stream("/tracks/" + song.id, function(sound) {
- SCPlayer = sound;
- sound.setVolume(volume / 100);
- sound.play();
- });
- }
- if (previewEndSongTimeout !== undefined) {
- Meteor.clearTimeout(previewEndSongTimeout);
- }
- previewEndSongTimeout = Meteor.setTimeout(function() {
- if (YTPlayer !== undefined) {
- YTPlayer.stopVideo();
- }
- if (SCPlayer !== undefined) {
- SCPlayer.stop();
- }
- $("#play").attr("disabled", false);
- $("#stop").attr("disabled", true);
- $("#previewPlayer").hide();
- }, song.duration * 1000);
- },
- "click #stop": function() {
- $("#play").attr("disabled", false);
- $("#stop").attr("disabled", true);
- if (previewEndSongTimeout !== undefined) {
- Meteor.clearTimeout(previewEndSongTimeout);
- }
- if (YTPlayer !== undefined) {
- YTPlayer.stopVideo();
- }
- if (SCPlayer !== undefined) {
- SCPlayer.stop();
- }
- },
- "click #forward": function() {
- var error = false;
- if (YTPlayer !== undefined) {
- var duration = Number(Session.get("song").duration) | 0;
- var skipDuration = Number(Session.get("song").skipDuration) | 0;
- if (YTPlayer.getDuration() < duration + skipDuration) {
- alert("The duration of the YouTube video is smaller than the duration.");
- error = true;
- } else {
- YTPlayer.seekTo(skipDuration + duration - 10);
- }
- }
- if (SCPlayer !== undefined) {
- SCPlayer.seekTo((skipDuration + duration - 10) * 1000);
- }
- if (!error) {
- if (previewEndSongTimeout !== undefined) {
- Meteor.clearTimeout(previewEndSongTimeout);
- }
- previewEndSongTimeout = Meteor.setTimeout(function() {
- if (YTPlayer !== undefined) {
- YTPlayer.stopVideo();
- }
- if (SCPlayer !== undefined) {
- SCPlayer.stop();
- }
- $("#play").attr("disabled", false);
- $("#stop").attr("disabled", true);
- $("#previewPlayer").hide();
- }, 10000);
- }
- },
- "click #get-spotify-info": function() {
- var search = $("#title").val();
- var artistName = $("#artist").val();
- getSpotifyInfo(search, function(data) {
- for(var i in data){
- for(var j in data[i].items){
- if(search.indexOf(data[i].items[j].name) !== -1 && artistName.indexOf(data[i].items[j].artists[0].name) !== -1){
- $("#img").val(data[i].items[j].album.images[2].url);
- $("#duration").val(data[i].items[j].duration_ms / 1000);
- return;
- }
- }
- }
- }, artistName);
- },
- "click #save-song-button": function() {
- var newSong = {};
- newSong.id = $("#id").val();
- newSong.likes = Number($("#likes").val());
- newSong.dislikes = Number($("#dislikes").val());
- newSong.title = $("#title").val();
- newSong.artist = $("#artist").val();
- newSong.img = $("#img").val();
- newSong.type = $("#type").val();
- newSong.duration = Number($("#duration").val());
- newSong.skipDuration = $("#skip-duration").val();
- if(newSong.skipDuration === undefined){
- newSong.skipDuration = 0;
- };
- if (Session.get("type") === "playlist") {
- Meteor.call("updatePlaylistSong", Session.get("genre"), Session.get("song"), newSong, function() {
- $('#editModal').modal('hide');
- });
- } else {
- Meteor.call("updateQueueSong", Session.get("genre"), Session.get("song"), newSong, function() {
- $('#editModal').modal('hide');
- });
- }
- },
- "click .delete-room": function(){
- var typeDel = $(this)[0].type;
- Meteor.call("deleteRoom", typeDel);
- }
- });
|