|
@@ -23,10 +23,6 @@ module.exports = function (io) {
|
|
|
|
|
|
var Player = require('player');
|
|
|
|
|
|
- io.on('connection', function (socket) {
|
|
|
- console.log('a user connected');
|
|
|
- });
|
|
|
-
|
|
|
|
|
|
function playerCreator(song) {
|
|
|
if (song)
|
|
@@ -38,6 +34,41 @@ module.exports = function (io) {
|
|
|
|
|
|
player = playerCreator();
|
|
|
|
|
|
+ playerState = 'playing';
|
|
|
+
|
|
|
+ io.on('connection', function(socket){
|
|
|
+ io.emit(playerState);
|
|
|
+ socket.on('chat message', function(msg){
|
|
|
+ io.emit('chat message', msg);
|
|
|
+ });
|
|
|
+
|
|
|
+ socket.on('pause', function() {
|
|
|
+ console.log('pausing');
|
|
|
+ io.emit('player-transition', 'Pausing');
|
|
|
+ player.pause();
|
|
|
+ playerState = 'paused';
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ setTimeout(function() {
|
|
|
+ io.emit('paused');
|
|
|
+ }, 3000);
|
|
|
+ });
|
|
|
+ socket.on('play', function() {
|
|
|
+ console.log('playing');
|
|
|
+ io.emit('player-transition', 'Playing');
|
|
|
+ player.pause();
|
|
|
+ playerState = 'playing';
|
|
|
+ setTimeout(function() {
|
|
|
+ io.emit('playing');
|
|
|
+ }, 3000);
|
|
|
+ });
|
|
|
+
|
|
|
+ });
|
|
|
+
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
@@ -131,7 +162,7 @@ module.exports = function (io) {
|
|
|
|
|
|
|
|
|
if(youtube_dl.stderr == null) {
|
|
|
- console.log("Your youtube-dl location is probably invalid.");
|
|
|
+ console.log('Your youtube-dl location is probably invalid.');
|
|
|
}
|
|
|
|
|
|
if (youtube_dl.stderr.toString()) {
|
|
@@ -157,7 +188,7 @@ module.exports = function (io) {
|
|
|
} else {
|
|
|
var youtube_dl = child_process.spawn(YOUTUBE_DL_LOC, ['-x', '--audio-format', 'mp3', '-o', 'downloads/%(title)s.%(ext)s', video]);
|
|
|
youtube_dl.on('close', (code) => {
|
|
|
- console.log("Done getting " + video);
|
|
|
+ console.log('Done getting ' + video);
|
|
|
var error;
|
|
|
youtube_dl.stderr.on('data', (data) => {
|
|
|
error = data;
|
|
@@ -171,7 +202,7 @@ module.exports = function (io) {
|
|
|
playerAddSong('./downloads/' + youtube_dl_get_title.stdout.toString()
|
|
|
.replace('\n', '')
|
|
|
.replace(new RegExp('"', 'g'), '\'')
|
|
|
- + ".mp3");
|
|
|
+ + '.mp3');
|
|
|
}
|
|
|
res.redirect('/');
|
|
|
});
|