| 123456789101112131415161718192021 | from controllers.console.app.error import AppUnavailableErrorfrom extensions.ext_database import dbfrom flask_login import current_userfrom models.model import Appfrom werkzeug.exceptions import NotFounddef _get_app(app_id, mode=None):    app = db.session.query(App).filter(        App.id == app_id,        App.tenant_id == current_user.current_tenant_id,        App.status == 'normal'    ).first()    if not app:        raise NotFound("App not found")    if mode and app.mode != mode:        raise NotFound("The {} app not found".format(mode))    return app
 |