mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-11 03:45:01 -05:00
0d9fbc1ad7
This version of SickBeard uses both TVDB and TVRage to search and gather it's series data from allowing you to now have access to and download shows that you couldn't before because of being locked into only what TheTVDB had to offer. Also this edition is based off the code we used in our XEM editon so it does come with scene numbering support as well as all the other features our XEM edition has to offer. Please before using this with your existing database (sickbeard.db) please make a backup copy of it and delete any other database files such as cache.db and failed.db if present, we HIGHLY recommend starting out with no database files at all to make this a fresh start but the choice is at your own risk! Enjoy!
103 lines
3.4 KiB
Python
103 lines
3.4 KiB
Python
# Author: Nic Wolfe <nic@wolfeden.ca>
|
|
# URL: http://code.google.com/p/sickbeard/
|
|
#
|
|
# This file is part of Sick Beard.
|
|
#
|
|
# Sick Beard 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.
|
|
#
|
|
# Sick Beard 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 Sick Beard. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import os
|
|
import sickbeard
|
|
|
|
from urllib import urlencode
|
|
from urllib2 import Request, urlopen, URLError
|
|
|
|
from sickbeard import logger
|
|
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 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)
|
|
|
|
request = Request( requestUrl )
|
|
|
|
try:
|
|
response = urlopen(request) #@UnusedVariable
|
|
except URLError, e:
|
|
if hasattr(e, 'reason'):
|
|
logger.log(u"pyTivo notification: Error, failed to reach a server")
|
|
logger.log(u"'Error reason: " + e.reason)
|
|
return False
|
|
elif hasattr(e, 'code'):
|
|
logger.log(u"pyTivo notification: Error, the server couldn't fulfill the request")
|
|
logger.log(u"Error code: " + e.code)
|
|
return False
|
|
else:
|
|
logger.log(u"pyTivo notification: Successfully requested transfer of file")
|
|
return True
|
|
|
|
notifier = pyTivoNotifier
|