/[projects]/misc/xbmc/plugin.video.todic/default.py
ViewVC logotype

Diff of /misc/xbmc/plugin.video.todic/default.py

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3244 by torben, Mon Feb 18 17:38:13 2019 UTC revision 3260 by torben, Tue Mar 12 20:23:54 2019 UTC
# Line 3  Line 3 
3    
4  '''  '''
5      Todic plugin for XBMC      Todic plugin for XBMC
6      Version 1.7.1      Version 1.8.2
7  '''  '''
8    
9  import sys  import sys
# Line 27  __key__ = __addon__.getSetting('xbmckey' Line 27  __key__ = __addon__.getSetting('xbmckey'
27  __entrypoint__ = __addon__.getSetting('entrypoint').lower()  __entrypoint__ = __addon__.getSetting('entrypoint').lower()
28  __backend__ = "https://todic.dk/xbmc.php?xbmckey=" + __key__  __backend__ = "https://todic.dk/xbmc.php?xbmckey=" + __key__
29    
30    
31  if __entrypoint__ == "alternative":  if __entrypoint__ == "alternative":
32          __backend__ = "https://alt.todic.dk/xbmc.php?xbmckey=" + __key__      __backend__ = "https://alt.todic.dk/xbmc.php?xbmckey=" + __key__
33    
34  if __entrypoint__ == "testing":  if __entrypoint__ == "testing":
35          __backend__ = "https://todic.dk/xbmc-beta.php?xbmckey=" + __key__      __backend__ = "https://todic.dk/xbmc-beta.php?xbmckey=" + __key__
           
 print "[Todic] entrypoint: " + __entrypoint__  
 print "[Todic] backend: " + __backend__  
