mirror of
https://github.com/langgenius/dify.git
synced 2026-02-22 19:15:47 +08:00
Signed-off-by: majiayu000 <1835304752@qq.com> Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: NeatGuyCoding <15627489+NeatGuyCoding@users.noreply.github.com> Signed-off-by: -LAN- <laipz8200@outlook.com> Signed-off-by: yihong0618 <zouzou0208@gmail.com> Co-authored-by: QuantumGhost <obelisk.reg+git@gmail.com> Co-authored-by: 盐粒 Yanli <yanli@dify.ai> Co-authored-by: wangxiaolei <fatelei@gmail.com> Co-authored-by: Stephen Zhou <38493346+hyoban@users.noreply.github.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: Cursx <33718736+Cursx@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: lif <1835304752@qq.com> Co-authored-by: 非法操作 <hjlarry@163.com> Co-authored-by: Asuka Minato <i@asukaminato.eu.org> Co-authored-by: fenglin <790872612@qq.com> Co-authored-by: qiaofenglin <qiaofenglin@baidu.com> Co-authored-by: -LAN- <laipz8200@outlook.com> Co-authored-by: TomoOkuyama <49631611+TomoOkuyama@users.noreply.github.com> Co-authored-by: Tomo Okuyama <tomo.okuyama@intersystems.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: zyssyz123 <916125788@qq.com> Co-authored-by: hj24 <mambahj24@gmail.com> Co-authored-by: Coding On Star <447357187@qq.com> Co-authored-by: CodingOnStar <hanxujiang@dify.ai> Co-authored-by: yyh <92089059+lyzno1@users.noreply.github.com> Co-authored-by: Xiangxuan Qu <fghpdf@outlook.com> Co-authored-by: fghpdf <fghpdf@users.noreply.github.com> Co-authored-by: coopercoder <whitetiger0127@163.com> Co-authored-by: zhaiguangpeng <zhaiguangpeng@didiglobal.com> Co-authored-by: Junyan Qin (Chin) <rockchinq@gmail.com> Co-authored-by: E.G <146701565+GlobalStar117@users.noreply.github.com> Co-authored-by: GlobalStar117 <GlobalStar117@users.noreply.github.com> Co-authored-by: Claude Haiku 4.5 <noreply@anthropic.com> Co-authored-by: CodingOnStar <hanxujiang@dify.com> Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com> Co-authored-by: heyszt <270985384@qq.com> Co-authored-by: NeatGuyCoding <15627489+NeatGuyCoding@users.noreply.github.com> Co-authored-by: Yeuoly <45712896+Yeuoly@users.noreply.github.com> Co-authored-by: zxhlyh <jasonapring2015@outlook.com> Co-authored-by: moonpanda <chuanzegao@163.com> Co-authored-by: warlocgao <warlocgao@tencent.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com> Co-authored-by: KVOJJJin <jzongcode@gmail.com> Co-authored-by: eux <euxx@users.noreply.github.com> Co-authored-by: bangjiehan <bangjiehan@gmail.com> Co-authored-by: FFXN <31929997+FFXN@users.noreply.github.com> Co-authored-by: Jyong <76649700+JohnJyong@users.noreply.github.com> Co-authored-by: Nie Ronghua <nieronghua@sf-express.com> Co-authored-by: JQSevenMiao <141806521+JQSevenMiao@users.noreply.github.com> Co-authored-by: jiasiqi <jiasiqi3@tal.com> Co-authored-by: Seokrin Taron Sung <sungsjade@gmail.com> Co-authored-by: CrabSAMA <40541269+CrabSAMA@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: yihong <zouzou0208@gmail.com> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: Wu Tianwei <30284043+WTW0313@users.noreply.github.com> Co-authored-by: yessenia <yessenia.contact@gmail.com> Co-authored-by: Jax <anobaka@qq.com> Co-authored-by: niveshdandyan <155956228+niveshdandyan@users.noreply.github.com> Co-authored-by: OSS Contributor <oss-contributor@example.com> Co-authored-by: niveshdandyan <niveshdandyan@users.noreply.github.com> Co-authored-by: Sean Kenneth Doherty <Smaster7772@gmail.com>
280 lines
10 KiB
Python
280 lines
10 KiB
Python
from collections.abc import Callable
|
|
from functools import wraps
|
|
from typing import ParamSpec, TypeVar
|
|
|
|
from flask import request
|
|
from flask_restx import Resource
|
|
from pydantic import BaseModel, Field, field_validator
|
|
from sqlalchemy import select
|
|
from werkzeug.exceptions import NotFound, Unauthorized
|
|
|
|
from configs import dify_config
|
|
from constants.languages import supported_language
|
|
from controllers.console import console_ns
|
|
from controllers.console.wraps import only_edition_cloud
|
|
from core.db.session_factory import session_factory
|
|
from extensions.ext_database import db
|
|
from libs.token import extract_access_token
|
|
from models.model import App, ExporleBanner, InstalledApp, RecommendedApp, TrialApp
|
|
|
|
P = ParamSpec("P")
|
|
R = TypeVar("R")
|
|
|
|
DEFAULT_REF_TEMPLATE_SWAGGER_2_0 = "#/definitions/{model}"
|
|
|
|
|
|
class InsertExploreAppPayload(BaseModel):
|
|
app_id: str = Field(...)
|
|
desc: str | None = None
|
|
copyright: str | None = None
|
|
privacy_policy: str | None = None
|
|
custom_disclaimer: str | None = None
|
|
language: str = Field(...)
|
|
category: str = Field(...)
|
|
position: int = Field(...)
|
|
can_trial: bool = Field(default=False)
|
|
trial_limit: int = Field(default=0)
|
|
|
|
@field_validator("language")
|
|
@classmethod
|
|
def validate_language(cls, value: str) -> str:
|
|
return supported_language(value)
|
|
|
|
|
|
class InsertExploreBannerPayload(BaseModel):
|
|
category: str = Field(...)
|
|
title: str = Field(...)
|
|
description: str = Field(...)
|
|
img_src: str = Field(..., alias="img-src")
|
|
language: str = Field(default="en-US")
|
|
link: str = Field(...)
|
|
sort: int = Field(...)
|
|
|
|
@field_validator("language")
|
|
@classmethod
|
|
def validate_language(cls, value: str) -> str:
|
|
return supported_language(value)
|
|
|
|
model_config = {"populate_by_name": True}
|
|
|
|
|
|
console_ns.schema_model(
|
|
InsertExploreAppPayload.__name__,
|
|
InsertExploreAppPayload.model_json_schema(ref_template=DEFAULT_REF_TEMPLATE_SWAGGER_2_0),
|
|
)
|
|
|
|
console_ns.schema_model(
|
|
InsertExploreBannerPayload.__name__,
|
|
InsertExploreBannerPayload.model_json_schema(ref_template=DEFAULT_REF_TEMPLATE_SWAGGER_2_0),
|
|
)
|
|
|
|
|
|
def admin_required(view: Callable[P, R]):
|
|
@wraps(view)
|
|
def decorated(*args: P.args, **kwargs: P.kwargs):
|
|
if not dify_config.ADMIN_API_KEY:
|
|
raise Unauthorized("API key is invalid.")
|
|
|
|
auth_token = extract_access_token(request)
|
|
if not auth_token:
|
|
raise Unauthorized("Authorization header is missing.")
|
|
if auth_token != dify_config.ADMIN_API_KEY:
|
|
raise Unauthorized("API key is invalid.")
|
|
|
|
return view(*args, **kwargs)
|
|
|
|
return decorated
|
|
|
|
|
|
@console_ns.route("/admin/insert-explore-apps")
|
|
class InsertExploreAppListApi(Resource):
|
|
@console_ns.doc("insert_explore_app")
|
|
@console_ns.doc(description="Insert or update an app in the explore list")
|
|
@console_ns.expect(console_ns.models[InsertExploreAppPayload.__name__])
|
|
@console_ns.response(200, "App updated successfully")
|
|
@console_ns.response(201, "App inserted successfully")
|
|
@console_ns.response(404, "App not found")
|
|
@only_edition_cloud
|
|
@admin_required
|
|
def post(self):
|
|
payload = InsertExploreAppPayload.model_validate(console_ns.payload)
|
|
|
|
app = db.session.execute(select(App).where(App.id == payload.app_id)).scalar_one_or_none()
|
|
if not app:
|
|
raise NotFound(f"App '{payload.app_id}' is not found")
|
|
|
|
site = app.site
|
|
if not site:
|
|
desc = payload.desc or ""
|
|
copy_right = payload.copyright or ""
|
|
privacy_policy = payload.privacy_policy or ""
|
|
custom_disclaimer = payload.custom_disclaimer or ""
|
|
else:
|
|
desc = site.description or payload.desc or ""
|
|
copy_right = site.copyright or payload.copyright or ""
|
|
privacy_policy = site.privacy_policy or payload.privacy_policy or ""
|
|
custom_disclaimer = site.custom_disclaimer or payload.custom_disclaimer or ""
|
|
|
|
with session_factory.create_session() as session:
|
|
recommended_app = session.execute(
|
|
select(RecommendedApp).where(RecommendedApp.app_id == payload.app_id)
|
|
).scalar_one_or_none()
|
|
|
|
if not recommended_app:
|
|
recommended_app = RecommendedApp(
|
|
app_id=app.id,
|
|
description=desc,
|
|
copyright=copy_right,
|
|
privacy_policy=privacy_policy,
|
|
custom_disclaimer=custom_disclaimer,
|
|
language=payload.language,
|
|
category=payload.category,
|
|
position=payload.position,
|
|
)
|
|
|
|
db.session.add(recommended_app)
|
|
if payload.can_trial:
|
|
trial_app = db.session.execute(
|
|
select(TrialApp).where(TrialApp.app_id == payload.app_id)
|
|
).scalar_one_or_none()
|
|
if not trial_app:
|
|
db.session.add(
|
|
TrialApp(
|
|
app_id=payload.app_id,
|
|
tenant_id=app.tenant_id,
|
|
trial_limit=payload.trial_limit,
|
|
)
|
|
)
|
|
else:
|
|
trial_app.trial_limit = payload.trial_limit
|
|
|
|
app.is_public = True
|
|
db.session.commit()
|
|
|
|
return {"result": "success"}, 201
|
|
else:
|
|
recommended_app.description = desc
|
|
recommended_app.copyright = copy_right
|
|
recommended_app.privacy_policy = privacy_policy
|
|
recommended_app.custom_disclaimer = custom_disclaimer
|
|
recommended_app.language = payload.language
|
|
recommended_app.category = payload.category
|
|
recommended_app.position = payload.position
|
|
|
|
if payload.can_trial:
|
|
trial_app = db.session.execute(
|
|
select(TrialApp).where(TrialApp.app_id == payload.app_id)
|
|
).scalar_one_or_none()
|
|
if not trial_app:
|
|
db.session.add(
|
|
TrialApp(
|
|
app_id=payload.app_id,
|
|
tenant_id=app.tenant_id,
|
|
trial_limit=payload.trial_limit,
|
|
)
|
|
)
|
|
else:
|
|
trial_app.trial_limit = payload.trial_limit
|
|
app.is_public = True
|
|
|
|
db.session.commit()
|
|
|
|
return {"result": "success"}, 200
|
|
|
|
|
|
@console_ns.route("/admin/insert-explore-apps/<uuid:app_id>")
|
|
class InsertExploreAppApi(Resource):
|
|
@console_ns.doc("delete_explore_app")
|
|
@console_ns.doc(description="Remove an app from the explore list")
|
|
@console_ns.doc(params={"app_id": "Application ID to remove"})
|
|
@console_ns.response(204, "App removed successfully")
|
|
@only_edition_cloud
|
|
@admin_required
|
|
def delete(self, app_id):
|
|
with session_factory.create_session() as session:
|
|
recommended_app = session.execute(
|
|
select(RecommendedApp).where(RecommendedApp.app_id == str(app_id))
|
|
).scalar_one_or_none()
|
|
|
|
if not recommended_app:
|
|
return {"result": "success"}, 204
|
|
|
|
with session_factory.create_session() as session:
|
|
app = session.execute(select(App).where(App.id == recommended_app.app_id)).scalar_one_or_none()
|
|
|
|
if app:
|
|
app.is_public = False
|
|
|
|
with session_factory.create_session() as session:
|
|
installed_apps = (
|
|
session.execute(
|
|
select(InstalledApp).where(
|
|
InstalledApp.app_id == recommended_app.app_id,
|
|
InstalledApp.tenant_id != InstalledApp.app_owner_tenant_id,
|
|
)
|
|
)
|
|
.scalars()
|
|
.all()
|
|
)
|
|
|
|
for installed_app in installed_apps:
|
|
session.delete(installed_app)
|
|
|
|
trial_app = session.execute(
|
|
select(TrialApp).where(TrialApp.app_id == recommended_app.app_id)
|
|
).scalar_one_or_none()
|
|
if trial_app:
|
|
session.delete(trial_app)
|
|
|
|
db.session.delete(recommended_app)
|
|
db.session.commit()
|
|
|
|
return {"result": "success"}, 204
|
|
|
|
|
|
@console_ns.route("/admin/insert-explore-banner")
|
|
class InsertExploreBannerApi(Resource):
|
|
@console_ns.doc("insert_explore_banner")
|
|
@console_ns.doc(description="Insert an explore banner")
|
|
@console_ns.expect(console_ns.models[InsertExploreBannerPayload.__name__])
|
|
@console_ns.response(201, "Banner inserted successfully")
|
|
@only_edition_cloud
|
|
@admin_required
|
|
def post(self):
|
|
payload = InsertExploreBannerPayload.model_validate(console_ns.payload)
|
|
|
|
banner = ExporleBanner(
|
|
content={
|
|
"category": payload.category,
|
|
"title": payload.title,
|
|
"description": payload.description,
|
|
"img-src": payload.img_src,
|
|
},
|
|
link=payload.link,
|
|
sort=payload.sort,
|
|
language=payload.language,
|
|
)
|
|
db.session.add(banner)
|
|
db.session.commit()
|
|
|
|
return {"result": "success"}, 201
|
|
|
|
|
|
@console_ns.route("/admin/delete-explore-banner/<uuid:banner_id>")
|
|
class DeleteExploreBannerApi(Resource):
|
|
@console_ns.doc("delete_explore_banner")
|
|
@console_ns.doc(description="Delete an explore banner")
|
|
@console_ns.doc(params={"banner_id": "Banner ID to delete"})
|
|
@console_ns.response(204, "Banner deleted successfully")
|
|
@only_edition_cloud
|
|
@admin_required
|
|
def delete(self, banner_id):
|
|
banner = db.session.execute(select(ExporleBanner).where(ExporleBanner.id == banner_id)).scalar_one_or_none()
|
|
if not banner:
|
|
raise NotFound(f"Banner '{banner_id}' is not found")
|
|
|
|
db.session.delete(banner)
|
|
db.session.commit()
|
|
|
|
return {"result": "success"}, 204
|