mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-04-22 13:49:45 +08:00
66 lines
2.3 KiB
Python
66 lines
2.3 KiB
Python
import json
|
|
|
|
from flask_restful import Resource, reqparse # type: ignore
|
|
|
|
from controllers.console.wraps import setup_required
|
|
from controllers.inner_api import api
|
|
from controllers.inner_api.wraps import enterprise_inner_api_only
|
|
from events.tenant_event import tenant_was_created
|
|
from extensions.ext_database import db
|
|
from models.account import Account
|
|
from services.account_service import TenantService
|
|
|
|
|
|
class EnterpriseWorkspace(Resource):
|
|
@setup_required
|
|
@enterprise_inner_api_only
|
|
def post(self):
|
|
parser = reqparse.RequestParser()
|
|
parser.add_argument("name", type=str, required=True, location="json")
|
|
parser.add_argument("owner_email", type=str, required=True, location="json")
|
|
args = parser.parse_args()
|
|
|
|
account = db.session.query(Account).filter_by(email=args["owner_email"]).first()
|
|
if account is None:
|
|
return {"message": "owner account not found."}, 404
|
|
|
|
tenant = TenantService.create_tenant(args["name"], is_from_dashboard=True)
|
|
TenantService.create_tenant_member(tenant, account, role="owner")
|
|
|
|
tenant_was_created.send(tenant)
|
|
|
|
return {"message": "enterprise workspace created."}
|
|
|
|
|
|
class EnterpriseWorkspaceNoOwnerEmail(Resource):
|
|
@setup_required
|
|
@enterprise_inner_api_only
|
|
def post(self):
|
|
parser = reqparse.RequestParser()
|
|
parser.add_argument("name", type=str, required=True, location="json")
|
|
args = parser.parse_args()
|
|
|
|
tenant = TenantService.create_tenant(args["name"], is_from_dashboard=True)
|
|
|
|
tenant_was_created.send(tenant)
|
|
|
|
resp = {
|
|
"id": tenant.id,
|
|
"name": tenant.name,
|
|
"encrypt_public_key": tenant.encrypt_public_key,
|
|
"plan": tenant.plan,
|
|
"status": tenant.status,
|
|
"custom_config": json.loads(tenant.custom_config) if tenant.custom_config else {},
|
|
"created_at": tenant.created_at.isoformat() + "Z" if tenant.created_at else None,
|
|
"updated_at": tenant.updated_at.isoformat() + "Z" if tenant.updated_at else None,
|
|
}
|
|
|
|
return {
|
|
"message": "enterprise workspace created.",
|
|
"tenant": resp,
|
|
}
|
|
|
|
|
|
api.add_resource(EnterpriseWorkspace, "/enterprise/workspace")
|
|
api.add_resource(EnterpriseWorkspaceNoOwnerEmail, "/enterprise/workspace/ownerless")
|