Module supertokens_python.framework.flask.flask_middleware
Expand source code
# Copyright (c) 2021, VRAI Labs and/or its affiliates. All rights reserved.
#
# This software is licensed under the Apache License, Version 2.0 (the
# "License") as published by the Apache Software Foundation.
#
# You may not use this file except in compliance with the License. You may
# obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from __future__ import annotations
import json
from typing import TYPE_CHECKING, Union
from supertokens_python.async_to_sync_wrapper import sync
from supertokens_python.framework import BaseResponse
if TYPE_CHECKING:
from flask import Flask
class Middleware:
def __init__(self, app: Flask):
self.app = app
self.set_before_after_request()
self.set_error_handler()
def set_before_after_request(self):
app = self.app
from supertokens_python.framework.flask.flask_request import FlaskRequest
from supertokens_python.framework.flask.flask_response import FlaskResponse
from supertokens_python.supertokens import manage_cookies_post_response
from flask.wrappers import Response
# There is an error in the typing provided by flask, so we ignore it
# for now.
@app.before_request # type: ignore
def _():
from supertokens_python import Supertokens
from flask import request
from flask.wrappers import Response
st = Supertokens.get_instance()
request_ = FlaskRequest(request)
response_ = FlaskResponse(Response())
result: Union[BaseResponse, None] = sync(st.middleware(request_, response_))
if result is not None:
if isinstance(result, FlaskResponse):
return result.response
raise Exception("Should never come here")
return None
@app.after_request
def _(response: Response):
from flask import g
response_ = FlaskResponse(response)
if hasattr(g, "supertokens") and g.supertokens is not None:
manage_cookies_post_response(g.supertokens, response_)
return response_.response
def set_error_handler(self):
app = self.app
from supertokens_python.exceptions import SuperTokensError
from flask import request
@app.errorhandler(SuperTokensError)
def _(error: Exception):
from supertokens_python import Supertokens
from supertokens_python.framework.flask.flask_request import FlaskRequest
from supertokens_python.framework.flask.flask_response import FlaskResponse
from flask.wrappers import Response
st = Supertokens.get_instance()
response = Response(json.dumps({}), mimetype="application/json", status=200)
result: BaseResponse = sync(
st.handle_supertokens_error(
FlaskRequest(request), error, FlaskResponse(response)
)
)
if isinstance(result, FlaskResponse):
return result.response
raise Exception("Should never come here")
Classes
class Middleware (app: Flask)
-
Expand source code
class Middleware: def __init__(self, app: Flask): self.app = app self.set_before_after_request() self.set_error_handler() def set_before_after_request(self): app = self.app from supertokens_python.framework.flask.flask_request import FlaskRequest from supertokens_python.framework.flask.flask_response import FlaskResponse from supertokens_python.supertokens import manage_cookies_post_response from flask.wrappers import Response # There is an error in the typing provided by flask, so we ignore it # for now. @app.before_request # type: ignore def _(): from supertokens_python import Supertokens from flask import request from flask.wrappers import Response st = Supertokens.get_instance() request_ = FlaskRequest(request) response_ = FlaskResponse(Response()) result: Union[BaseResponse, None] = sync(st.middleware(request_, response_)) if result is not None: if isinstance(result, FlaskResponse): return result.response raise Exception("Should never come here") return None @app.after_request def _(response: Response): from flask import g response_ = FlaskResponse(response) if hasattr(g, "supertokens") and g.supertokens is not None: manage_cookies_post_response(g.supertokens, response_) return response_.response def set_error_handler(self): app = self.app from supertokens_python.exceptions import SuperTokensError from flask import request @app.errorhandler(SuperTokensError) def _(error: Exception): from supertokens_python import Supertokens from supertokens_python.framework.flask.flask_request import FlaskRequest from supertokens_python.framework.flask.flask_response import FlaskResponse from flask.wrappers import Response st = Supertokens.get_instance() response = Response(json.dumps({}), mimetype="application/json", status=200) result: BaseResponse = sync( st.handle_supertokens_error( FlaskRequest(request), error, FlaskResponse(response) ) ) if isinstance(result, FlaskResponse): return result.response raise Exception("Should never come here")
Methods
def set_before_after_request(self)
-
Expand source code
def set_before_after_request(self): app = self.app from supertokens_python.framework.flask.flask_request import FlaskRequest from supertokens_python.framework.flask.flask_response import FlaskResponse from supertokens_python.supertokens import manage_cookies_post_response from flask.wrappers import Response # There is an error in the typing provided by flask, so we ignore it # for now. @app.before_request # type: ignore def _(): from supertokens_python import Supertokens from flask import request from flask.wrappers import Response st = Supertokens.get_instance() request_ = FlaskRequest(request) response_ = FlaskResponse(Response()) result: Union[BaseResponse, None] = sync(st.middleware(request_, response_)) if result is not None: if isinstance(result, FlaskResponse): return result.response raise Exception("Should never come here") return None @app.after_request def _(response: Response): from flask import g response_ = FlaskResponse(response) if hasattr(g, "supertokens") and g.supertokens is not None: manage_cookies_post_response(g.supertokens, response_) return response_.response
def set_error_handler(self)
-
Expand source code
def set_error_handler(self): app = self.app from supertokens_python.exceptions import SuperTokensError from flask import request @app.errorhandler(SuperTokensError) def _(error: Exception): from supertokens_python import Supertokens from supertokens_python.framework.flask.flask_request import FlaskRequest from supertokens_python.framework.flask.flask_response import FlaskResponse from flask.wrappers import Response st = Supertokens.get_instance() response = Response(json.dumps({}), mimetype="application/json", status=200) result: BaseResponse = sync( st.handle_supertokens_error( FlaskRequest(request), error, FlaskResponse(response) ) ) if isinstance(result, FlaskResponse): return result.response raise Exception("Should never come here")