mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-11 03:45:01 -05:00
0d9fbc1ad7
This version of SickBeard uses both TVDB and TVRage to search and gather it's series data from allowing you to now have access to and download shows that you couldn't before because of being locked into only what TheTVDB had to offer. Also this edition is based off the code we used in our XEM editon so it does come with scene numbering support as well as all the other features our XEM edition has to offer. Please before using this with your existing database (sickbeard.db) please make a backup copy of it and delete any other database files such as cache.db and failed.db if present, we HIGHLY recommend starting out with no database files at all to make this a fresh start but the choice is at your own risk! Enjoy!
51 lines
1.5 KiB
Python
51 lines
1.5 KiB
Python
import sys
|
|
import cherrypy
|
|
|
|
if sys.version_info >= (2, 6):
|
|
# Python 2.6: simplejson is part of the standard library
|
|
import json
|
|
else:
|
|
try:
|
|
import simplejson as json
|
|
except ImportError:
|
|
json = None
|
|
|
|
if json is None:
|
|
def json_decode(s):
|
|
raise ValueError('No JSON library is available')
|
|
def json_encode(s):
|
|
raise ValueError('No JSON library is available')
|
|
else:
|
|
json_decode = json.JSONDecoder().decode
|
|
json_encode = json.JSONEncoder().iterencode
|
|
|
|
def json_in(force=True, debug=False):
|
|
request = cherrypy.serving.request
|
|
def json_processor(entity):
|
|
"""Read application/json data into request.json."""
|
|
if not entity.headers.get(u"Content-Length", u""):
|
|
raise cherrypy.HTTPError(411)
|
|
|
|
body = entity.fp.read()
|
|
try:
|
|
request.json = json_decode(body)
|
|
except ValueError:
|
|
raise cherrypy.HTTPError(400, 'Invalid JSON document')
|
|
if force:
|
|
request.body.processors.clear()
|
|
request.body.default_proc = cherrypy.HTTPError(
|
|
415, 'Expected an application/json content type')
|
|
request.body.processors[u'application/json'] = json_processor
|
|
|
|
def json_out(debug=False):
|
|
request = cherrypy.serving.request
|
|
response = cherrypy.serving.response
|
|
|
|
real_handler = request.handler
|
|
def json_handler(*args, **kwargs):
|
|
response.headers['Content-Type'] = 'application/json'
|
|
value = real_handler(*args, **kwargs)
|
|
return json_encode(value)
|
|
request.handler = json_handler
|
|
|