2014-03-10 01:18:05 -04:00
|
|
|
# Author: Nic Wolfe <nic@wolfeden.ca>
|
|
|
|
# URL: http://code.google.com/p/sickbeard/
|
|
|
|
#
|
2014-05-23 08:37:22 -04:00
|
|
|
# This file is part of SickRage.
|
2014-03-10 01:18:05 -04:00
|
|
|
#
|
2014-05-23 08:37:22 -04:00
|
|
|
# SickRage is free software: you can redistribute it and/or modify
|
2014-03-10 01:18:05 -04:00
|
|
|
# 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.
|
|
|
|
#
|
2014-05-23 08:37:22 -04:00
|
|
|
# SickRage is distributed in the hope that it will be useful,
|
2014-03-10 01:18:05 -04:00
|
|
|
# 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
|
2014-05-23 08:37:22 -04:00
|
|
|
# along with SickRage. If not, see <http://www.gnu.org/licenses/>.
|
2014-07-02 14:51:14 -04:00
|
|
|
import time
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
import sickbeard
|
|
|
|
import generic
|
|
|
|
|
|
|
|
from sickbeard import logger
|
|
|
|
from sickbeard import tvcache
|
2014-06-29 06:05:33 -04:00
|
|
|
from sickbeard.exceptions import AuthException
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
|
|
|
|
class WombleProvider(generic.NZBProvider):
|
|
|
|
def __init__(self):
|
|
|
|
generic.NZBProvider.__init__(self, "Womble's Index")
|
2014-05-19 22:14:06 -04:00
|
|
|
self.enabled = False
|
2014-03-10 01:18:05 -04:00
|
|
|
self.cache = WombleCache(self)
|
2014-07-31 01:02:45 -04:00
|
|
|
self.url = 'https://newshost.co.za/'
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
def isEnabled(self):
|
2014-05-19 22:14:06 -04:00
|
|
|
return self.enabled
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2014-06-29 06:05:33 -04:00
|
|
|
def updateCache(self):
|
2014-12-07 12:16:41 -05:00
|
|
|
# check if we should update
|
|
|
|
if not self.shouldUpdate():
|
|
|
|
return
|
2014-06-29 06:05:33 -04:00
|
|
|
|
2014-12-07 12:16:41 -05:00
|
|
|
# clear cache
|
2014-06-29 06:05:33 -04:00
|
|
|
self._clearCache()
|
|
|
|
|
2014-12-07 12:16:41 -05:00
|
|
|
# set updated
|
|
|
|
self.setLastUpdate()
|
2014-06-30 07:44:36 -04:00
|
|
|
|
|
|
|
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)
|
|
|
|
|
2014-12-07 12:16:41 -05:00
|
|
|
for item in self.getRSSFeed(url, items=['entries', 'feed'])['entries'] or []:
|
|
|
|
ci = self._parseItem(item)
|
2014-06-30 07:44:36 -04:00
|
|
|
if ci is not None:
|
|
|
|
cl.append(ci)
|
|
|
|
|
2014-07-14 22:00:53 -04:00
|
|
|
if len(cl) > 0:
|
2014-06-30 07:44:36 -04:00
|
|
|
myDB = self._getDB()
|
|
|
|
myDB.mass_action(cl)
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
def _checkAuth(self, data):
|
2014-12-11 16:26:00 -05:00
|
|
|
return data if data['feed'] and data['feed']['title'] != 'Invalid Link' else None
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
provider = WombleProvider()
|
2014-06-29 06:05:33 -04:00
|
|
|
|