Private GIT

Skip to content
Snippets Groups Projects
Select Git revision
  • 7146315fef7d097aa8ee78753cd90ff003b8f688
  • master default protected
  • fix_nzb_cat
  • develop
  • guessit2-minimal
  • ssl_warning
  • UHD-qualities
  • fix_providers8
  • !
  • tvvault
  • provider_alpharatio
  • v5.1.1
  • v5.1
  • v5.0.3
  • v5.0.2
  • v5.0.1
  • v5.0
  • v4.2.1.07
  • v4.2.1.06
  • v4.2.1.05
  • v4.2.1.04
  • v4.2.1.03
  • v4.2.1.02
  • v4.2.1.01
  • v4.2.1.0
  • v4.2.0.6
  • v4.2.0.5
  • v4.2.0.4
  • v4.2.0.3
  • v4.2.0.2
  • v4.2.0.1
31 results

pytivo.py

Blame
  • user avatar
    echel0n authored
    Notify on update for notifiers via email has been disabled for now till we re-write the email notification code better, fixed a few small errors here and there.
    c34442f5
    History
    pytivo.py 3.50 KiB
    # Author: Nic Wolfe <nic@wolfeden.ca>
    # URL: http://code.google.com/p/sickbeard/
    #
    # This file is part of SickRage.
    #
    # SickRage is free software: you can redistribute it and/or modify
    # it under the terms of the GNU General Public License as published by
    # the Free Software Foundation, either version 3 of the License, or
    # (at your option) any later version.
    #
    # SickRage is distributed in the hope that it will be useful,
    # but WITHOUT ANY WARRANTY; without even the implied warranty of
    # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    # GNU General Public License for more details.
    #
    # You should have received a copy of the GNU General Public License
    # along with SickRage.  If not, see <http://www.gnu.org/licenses/>.
    
    import os
    import sickbeard
    
    from urllib import urlencode
    from urllib2 import Request, urlopen, HTTPError
    
    from sickbeard import logger
    from sickbeard.exceptions import ex
    from sickbeard import encodingKludge as ek
    
    
    class pyTivoNotifier:
        def notify_snatch(self, ep_name):
            pass
    
        def notify_download(self, ep_name):
            pass
    
        def notify_subtitle_download(self, ep_name, lang):
            pass
            
        def notify_git_update(self, new_version):
            pass
    
        def update_library(self, ep_obj):
    
            # Values from config
    
            if not sickbeard.USE_PYTIVO:
                return False
    
            host = sickbeard.PYTIVO_HOST
            shareName = sickbeard.PYTIVO_SHARE_NAME
            tsn = sickbeard.PYTIVO_TIVO_NAME
    
            # There are two more values required, the container and file.
            # 
            # container: The share name, show name and season
            #
            # file: The file name
            # 
            # Some slicing and dicing of variables is required to get at these values.
            #
            # There might be better ways to arrive at the values, but this is the best I have been able to 
            # come up with.
            #
    
    
            # Calculated values
    
            showPath = ep_obj.show.location
            showName = ep_obj.show.name
            rootShowAndSeason = ek.ek(os.path.dirname, ep_obj.location)
            absPath = ep_obj.location
    
            # Some show names have colons in them which are illegal in a path location, so strip them out.
            # (Are there other characters?)
            showName = showName.replace(":", "")
    
            root = showPath.replace(showName, "")
            showAndSeason = rootShowAndSeason.replace(root, "")
    
            container = shareName + "/" + showAndSeason
            file = "/" + absPath.replace(root, "")
    
            # Finally create the url and make request
            requestUrl = "http://" + host + "/TiVoConnect?" + urlencode(
                {'Command': 'Push', 'Container': container, 'File': file, 'tsn': tsn})
    
            logger.log(u"pyTivo notification: Requesting " + requestUrl, logger.DEBUG)
    
            request = Request(requestUrl)
    
            try:
                response = urlopen(request)  #@UnusedVariable
            except HTTPError , e:
                if hasattr(e, 'reason'):
                    logger.log(u"pyTivo notification: Error, failed to reach a server - " + e.reason, logger.ERROR)
                    return False
                elif hasattr(e, 'code'):
                    logger.log(u"pyTivo notification: Error, the server couldn't fulfill the request - " + e.code, logger.ERROR)
                return False
            except Exception, e:
                logger.log(u"PYTIVO: Unknown exception: " + ex(e), logger.ERROR)
                return False
            else:
                logger.log(u"pyTivo notification: Successfully requested transfer of file")
                return True
    
    
    notifier = pyTivoNotifier