selfprivacy-rest-api/selfprivacy_api/app.py

99 lines
3.1 KiB
Python
Raw Normal View History

2021-11-11 20:31:28 +02:00
#!/usr/bin/env python3
2021-11-16 18:14:01 +02:00
"""SelfPrivacy server management API"""
import os
2021-12-06 08:48:29 +02:00
from gevent import monkey
2021-11-16 12:32:10 +02:00
from flask import Flask, request, jsonify
2021-11-11 20:31:28 +02:00
from flask_restful import Api
2021-11-16 18:14:01 +02:00
from flask_swagger import swagger
from flask_swagger_ui import get_swaggerui_blueprint
2021-11-11 20:31:28 +02:00
2021-11-16 18:14:01 +02:00
from selfprivacy_api.resources.users import User, Users
from selfprivacy_api.resources.common import ApiVersion
2021-11-16 18:14:01 +02:00
from selfprivacy_api.resources.system import api_system
from selfprivacy_api.resources.services import services as api_services
2022-01-14 07:38:53 +02:00
from selfprivacy_api.resources.api_auth import auth as api_auth
2021-11-16 18:14:01 +02:00
2021-12-06 08:48:29 +02:00
from selfprivacy_api.restic_controller.tasks import huey, init_restic
from selfprivacy_api.migrations import run_migrations
2022-01-14 07:38:53 +02:00
from selfprivacy_api.utils.auth import is_token_valid
2021-11-16 18:14:01 +02:00
swagger_blueprint = get_swaggerui_blueprint(
"/api/docs", "/api/swagger.json", config={"app_name": "SelfPrivacy API"}
)
2021-11-11 20:31:28 +02:00
def create_app(test_config=None):
2021-11-16 18:14:01 +02:00
"""Initiate Flask app and bind routes"""
2021-11-11 20:31:28 +02:00
app = Flask(__name__)
api = Api(app)
if test_config is None:
app.config["ENABLE_SWAGGER"] = os.environ.get("ENABLE_SWAGGER", "0")
2021-12-02 17:06:23 +02:00
app.config["B2_BUCKET"] = os.environ.get("B2_BUCKET")
else:
app.config.update(test_config)
2021-11-16 12:32:10 +02:00
# Check bearer token
@app.before_request
def check_auth():
2022-01-14 07:38:53 +02:00
# Exclude swagger-ui, /auth/new_device/authorize, /auth/recovery_token/use
if request.path.startswith("/api"):
pass
elif request.path.startswith("/auth/new_device/authorize"):
pass
elif request.path.startswith("/auth/recovery_token/use"):
pass
else:
2021-11-16 18:14:01 +02:00
auth = request.headers.get("Authorization")
if auth is None:
return jsonify({"error": "Missing Authorization header"}), 401
2022-01-14 07:38:53 +02:00
# Strip Bearer from auth header
auth = auth.replace("Bearer ", "")
if not is_token_valid(auth):
2021-11-16 18:14:01 +02:00
return jsonify({"error": "Invalid token"}), 401
2021-11-18 09:35:50 +02:00
api.add_resource(ApiVersion, "/api/version")
2021-11-11 20:31:28 +02:00
api.add_resource(Users, "/users")
2021-11-16 18:14:01 +02:00
api.add_resource(User, "/users/<string:username>")
2021-11-11 20:31:28 +02:00
app.register_blueprint(api_system)
app.register_blueprint(api_services)
2022-01-14 07:38:53 +02:00
app.register_blueprint(api_auth)
2021-11-11 20:31:28 +02:00
2021-11-16 18:14:01 +02:00
@app.route("/api/swagger.json")
def spec():
if app.config["ENABLE_SWAGGER"] == "1":
swag = swagger(app)
swag["info"]["version"] = "1.2.3"
2021-11-16 18:14:01 +02:00
swag["info"]["title"] = "SelfPrivacy API"
swag["info"]["description"] = "SelfPrivacy API"
swag["securityDefinitions"] = {
"bearerAuth": {
"type": "apiKey",
"name": "Authorization",
"in": "header",
}
}
swag["security"] = [{"bearerAuth": []}]
return jsonify(swag)
return jsonify({}), 404
if app.config["ENABLE_SWAGGER"] == "1":
app.register_blueprint(swagger_blueprint, url_prefix="/api/docs")
2021-11-11 20:31:28 +02:00
return app
if __name__ == "__main__":
2021-12-06 08:48:29 +02:00
monkey.patch_all()
2021-11-16 18:14:01 +02:00
created_app = create_app()
run_migrations()
2021-12-06 08:48:29 +02:00
huey.start()
init_restic()
2021-11-16 18:14:01 +02:00
created_app.run(port=5050, debug=False)