mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
7b37e05dec
Co-authored-by: StyleZhang <jasonapring2015@outlook.com>
77 lines
2.4 KiB
Python
77 lines
2.4 KiB
Python
# -*- coding:utf-8 -*-
|
|
from functools import wraps
|
|
|
|
from flask import current_app, abort
|
|
from flask_login import current_user
|
|
|
|
from controllers.console.workspace.error import AccountNotInitializedError
|
|
from services.feature_service import FeatureService
|
|
|
|
|
|
def account_initialization_required(view):
|
|
@wraps(view)
|
|
def decorated(*args, **kwargs):
|
|
# check account initialization
|
|
account = current_user
|
|
|
|
if account.status == 'uninitialized':
|
|
raise AccountNotInitializedError()
|
|
|
|
return view(*args, **kwargs)
|
|
|
|
return decorated
|
|
|
|
|
|
def only_edition_cloud(view):
|
|
@wraps(view)
|
|
def decorated(*args, **kwargs):
|
|
if current_app.config['EDITION'] != 'CLOUD':
|
|
abort(404)
|
|
|
|
return view(*args, **kwargs)
|
|
|
|
return decorated
|
|
|
|
|
|
def only_edition_self_hosted(view):
|
|
@wraps(view)
|
|
def decorated(*args, **kwargs):
|
|
if current_app.config['EDITION'] != 'SELF_HOSTED':
|
|
abort(404)
|
|
|
|
return view(*args, **kwargs)
|
|
|
|
return decorated
|
|
|
|
|
|
def cloud_edition_billing_resource_check(resource: str,
|
|
error_msg: str = "You have reached the limit of your subscription."):
|
|
def interceptor(view):
|
|
@wraps(view)
|
|
def decorated(*args, **kwargs):
|
|
features = FeatureService.get_features(current_user.current_tenant_id)
|
|
|
|
if features.billing.enabled:
|
|
members = features.members
|
|
apps = features.apps
|
|
vector_space = features.vector_space
|
|
annotation_quota_limit = features.annotation_quota_limit
|
|
|
|
if resource == 'members' and 0 < members.limit <= members.size:
|
|
abort(403, error_msg)
|
|
elif resource == 'apps' and 0 < apps.limit <= apps.size:
|
|
abort(403, error_msg)
|
|
elif resource == 'vector_space' and 0 < vector_space.limit <= vector_space.size:
|
|
abort(403, error_msg)
|
|
elif resource == 'workspace_custom' and not features.can_replace_logo:
|
|
abort(403, error_msg)
|
|
elif resource == 'annotation' and 0 < annotation_quota_limit.limit < annotation_quota_limit.size:
|
|
abort(403, error_msg)
|
|
else:
|
|
return view(*args, **kwargs)
|
|
|
|
return view(*args, **kwargs)
|
|
return decorated
|
|
return interceptor
|
|
|