2014-03-10 01:18:05 -04:00
|
|
|
# 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/>.
|
2014-03-12 01:28:30 -04:00
|
|
|
import os
|
2014-03-14 13:15:02 -04:00
|
|
|
import datetime
|
2014-03-10 01:18:05 -04:00
|
|
|
|
2014-03-13 00:09:36 -04:00
|
|
|
import sickbeard
|
2014-03-12 22:44:40 -04:00
|
|
|
import generic
|
2014-03-12 01:28:30 -04:00
|
|
|
|
2014-03-13 08:20:45 -04:00
|
|
|
from indexer_exceptions import indexer_attributenotfound
|
2014-03-10 01:18:05 -04:00
|
|
|
from lib.tvdb_api.tvdb_api import Tvdb
|
|
|
|
from lib.tvrage_api.tvrage_api import TVRage
|
|
|
|
|
2014-03-12 22:44:40 -04:00
|
|
|
class indexerApi(generic.GenericIndexer):
|
2014-03-14 13:15:02 -04:00
|
|
|
def __init__(self, indexer=None, *args, **kwargs):
|
2014-03-15 22:58:15 -04:00
|
|
|
generic.GenericIndexer.__init__(self, indexer)
|
2014-03-10 01:18:05 -04:00
|
|
|
|
2014-03-15 22:58:15 -04:00
|
|
|
if indexer in self.indexers:
|
2014-03-14 13:15:02 -04:00
|
|
|
self.api_parms.update(**kwargs)
|
2014-03-12 01:28:30 -04:00
|
|
|
|
2014-03-13 00:09:36 -04:00
|
|
|
if sickbeard.CACHE_DIR:
|
2014-03-14 13:15:02 -04:00
|
|
|
self.api_parms['cache'] = self.cache
|
2014-03-12 01:28:30 -04:00
|
|
|
|
2014-03-12 22:44:40 -04:00
|
|
|
# wrap the indexer API object and return it back
|
2014-03-14 13:15:02 -04:00
|
|
|
self._wrapped = eval(indexer)(*args, **self.api_parms)
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
def __getattr__(self, attr):
|
2014-03-13 23:07:15 -04:00
|
|
|
return getattr(self._wrapped, attr)
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
def __getitem__(self, attr):
|
2014-03-13 23:07:15 -04:00
|
|
|
return self._wrapped.__getitem__(attr)
|