From 1230a2cfac4b0d907631eddb4d0dc798f5bb3564 Mon Sep 17 00:00:00 2001 From: Florrie Date: Sun, 12 Jul 2020 17:56:33 -0300 Subject: support stop-playing over client sockets --- backend.js | 1 + socket.js | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/backend.js b/backend.js index 573a4fc..20aec7d 100644 --- a/backend.js +++ b/backend.js @@ -523,6 +523,7 @@ class QueuePlayer extends EventEmitter { this.playingTrack = null this.timeData = null this.time = null + this.emit('playing details', null, oldTrack, this) this.emit('playing', null, oldTrack, this) } } diff --git a/socket.js b/socket.js index acc1a21..ab23a28 100644 --- a/socket.js +++ b/socket.js @@ -162,6 +162,8 @@ function validateCommand(command) { ) || command.status === 'sync-playback' ) + case 'stop-playing': + return typeof command.queuePlayer === 'string' case 'unqueue': return ( typeof command.queuePlayer === 'string' && @@ -450,6 +452,9 @@ function attachBackendToSocketClient(backend, client, { }, command.startingTrack ? 500 : 0) return } + case 'stop-playing': + if (QP) silenceEvents(QP, ['playing'], () => QP.stopPlaying()) + return case 'unqueue': if (QP) silenceEvents(QP, ['unqueue'], () => QP.unqueue( restoreNewItem(command.topItem, getPlaylistSources()) @@ -506,6 +511,11 @@ function attachBackendToSocketClient(backend, client, { queuePlayer: queuePlayer.id }) }) + } else { + client.sendCommand({ + code: 'stop-playing', + queuePlayer: queuePlayer.id + }) } }) -- cgit 1.3.0-6-gf8a5