mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-05 17:05:03 -05:00
d02c0bd6eb
Fixed charmap issues for anime show names. Fixed issues with display show page and epCat key errors. Fixed duplicate log messages for clearing provider caches. Fixed issues with email notifier ep names not properly being encoded to UTF-8. TVDB<->TVRAGE Indexer ID mapping is now performed on demand to be used when needed such as newznab providers can be searched with tvrage_id's and some will return tvrage_id's that later can be used to create show objects from for faster and more accurate name parsing, mapping is done via Trakt API calls. Added stop event signals to schedualed tasks, SR now waits indefinate till task has been fully stopped before completing a restart or shutdown event. NameParserCache is now persistent and stores 200 parsed results at any given time for quicker lookups and better performance, this helps maintain results between updates or shutdown/startup events. Black and White lists for anime now only get used for anime shows as intended, performance gain for non-anime shows that dont need to load these lists. Internal name cache now builds it self on demand when needed per show request plus checks if show is already in cache and if true exits routine to save time. Schedualer and QueueItems classes are now a sub-class of threading.Thread and a stop threading event signal has been added to each. If I forgot to list something it doesn't mean its not fixed so please test and report back if anything is wrong or has been corrected by this new release.
85 lines
2.4 KiB
Python
85 lines
2.4 KiB
Python
# 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 time
|
|
|
|
import sickbeard
|
|
import generic
|
|
|
|
from sickbeard import logger
|
|
from sickbeard import tvcache
|
|
from sickbeard.exceptions import AuthException
|
|
|
|
|
|
class WombleProvider(generic.NZBProvider):
|
|
def __init__(self):
|
|
generic.NZBProvider.__init__(self, "Womble's Index")
|
|
self.enabled = False
|
|
self.cache = WombleCache(self)
|
|
self.url = 'http://newshost.co.za/'
|
|
|
|
def isEnabled(self):
|
|
return self.enabled
|
|
|
|
|
|
class WombleCache(tvcache.TVCache):
|
|
def __init__(self, provider):
|
|
tvcache.TVCache.__init__(self, provider)
|
|
# only poll Womble's Index every 15 minutes max
|
|
self.minTime = 15
|
|
|
|
def updateCache(self):
|
|
|
|
# delete anything older then 7 days
|
|
self._clearCache()
|
|
|
|
data = None
|
|
|
|
if not self.shouldUpdate():
|
|
return
|
|
|
|
cl = []
|
|
for url in [self.provider.url + 'rss/?sec=tv-sd&fr=false', self.provider.url + 'rss/?sec=tv-hd&fr=false']:
|
|
logger.log(u"Womble's Index cache update URL: " + url, logger.DEBUG)
|
|
data = self.getRSSFeed(url)
|
|
|
|
# As long as we got something from the provider we count it as an update
|
|
if not data:
|
|
return []
|
|
|
|
# By now we know we've got data and no auth errors, all we need to do is put it in the database
|
|
for item in data.entries:
|
|
ci = self._parseItem(item)
|
|
if ci is not None:
|
|
cl.append(ci)
|
|
|
|
|
|
|
|
if len(cl) > 0:
|
|
myDB = self._getDB()
|
|
myDB.mass_action(cl)
|
|
|
|
# set last updated
|
|
if data:
|
|
self.setLastUpdate()
|
|
|
|
def _checkAuth(self, data):
|
|
return data != 'Invalid Link'
|
|
|
|
provider = WombleProvider()
|
|
|