bazarr/libs/flask/globals.py

52 lines
1.7 KiB
Python
Raw Normal View History

from __future__ import annotations
import typing as t
2022-11-07 18:06:49 +00:00
from contextvars import ContextVar
2019-11-28 11:40:45 +00:00
from werkzeug.local import LocalProxy
2022-11-07 18:06:49 +00:00
if t.TYPE_CHECKING: # pragma: no cover
from .app import Flask
from .ctx import _AppCtxGlobals
2022-11-07 18:06:49 +00:00
from .ctx import AppContext
from .ctx import RequestContext
from .sessions import SessionMixin
from .wrappers import Request
2019-11-28 11:40:45 +00:00
2022-11-07 18:06:49 +00:00
_no_app_msg = """\
2019-11-28 11:40:45 +00:00
Working outside of application context.
This typically means that you attempted to use functionality that needed
2022-11-07 18:06:49 +00:00
the current application. To solve this, set up an application context
with app.app_context(). See the documentation for more information.\
2019-11-28 11:40:45 +00:00
"""
_cv_app: ContextVar[AppContext] = ContextVar("flask.app_ctx")
app_ctx: AppContext = LocalProxy( # type: ignore[assignment]
2022-11-07 18:06:49 +00:00
_cv_app, unbound_message=_no_app_msg
)
current_app: Flask = LocalProxy( # type: ignore[assignment]
2022-11-07 18:06:49 +00:00
_cv_app, "app", unbound_message=_no_app_msg
)
g: _AppCtxGlobals = LocalProxy( # type: ignore[assignment]
2022-11-07 18:06:49 +00:00
_cv_app, "g", unbound_message=_no_app_msg
)
2019-11-28 11:40:45 +00:00
2022-11-07 18:06:49 +00:00
_no_req_msg = """\
Working outside of request context.
2019-11-28 11:40:45 +00:00
2022-11-07 18:06:49 +00:00
This typically means that you attempted to use functionality that needed
an active HTTP request. Consult the documentation on testing for
information about how to avoid this problem.\
"""
_cv_request: ContextVar[RequestContext] = ContextVar("flask.request_ctx")
request_ctx: RequestContext = LocalProxy( # type: ignore[assignment]
2022-11-07 18:06:49 +00:00
_cv_request, unbound_message=_no_req_msg
)
request: Request = LocalProxy( # type: ignore[assignment]
2022-11-07 18:06:49 +00:00
_cv_request, "request", unbound_message=_no_req_msg
)
session: SessionMixin = LocalProxy( # type: ignore[assignment]
2022-11-07 18:06:49 +00:00
_cv_request, "session", unbound_message=_no_req_msg
)