2015-12-25 06:51:47 +11:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2016-02-20 06:03:06 +11:00
|
|
|
###############################################################################
|
2015-12-25 06:51:47 +11:00
|
|
|
|
|
|
|
import json
|
2016-02-11 20:30:29 +11:00
|
|
|
from urllib import urlencode
|
2015-12-25 06:51:47 +11:00
|
|
|
|
|
|
|
import xbmc
|
|
|
|
|
|
|
|
import embydb_functions as embydb
|
|
|
|
import utils
|
2016-05-08 21:17:04 +10:00
|
|
|
import playbackutils
|
2016-02-11 20:30:29 +11:00
|
|
|
import PlexFunctions
|
|
|
|
import PlexAPI
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2016-02-20 06:03:06 +11:00
|
|
|
###############################################################################
|
2015-12-25 06:51:47 +11:00
|
|
|
|
|
|
|
|
2016-01-27 03:20:13 +11:00
|
|
|
@utils.logging
|
2015-12-25 06:51:47 +11:00
|
|
|
class Playlist():
|
2016-06-27 00:10:32 +10:00
|
|
|
"""
|
|
|
|
Initiate with Playlist(typus='video' or 'music')
|
|
|
|
"""
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2016-06-27 00:10:32 +10:00
|
|
|
def __init__(self, typus=None):
|
2016-03-11 02:02:46 +11:00
|
|
|
self.userid = utils.window('currUserId')
|
|
|
|
self.server = utils.window('pms_server')
|
2016-06-27 00:10:32 +10:00
|
|
|
if typus == 'video':
|
|
|
|
self.playlist = xbmc.PlayList(xbmc.PLAYLIST_VIDEO)
|
|
|
|
elif typus == 'music':
|
|
|
|
self.playlist = xbmc.PlayList(xbmc.PLAYLIST_MUSIC)
|
|
|
|
else:
|
|
|
|
self.playlist = None
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2016-06-27 00:10:32 +10:00
|
|
|
def __initiatePlaylist(self, itemids):
|
|
|
|
playlist = None
|
|
|
|
with embydb.GetEmbyDB() as emby_db:
|
|
|
|
for itemid in itemids:
|
|
|
|
embydb_item = emby_db.getItem_byId(itemid)
|
|
|
|
try:
|
|
|
|
mediatype = embydb_item[4]
|
|
|
|
except TypeError:
|
|
|
|
self.logMsg('Couldnt find item %s in Kodi db' % itemid, 1)
|
|
|
|
item = PlexFunctions.GetPlexMetadata(itemid)
|
|
|
|
if item in (None, 401):
|
|
|
|
continue
|
|
|
|
if PlexAPI.API(item[0]).getType() == 'track':
|
|
|
|
playlist = xbmc.PlayList(xbmc.PLAYLIST_MUSIC)
|
|
|
|
self.logMsg('Music playlist initiated', 1)
|
|
|
|
else:
|
|
|
|
playlist = xbmc.PlayList(xbmc.PLAYLIST_VIDEO)
|
|
|
|
self.logMsg('Video playlist initiated', 1)
|
|
|
|
else:
|
|
|
|
if mediatype == 'song':
|
|
|
|
playlist = xbmc.PlayList(xbmc.PLAYLIST_MUSIC)
|
|
|
|
self.logMsg('Music playlist initiated', 1)
|
|
|
|
else:
|
|
|
|
playlist = xbmc.PlayList(xbmc.PLAYLIST_VIDEO)
|
|
|
|
self.logMsg('Video playlist initiated', 1)
|
|
|
|
break
|
|
|
|
if playlist is not None:
|
|
|
|
playlist.clear()
|
|
|
|
self.playlist = playlist
|
|
|
|
|
|
|
|
def __addToPlaylist(self, itemids, startPlayer=False):
|
2016-02-04 12:06:12 +11:00
|
|
|
started = False
|
2016-02-10 23:50:04 +11:00
|
|
|
with embydb.GetEmbyDB() as emby_db:
|
|
|
|
for itemid in itemids:
|
2016-06-27 00:10:32 +10:00
|
|
|
self.logMsg("Adding %s to playlist." % itemid, 1)
|
2016-02-10 23:50:04 +11:00
|
|
|
embydb_item = emby_db.getItem_byId(itemid)
|
|
|
|
try:
|
|
|
|
dbid = embydb_item[0]
|
|
|
|
mediatype = embydb_item[4]
|
|
|
|
except TypeError:
|
2016-06-27 00:10:32 +10:00
|
|
|
self.logMsg('Couldnt find item %s in Kodi db' % itemid, 1)
|
2016-02-11 20:30:29 +11:00
|
|
|
item = PlexFunctions.GetPlexMetadata(itemid)
|
2016-06-27 00:10:32 +10:00
|
|
|
if item in (None, 401):
|
2016-04-26 22:41:58 +10:00
|
|
|
self.logMsg('Could not download itemid %s'
|
|
|
|
% itemid, -1)
|
2016-04-08 02:29:23 +10:00
|
|
|
else:
|
2016-06-27 00:10:32 +10:00
|
|
|
self.addtoPlaylist_xbmc(self.playlist, item)
|
2016-02-10 23:50:04 +11:00
|
|
|
else:
|
|
|
|
# Add to playlist
|
|
|
|
self.addtoPlaylist(dbid, mediatype)
|
2016-06-27 00:10:32 +10:00
|
|
|
if started is False and startPlayer is True:
|
|
|
|
started = True
|
|
|
|
xbmc.Player().play(self.playlist)
|
2016-02-10 23:50:04 +11:00
|
|
|
|
2016-06-27 00:10:32 +10:00
|
|
|
def playAll(self, itemids, startat):
|
|
|
|
self.logMsg("---*** PLAY ALL ***---", 1)
|
|
|
|
self.logMsg("Items: %s and start at: %s" % (itemids, startat), 1)
|
2016-02-10 23:50:04 +11:00
|
|
|
|
2016-06-27 00:10:32 +10:00
|
|
|
if self.playlist is None:
|
|
|
|
self.__initiatePlaylist(itemids)
|
|
|
|
if self.playlist is None:
|
|
|
|
self.logMsg('Could not create playlist, abort', -1)
|
|
|
|
return
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2016-06-27 00:10:32 +10:00
|
|
|
utils.window('plex_customplaylist', value="true")
|
|
|
|
if startat != 0:
|
|
|
|
# Seek to the starting position
|
|
|
|
utils.window('plex_customplaylist.seektime', str(startat))
|
|
|
|
self.__addToPlaylist(itemids, startPlayer=True)
|
2015-12-25 06:51:47 +11:00
|
|
|
self.verifyPlaylist()
|
|
|
|
|
|
|
|
def modifyPlaylist(self, itemids):
|
2016-04-26 21:53:19 +10:00
|
|
|
self.logMsg("---*** ADD TO PLAYLIST ***---", 1)
|
|
|
|
self.logMsg("Items: %s" % itemids, 1)
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2016-06-27 00:10:32 +10:00
|
|
|
self.__initiatePlaylist(itemids)
|
|
|
|
self.__addToPlaylist(itemids, startPlayer=True)
|
2015-12-25 06:51:47 +11:00
|
|
|
|
|
|
|
self.verifyPlaylist()
|
2016-04-26 22:41:58 +10:00
|
|
|
|
2015-12-25 06:51:47 +11:00
|
|
|
def addtoPlaylist(self, dbid=None, mediatype=None, url=None):
|
2016-06-27 00:10:32 +10:00
|
|
|
"""
|
|
|
|
mediatype: Kodi type: 'movie', 'episode', 'musicvideo', 'artist',
|
|
|
|
'album', 'song', 'genre'
|
|
|
|
"""
|
2015-12-25 06:51:47 +11:00
|
|
|
|
|
|
|
pl = {
|
|
|
|
|
|
|
|
'jsonrpc': "2.0",
|
|
|
|
'id': 1,
|
|
|
|
'method': "Playlist.Add",
|
|
|
|
'params': {
|
|
|
|
|
2016-06-27 00:10:32 +10:00
|
|
|
'playlistid': self.playlist.getPlayListId()
|
2015-12-25 06:51:47 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if dbid is not None:
|
2016-06-27 00:10:32 +10:00
|
|
|
pl['params']['item'] = {'%sid' % utils.tryEncode(mediatype):
|
|
|
|
int(dbid)}
|
2015-12-25 06:51:47 +11:00
|
|
|
else:
|
|
|
|
pl['params']['item'] = {'file': url}
|
2016-04-26 21:53:19 +10:00
|
|
|
self.logMsg(xbmc.executeJSONRPC(json.dumps(pl)), 2)
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2016-06-27 00:10:32 +10:00
|
|
|
def addtoPlaylist_xbmc(self, item):
|
2016-05-08 21:17:04 +10:00
|
|
|
API = PlexAPI.API(item[0])
|
2016-02-11 20:30:29 +11:00
|
|
|
params = {
|
|
|
|
'mode': "play",
|
2016-05-08 21:17:04 +10:00
|
|
|
'dbid': 999999999,
|
|
|
|
'id': API.getRatingKey(),
|
|
|
|
'filename': API.getKey()
|
2016-02-11 20:30:29 +11:00
|
|
|
}
|
2016-05-08 21:17:04 +10:00
|
|
|
playurl = "plugin://plugin.video.plexkodiconnect.movies/?%s" \
|
|
|
|
% urlencode(params)
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2016-05-08 21:17:04 +10:00
|
|
|
listitem = API.CreateListItemFromPlexItem()
|
|
|
|
playbackutils.PlaybackUtils(item[0]).setArtwork(listitem)
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2016-06-27 00:10:32 +10:00
|
|
|
self.playlist.add(playurl, listitem)
|
2015-12-25 06:51:47 +11:00
|
|
|
|
|
|
|
def insertintoPlaylist(self, position, dbid=None, mediatype=None, url=None):
|
|
|
|
|
|
|
|
pl = {
|
|
|
|
|
|
|
|
'jsonrpc': "2.0",
|
|
|
|
'id': 1,
|
|
|
|
'method': "Playlist.Insert",
|
|
|
|
'params': {
|
|
|
|
|
2016-06-27 00:10:32 +10:00
|
|
|
'playlistid': self.playlist.getPlayListId(),
|
2015-12-25 06:51:47 +11:00
|
|
|
'position': position
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if dbid is not None:
|
2016-06-27 00:10:32 +10:00
|
|
|
pl['params']['item'] = {'%sid' % utils.tryEncode(mediatype):
|
|
|
|
int(dbid)}
|
2015-12-25 06:51:47 +11:00
|
|
|
else:
|
|
|
|
pl['params']['item'] = {'file': url}
|
|
|
|
|
2016-04-26 21:53:19 +10:00
|
|
|
self.logMsg(xbmc.executeJSONRPC(json.dumps(pl)), 2)
|
2015-12-25 06:51:47 +11:00
|
|
|
|
|
|
|
def verifyPlaylist(self):
|
|
|
|
|
|
|
|
pl = {
|
|
|
|
|
|
|
|
'jsonrpc': "2.0",
|
|
|
|
'id': 1,
|
|
|
|
'method': "Playlist.GetItems",
|
|
|
|
'params': {
|
|
|
|
|
2016-06-27 00:10:32 +10:00
|
|
|
'playlistid': self.playlist.getPlayListId(),
|
2016-02-07 23:26:28 +11:00
|
|
|
'properties': ['title', 'file']
|
2015-12-25 06:51:47 +11:00
|
|
|
}
|
|
|
|
}
|
2016-04-26 21:53:19 +10:00
|
|
|
self.logMsg(xbmc.executeJSONRPC(json.dumps(pl)), 2)
|
2015-12-25 06:51:47 +11:00
|
|
|
|
|
|
|
def removefromPlaylist(self, position):
|
|
|
|
|
|
|
|
pl = {
|
|
|
|
|
|
|
|
'jsonrpc': "2.0",
|
|
|
|
'id': 1,
|
|
|
|
'method': "Playlist.Remove",
|
|
|
|
'params': {
|
|
|
|
|
2016-06-27 00:10:32 +10:00
|
|
|
'playlistid': self.playlist.getPlayListId(),
|
2015-12-25 06:51:47 +11:00
|
|
|
'position': position
|
|
|
|
}
|
|
|
|
}
|
2016-04-26 21:53:19 +10:00
|
|
|
self.logMsg(xbmc.executeJSONRPC(json.dumps(pl)), 2)
|