# Author: Nic Wolfe # 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 . import urllib import generic import sickbeard try: import xml.etree.cElementTree as etree except ImportError: import xml.etree.ElementTree as etree from sickbeard import exceptions, logger from sickbeard import tvcache, show_name_helpers class NZBsRUSProvider(generic.NZBProvider): def __init__(self): generic.NZBProvider.__init__(self, "NZBs'R'US") self.cache = NZBsRUSCache(self) self.url = 'https://www.nzbsrus.com/' self.supportsBacklog = True def isEnabled(self): return sickbeard.NZBSRUS def _checkAuth(self): if sickbeard.NZBSRUS_UID in (None, "") or sickbeard.NZBSRUS_HASH in (None, ""): raise exceptions.AuthException("NZBs'R'US authentication details are empty, check your config") def _get_season_search_strings(self, show, season, wantedEp, searchSeason=False): return ['^' + x for x in show_name_helpers.makeSceneSeasonSearchString(show, season)] def _get_episode_search_strings(self, ep_obj): return ['^' + x for x in show_name_helpers.makeSceneSearchString(ep_obj)] def _doSearch(self, search, show=None): params = {'uid': sickbeard.NZBSRUS_UID, 'key': sickbeard.NZBSRUS_HASH, 'xml': 1, 'age': sickbeard.USENET_RETENTION, 'lang0': 1, # English only from CouchPotato 'lang1': 1, 'lang3': 1, 'c91': 1, # TV:HD 'c104': 1, # TV:SD-x264 'c75': 1, # TV:XviD 'searchtext': search} if not params['age']: params['age'] = 500 searchURL = self.url + 'api.php?' + urllib.urlencode(params) logger.log(u"NZBS'R'US search url: " + searchURL, logger.DEBUG) data = self.getURL(searchURL) if not data: return [] if not data.startswith('