36    
37    print( "[Todic] entrypoint: " + __entrypoint__ )
38    print( "[Todic] backend: " + __backend__ )
39    print( "[Todic] version: " + __addon__.getAddonInfo('version') )
40    
41  fanartImage = os.path.join(__addon__.getAddonInfo('path'), 'movie_bg_blur.jpg')  fanartImage = os.path.join(__addon__.getAddonInfo('path'), 'movie_bg_blur.jpg')
42  datapath = xbmc.translatePath(  datapath = xbmc.translatePath(
# Line 57  class TodicMovieDialog(xbmcgui.WindowXML Line 58  class TodicMovieDialog(xbmcgui.WindowXML
58          self.position = 0          self.position = 0
59    
60      def onClick(self, controlId):      def onClick(self, controlId):
61          print "[Todic] MovieDialog OnClick: " + str(controlId)          print( "[Todic] MovieDialog OnClick: " + str(controlId) )
62    
63          if (controlId == 50):          if (controlId == 50):
64              self.close()              self.close()
# Line 72  class TodicMovieDialog(xbmcgui.WindowXML Line 73  class TodicMovieDialog(xbmcgui.WindowXML
73    
74      def onInit(self):      def onInit(self):
75    
76          print "[Todic] MovieDialog onInit"          print( "[Todic] MovieDialog onInit" )
77          self.getControl(1).setLabel(self.name)          self.getControl(1).setLabel(self.name)
78          self.getControl(2).setLabel(self.moviegroups)          self.getControl(2).setLabel(self.moviegroups)
79          self.getControl(3).setLabel(self.description)          self.getControl(3).setLabel(self.description)
# Line 93  class TodicMovieDialog(xbmcgui.WindowXML Line 94  class TodicMovieDialog(xbmcgui.WindowXML
94          #self.getControl(40).setWidth(int(self.starwidth))          #self.getControl(40).setWidth(int(self.starwidth))
95    
96      def setDetailsDoc(self, detailsDoc):      def setDetailsDoc(self, detailsDoc):
97          print "[Todic] MovieDialog setDetailsDoc:"          print( "[Todic] MovieDialog setDetailsDoc:")
98          self.imdbrating = getText(detailsDoc.getElementsByTagName("imdbrating"))          self.imdbrating = getText(detailsDoc.getElementsByTagName("imdbrating"))
99          self.moviegroups = getText(detailsDoc.getElementsByTagName("moviegroups"))          self.moviegroups = getText(detailsDoc.getElementsByTagName("moviegroups"))
100          self.playlength = getText(detailsDoc.getElementsByTagName("playlength"))          self.playlength = getText(detailsDoc.getElementsByTagName("playlength"))
# Line 119  class TodicPlayer(xbmc.Player): Line 120  class TodicPlayer(xbmc.Player):
120          self.started = False          self.started = False
121          self.playingPosition = 0.0          self.playingPosition = 0.0
122          self.lastReport = 0          self.lastReport = 0
123          print "[TodicPlayer] init"          print( "[TodicPlayer] init")
124    
125      def onPlayBackStarted(self):      def onPlayBackStarted(self):
126          self.started = True          self.started = True
127          print "[TodicPlayer] : started"          print( "[TodicPlayer] : started")
128    
129      #When user presses stop, we report back the the position registered in the last call to self.tick()      #When user presses stop, we report back the the position registered in the last call to self.tick()
130      def onPlayBackStopped(self):      def onPlayBackStopped(self):
131          self.stopped = True          self.stopped = True
132          print "[TodicPlayer] : stopped"          print( "[TodicPlayer] : stopped")
133          self.reportPlaytime("stopped")          self.reportPlaytime("stopped")
134    
135      def onPlayBackPaused(self):      def onPlayBackPaused(self):
136          print "[TodicPlayer] : paused"          print( "[TodicPlayer] : paused")
137          self.reportPlaytime("paused")          self.reportPlaytime("paused")
138    
139      def onPlayBackResumed(self):      def onPlayBackResumed(self):
140          print "[TodicPlayer] : resumed"          print( "[TodicPlayer] : resumed")
141          self.reportPlaytime("resumed")          self.reportPlaytime("resumed")
142    
143    
144      def onPlayBackEnded(self):      def onPlayBackEnded(self):
145          self.stopped = True          self.stopped = True
146          print "[TodicPlayer] : ended"          print( "[TodicPlayer] : ended")
147          self.reportPlaytime("ended")          self.reportPlaytime("ended")
148    
149      def tick(self):      def tick(self):
150          #print "[Todic] Tick: " + str( self.isPlaying() )          #print "[Todic] Tick: " + str( self.isPlaying() )
151          if ( self.isPlaying() ):          if ( self.isPlaying() ):
152              tmpTime = self.getTime():              tmpTime = self.getTime()
153    
154              #only report time if it has changed in the mean time              #only report time if it has changed in the mean time
155              if tmpTime != self.playingPosition:              if tmpTime != self.playingPosition:
# Line 162  class TodicPlayer(xbmc.Player): Line 163  class TodicPlayer(xbmc.Player):
163      def reportPlaytime(self, subaction):      def reportPlaytime(self, subaction):
164          if (self.playingPosition > 60):          if (self.playingPosition > 60):
165              url = __backend__ + "&action=playbacktime&subaction=" + subaction + "&time=" + str( self.playingPosition )              url = __backend__ + "&action=playbacktime&subaction=" + subaction + "&time=" + str( self.playingPosition )
166              print "[Todic] reportPlaytime:" + url              print( "[Todic] reportPlaytime:" + url)
167              open_url_safe(url)              open_url_safe(url)
168    
169    
# Line 209  def open_url_safe(url): Line 210  def open_url_safe(url):
210      try:      try:
211          return open_url(url)          return open_url(url)
212      except:      except:
213          print "[Todic] Some error during open_url call to ", url          print( "[Todic] Some error during open_url call to ", url)
214    
215    
216    
217  def rootMenu():  def rootMenu():
218        kodi_ver = xbmc.getInfoLabel('System.BuildVersion')
219        plugin_ver = __addon__.getAddonInfo('version')
220        msgurl = __backend__ + "&action=messages&kodi=" + urllib.quote_plus(kodi_ver) + "&todicplugin=" + urllib.quote_plus(plugin_ver)
221    
222      msg = open_url(__backend__ + "&action=messages")      msg = open_url(msgurl)
223      msg = msg.strip()      msg = msg.strip()
224    
225      if msg != "":      if msg != "":
# Line 246  def rootMenu(): Line 250  def rootMenu():
250    
251    
252  def buildList(url, title, endlist=True):  def buildList(url, title, endlist=True):
253      print '[Todic]:' + str(url)      print( '[Todic]:' + str(url) )
254    
255      link = open_url(url)      link = open_url(url)
256      doc = parseString(link)      doc = parseString(link)
257      ty = doc.getElementsByTagName("meta")[0].getAttribute("type")      ty = doc.getElementsByTagName("meta")[0].getAttribute("type")
258      print '[Todic]' + str(ty)      print( '[Todic]' + str(ty))
259    
260      if ty == 'clipList':      if ty == 'clipList':
261          mode = '50'          mode = '50'
# Line 278  def buildList(url, title, endlist=True): Line 282  def buildList(url, title, endlist=True):
282  #               print "url:" + url  #               print "url:" + url
283  #               print "thumb:" + thumb  #               print "thumb:" + thumb
284          listitem = xbmcgui.ListItem(          listitem = xbmcgui.ListItem(
285              label=name, label2='test', iconImage='DefaultFolder.png', thumbnailImage=thumb)              label=name, label2='test', iconImage='DefaultFolder.png')
286          listitem.setProperty('Fanart_Image', fanartImage)          listitem.setProperty('Fanart_Image', fanartImage)
287            listitem.addContextMenuItems([('Refresh', 'Container.Refresh')])
288            listitem.setArt( {'thumb': thumb} )
289    
290          if mode == '50':          if mode == '50':
291              infoLabels = {}              infoLabels = {}
292              infoLabels['title'] = name              infoLabels['title'] = name
293              infoLabels['playcount'] = playcount              infoLabels['playcount'] = playcount
294    #            if playcount > 0:
295    #                listitem.setArt( {'thumb': thumb} ) #not pretty - but at least we can show a different icon for unwatched/watched in kodi18  
296              listitem.setInfo('video', infoLabels)              listitem.setInfo('video', infoLabels)
297    
298          name = name.encode('UTF-8')          name = name.encode('UTF-8')
# Line 305  def play_video(url, name): Line 314  def play_video(url, name):
314          param1 = parse_parameter_string(url)          param1 = parse_parameter_string(url)
315          clipkey = param1["clipkey"]          clipkey = param1["clipkey"]
316    
317          print "[Todic] ClipKey:" + clipkey          print( "[Todic] ClipKey:" + clipkey)
318          detailurl = __backend__ + "&action=clipdetails&clipkey=" + clipkey          detailurl = __backend__ + "&action=clipdetails&clipkey=" + clipkey
319          print "[Todic] detailURL = " + detailurl          print( "[Todic] detailURL = " + detailurl)
320    
321          xml = open_url(detailurl)          xml = open_url(detailurl)
322    
# Line 315  def play_video(url, name): Line 324  def play_video(url, name):
324          savedPosition = int( getText(clipDetailsDoc.getElementsByTagName("position")) )          savedPosition = int( getText(clipDetailsDoc.getElementsByTagName("position")) )
325          description = getText(clipDetailsDoc.getElementsByTagName("description"))          description = getText(clipDetailsDoc.getElementsByTagName("description"))
326      except:      except:
327          print "[Todic] Unexpected error:", sys.exc_info()[0]          print( "[Todic] Unexpected error:", sys.exc_info()[0] )
328    
329      if (description == None or description == ""):      if (description == None or description == ""):
330          if (savedPosition > 0):          if (savedPosition > 0):
# Line 339  def play_video(url, name): Line 348  def play_video(url, name):
348    
349  def play_real_video(url, name, position):  def play_real_video(url, name, position):
350      xml = open_url(url)      xml = open_url(url)
351      print '[Todic] url: ' + str(url)      print( '[Todic] url: ' + str(url) )
352      print '[Todic] xml: ' + xml      print( '[Todic] xml: ' + xml )
353      print '[Todic] pos: ' + str(position)      print( '[Todic] pos: ' + str(position) )
354    
355      doc = parseString(xml)      doc = parseString(xml)
356      url = getText(doc.getElementsByTagName("url"))      url = getText(doc.getElementsByTagName("url"))
357    
358      subtitleurl = getText(doc.getElementsByTagName("subtitles"))      subtitleurl = getText(doc.getElementsByTagName("subtitles"))
     subtitlesfile = os.path.join(datapath, 'temp.srt')  
359    
     # if old srt file exists delete it first  
     if os.path.isfile(subtitlesfile):  
         os.unlink(subtitlesfile)  
360    
361      print '[Todic] subs: ' + str(subtitleurl)      print( '[Todic] subs: ' + str(subtitleurl) )
     if len(subtitleurl) > 0:  
         subtitles = open_url(subtitleurl)  
         SaveFile(subtitlesfile, subtitles)  
         print '[Todic] downloaded subtitles'  
362    
363      image = xbmc.getInfoImage('ListItem.Thumb')      image = xbmc.getInfoImage('ListItem.Thumb')
364      listitem = xbmcgui.ListItem(      listitem = xbmcgui.ListItem(
365          label=name, iconImage='DefaultVideo.png', thumbnailImage=image)          label=name, iconImage='DefaultVideo.png', thumbnailImage=image)
366      listitem.setInfo(type="Video", infoLabels={"Title": name})      listitem.setInfo(type="Video", infoLabels={"Title": name})
     listitem.setProperty('ResumeTime', '300')  
     listitem.setProperty('TotalTime', '3000')  
   
     player = TodicPlayer()  
     player.play(str(url), listitem)  
   
     # kan ikke loade subtitles hvis foerend playeren koerer  
     count = 0  
     while not xbmc.Player().isPlaying():  
         xbmc.sleep(250)  
         count += 1  
         if count > 10:  
             break  
367    
368        listitem.setProperty('StartOffset', str(position) )
369    
370        if len(subtitleurl) > 0:
371            listitem.setSubtitles([subtitleurl])
372    
373      if xbmc.Player().isPlaying():      player = TodicPlayer()
374          if os.path.isfile(subtitlesfile):      player.play(str(url), listitem)
             player.setSubtitles(subtitlesfile)  
             print '[Todic] started subtitles'  
         else:  
             player.showSubtitles(False)  
   
   
         if (position > 0):  
             while (player.getTotalTime() == 0.0): #Vent indtil vi har beregnet hvor langt klippet er  
                 xbmc.sleep(250)  
   
             print "[Todic] totalTime " +  str( player.getTotalTime() )  
             player.seekTime(position)  
375    
376    
377      #Holder python kørernde indtil at det bliver bedt om at stoppe      #Holder python kørernde indtil at det bliver bedt om at stoppe

Legend:
Removed from v.3244  
changed lines
  Added in v.3260

  ViewVC Help
Powered by ViewVC 1.1.20