/[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 3151 by torben, Thu Nov 24 19:55:00 2016 UTC revision 3152 by torben, Fri Nov 25 16:17:45 2016 UTC
# Line 3  Line 3 
3    
4  '''  '''
5      Todic plugin for XBMC      Todic plugin for XBMC
6      Version 0.0.21b      Version 0.1.0
7  '''  '''
8    
9  import sys  import sys
# Line 60  class TodicMovieDialog(xbmcgui.WindowXML Line 60  class TodicMovieDialog(xbmcgui.WindowXML
60    
61      def onInit(self):      def onInit(self):
62    
63          print "[Todic] MovieDialog ONINIT"          print "[Todic] MovieDialog onInit"
64          self.getControl(1).setLabel(self.name)          self.getControl(1).setLabel(self.name)
65          self.getControl(2).setLabel(self.moviegroups)          self.getControl(2).setLabel(self.moviegroups)
66          self.getControl(3).setLabel(self.description)          self.getControl(3).setLabel(self.description)
# Line 80  class TodicMovieDialog(xbmcgui.WindowXML Line 80  class TodicMovieDialog(xbmcgui.WindowXML
80          #self.starwidth = (float(self.imdbrating) / 10.0) * orig_img_width          #self.starwidth = (float(self.imdbrating) / 10.0) * orig_img_width
81          #self.getControl(40).setWidth(int(self.starwidth))          #self.getControl(40).setWidth(int(self.starwidth))
82    
83      def setUrl(self, url):      def setDetailsDoc(self, detailsDoc):
84          print "[Todic] MovieDialog SETURL:" + url          print "[Todic] MovieDialog setDetailsDoc:"
85          self.url = url          self.imdbrating = getText(detailsDoc.getElementsByTagName("imdbrating"))
86          self.fetchClipDetails()          self.moviegroups = getText(detailsDoc.getElementsByTagName("moviegroups"))
87            self.playlength = getText(detailsDoc.getElementsByTagName("playlength"))
88            self.codecdetails = getText(detailsDoc.getElementsByTagName("codecdetails"))
89            self.position = int( getText(detailsDoc.getElementsByTagName("position")) )
90    
91    
   
     def fetchClipDetails(self):  
         param1 = parse_parameter_string(self.url)  
   
         self.clipkey = param1["clipkey"]  
         print "CLIPKEY:" + self.clipkey  
         detailurl = __backend__ + "&action=clipdetails&clipkey=" + self.clipkey  
         print "[Todic] detailURL = " + detailurl  
   
         xml = open_url(detailurl)  
   
         doc = parseString(xml)  
         self.imdbrating = getText(doc.getElementsByTagName("imdbrating"))  
         self.moviegroups = getText(doc.getElementsByTagName("moviegroups"))  
         self.playlength = getText(doc.getElementsByTagName("playlength"))  
         self.codecdetails = getText(doc.getElementsByTagName("codecdetails"))  
         self.position = int( getText(doc.getElementsByTagName("position")) )  
   
92      def setName(self, name):      def setName(self, name):
93          self.name = name          self.name = name
94    
# Line 122  class TodicPlayer(xbmc.Player): Line 107  class TodicPlayer(xbmc.Player):
107          self.lastReport = 0          self.lastReport = 0
108          print "[TodicPlayer] init"          print "[TodicPlayer] init"
109    
 #       @catchall  
110      def onPlayBackStarted(self):      def onPlayBackStarted(self):
111          self.started = True          self.started = True
112          print "[TodicPlayer] : started"          print "[TodicPlayer] : started"
 #               super.onPlayBackStarted()  
113    
114      #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()
115      def onPlayBackStopped(self):      def onPlayBackStopped(self):
116          self.stopped = True          self.stopped = True
117          print "[TodicPlayer] : stopped"          print "[TodicPlayer] : stopped"
118          self.reportPlaytime("stopped")          self.reportPlaytime("stopped")
119  #        url = __backend__ + "&action=playbacktime&subaction=stopped&time=" + str( self.playingPosition )  
 #        open_url_safe(url)  
120    
121    
122      def onPlayBackEnded(self):      def onPlayBackEnded(self):
123          self.stopped = True          self.stopped = True
124          print "[TodicPlayer] : ended"          print "[TodicPlayer] : ended"
125          self.reportPlaytime("ended")          self.reportPlaytime("ended")
 #        url = __backend__ + "&action=playbacktime&subaction=ended&time="  
  #       open_url_safe(url)  
126    
127      def tick(self):      def tick(self):
128          if ( self.isPlaying() ):          if ( self.isPlaying() ):
# Line 153  class TodicPlayer(xbmc.Player): Line 133  class TodicPlayer(xbmc.Player):
133                  self.lastReport = now                  self.lastReport = now
134                  self.reportPlaytime("playing")                  self.reportPlaytime("playing")
135    
               
   
   
136      def reportPlaytime(self, subaction):      def reportPlaytime(self, subaction):
137          if (self.playingPosition > 60):          if (self.playingPosition > 60):
138              url = __backend__ + "&action=playbacktime&subaction=" + subaction + "&time=" + str( self.playingPosition )              url = __backend__ + "&action=playbacktime&subaction=" + subaction + "&time=" + str( self.playingPosition )
# Line 300  def buildList(url, title, endlist=True): Line 277  def buildList(url, title, endlist=True):
277    
278    
279  def play_video(url, name, description):  def play_video(url, name, description):
280        param1 = parse_parameter_string(url)
281        clipkey = param1["clipkey"]
282    
283        print "[Todic] ClipKey:" + clipkey
284        detailurl = __backend__ + "&action=clipdetails&clipkey=" + clipkey
285        print "[Todic] detailURL = " + detailurl
286    
287        xml = open_url(detailurl)
288    
289        clipDetailsDoc = parseString(xml)
290        savedPosition = int( getText(clipDetailsDoc.getElementsByTagName("position")) )
291        playPosition = 0
292    
293      if (description == None or description == ""):      if (description == None or description == ""):
294          play_real_video(url, name, 0)          if (savedPosition > 0):
295                dialog = xbmcgui.Dialog()
296                #yes / true -afspil fra position
297                answer = dialog.yesno(heading='Todic', line1='Afspil fra gemt', nolabel='Fra start', yeslabel='Fortsæt')
298                if (answer == True):
299                    playPosition = savedPosition
300            
301            play_real_video(url, name, playPosition)
302    
303      else:      else:
304          d = TodicMovieDialog()          d = TodicMovieDialog()
305          d.setUrl(url)          d.setDetailsDoc(clipDetailsDoc)
306          d.setName(name)          d.setName(name)
307          d.setDescription(description)          d.setDescription(description)
308    

Legend:
Removed from v.3151  
changed lines
  Added in v.3152

  ViewVC Help
Powered by ViewVC 1.1.20