+40









lyzno1
GitHub
-LAN-
GuanMu
Davide Delbianco
NeatGuyCoding
kenwoodjw
Yongtao Huang
Yongtao Huang
Qiang Lee
李强04
autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Asuka Minato
Matri Qi
huayaoyue6
Bowen Liang
znn
crazywoola
crazywoola
Copilot
yihong
Muke Wang
wangmuke
Wu Tianwei
quicksand
非法操作
zxhlyh
Eric Guo
Zhedong Cen
jiangbo721
github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
hjlarry
lxsummer
湛露先生
Guangdong Liu
QuantumGhost
Claude
Yessenia-d
huangzhuo1949
huangzhuo
17hz
Amy
Joel
Nite Knite
Yeuoly
Petrus Han
iamjoel
Kalo Chin
Ujjwal Maurya
Maries
5bbf685035
Signed-off-by: -LAN- <[email protected]> Signed-off-by: kenwoodjw <[email protected]> Signed-off-by: Yongtao Huang <[email protected]> Signed-off-by: yihong0618 <[email protected]> Signed-off-by: zhanluxianshen <[email protected]> Co-authored-by: -LAN- <[email protected]> Co-authored-by: GuanMu <[email protected]> Co-authored-by: Davide Delbianco <[email protected]> Co-authored-by: NeatGuyCoding <[email protected]> Co-authored-by: kenwoodjw <[email protected]> Co-authored-by: Yongtao Huang <[email protected]> Co-authored-by: Yongtao Huang <[email protected]> Co-authored-by: Qiang Lee <[email protected]> Co-authored-by: 李强04 <[email protected]> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Asuka Minato <[email protected]> Co-authored-by: Matri Qi <[email protected]> Co-authored-by: huayaoyue6 <[email protected]> Co-authored-by: Bowen Liang <[email protected]> Co-authored-by: znn <[email protected]> Co-authored-by: crazywoola <[email protected]> Co-authored-by: crazywoola <[email protected]> Co-authored-by: Copilot <[email protected]> Co-authored-by: yihong <[email protected]> Co-authored-by: Muke Wang <[email protected]> Co-authored-by: wangmuke <[email protected]> Co-authored-by: Wu Tianwei <[email protected]> Co-authored-by: quicksand <[email protected]> Co-authored-by: 非法操作 <[email protected]> Co-authored-by: zxhlyh <[email protected]> Co-authored-by: Eric Guo <[email protected]> Co-authored-by: Zhedong Cen <[email protected]> Co-authored-by: jiangbo721 <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: hjlarry <[email protected]> Co-authored-by: lxsummer <[email protected]> Co-authored-by: 湛露先生 <[email protected]> Co-authored-by: Guangdong Liu <[email protected]> Co-authored-by: QuantumGhost <[email protected]> Co-authored-by: Claude <[email protected]> Co-authored-by: Yessenia-d <[email protected]> Co-authored-by: huangzhuo1949 <[email protected]> Co-authored-by: huangzhuo <[email protected]> Co-authored-by: 17hz <[email protected]> Co-authored-by: Amy <[email protected]> Co-authored-by: Joel <[email protected]> Co-authored-by: Nite Knite <[email protected]> Co-authored-by: Yeuoly <[email protected]> Co-authored-by: Petrus Han <[email protected]> Co-authored-by: iamjoel <[email protected]> Co-authored-by: Kalo Chin <[email protected]> Co-authored-by: Ujjwal Maurya <[email protected]> Co-authored-by: Maries <[email protected]>
61 lines
1.7 KiB
Python
61 lines
1.7 KiB
Python
from collections.abc import Callable
|
|
from functools import wraps
|
|
from typing import Optional, Union
|
|
|
|
from controllers.console.app.error import AppNotFoundError
|
|
from extensions.ext_database import db
|
|
from libs.login import current_user
|
|
from models import App, AppMode
|
|
from models.account import Account
|
|
|
|
|
|
def _load_app_model(app_id: str) -> Optional[App]:
|
|
assert isinstance(current_user, Account)
|
|
app_model = (
|
|
db.session.query(App)
|
|
.where(App.id == app_id, App.tenant_id == current_user.current_tenant_id, App.status == "normal")
|
|
.first()
|
|
)
|
|
return app_model
|
|
|
|
|
|
def get_app_model(view: Optional[Callable] = None, *, mode: Union[AppMode, list[AppMode], None] = None):
|
|
def decorator(view_func):
|
|
@wraps(view_func)
|
|
def decorated_view(*args, **kwargs):
|
|
if not kwargs.get("app_id"):
|
|
raise ValueError("missing app_id in path parameters")
|
|
|
|
app_id = kwargs.get("app_id")
|
|
app_id = str(app_id)
|
|
|
|
del kwargs["app_id"]
|
|
|
|
app_model = _load_app_model(app_id)
|
|
|
|
if not app_model:
|
|
raise AppNotFoundError()
|
|
|
|
app_mode = AppMode.value_of(app_model.mode)
|
|
|
|
if mode is not None:
|
|
if isinstance(mode, list):
|
|
modes = mode
|
|
else:
|
|
modes = [mode]
|
|
|
|
if app_mode not in modes:
|
|
mode_values = {m.value for m in modes}
|
|
raise AppNotFoundError(f"App mode is not in the supported list: {mode_values}")
|
|
|
|
kwargs["app_model"] = app_model
|
|
|
|
return view_func(*args, **kwargs)
|
|
|
|
return decorated_view
|
|
|
|
if view is None:
|
|
return decorator
|
|
else:
|
|
return decorator(view)
|