2014-03-10 05:18:05 +00:00
|
|
|
# Author: Nic Wolfe <nic@wolfeden.ca>
|
|
|
|
# URL: http://code.google.com/p/sickbeard/
|
|
|
|
#
|
2014-11-12 16:43:14 +00:00
|
|
|
# This file is part of SickGear.
|
2014-03-10 05:18:05 +00:00
|
|
|
#
|
2014-11-12 16:43:14 +00:00
|
|
|
# SickGear is free software: you can redistribute it and/or modify
|
2014-03-10 05:18:05 +00: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-11-12 16:43:14 +00:00
|
|
|
# SickGear is distributed in the hope that it will be useful,
|
2014-03-10 05:18:05 +00: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-11-12 16:43:14 +00:00
|
|
|
# along with SickGear. If not, see <http://www.gnu.org/licenses/>.
|
2014-03-12 05:28:30 +00:00
|
|
|
import os
|
2014-03-13 04:09:36 +00:00
|
|
|
import sickbeard
|
2014-03-12 05:28:30 +00:00
|
|
|
|
2014-03-25 05:57:24 +00:00
|
|
|
from indexer_config import initConfig, indexerConfig
|
2015-02-10 04:57:44 +00:00
|
|
|
from sickbeard.helpers import proxy_setting
|
2014-03-27 02:01:53 +00:00
|
|
|
|
2014-03-25 05:57:24 +00:00
|
|
|
class indexerApi(object):
|
2014-03-26 19:28:46 +00:00
|
|
|
def __init__(self, indexerID=None):
|
2014-05-03 10:48:06 +00:00
|
|
|
self.indexerID = int(indexerID) if indexerID else None
|
2014-03-26 19:28:46 +00:00
|
|
|
|
2014-06-30 17:48:18 +00:00
|
|
|
def __del__(self):
|
|
|
|
pass
|
|
|
|
|
2014-03-26 19:28:46 +00:00
|
|
|
def indexer(self, *args, **kwargs):
|
|
|
|
if self.indexerID:
|
2014-05-03 09:40:17 +00:00
|
|
|
return indexerConfig[self.indexerID]['module'](*args, **kwargs)
|
2014-03-26 19:28:46 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def config(self):
|
|
|
|
if self.indexerID:
|
2014-05-03 09:40:17 +00:00
|
|
|
return indexerConfig[self.indexerID]
|
2014-03-26 19:28:46 +00:00
|
|
|
return initConfig
|
|
|
|
|
|
|
|
@property
|
|
|
|
def name(self):
|
|
|
|
if self.indexerID:
|
2014-05-03 09:40:17 +00:00
|
|
|
return indexerConfig[self.indexerID]['name']
|
2014-03-26 19:28:46 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def api_params(self):
|
|
|
|
if self.indexerID:
|
|
|
|
if sickbeard.CACHE_DIR:
|
2014-07-27 11:58:14 +00:00
|
|
|
indexerConfig[self.indexerID]['api_params']['cache'] = os.path.join(sickbeard.CACHE_DIR, 'indexers', self.name)
|
2014-10-07 12:55:17 +00:00
|
|
|
if sickbeard.PROXY_SETTING and sickbeard.PROXY_INDEXERS:
|
2015-02-10 04:57:44 +00:00
|
|
|
(proxy_address, pac_found) = proxy_setting(sickbeard.PROXY_SETTING, indexerConfig[self.indexerID]['base_url'], force=True)
|
|
|
|
if proxy_address:
|
|
|
|
indexerConfig[self.indexerID]['api_params']['proxy'] = proxy_address
|
2014-07-27 10:59:21 +00:00
|
|
|
|
2014-05-03 09:40:17 +00:00
|
|
|
return indexerConfig[self.indexerID]['api_params']
|
2014-03-26 19:28:46 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def cache(self):
|
|
|
|
if sickbeard.CACHE_DIR:
|
|
|
|
return self.api_params['cache']
|
|
|
|
|
2014-03-27 02:01:53 +00:00
|
|
|
@property
|
|
|
|
def indexers(self):
|
2014-10-07 12:55:17 +00:00
|
|
|
return dict((int(x['id']), x['name']) for x in indexerConfig.values())
|