mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08:00
13be84e4d4
Some checks are pending
Build and Push API & Web / build (api, DIFY_API_IMAGE_NAME, linux/amd64, build-api-amd64) (push) Waiting to run
Build and Push API & Web / build (api, DIFY_API_IMAGE_NAME, linux/arm64, build-api-arm64) (push) Waiting to run
Build and Push API & Web / build (web, DIFY_WEB_IMAGE_NAME, linux/amd64, build-web-amd64) (push) Waiting to run
Build and Push API & Web / build (web, DIFY_WEB_IMAGE_NAME, linux/arm64, build-web-arm64) (push) Waiting to run
Build and Push API & Web / create-manifest (api, DIFY_API_IMAGE_NAME, merge-api-images) (push) Blocked by required conditions
Build and Push API & Web / create-manifest (web, DIFY_WEB_IMAGE_NAME, merge-web-images) (push) Blocked by required conditions
78 lines
2.2 KiB
Python
78 lines
2.2 KiB
Python
from functools import wraps
|
|
|
|
from flask import request
|
|
from flask_restful import Resource, reqparse
|
|
|
|
from configs import dify_config
|
|
from libs.helper import email, get_remote_ip, str_len
|
|
from libs.password import valid_password
|
|
from models.model import DifySetup
|
|
from services.account_service import RegisterService, TenantService
|
|
|
|
from . import api
|
|
from .error import AlreadySetupError, NotInitValidateError, NotSetupError
|
|
from .init_validate import get_init_validate_status
|
|
from .wraps import only_edition_self_hosted
|
|
|
|
|
|
class SetupApi(Resource):
|
|
def get(self):
|
|
if dify_config.EDITION == "SELF_HOSTED":
|
|
setup_status = get_setup_status()
|
|
if setup_status:
|
|
return {"step": "finished", "setup_at": setup_status.setup_at.isoformat()}
|
|
return {"step": "not_started"}
|
|
return {"step": "finished"}
|
|
|
|
@only_edition_self_hosted
|
|
def post(self):
|
|
# is set up
|
|
if get_setup_status():
|
|
raise AlreadySetupError()
|
|
|
|
# is tenant created
|
|
tenant_count = TenantService.get_tenant_count()
|
|
if tenant_count > 0:
|
|
raise AlreadySetupError()
|
|
|
|
if not get_init_validate_status():
|
|
raise NotInitValidateError()
|
|
|
|
parser = reqparse.RequestParser()
|
|
parser.add_argument("email", type=email, required=True, location="json")
|
|
parser.add_argument("name", type=str_len(30), required=True, location="json")
|
|
parser.add_argument("password", type=valid_password, required=True, location="json")
|
|
args = parser.parse_args()
|
|
|
|
# setup
|
|
RegisterService.setup(
|
|
email=args["email"], name=args["name"], password=args["password"], ip_address=get_remote_ip(request)
|
|
)
|
|
|
|
return {"result": "success"}, 201
|
|
|
|
|
|
def setup_required(view):
|
|
@wraps(view)
|
|
def decorated(*args, **kwargs):
|
|
# check setup
|
|
if not get_init_validate_status():
|
|
raise NotInitValidateError()
|
|
|
|
elif not get_setup_status():
|
|
raise NotSetupError()
|
|
|
|
return view(*args, **kwargs)
|
|
|
|
return decorated
|
|
|
|
|
|
def get_setup_status():
|
|
if dify_config.EDITION == "SELF_HOSTED":
|
|
return DifySetup.query.first()
|
|
else:
|
|
return True
|
|
|
|
|
|
api.add_resource(SetupApi, "/setup")
|