bazarr/bazarr/main.py

206 lines
6.3 KiB
Python
Raw Normal View History

2019-01-26 21:12:19 +00:00
# coding=utf-8
2019-10-28 20:16:33 +00:00
import os
2020-10-18 15:25:14 +00:00
bazarr_version = 'unknown'
version_file = os.path.join(os.path.dirname(__file__), '..', 'VERSION')
if os.path.isfile(version_file):
with open(version_file, 'r') as f:
bazarr_version = f.readline()
bazarr_version = bazarr_version.rstrip('\n')
2021-05-11 03:00:47 +00:00
os.environ["BAZARR_VERSION"] = bazarr_version.lstrip('v')
2019-09-18 15:30:46 +00:00
2019-09-28 16:38:26 +00:00
import libs
from get_args import args
2021-03-25 14:22:43 +00:00
from config import settings, url_sonarr, url_radarr, configure_proxy_func, base_url
2019-10-28 14:38:57 +00:00
from init import *
from database import System
2019-02-24 03:21:40 +00:00
from notifier import update_notifier
2019-02-24 03:21:40 +00:00
2020-02-13 04:16:22 +00:00
from urllib.parse import unquote
from get_languages import load_language_in_db
2020-01-21 00:35:55 +00:00
from flask import make_response, request, redirect, abort, render_template, Response, session, flash, url_for, \
2019-12-31 22:09:04 +00:00
send_file, stream_with_context
from threading import Thread
2018-11-28 11:45:39 +00:00
from get_series import *
from get_episodes import *
from get_movies import *
from signalr_client import sonarr_signalr_client, radarr_signalr_client
2018-11-28 11:45:39 +00:00
from check_update import apply_update, check_if_new_update, check_releases
2020-05-18 02:22:36 +00:00
from server import app, webserver
from functools import wraps
from utils import check_credentials, get_sonarr_info, get_radarr_info
# Install downloaded update
if bazarr_version != '':
apply_update()
check_releases()
2020-05-08 04:22:14 +00:00
configure_proxy_func()
# Reset the updated once Bazarr have been restarted after an update
System.update({System.updated: '0'}).execute()
# Load languages in database
load_language_in_db()
2018-12-15 00:36:28 +00:00
login_auth = settings.auth.type
2019-08-09 00:39:30 +00:00
update_notifier()
headers = {"User-Agent": os.environ["SZ_USER_AGENT"]}
def check_login(actual_method):
@wraps(actual_method)
def wrapper(*args, **kwargs):
if settings.auth.type == 'basic':
auth = request.authorization
if not (auth and check_credentials(request.authorization.username, request.authorization.password)):
return ('Unauthorized', 401, {
'WWW-Authenticate': 'Basic realm="Login Required"'
})
elif settings.auth.type == 'form':
if 'logged_in' not in session:
return abort(401, message="Unauthorized")
actual_method(*args, **kwargs)
2021-04-15 17:19:23 +00:00
@app.errorhandler(404)
def page_not_found(e):
return redirect(base_url, code=302)
2019-08-09 00:39:30 +00:00
2021-03-25 14:22:43 +00:00
@app.route('/', defaults={'path': ''})
@app.route('/<path:path>')
def catch_all(path):
auth = True
if settings.auth.type == 'basic':
auth = request.authorization
if not (auth and check_credentials(request.authorization.username, request.authorization.password)):
return ('Unauthorized', 401, {
'WWW-Authenticate': 'Basic realm="Login Required"'
})
elif settings.auth.type == 'form':
if 'logged_in' not in session:
auth = False
try:
2021-05-27 12:07:16 +00:00
updated = System.get().updated
except:
2021-05-27 12:07:16 +00:00
updated = '0'
2019-12-13 14:46:24 +00:00
2021-03-25 14:22:43 +00:00
inject = dict()
inject["baseUrl"] = base_url
inject["canUpdate"] = not args.no_update
2021-05-27 12:07:16 +00:00
inject["hasUpdate"] = updated != '0'
2019-12-13 14:46:24 +00:00
if auth:
inject["apiKey"] = settings.auth.apikey
2021-03-25 14:22:43 +00:00
template_url = base_url
if not template_url.endswith("/"):
template_url += "/"
return render_template("index.html", BAZARR_SERVER_INJECT=inject, baseUrl=template_url)
@check_login
2019-12-16 13:58:10 +00:00
@app.route('/bazarr.log')
def download_log():
2021-03-25 14:22:43 +00:00
return send_file(os.path.join(args.config_dir, 'log', 'bazarr.log'), cache_timeout=0, as_attachment=True)
@check_login
2021-03-25 14:22:43 +00:00
@app.route('/images/series/<path:url>', methods=['GET'])
def series_images(url):
url = url.strip("/")
2018-12-15 00:36:28 +00:00
apikey = settings.sonarr.apikey
baseUrl = settings.sonarr.base_url
if get_sonarr_info.is_legacy():
url_image = (url_sonarr() + '/api/' + url.lstrip(baseUrl) + '?apikey=' +
apikey).replace('poster-250', 'poster-500')
else:
url_image = (url_sonarr() + '/api/v3/' + url.lstrip(baseUrl) + '?apikey=' +
apikey).replace('poster-250', 'poster-500')
try:
req = requests.get(url_image, stream=True, timeout=15, verify=False, headers=headers)
except:
2021-03-25 14:22:43 +00:00
return '', 404
else:
2019-12-31 22:09:04 +00:00
return Response(stream_with_context(req.iter_content(2048)), content_type=req.headers['content-type'])
@check_login
2021-03-25 14:22:43 +00:00
@app.route('/images/movies/<path:url>', methods=['GET'])
def movies_images(url):
2018-12-15 00:36:28 +00:00
apikey = settings.radarr.apikey
2021-03-25 14:22:43 +00:00
baseUrl = settings.radarr.base_url
if get_radarr_info.is_legacy():
url_image = url_radarr() + '/api/' + url.lstrip(baseUrl) + '?apikey=' + apikey
else:
url_image = url_radarr() + '/api/v3/' + url.lstrip(baseUrl) + '?apikey=' + apikey
try:
req = requests.get(url_image, stream=True, timeout=15, verify=False, headers=headers)
except:
2021-03-25 14:22:43 +00:00
return '', 404
else:
2019-12-31 22:09:04 +00:00
return Response(stream_with_context(req.iter_content(2048)), content_type=req.headers['content-type'])
2021-03-25 14:22:43 +00:00
# @app.route('/check_update')
# @authenticate
# def check_update():
# if not args.no_update:
# check_and_apply_update()
2021-03-25 14:22:43 +00:00
# return '', 200
def configured():
System.update({System.configured: '1'}).execute()
@check_login
2021-03-25 14:22:43 +00:00
@app.route('/test', methods=['GET'])
@app.route('/test/<protocol>/<path:url>', methods=['GET'])
def proxy(protocol, url):
2020-04-23 00:07:21 +00:00
url = protocol + '://' + unquote(url)
2021-03-25 14:22:43 +00:00
params = request.args
try:
result = requests.get(url, params, allow_redirects=False, verify=False, timeout=5, headers=headers)
except Exception as e:
2020-05-03 02:41:03 +00:00
return dict(status=False, error=repr(e))
else:
2020-05-03 02:41:03 +00:00
if result.status_code == 200:
2021-03-25 14:22:43 +00:00
try:
version = result.json()['version']
return dict(status=True, version=version)
except Exception:
return dict(status=False, error='Error Occurred. Check your settings.')
2020-05-03 02:41:03 +00:00
elif result.status_code == 401:
return dict(status=False, error='Access Denied. Check API key.')
elif result.status_code == 404:
return dict(status=False, error='Cannot get version. Maybe unsupported legacy API call?')
2020-05-03 02:41:03 +00:00
elif 300 <= result.status_code <= 399:
return dict(status=False, error='Wrong URL Base.')
else:
return dict(status=False, error=result.raise_for_status())
if settings.general.getboolean('use_sonarr'):
Thread(target=sonarr_signalr_client.start).start()
if settings.general.getboolean('use_radarr'):
Thread(target=radarr_signalr_client.start).start()
2020-04-16 11:52:35 +00:00
if __name__ == "__main__":
2020-05-18 01:51:16 +00:00
webserver.start()