diff --git a/dist/plex-meets-homeassistant.js b/dist/plex-meets-homeassistant.js index f7ba80f..8004cb0 100644 --- a/dist/plex-meets-homeassistant.js +++ b/dist/plex-meets-homeassistant.js @@ -18830,7 +18830,7 @@ class Plex { } class PlayController { - constructor(hass, plex, entity, runBefore, runAfter) { + constructor(hass, plex, entity, runBefore, runAfter, libraryName) { this.plexPlayerEntity = ''; this.runBefore = false; this.runAfter = false; @@ -18908,7 +18908,34 @@ class PlayController { await this.playViaPlexPlayer(entity.value, data.key.split('/')[3]); break; case 'cast': - this.playViaCast(entity.value, data.Media[0].Part[0].key); + if (this.hass.services.plex) { + switch (data.type) { + case 'movie': + this.playViaCastPlex(entity.value, 'movie', `plex://${JSON.stringify({ + // eslint-disable-next-line @typescript-eslint/camelcase + library_name: this.libraryName, + title: data.title + })}`); + break; + case 'episode': + this.playViaCastPlex(entity.value, 'EPISODE', `plex://${JSON.stringify({ + // eslint-disable-next-line @typescript-eslint/camelcase + library_name: this.libraryName, + // eslint-disable-next-line @typescript-eslint/camelcase + show_name: data.grandparentTitle, + // eslint-disable-next-line @typescript-eslint/camelcase + season_number: data.parentIndex, + // eslint-disable-next-line @typescript-eslint/camelcase + episode_number: data.index + })}`); + break; + default: + this.playViaCast(entity.value, data.Media[0].Part[0].key); + } + } + else { + this.playViaCast(entity.value, data.Media[0].Part[0].key); + } break; default: throw Error(`No service available to play ${data.title}!`); @@ -19042,6 +19069,16 @@ class PlayController { media_content_id: this.plex.authorizeURL(`${this.plex.getBasicURL()}${mediaLink}`) }); }; + this.playViaCastPlex = (entityName, contentType, mediaLink) => { + this.hass.callService('media_player', 'play_media', { + // eslint-disable-next-line @typescript-eslint/camelcase + entity_id: entityName, + // eslint-disable-next-line @typescript-eslint/camelcase + media_content_type: contentType, + // eslint-disable-next-line @typescript-eslint/camelcase + media_content_id: mediaLink + }); + }; this.playViaAndroidTV = async (entityName, mediaID, instantPlay = false) => { const serverID = await this.plex.getServerID(); let command = `am start`; @@ -19192,6 +19229,7 @@ class PlayController { this.hass = hass; this.plex = plex; this.entity = entity; + this.libraryName = libraryName; if (!lodash.isEmpty(runBefore) && this.hass.states[runBefore]) { this.runBefore = runBefore.split('.'); } @@ -20222,7 +20260,7 @@ class PlexMeetsHomeAssistant extends HTMLElement { if (this.plex) { if (this.hassObj) { const entityConfig = JSON.parse(JSON.stringify(this.config.entity)); // todo: find a nicer solution - this.playController = new PlayController(this.hassObj, this.plex, entityConfig, this.runBefore, this.runAfter); + this.playController = new PlayController(this.hassObj, this.plex, entityConfig, this.runBefore, this.runAfter, this.config.libraryName); if (this.playController) { await this.playController.init(); } diff --git a/src/modules/PlayController.ts b/src/modules/PlayController.ts index e5b633e..b715b22 100644 --- a/src/modules/PlayController.ts +++ b/src/modules/PlayController.ts @@ -16,16 +16,26 @@ class PlayController { plex: Plex; + libraryName: string; + runBefore: Array | false = false; runAfter: Array | false = false; supported: any = supported; - constructor(hass: HomeAssistant, plex: Plex, entity: Record, runBefore: string, runAfter: string) { + constructor( + hass: HomeAssistant, + plex: Plex, + entity: Record, + runBefore: string, + runAfter: string, + libraryName: string + ) { this.hass = hass; this.plex = plex; this.entity = entity; + this.libraryName = libraryName; if (!_.isEmpty(runBefore) && this.hass.states[runBefore]) { this.runBefore = runBefore.split('.'); } @@ -111,7 +121,41 @@ class PlayController { await this.playViaPlexPlayer(entity.value, data.key.split('/')[3]); break; case 'cast': - this.playViaCast(entity.value, data.Media[0].Part[0].key); + if (this.hass.services.plex) { + switch (data.type) { + case 'movie': + this.playViaCastPlex( + entity.value, + 'movie', + `plex://${JSON.stringify({ + // eslint-disable-next-line @typescript-eslint/camelcase + library_name: this.libraryName, + title: data.title + })}` + ); + break; + case 'episode': + this.playViaCastPlex( + entity.value, + 'EPISODE', + `plex://${JSON.stringify({ + // eslint-disable-next-line @typescript-eslint/camelcase + library_name: this.libraryName, + // eslint-disable-next-line @typescript-eslint/camelcase + show_name: data.grandparentTitle, + // eslint-disable-next-line @typescript-eslint/camelcase + season_number: data.parentIndex, + // eslint-disable-next-line @typescript-eslint/camelcase + episode_number: data.index + })}` + ); + break; + default: + this.playViaCast(entity.value, data.Media[0].Part[0].key); + } + } else { + this.playViaCast(entity.value, data.Media[0].Part[0].key); + } break; default: throw Error(`No service available to play ${data.title}!`); @@ -253,6 +297,17 @@ class PlayController { }); }; + private playViaCastPlex = (entityName: string, contentType: string, mediaLink: string): void => { + this.hass.callService('media_player', 'play_media', { + // eslint-disable-next-line @typescript-eslint/camelcase + entity_id: entityName, + // eslint-disable-next-line @typescript-eslint/camelcase + media_content_type: contentType, + // eslint-disable-next-line @typescript-eslint/camelcase + media_content_id: mediaLink + }); + }; + private playViaAndroidTV = async (entityName: string, mediaID: number, instantPlay = false): Promise => { const serverID = await this.plex.getServerID(); let command = `am start`; diff --git a/src/plex-meets-homeassistant.ts b/src/plex-meets-homeassistant.ts index bc89eba..309dc3a 100644 --- a/src/plex-meets-homeassistant.ts +++ b/src/plex-meets-homeassistant.ts @@ -218,7 +218,8 @@ class PlexMeetsHomeAssistant extends HTMLElement { this.plex, entityConfig, this.runBefore, - this.runAfter + this.runAfter, + this.config.libraryName ); if (this.playController) { await this.playController.init();