mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-11 03:45:01 -05:00
01eb8c0129
Few bugfixes to the code.
52 lines
1.8 KiB
Python
52 lines
1.8 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
|
|
import generic
|
|
|
|
from indexer_exceptions import indexer_attributenotfound
|
|
from lib.tvdb_api.tvdb_api import Tvdb
|
|
from lib.tvrage_api.tvrage_api import TVRage
|
|
|
|
class indexerApi(generic.GenericIndexer):
|
|
def __init__(self, *args, **kwargs):
|
|
indexer = kwargs.pop('indexer',None)
|
|
super(indexerApi, self).__init__(indexer)
|
|
self.name = self.config['name']
|
|
|
|
if indexer:
|
|
self.config['api_parms'].update(**kwargs)
|
|
|
|
if sickbeard.CACHE_DIR:
|
|
self.config['api_parms']['cache'] = os.path.join(sickbeard.CACHE_DIR, indexer)
|
|
|
|
# wrap the indexer API object and return it back
|
|
self._wrapped = eval(indexer)(forceConnect=True, *args, **self.config['api_parms'])
|
|
|
|
def __getattr__(self, attr):
|
|
try:
|
|
return getattr(self._wrapped, attr)
|
|
except KeyError:
|
|
raise indexer_attributenotfound
|
|
|
|
def __getitem__(self, attr):
|
|
try:
|
|
return self._wrapped.__getitem__(attr)
|
|
except KeyError:
|
|
raise indexer_attributenotfound |