2015-03-14 08:24:59 +11:00
|
|
|
|
|
|
|
import xbmc
|
|
|
|
import xbmcplugin
|
|
|
|
import xbmcgui
|
|
|
|
import xbmcaddon
|
|
|
|
import urllib
|
|
|
|
import datetime
|
|
|
|
import time
|
|
|
|
import json as json
|
|
|
|
import inspect
|
|
|
|
import sys
|
|
|
|
|
|
|
|
from DownloadUtils import DownloadUtils
|
|
|
|
downloadUtils = DownloadUtils()
|
|
|
|
from PlayUtils import PlayUtils
|
2015-03-25 05:41:46 +11:00
|
|
|
from ReadKodiDB import ReadKodiDB
|
2015-03-26 03:01:13 +11:00
|
|
|
from ReadEmbyDB import ReadEmbyDB
|
2015-03-14 08:24:59 +11:00
|
|
|
from API import API
|
|
|
|
import Utils as utils
|
2015-03-22 14:19:26 +11:00
|
|
|
import os
|
|
|
|
import xbmcvfs
|
2015-03-14 08:24:59 +11:00
|
|
|
|
2015-03-26 04:37:21 +11:00
|
|
|
addon = xbmcaddon.Addon(id='plugin.video.emby')
|
2015-03-22 14:19:26 +11:00
|
|
|
addondir = xbmc.translatePath(addon.getAddonInfo('profile'))
|
2015-03-14 08:24:59 +11:00
|
|
|
language = addon.getLocalizedString
|
|
|
|
|
|
|
|
WINDOW = xbmcgui.Window( 10000 )
|
|
|
|
port = addon.getSetting('port')
|
|
|
|
host = addon.getSetting('ipaddress')
|
|
|
|
server = host + ":" + port
|
|
|
|
userid = downloadUtils.getUserId()
|
|
|
|
|
|
|
|
|
|
|
|
class PlaybackUtils():
|
|
|
|
|
|
|
|
settings = None
|
|
|
|
language = None
|
|
|
|
logLevel = 0
|
|
|
|
|
|
|
|
|
|
|
|
def __init__(self, *args):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def PLAY(self, id):
|
|
|
|
|
|
|
|
jsonData = downloadUtils.downloadUrl("http://" + server + "/mediabrowser/Users/" + userid + "/Items/" + id + "?format=json&ImageTypeLimit=1", suppress=False, popup=1 )
|
|
|
|
result = json.loads(jsonData)
|
|
|
|
|
|
|
|
userData = result.get("UserData")
|
|
|
|
resume_result = 0
|
|
|
|
seekTime = 0
|
|
|
|
|
2015-03-26 03:01:13 +11:00
|
|
|
#get the resume point from Kodi DB for a Movie
|
2015-03-25 05:41:46 +11:00
|
|
|
kodiItem = ReadKodiDB().getKodiMovie(id)
|
|
|
|
if kodiItem != None:
|
|
|
|
seekTime = int(round(kodiItem['resume'].get("position")))
|
2015-03-26 03:01:13 +11:00
|
|
|
else:
|
|
|
|
#get the resume point from Kodi DB for an episode
|
|
|
|
episodeItem = ReadEmbyDB().getItem(id)
|
2015-03-26 21:06:59 +11:00
|
|
|
if episodeItem != None and str(episodeItem["Type"]) == "Episode":
|
|
|
|
kodiItem = ReadKodiDB().getKodiEpisodeByMbItem(id,episodeItem["SeriesId"])
|
|
|
|
if kodiItem != None:
|
|
|
|
seekTime = int(round(kodiItem['resume'].get("position")))
|
2015-03-26 03:01:13 +11:00
|
|
|
|
2015-03-14 08:24:59 +11:00
|
|
|
playurl = PlayUtils().getPlayUrl(server, id, result)
|
2015-03-22 14:19:26 +11:00
|
|
|
|
|
|
|
isStrmFile = False
|
2015-03-15 05:17:16 +11:00
|
|
|
thumbPath = API().getArtwork(result, "Primary")
|
2015-03-22 14:19:26 +11:00
|
|
|
|
|
|
|
#workaround for when the file to play is a strm file itself
|
|
|
|
if playurl.endswith(".strm"):
|
|
|
|
isStrmFile = True
|
|
|
|
tempPath = os.path.join(addondir,"library","temp.strm")
|
|
|
|
xbmcvfs.copy(playurl, tempPath)
|
|
|
|
sfile = open(tempPath, 'r')
|
|
|
|
playurl = sfile.readline()
|
|
|
|
sfile.close()
|
|
|
|
xbmcvfs.delete(tempPath)
|
|
|
|
WINDOW.setProperty("virtualstrm", id)
|
|
|
|
WINDOW.setProperty("virtualstrmtype", result.get("Type"))
|
2015-03-14 08:24:59 +11:00
|
|
|
|
2015-03-22 14:19:26 +11:00
|
|
|
listItem = xbmcgui.ListItem(path=playurl, iconImage=thumbPath, thumbnailImage=thumbPath)
|
2015-03-14 08:24:59 +11:00
|
|
|
self.setListItemProps(server, id, listItem, result)
|
|
|
|
|
|
|
|
# Can not play virtual items
|
|
|
|
if (result.get("LocationType") == "Virtual"):
|
|
|
|
xbmcgui.Dialog().ok(self.language(30128), language(30129))
|
|
|
|
|
|
|
|
watchedurl = 'http://' + server + '/mediabrowser/Users/'+ userid + '/PlayedItems/' + id
|
|
|
|
positionurl = 'http://' + server + '/mediabrowser/Users/'+ userid + '/PlayingItems/' + id
|
|
|
|
deleteurl = 'http://' + server + '/mediabrowser/Items/' + id
|
|
|
|
|
|
|
|
# set the current playing info
|
|
|
|
WINDOW.setProperty(playurl+"watchedurl", watchedurl)
|
|
|
|
WINDOW.setProperty(playurl+"positionurl", positionurl)
|
|
|
|
WINDOW.setProperty(playurl+"deleteurl", "")
|
|
|
|
WINDOW.setProperty(playurl+"deleteurl", deleteurl)
|
2015-03-25 05:41:46 +11:00
|
|
|
if seekTime != 0:
|
2015-03-14 08:24:59 +11:00
|
|
|
WINDOW.setProperty(playurl+"seektime", str(seekTime))
|
|
|
|
else:
|
|
|
|
WINDOW.clearProperty(playurl+"seektime")
|
|
|
|
|
|
|
|
if result.get("Type")=="Episode":
|
|
|
|
WINDOW.setProperty(playurl+"refresh_id", result.get("SeriesId"))
|
|
|
|
else:
|
|
|
|
WINDOW.setProperty(playurl+"refresh_id", id)
|
|
|
|
|
|
|
|
WINDOW.setProperty(playurl+"runtimeticks", str(result.get("RunTimeTicks")))
|
|
|
|
WINDOW.setProperty(playurl+"type", result.get("Type"))
|
|
|
|
WINDOW.setProperty(playurl+"item_id", id)
|
|
|
|
|
|
|
|
if PlayUtils().isDirectPlay(result) == True:
|
|
|
|
playMethod = "DirectPlay"
|
|
|
|
else:
|
|
|
|
playMethod = "Transcode"
|
2015-03-25 05:41:46 +11:00
|
|
|
|
2015-03-14 08:24:59 +11:00
|
|
|
WINDOW.setProperty(playurl+"playmethod", playMethod)
|
|
|
|
|
|
|
|
mediaSources = result.get("MediaSources")
|
|
|
|
if(mediaSources != None):
|
|
|
|
if mediaSources[0].get('DefaultAudioStreamIndex') != None:
|
|
|
|
WINDOW.setProperty(playurl+"AudioStreamIndex", str(mediaSources[0].get('DefaultAudioStreamIndex')))
|
|
|
|
if mediaSources[0].get('DefaultSubtitleStreamIndex') != None:
|
|
|
|
WINDOW.setProperty(playurl+"SubtitleStreamIndex", str(mediaSources[0].get('DefaultSubtitleStreamIndex')))
|
|
|
|
|
|
|
|
#this launches the playback
|
2015-03-20 10:24:29 +11:00
|
|
|
#artwork only works with both resolvedurl and player command
|
2015-03-22 14:19:26 +11:00
|
|
|
if isStrmFile:
|
|
|
|
xbmcplugin.setResolvedUrl(int(sys.argv[1]), True, listItem)
|
|
|
|
else:
|
|
|
|
xbmcplugin.setResolvedUrl(int(sys.argv[1]), True, listItem)
|
|
|
|
xbmc.Player().play(playurl,listItem)
|
2015-03-14 08:24:59 +11:00
|
|
|
|
|
|
|
def setArt(self, list,name,path):
|
|
|
|
if name=='thumb' or name=='fanart_image' or name=='small_poster' or name=='tiny_poster' or name == "medium_landscape" or name=='medium_poster' or name=='small_fanartimage' or name=='medium_fanartimage' or name=='fanart_noindicators':
|
|
|
|
list.setProperty(name, path)
|
|
|
|
else:
|
|
|
|
list.setArt({name:path})
|
|
|
|
return list
|
|
|
|
|
2015-03-22 14:19:26 +11:00
|
|
|
|
2015-03-14 08:24:59 +11:00
|
|
|
def setListItemProps(self, server, id, listItem, result):
|
|
|
|
# set up item and item info
|
|
|
|
userid = downloadUtils.getUserId()
|
|
|
|
thumbID = id
|
|
|
|
eppNum = -1
|
|
|
|
seasonNum = -1
|
|
|
|
tvshowTitle = ""
|
|
|
|
|
|
|
|
if(result.get("Type") == "Episode"):
|
|
|
|
thumbID = result.get("SeriesId")
|
|
|
|
seasonNum = result.get("ParentIndexNumber")
|
|
|
|
eppNum = result.get("IndexNumber")
|
|
|
|
tvshowTitle = result.get("SeriesName")
|
|
|
|
|
2015-03-15 05:17:16 +11:00
|
|
|
self.setArt(listItem,'poster', API().getArtwork(result, "Primary"))
|
|
|
|
self.setArt(listItem,'tvshow.poster', API().getArtwork(result, "SeriesPrimary"))
|
|
|
|
self.setArt(listItem,'clearart', API().getArtwork(result, "Art"))
|
|
|
|
self.setArt(listItem,'tvshow.clearart', API().getArtwork(result, "Art"))
|
|
|
|
self.setArt(listItem,'clearlogo', API().getArtwork(result, "Logo"))
|
|
|
|
self.setArt(listItem,'tvshow.clearlogo', API().getArtwork(result, "Logo"))
|
|
|
|
self.setArt(listItem,'discart', API().getArtwork(result, "Disc"))
|
|
|
|
self.setArt(listItem,'fanart_image', API().getArtwork(result, "Backdrop"))
|
|
|
|
self.setArt(listItem,'landscape', API().getArtwork(result, "Thumb"))
|
2015-03-14 08:24:59 +11:00
|
|
|
|
|
|
|
listItem.setProperty('IsPlayable', 'true')
|
|
|
|
listItem.setProperty('IsFolder', 'false')
|
|
|
|
|
|
|
|
# Process Studios
|
2015-03-15 05:17:16 +11:00
|
|
|
studios = API().getStudios(result)
|
2015-03-19 07:49:49 +11:00
|
|
|
if studios == []:
|
|
|
|
studio = ""
|
|
|
|
else:
|
|
|
|
studio = studios[0]
|
2015-03-14 08:24:59 +11:00
|
|
|
listItem.setInfo('video', {'studio' : studio})
|
|
|
|
|
|
|
|
# play info
|
|
|
|
playinformation = ''
|
|
|
|
if PlayUtils().isDirectPlay(result) == True:
|
|
|
|
playinformation = language(30165)
|
|
|
|
else:
|
|
|
|
playinformation = language(30166)
|
|
|
|
|
|
|
|
details = {
|
|
|
|
'title' : result.get("Name", "Missing Name") + ' - ' + playinformation,
|
|
|
|
'plot' : result.get("Overview")
|
|
|
|
}
|
|
|
|
|
|
|
|
if(eppNum > -1):
|
|
|
|
details["episode"] = str(eppNum)
|
|
|
|
|
|
|
|
if(seasonNum > -1):
|
|
|
|
details["season"] = str(seasonNum)
|
|
|
|
|
|
|
|
if tvshowTitle != None:
|
|
|
|
details["TVShowTitle"] = tvshowTitle
|
|
|
|
|
|
|
|
listItem.setInfo( "Video", infoLabels=details )
|
|
|
|
|
|
|
|
people = API().getPeople(result)
|
|
|
|
|
|
|
|
# Process Genres
|
|
|
|
genre = API().getGenre(result)
|
|
|
|
|
|
|
|
listItem.setInfo('video', {'director' : people.get('Director')})
|
|
|
|
listItem.setInfo('video', {'writer' : people.get('Writer')})
|
|
|
|
listItem.setInfo('video', {'mpaa': result.get("OfficialRating")})
|
|
|
|
listItem.setInfo('video', {'genre': genre})
|
2015-03-23 15:54:16 +11:00
|
|
|
|