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-03-12 01:28:30 -04:00
|
|
|
import os
|
2014-03-13 00:09:36 -04:00
|
|
|
import sickbeard
|
2014-03-12 01:28:30 -04:00
|
|
|
|
2014-03-25 01:57:24 -04:00
|
|
|
from indexer_config import initConfig, indexerConfig
|
|
|
|
|
2014-03-26 22:01:53 -04:00
|
|
|
|
2014-03-25 01:57:24 -04:00
|
|
|
class indexerApi(object):
|
2014-03-26 15:28:46 -04:00
|
|
|
def __init__(self, indexerID=None):
|
2014-05-03 06:48:06 -04:00
|
|
|
self.indexerID = int(indexerID) if indexerID else None
|
2014-03-26 15:28:46 -04:00
|
|
|
|
2014-06-30 13:48:18 -04:00
|
|
|
def __del__(self):
|
|
|
|
pass
|
|
|
|
|
2014-03-26 15:28:46 -04:00
|
|
|
def indexer(self, *args, **kwargs):
|
|
|
|
if self.indexerID:
|
2014-05-03 05:40:17 -04:00
|
|
|
return indexerConfig[self.indexerID]['module'](*args, **kwargs)
|
2014-03-26 15:28:46 -04:00
|
|
|
|
|
|
|
@property
|
|
|
|
def config(self):
|
|
|
|
if self.indexerID:
|
2014-05-03 05:40:17 -04:00
|
|
|
return indexerConfig[self.indexerID]
|
2014-03-26 15:28:46 -04:00
|
|
|
return initConfig
|
|
|
|
|
|
|
|
@property
|
|
|
|
def name(self):
|
|
|
|
if self.indexerID:
|
2014-05-03 05:40:17 -04:00
|
|
|
return indexerConfig[self.indexerID]['name']
|
2014-03-26 15:28:46 -04:00
|
|
|
|
|
|
|
@property
|
|
|
|
def api_params(self):
|
|
|
|
if self.indexerID:
|
|
|
|
if sickbeard.CACHE_DIR:
|
2014-07-27 07:58:14 -04:00
|
|
|
indexerConfig[self.indexerID]['api_params']['cache'] = os.path.join(sickbeard.CACHE_DIR, 'indexers', self.name)
|
2014-07-27 06:59:21 -04:00
|
|
|
if sickbeard.PROXY_SETTING:
|
|
|
|
indexerConfig[self.indexerID]['api_params']['proxy'] = sickbeard.PROXY_SETTING
|
|
|
|
|
2014-05-03 05:40:17 -04:00
|
|
|
return indexerConfig[self.indexerID]['api_params']
|
2014-03-26 15:28:46 -04:00
|
|
|
|
|
|
|
@property
|
|
|
|
def cache(self):
|
|
|
|
if sickbeard.CACHE_DIR:
|
|
|
|
return self.api_params['cache']
|
|
|
|
|
2014-03-26 22:01:53 -04:00
|
|
|
@property
|
|
|
|
def indexers(self):
|
2014-07-24 00:44:11 -04:00
|
|
|
return dict((int(x['id']), x['name']) for x in indexerConfig.values())
|