/[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 3147 by torben, Wed Nov 23 20:10:15 2016 UTC revision 3154 by torben, Mon Nov 28 17:34:42 2016 UTC
# Line 3  Line 3 
3    
4  '''  '''
5      Todic plugin for XBMC      Todic plugin for XBMC
6      Version 0.0.19      Version 0.1.1
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 setDetailsDoc(self, detailsDoc):
84            print "[Todic] MovieDialog setDetailsDoc:"
85            self.imdbrating = getText(detailsDoc.getElementsByTagName("imdbrating"))
86            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 setUrl(self, url):      def setUrl(self, url):
         print "[Todic] MovieDialog SETURL:" + url  
92          self.url = url          self.url = url
         self.fetchClipDetails()  
   
     def setPosition(self, pos):  
         print "[Todic] MovieDialog setPosition:" + str(pos)  
         self.position = pos  
   
   
   
     def fetchClipDetails(self):  
         param1 = parse_parameter_string(self.url)  
   
         self.clipkey = param1["clipkey"]  
         print "CLIPKEY:" + self.clipkey  
         detailurl = __backend__ + "&action=clipdetails&clipkey=" + self.clipkey  
   
         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"))  
93    
94      def setName(self, name):      def setName(self, name):
95          self.name = name          self.name = name
# Line 124  class TodicPlayer(xbmc.Player): Line 109  class TodicPlayer(xbmc.Player):
109          self.lastReport = 0          self.lastReport = 0
110          print "[TodicPlayer] init"          print "[TodicPlayer] init"
111    
 #       @catchall  
112      def onPlayBackStarted(self):      def onPlayBackStarted(self):
113          self.started = True          self.started = True
114          print "[TodicPlayer] : started"          print "[TodicPlayer] : started"
 #               super.onPlayBackStarted()  
115    
116      #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()
117      def onPlayBackStopped(self):      def onPlayBackStopped(self):
118          self.stopped = True          self.stopped = True
119          print "[TodicPlayer] : stopped"          print "[TodicPlayer] : stopped"
120          url = __backend__ + "&action=playbacktime&subaction=stopped&time=" + str( self.playingPosition )          self.reportPlaytime("stopped")
121          open_url_safe(url)  
122    
123    
124      def onPlayBackEnded(self):      def onPlayBackEnded(self):
125          self.stopped = True          self.stopped = True
126          print "[TodicPlayer] : ended"          print "[TodicPlayer] : ended"
127          url = __backend__ + "&action=playbacktime&subaction=ended&time="          self.reportPlaytime("ended")
         open_url_safe(url)  
128    
129      def tick(self):      def tick(self):
130          if ( self.isPlaying() ):          if ( self.isPlaying() ):
# Line 151  class TodicPlayer(xbmc.Player): Line 133  class TodicPlayer(xbmc.Player):
133              #print "[Todic] tick " + str(now) + " " + str(self.lastReport) + " : " +str(now - self.lastReport)              #print "[Todic] tick " + str(now) + " " + str(self.lastReport) + " : " +str(now - self.lastReport)
134              if ( (now - self.lastReport) > 60.0):              if ( (now - self.lastReport) > 60.0):
135                  self.lastReport = now                  self.lastReport = now
136                  self.reportPlaytime()                  self.reportPlaytime("playing")
137    
138                    def reportPlaytime(self, subaction):
139            if (self.playingPosition > 60):
140                url = __backend__ + "&action=playbacktime&subaction=" + subaction + "&time=" + str( self.playingPosition )
141                print "[Todic] reportPlaytime:" + url
142                open_url_safe(url)
143    
144    
     def reportPlaytime(self):  
         url = __backend__ + "&action=playbacktime&subaction=playing&time=" + str( self.playingPosition )  
         open_url_safe(url)  
         print "[Todic] reportPlaytime:" + url  
                   
   
145    
146  def getText2(nodelist):  def getText2(nodelist):
147      rc = []      rc = []
# Line 266  def buildList(url, title, endlist=True): Line 246  def buildList(url, title, endlist=True):
246          description = getText(entry.getElementsByTagName("description"))          description = getText(entry.getElementsByTagName("description"))
247          playcount = getText(entry.getElementsByTagName("playcount"))          playcount = getText(entry.getElementsByTagName("playcount"))
248    
249    
250          if playcount == '':          if playcount == '':
251              playcount = '0'              playcount = '0'
252          playcount = int(playcount)          playcount = int(playcount)
# Line 297  def buildList(url, title, endlist=True): Line 278  def buildList(url, title, endlist=True):
278    
279    
280  def play_video(url, name, description):  def play_video(url, name, description):
281        param1 = parse_parameter_string(url)
282        clipkey = param1["clipkey"]
283    
284        print "[Todic] ClipKey:" + clipkey
285        detailurl = __backend__ + "&action=clipdetails&clipkey=" + clipkey
286        print "[Todic] detailURL = " + detailurl
287    
288        xml = open_url(detailurl)
289    
290        clipDetailsDoc = parseString(xml)
291        savedPosition = int( getText(clipDetailsDoc.getElementsByTagName("position")) )
292        playPosition = 0
293    
294      if (description == None or description == ""):      if (description == None or description == ""):
295          play_real_video(url, name, 0)          if (savedPosition > 0):
296                dialog = xbmcgui.Dialog()
297                #yes / true -afspil fra position
298                answer = dialog.yesno(heading='Todic', line1='Afspil fra gemt', nolabel='Fra start', yeslabel='Fortsæt')
299                if (answer == True):
300                    playPosition = savedPosition
301            
302            play_real_video(url, name, playPosition)
303    
304      else:      else:
305          d = TodicMovieDialog()          d = TodicMovieDialog()
306          d.setUrl(url)          d.setDetailsDoc(clipDetailsDoc)
307          d.setName(name)          d.setName(name)
308            d.setUrl(url)
309          d.setDescription(description)          d.setDescription(description)
         d.setPosition(pos) #tager pos fra global scope  
310    
311          d.doModal()          d.doModal()
312    
# Line 452  url = None Line 454  url = None
454  name = None  name = None
455  mode = None  mode = None
456  description = None  description = None
457  pos = 0  
458    
459    #print params
460    
461  try:  try:
462      url = urllib.unquote_plus(params["url"])      url = urllib.unquote_plus(params["url"])
# Line 471  try: Line 475  try:
475  except:  except:
476      pass      pass
477    
478  try:  
     pos = int(params["pos"])  
 except:  
     pass  
479    
480    
481  try:  try:

Legend:
Removed from v.3147  
changed lines
  Added in v.3154

  ViewVC Help
Powered by ViewVC 1.1.20