mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-06 01:15:05 -05:00
9a33ddf85c
Improvements made to Indexer's API modules, better error handling for missing or incomplete shows, shows that don't have actor or banner info are now properly error handled as well.
39 lines
1.9 KiB
Python
39 lines
1.9 KiB
Python
#!/usr/bin/env python2
|
|
# encoding:utf-8
|
|
#author:echel0n
|
|
#project:indexer_api
|
|
#repository:http://github.com/echel0n/Sick-Beard
|
|
#license:unlicense (http://unlicense.org/)
|
|
|
|
"""Custom exceptions used or raised by indexer_api"""
|
|
|
|
__author__ = "echel0n"
|
|
__version__ = "1.0"
|
|
|
|
from lib.tvrage_api.tvrage_exceptions import \
|
|
tvrage_exception, tvrage_attributenotfound, tvrage_episodenotfound, tvrage_error, \
|
|
tvrage_seasonnotfound, tvrage_shownotfound, tvrage_showincomplete, tvrage_userabort
|
|
|
|
from lib.tvdb_api.tvdb_exceptions import \
|
|
tvdb_exception, tvdb_attributenotfound, tvdb_episodenotfound, tvdb_error, \
|
|
tvdb_seasonnotfound, tvdb_shownotfound, tvdb_showincomplete, tvdb_userabort
|
|
|
|
indexerExcepts = ["indexer_exception", "indexer_error", "indexer_userabort", "indexer_shownotfound",
|
|
"indexer_showincomplete",
|
|
"indexer_seasonnotfound", "indexer_episodenotfound", "indexer_attributenotfound"]
|
|
|
|
tvdbExcepts = ["tvdb_exception", "tvdb_error", "tvdb_userabort", "tvdb_shownotfound", "tvdb_showincomplete",
|
|
"tvdb_seasonnotfound", "tvdb_episodenotfound", "tvdb_attributenotfound"]
|
|
|
|
tvrageExcepts = ["tvdb_exception", "tvrage_error", "tvrage_userabort", "tvrage_shownotfound", "tvrage_showincomplete",
|
|
"tvrage_seasonnotfound", "tvrage_episodenotfound", "tvrage_attributenotfound"]
|
|
|
|
# link API exceptions to our exception handler
|
|
indexer_exception = tvdb_exception, tvrage_exception
|
|
indexer_error = tvdb_error, tvrage_error
|
|
indexer_userabort = tvdb_userabort, tvrage_userabort
|
|
indexer_attributenotfound = tvdb_attributenotfound, tvrage_attributenotfound
|
|
indexer_episodenotfound = tvdb_episodenotfound, tvrage_episodenotfound
|
|
indexer_seasonnotfound = tvdb_seasonnotfound, tvrage_seasonnotfound
|
|
indexer_shownotfound = tvdb_shownotfound, tvrage_shownotfound
|
|
indexer_showincomplete = tvdb_showincomplete, tvrage_showincomplete |