2024-04-12 16:22:24 +08:00
|
|
|
from datetime import datetime, timezone
|
2023-05-25 15:54:45 +08:00
|
|
|
|
2024-02-06 13:21:13 +08:00
|
|
|
from flask_login import current_user
|
|
|
|
from flask_restful import Resource, inputs, marshal_with, reqparse
|
|
|
|
from sqlalchemy import and_
|
|
|
|
from werkzeug.exceptions import BadRequest, Forbidden, NotFound
|
|
|
|
|
2023-05-25 15:54:45 +08:00
|
|
|
from controllers.console import api
|
|
|
|
from controllers.console.explore.wraps import InstalledAppResource
|
2024-01-12 12:34:01 +08:00
|
|
|
from controllers.console.wraps import account_initialization_required, cloud_edition_billing_resource_check
|
2023-05-25 15:54:45 +08:00
|
|
|
from extensions.ext_database import db
|
2023-09-27 16:06:32 +08:00
|
|
|
from fields.installed_app_fields import installed_app_list_fields
|
2024-01-12 12:34:01 +08:00
|
|
|
from libs.login import login_required
|
2024-10-21 10:43:49 +08:00
|
|
|
from models import App, InstalledApp, RecommendedApp
|
2023-05-25 15:54:45 +08:00
|
|
|
from services.account_service import TenantService
|
|
|
|
|
|
|
|
|
|
|
|
class InstalledAppsListApi(Resource):
|
|
|
|
@login_required
|
|
|
|
@account_initialization_required
|
|
|
|
@marshal_with(installed_app_list_fields)
|
|
|
|
def get(self):
|
|
|
|
current_tenant_id = current_user.current_tenant_id
|
2024-08-26 15:29:10 +08:00
|
|
|
installed_apps = db.session.query(InstalledApp).filter(InstalledApp.tenant_id == current_tenant_id).all()
|
2023-05-25 15:54:45 +08:00
|
|
|
|
|
|
|
current_user.role = TenantService.get_user_role(current_user, current_user.current_tenant)
|
|
|
|
installed_apps = [
|
|
|
|
{
|
2024-08-26 15:29:10 +08:00
|
|
|
"id": installed_app.id,
|
|
|
|
"app": installed_app.app,
|
|
|
|
"app_owner_tenant_id": installed_app.app_owner_tenant_id,
|
|
|
|
"is_pinned": installed_app.is_pinned,
|
|
|
|
"last_used_at": installed_app.last_used_at,
|
2024-09-13 22:42:08 +08:00
|
|
|
"editable": current_user.role in {"owner", "admin"},
|
2024-08-26 15:29:10 +08:00
|
|
|
"uninstallable": current_tenant_id == installed_app.app_owner_tenant_id,
|
2023-05-25 15:54:45 +08:00
|
|
|
}
|
|
|
|
for installed_app in installed_apps
|
2024-08-29 19:03:08 +08:00
|
|
|
if installed_app.app is not None
|
2023-05-25 15:54:45 +08:00
|
|
|
]
|
2024-08-26 15:29:10 +08:00
|
|
|
installed_apps.sort(
|
|
|
|
key=lambda app: (
|
|
|
|
-app["is_pinned"],
|
|
|
|
app["last_used_at"] is None,
|
|
|
|
-app["last_used_at"].timestamp() if app["last_used_at"] is not None else 0,
|
|
|
|
)
|
|
|
|
)
|
2023-05-25 15:54:45 +08:00
|
|
|
|
2024-08-26 15:29:10 +08:00
|
|
|
return {"installed_apps": installed_apps}
|
2023-05-25 15:54:45 +08:00
|
|
|
|
|
|
|
@login_required
|
|
|
|
@account_initialization_required
|
2024-08-26 15:29:10 +08:00
|
|
|
@cloud_edition_billing_resource_check("apps")
|
2023-05-25 15:54:45 +08:00
|
|
|
def post(self):
|
|
|
|
parser = reqparse.RequestParser()
|
2024-08-26 15:29:10 +08:00
|
|
|
parser.add_argument("app_id", type=str, required=True, help="Invalid app_id")
|
2023-05-25 15:54:45 +08:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
2024-08-26 15:29:10 +08:00
|
|
|
recommended_app = RecommendedApp.query.filter(RecommendedApp.app_id == args["app_id"]).first()
|
2023-05-25 15:54:45 +08:00
|
|
|
if recommended_app is None:
|
2024-08-26 15:29:10 +08:00
|
|
|
raise NotFound("App not found")
|
2023-05-25 15:54:45 +08:00
|
|
|
|
|
|
|
current_tenant_id = current_user.current_tenant_id
|
2024-08-26 15:29:10 +08:00
|
|
|
app = db.session.query(App).filter(App.id == args["app_id"]).first()
|
2023-05-25 15:54:45 +08:00
|
|
|
|
|
|
|
if app is None:
|
2024-08-26 15:29:10 +08:00
|
|
|
raise NotFound("App not found")
|
2023-05-25 15:54:45 +08:00
|
|
|
|
|
|
|
if not app.is_public:
|
2024-08-26 15:29:10 +08:00
|
|
|
raise Forbidden("You can't install a non-public app")
|
2023-05-25 15:54:45 +08:00
|
|
|
|
2024-08-26 15:29:10 +08:00
|
|
|
installed_app = InstalledApp.query.filter(
|
|
|
|
and_(InstalledApp.app_id == args["app_id"], InstalledApp.tenant_id == current_tenant_id)
|
|
|
|
).first()
|
2023-05-25 15:54:45 +08:00
|
|
|
|
|
|
|
if installed_app is None:
|
|
|
|
# todo: position
|
|
|
|
recommended_app.install_count += 1
|
|
|
|
|
|
|
|
new_installed_app = InstalledApp(
|
2024-08-26 15:29:10 +08:00
|
|
|
app_id=args["app_id"],
|
2023-05-25 15:54:45 +08:00
|
|
|
tenant_id=current_tenant_id,
|
|
|
|
app_owner_tenant_id=app.tenant_id,
|
|
|
|
is_pinned=False,
|
2024-08-26 15:29:10 +08:00
|
|
|
last_used_at=datetime.now(timezone.utc).replace(tzinfo=None),
|
2023-05-25 15:54:45 +08:00
|
|
|
)
|
|
|
|
db.session.add(new_installed_app)
|
|
|
|
db.session.commit()
|
|
|
|
|
2024-08-26 15:29:10 +08:00
|
|
|
return {"message": "App installed successfully"}
|
2023-05-25 15:54:45 +08:00
|
|
|
|
|
|
|
|
|
|
|
class InstalledAppApi(InstalledAppResource):
|
|
|
|
"""
|
|
|
|
update and delete an installed app
|
|
|
|
use InstalledAppResource to apply default decorators and get installed_app
|
|
|
|
"""
|
2024-08-26 15:29:10 +08:00
|
|
|
|
2023-05-25 15:54:45 +08:00
|
|
|
def delete(self, installed_app):
|
|
|
|
if installed_app.app_owner_tenant_id == current_user.current_tenant_id:
|
2024-08-26 15:29:10 +08:00
|
|
|
raise BadRequest("You can't uninstall an app owned by the current tenant")
|
2023-05-25 15:54:45 +08:00
|
|
|
|
|
|
|
db.session.delete(installed_app)
|
|
|
|
db.session.commit()
|
|
|
|
|
2024-08-26 15:29:10 +08:00
|
|
|
return {"result": "success", "message": "App uninstalled successfully"}
|
2023-05-25 15:54:45 +08:00
|
|
|
|
|
|
|
def patch(self, installed_app):
|
|
|
|
parser = reqparse.RequestParser()
|
2024-08-26 15:29:10 +08:00
|
|
|
parser.add_argument("is_pinned", type=inputs.boolean)
|
2023-05-25 15:54:45 +08:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
commit_args = False
|
2024-08-26 15:29:10 +08:00
|
|
|
if "is_pinned" in args:
|
|
|
|
installed_app.is_pinned = args["is_pinned"]
|
2023-05-25 15:54:45 +08:00
|
|
|
commit_args = True
|
|
|
|
|
|
|
|
if commit_args:
|
|
|
|
db.session.commit()
|
|
|
|
|
2024-08-26 15:29:10 +08:00
|
|
|
return {"result": "success", "message": "App info updated successfully"}
|
2023-05-25 15:54:45 +08:00
|
|
|
|
|
|
|
|
2024-08-26 15:29:10 +08:00
|
|
|
api.add_resource(InstalledAppsListApi, "/installed-apps")
|
|
|
|
api.add_resource(InstalledAppApi, "/installed-apps/<uuid:installed_app_id>")
|