mirror of
https://github.com/langgenius/dify.git
synced 2026-01-14 06:07:33 +08:00
Signed-off-by: -LAN- <laipz8200@outlook.com> Signed-off-by: kenwoodjw <blackxin55+@gmail.com> Signed-off-by: Yongtao Huang <yongtaoh2022@gmail.com> Signed-off-by: yihong0618 <zouzou0208@gmail.com> Signed-off-by: zhanluxianshen <zhanluxianshen@163.com> Co-authored-by: -LAN- <laipz8200@outlook.com> Co-authored-by: GuanMu <ballmanjq@gmail.com> Co-authored-by: Davide Delbianco <davide.delbianco@outlook.com> Co-authored-by: NeatGuyCoding <15627489+NeatGuyCoding@users.noreply.github.com> Co-authored-by: kenwoodjw <blackxin55+@gmail.com> Co-authored-by: Yongtao Huang <yongtaoh2022@gmail.com> Co-authored-by: Yongtao Huang <99629139+hyongtao-db@users.noreply.github.com> Co-authored-by: Qiang Lee <18018968632@163.com> Co-authored-by: 李强04 <liqiang04@gaotu.cn> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Asuka Minato <i@asukaminato.eu.org> Co-authored-by: Matri Qi <matrixdom@126.com> Co-authored-by: huayaoyue6 <huayaoyue@163.com> Co-authored-by: Bowen Liang <liangbowen@gf.com.cn> Co-authored-by: znn <jubinkumarsoni@gmail.com> Co-authored-by: crazywoola <427733928@qq.com> Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: yihong <zouzou0208@gmail.com> Co-authored-by: Muke Wang <shaodwaaron@gmail.com> Co-authored-by: wangmuke <wangmuke@kingsware.cn> Co-authored-by: Wu Tianwei <30284043+WTW0313@users.noreply.github.com> Co-authored-by: quicksand <quicksandzn@gmail.com> Co-authored-by: 非法操作 <hjlarry@163.com> Co-authored-by: zxhlyh <jasonapring2015@outlook.com> Co-authored-by: Eric Guo <eric.guocz@gmail.com> Co-authored-by: Zhedong Cen <cenzhedong2@126.com> Co-authored-by: jiangbo721 <jiangbo721@163.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: hjlarry <25834719+hjlarry@users.noreply.github.com> Co-authored-by: lxsummer <35754229+lxjustdoit@users.noreply.github.com> Co-authored-by: 湛露先生 <zhanluxianshen@163.com> Co-authored-by: Guangdong Liu <liugddx@gmail.com> Co-authored-by: QuantumGhost <obelisk.reg+git@gmail.com> Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: Yessenia-d <yessenia.contact@gmail.com> Co-authored-by: huangzhuo1949 <167434202+huangzhuo1949@users.noreply.github.com> Co-authored-by: huangzhuo <huangzhuo1@xiaomi.com> Co-authored-by: 17hz <0x149527@gmail.com> Co-authored-by: Amy <1530140574@qq.com> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: Nite Knite <nkCoding@gmail.com> Co-authored-by: Yeuoly <45712896+Yeuoly@users.noreply.github.com> Co-authored-by: Petrus Han <petrus.hanks@gmail.com> Co-authored-by: iamjoel <2120155+iamjoel@users.noreply.github.com> Co-authored-by: Kalo Chin <frog.beepers.0n@icloud.com> Co-authored-by: Ujjwal Maurya <ujjwalsbx@gmail.com> Co-authored-by: Maries <xh001x@hotmail.com>
210 lines
6.5 KiB
Python
210 lines
6.5 KiB
Python
from flask_login import current_user
|
|
from flask_restx import Resource, reqparse
|
|
from werkzeug.exceptions import Forbidden
|
|
|
|
from controllers.console import api
|
|
from controllers.console.wraps import account_initialization_required, setup_required
|
|
from core.model_runtime.utils.encoders import jsonable_encoder
|
|
from core.plugin.impl.exc import PluginPermissionDeniedError
|
|
from libs.login import login_required
|
|
from services.plugin.endpoint_service import EndpointService
|
|
|
|
|
|
class EndpointCreateApi(Resource):
|
|
@setup_required
|
|
@login_required
|
|
@account_initialization_required
|
|
def post(self):
|
|
user = current_user
|
|
if not user.is_admin_or_owner:
|
|
raise Forbidden()
|
|
|
|
parser = reqparse.RequestParser()
|
|
parser.add_argument("plugin_unique_identifier", type=str, required=True)
|
|
parser.add_argument("settings", type=dict, required=True)
|
|
parser.add_argument("name", type=str, required=True)
|
|
args = parser.parse_args()
|
|
|
|
plugin_unique_identifier = args["plugin_unique_identifier"]
|
|
settings = args["settings"]
|
|
name = args["name"]
|
|
|
|
try:
|
|
return {
|
|
"success": EndpointService.create_endpoint(
|
|
tenant_id=user.current_tenant_id,
|
|
user_id=user.id,
|
|
plugin_unique_identifier=plugin_unique_identifier,
|
|
name=name,
|
|
settings=settings,
|
|
)
|
|
}
|
|
except PluginPermissionDeniedError as e:
|
|
raise ValueError(e.description) from e
|
|
|
|
|
|
class EndpointListApi(Resource):
|
|
@setup_required
|
|
@login_required
|
|
@account_initialization_required
|
|
def get(self):
|
|
user = current_user
|
|
|
|
parser = reqparse.RequestParser()
|
|
parser.add_argument("page", type=int, required=True, location="args")
|
|
parser.add_argument("page_size", type=int, required=True, location="args")
|
|
args = parser.parse_args()
|
|
|
|
page = args["page"]
|
|
page_size = args["page_size"]
|
|
|
|
return jsonable_encoder(
|
|
{
|
|
"endpoints": EndpointService.list_endpoints(
|
|
tenant_id=user.current_tenant_id,
|
|
user_id=user.id,
|
|
page=page,
|
|
page_size=page_size,
|
|
)
|
|
}
|
|
)
|
|
|
|
|
|
class EndpointListForSinglePluginApi(Resource):
|
|
@setup_required
|
|
@login_required
|
|
@account_initialization_required
|
|
def get(self):
|
|
user = current_user
|
|
|
|
parser = reqparse.RequestParser()
|
|
parser.add_argument("page", type=int, required=True, location="args")
|
|
parser.add_argument("page_size", type=int, required=True, location="args")
|
|
parser.add_argument("plugin_id", type=str, required=True, location="args")
|
|
args = parser.parse_args()
|
|
|
|
page = args["page"]
|
|
page_size = args["page_size"]
|
|
plugin_id = args["plugin_id"]
|
|
|
|
return jsonable_encoder(
|
|
{
|
|
"endpoints": EndpointService.list_endpoints_for_single_plugin(
|
|
tenant_id=user.current_tenant_id,
|
|
user_id=user.id,
|
|
plugin_id=plugin_id,
|
|
page=page,
|
|
page_size=page_size,
|
|
)
|
|
}
|
|
)
|
|
|
|
|
|
class EndpointDeleteApi(Resource):
|
|
@setup_required
|
|
@login_required
|
|
@account_initialization_required
|
|
def post(self):
|
|
user = current_user
|
|
|
|
parser = reqparse.RequestParser()
|
|
parser.add_argument("endpoint_id", type=str, required=True)
|
|
args = parser.parse_args()
|
|
|
|
if not user.is_admin_or_owner:
|
|
raise Forbidden()
|
|
|
|
endpoint_id = args["endpoint_id"]
|
|
|
|
return {
|
|
"success": EndpointService.delete_endpoint(
|
|
tenant_id=user.current_tenant_id, user_id=user.id, endpoint_id=endpoint_id
|
|
)
|
|
}
|
|
|
|
|
|
class EndpointUpdateApi(Resource):
|
|
@setup_required
|
|
@login_required
|
|
@account_initialization_required
|
|
def post(self):
|
|
user = current_user
|
|
|
|
parser = reqparse.RequestParser()
|
|
parser.add_argument("endpoint_id", type=str, required=True)
|
|
parser.add_argument("settings", type=dict, required=True)
|
|
parser.add_argument("name", type=str, required=True)
|
|
args = parser.parse_args()
|
|
|
|
endpoint_id = args["endpoint_id"]
|
|
settings = args["settings"]
|
|
name = args["name"]
|
|
|
|
if not user.is_admin_or_owner:
|
|
raise Forbidden()
|
|
|
|
return {
|
|
"success": EndpointService.update_endpoint(
|
|
tenant_id=user.current_tenant_id,
|
|
user_id=user.id,
|
|
endpoint_id=endpoint_id,
|
|
name=name,
|
|
settings=settings,
|
|
)
|
|
}
|
|
|
|
|
|
class EndpointEnableApi(Resource):
|
|
@setup_required
|
|
@login_required
|
|
@account_initialization_required
|
|
def post(self):
|
|
user = current_user
|
|
|
|
parser = reqparse.RequestParser()
|
|
parser.add_argument("endpoint_id", type=str, required=True)
|
|
args = parser.parse_args()
|
|
|
|
endpoint_id = args["endpoint_id"]
|
|
|
|
if not user.is_admin_or_owner:
|
|
raise Forbidden()
|
|
|
|
return {
|
|
"success": EndpointService.enable_endpoint(
|
|
tenant_id=user.current_tenant_id, user_id=user.id, endpoint_id=endpoint_id
|
|
)
|
|
}
|
|
|
|
|
|
class EndpointDisableApi(Resource):
|
|
@setup_required
|
|
@login_required
|
|
@account_initialization_required
|
|
def post(self):
|
|
user = current_user
|
|
|
|
parser = reqparse.RequestParser()
|
|
parser.add_argument("endpoint_id", type=str, required=True)
|
|
args = parser.parse_args()
|
|
|
|
endpoint_id = args["endpoint_id"]
|
|
|
|
if not user.is_admin_or_owner:
|
|
raise Forbidden()
|
|
|
|
return {
|
|
"success": EndpointService.disable_endpoint(
|
|
tenant_id=user.current_tenant_id, user_id=user.id, endpoint_id=endpoint_id
|
|
)
|
|
}
|
|
|
|
|
|
api.add_resource(EndpointCreateApi, "/workspaces/current/endpoints/create")
|
|
api.add_resource(EndpointListApi, "/workspaces/current/endpoints/list")
|
|
api.add_resource(EndpointListForSinglePluginApi, "/workspaces/current/endpoints/list/plugin")
|
|
api.add_resource(EndpointDeleteApi, "/workspaces/current/endpoints/delete")
|
|
api.add_resource(EndpointUpdateApi, "/workspaces/current/endpoints/update")
|
|
api.add_resource(EndpointEnableApi, "/workspaces/current/endpoints/enable")
|
|
api.add_resource(EndpointDisableApi, "/workspaces/current/endpoints/disable")
|