mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 08:53:37 +00:00
fe1aabca00
Change API version... start with 10 Change set application response header to 'SickGear' + add API version Change return timezone (of network) in API Add indexer to calls Add SickGear Command tip for old SickBeard commands Add warning old sickbeard API calls only support tvdb shows Add "tvdbid" fallback only for sickbeard calls Add listcommands Add list of all commands (old + new) in listcommand page at the beginning Change hide 'listcommands' command from commands list, since it needs the API builder CSS + is html not json Add missing help in webapi Add episode info: absolute_number, scene_season, scene_episode, scene_absolute_number Add fork to SB command Add sg Add sg.activatescenenumbering Add sg.addrootdir Add sg.checkscheduler Add sg.deleterootdir Add sg.episode Add sg.episode.search Add sg.episode.setstatus Add sg.episode.subtitlesearch Add sg.exceptions Add sg.forcesearch Add sg.future Add sg.getdefaults Add sg.getindexericon Add sg.getindexers to list all indexers Add sg.getmessages Add sg.getnetworkicon Add sg.getrootdirs Add sg.getqualities Add sg.getqualitystrings Add sg.history Add sg.history.clear Add sg.history.trim Add sg.listtraktaccounts Add sg.listignorewords Add sg.listrequiedwords Add sg.logs Add sg.pausebacklog Add sg.postprocess Add sg.ping Add sg.restart Add sg.searchqueue Add sg.searchtv to search all indexers Add sg.setexceptions Add sg.setignorewords Add sg.setrequiredwords Add sg.setscenenumber Add sg.show Add sg.show.addexisting Add sg.show.addnew Add sg.show.cache Add sg.show.delete Add sg.show.getbanner Add sg.show.getfanart Add sg.show.getposter Add sg.show.getquality Add sg.show.listfanart Add sg.show.ratefanart Add sg.show.seasonlist Add sg.show.seasons Add sg.show.setquality Add sg.show.stats Add sg.show.refresh Add sg.show.pause Add sg.show.update Add sg.shows Add sg.shows.browsetrakt Add sg.shows.forceupdate Add sg.shows.queue Add sg.shows.stats Change sickbeard to sickgear Change sickbeard_call to property Change sg.episode.setstatus allow setting of quality Change sg.history, history command output Change sg.searchtv to list of indexers Add uhd4kweb to qualities Add upgrade_once to add existing shows Add upgrade_once to add new show Add upgrade_once to show quality settings (get/set) Add 'ids' to Show + Shows Add ids to coming eps + get tvdb id from ids Add 'status_str' to coming eps Add 'local_datetime' to comming eps + runtime Add X-Filename response header to getbanner, getposter Add X-Fanartname response header for sg.show.getfanart Add missing fields to sb.show Add missing fields to sb.shows Change sb.seasons Change overview optional Change make overview optional in shows Add setscenenumber to API builder Change move set_scene_numbering_helper into scnene_numbering for use in web interface and API Change use quality_map instead of fixed list Add eigthlevel for API/builder page Change limit indexer param to valid values Fix wrong parameter in existing apiBuilder.tmpl that prevents javascript from continuing + add console error message for it Fixed: filter missed shows correctly Add @gen.coroutine
142 lines
4.4 KiB
Python
142 lines
4.4 KiB
Python
# Author: Nic Wolfe <nic@wolfeden.ca>
|
|
# URL: http://code.google.com/p/sickbeard/
|
|
#
|
|
# This file is part of SickGear.
|
|
#
|
|
# SickGear 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.
|
|
#
|
|
# SickGear 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 SickGear. If not, see <http://www.gnu.org/licenses/>.
|
|
import os
|
|
import sickbeard
|
|
import time
|
|
|
|
from indexer_config import initConfig, indexerConfig
|
|
from sickbeard.helpers import proxy_setting
|
|
|
|
|
|
class ShowContainer(dict):
|
|
"""Simple dict that holds a series of Show instances
|
|
"""
|
|
|
|
def __init__(self):
|
|
self._stack = []
|
|
self._lastgc = time.time()
|
|
|
|
def __setitem__(self, key, value):
|
|
self._stack.append(key)
|
|
|
|
# keep only the 100th latest results
|
|
if time.time() - self._lastgc > 20:
|
|
for o in self._stack[:-100]:
|
|
del self[o]
|
|
|
|
self._stack = self._stack[-100:]
|
|
|
|
self._lastgc = time.time()
|
|
|
|
super(ShowContainer, self).__setitem__(key, value)
|
|
|
|
|
|
class DummyIndexer:
|
|
def __init__(self, *args, **kwargs):
|
|
self.config = {
|
|
'apikey': '',
|
|
'debug_enabled': False,
|
|
'custom_ui': None,
|
|
'proxy': None,
|
|
'cache_enabled': False,
|
|
'cache_location': '',
|
|
'valid_languages': [],
|
|
'langabbv_to_id': {},
|
|
'language': 'en',
|
|
'base_url': '',
|
|
}
|
|
|
|
self.corrections = {}
|
|
self.shows = ShowContainer()
|
|
|
|
def __getitem__(self, key):
|
|
return None
|
|
|
|
def __repr__(self):
|
|
return str(self.shows)
|
|
|
|
def search(self, series):
|
|
return []
|
|
|
|
|
|
class indexerApi(object):
|
|
def __init__(self, indexerID=None):
|
|
self.indexerID = int(indexerID) if indexerID else None
|
|
|
|
def __del__(self):
|
|
pass
|
|
|
|
def indexer(self, *args, **kwargs):
|
|
if self.indexerID:
|
|
if indexerConfig[self.indexerID]['active'] or ('no_dummy' in kwargs and True is kwargs['no_dummy']):
|
|
if 'no_dummy' in kwargs:
|
|
kwargs.pop('no_dummy')
|
|
return indexerConfig[self.indexerID]['module'](*args, **kwargs)
|
|
else:
|
|
return DummyIndexer(*args, **kwargs)
|
|
|
|
@property
|
|
def config(self):
|
|
if self.indexerID:
|
|
return indexerConfig[self.indexerID]
|
|
return initConfig
|
|
|
|
@property
|
|
def name(self):
|
|
if self.indexerID:
|
|
return indexerConfig[self.indexerID]['name']
|
|
|
|
@property
|
|
def api_params(self):
|
|
if self.indexerID:
|
|
if sickbeard.CACHE_DIR:
|
|
indexerConfig[self.indexerID]['api_params']['cache'] = os.path.join(
|
|
sickbeard.CACHE_DIR, 'indexers', self.name)
|
|
if sickbeard.PROXY_SETTING and sickbeard.PROXY_INDEXERS:
|
|
(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
|
|
|
|
return indexerConfig[self.indexerID]['api_params']
|
|
|
|
@property
|
|
def cache(self):
|
|
if sickbeard.CACHE_DIR:
|
|
return self.api_params['cache']
|
|
|
|
@property
|
|
def indexers(self):
|
|
return dict((int(x['id']), x['name']) for x in indexerConfig.values() if not x['mapped_only'])
|
|
|
|
@property
|
|
def search_indexers(self):
|
|
return dict((int(x['id']), x['name']) for x in indexerConfig.values() if not x['mapped_only'] and
|
|
x.get('active') and not x.get('defunct'))
|
|
|
|
@property
|
|
def all_indexers(self):
|
|
"""
|
|
return all indexers including mapped only indexers
|
|
"""
|
|
return dict((int(x['id']), x['name']) for x in indexerConfig.values())
|
|
|
|
@property
|
|
def xem_supported_indexers(self):
|
|
return dict((int(x['id']), x['name']) for x in indexerConfig.values() if x.get('xem_origin'))
|