mirror of
				https://github.com/langgenius/dify.git
				synced 2025-10-31 10:53:02 +00:00 
			
		
		
		
	
		
			
	
	
		
			519 lines
		
	
	
		
			17 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
		
		
			
		
	
	
			519 lines
		
	
	
		
			17 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
|   | # -*- coding:utf-8 -*- | ||
|  | import json | ||
|  | from datetime import datetime | ||
|  | 
 | ||
|  | import flask | ||
|  | from flask_login import login_required, current_user | ||
|  | from flask_restful import Resource, reqparse, fields, marshal_with, abort, inputs | ||
|  | from werkzeug.exceptions import Unauthorized, Forbidden | ||
|  | 
 | ||
|  | from constants.model_template import model_templates, demo_model_templates | ||
|  | from controllers.console import api | ||
|  | from controllers.console.app.error import AppNotFoundError, ProviderNotInitializeError, ProviderQuotaExceededError, \ | ||
|  |     CompletionRequestError, ProviderModelCurrentlyNotSupportError | ||
|  | from controllers.console.setup import setup_required | ||
|  | from controllers.console.wraps import account_initialization_required | ||
|  | from core.generator.llm_generator import LLMGenerator | ||
|  | from core.llm.error import ProviderTokenNotInitError, QuotaExceededError, LLMBadRequestError, LLMAPIConnectionError, \ | ||
|  |     LLMAPIUnavailableError, LLMRateLimitError, LLMAuthorizationError, ModelCurrentlyNotSupportError | ||
|  | from events.app_event import app_was_created, app_was_deleted | ||
|  | from libs.helper import TimestampField | ||
|  | from extensions.ext_database import db | ||
|  | from models.model import App, AppModelConfig, Site, InstalledApp | ||
|  | from services.account_service import TenantService | ||
|  | from services.app_model_config_service import AppModelConfigService | ||
|  | 
 | ||
|  | model_config_fields = { | ||
|  |     'opening_statement': fields.String, | ||
|  |     'suggested_questions': fields.Raw(attribute='suggested_questions_list'), | ||
|  |     'suggested_questions_after_answer': fields.Raw(attribute='suggested_questions_after_answer_dict'), | ||
|  |     'more_like_this': fields.Raw(attribute='more_like_this_dict'), | ||
|  |     'model': fields.Raw(attribute='model_dict'), | ||
|  |     'user_input_form': fields.Raw(attribute='user_input_form_list'), | ||
|  |     'pre_prompt': fields.String, | ||
|  |     'agent_mode': fields.Raw(attribute='agent_mode_dict'), | ||
|  | } | ||
|  | 
 | ||
|  | app_detail_fields = { | ||
|  |     'id': fields.String, | ||
|  |     'name': fields.String, | ||
|  |     'mode': fields.String, | ||
|  |     'icon': fields.String, | ||
|  |     'icon_background': fields.String, | ||
|  |     'enable_site': fields.Boolean, | ||
|  |     'enable_api': fields.Boolean, | ||
|  |     'api_rpm': fields.Integer, | ||
|  |     'api_rph': fields.Integer, | ||
|  |     'is_demo': fields.Boolean, | ||
|  |     'model_config': fields.Nested(model_config_fields, attribute='app_model_config'), | ||
|  |     'created_at': TimestampField | ||
|  | } | ||
|  | 
 | ||
|  | 
 | ||
|  | def _get_app(app_id, tenant_id): | ||
|  |     app = db.session.query(App).filter(App.id == app_id, App.tenant_id == tenant_id).first() | ||
|  |     if not app: | ||
|  |         raise AppNotFoundError | ||
|  |     return app | ||
|  | 
 | ||
|  | 
 | ||
|  | class AppListApi(Resource): | ||
|  |     prompt_config_fields = { | ||
|  |         'prompt_template': fields.String, | ||
|  |     } | ||
|  | 
 | ||
|  |     model_config_partial_fields = { | ||
|  |         'model': fields.Raw(attribute='model_dict'), | ||
|  |         'pre_prompt': fields.String, | ||
|  |     } | ||
|  | 
 | ||
|  |     app_partial_fields = { | ||
|  |         'id': fields.String, | ||
|  |         'name': fields.String, | ||
|  |         'mode': fields.String, | ||
|  |         'icon': fields.String, | ||
|  |         'icon_background': fields.String, | ||
|  |         'enable_site': fields.Boolean, | ||
|  |         'enable_api': fields.Boolean, | ||
|  |         'is_demo': fields.Boolean, | ||
|  |         'model_config': fields.Nested(model_config_partial_fields, attribute='app_model_config'), | ||
|  |         'created_at': TimestampField | ||
|  |     } | ||
|  | 
 | ||
|  |     app_pagination_fields = { | ||
|  |         'page': fields.Integer, | ||
|  |         'limit': fields.Integer(attribute='per_page'), | ||
|  |         'total': fields.Integer, | ||
|  |         'has_more': fields.Boolean(attribute='has_next'), | ||
|  |         'data': fields.List(fields.Nested(app_partial_fields), attribute='items') | ||
|  |     } | ||
|  | 
 | ||
|  |     @setup_required | ||
|  |     @login_required | ||
|  |     @account_initialization_required | ||
|  |     @marshal_with(app_pagination_fields) | ||
|  |     def get(self): | ||
|  |         """Get app list""" | ||
|  |         parser = reqparse.RequestParser() | ||
|  |         parser.add_argument('page', type=inputs.int_range(1, 99999), required=False, default=1, location='args') | ||
|  |         parser.add_argument('limit', type=inputs.int_range(1, 100), required=False, default=20, location='args') | ||
|  |         args = parser.parse_args() | ||
|  | 
 | ||
|  |         app_models = db.paginate( | ||
|  |             db.select(App).where(App.tenant_id == current_user.current_tenant_id).order_by(App.created_at.desc()), | ||
|  |             page=args['page'], | ||
|  |             per_page=args['limit'], | ||
|  |             error_out=False) | ||
|  | 
 | ||
|  |         return app_models | ||
|  | 
 | ||
|  |     @setup_required | ||
|  |     @login_required | ||
|  |     @account_initialization_required | ||
|  |     @marshal_with(app_detail_fields) | ||
|  |     def post(self): | ||
|  |         """Create app""" | ||
|  |         parser = reqparse.RequestParser() | ||
|  |         parser.add_argument('name', type=str, required=True, location='json') | ||
|  |         parser.add_argument('mode', type=str, choices=['completion', 'chat'], location='json') | ||
|  |         parser.add_argument('icon', type=str, location='json') | ||
|  |         parser.add_argument('icon_background', type=str, location='json') | ||
|  |         parser.add_argument('model_config', type=dict, location='json') | ||
|  |         args = parser.parse_args() | ||
|  | 
 | ||
|  |         # The role of the current user in the ta table must be admin or owner | ||
|  |         if current_user.current_tenant.current_role not in ['admin', 'owner']: | ||
|  |             raise Forbidden() | ||
|  | 
 | ||
|  |         if args['model_config'] is not None: | ||
|  |             # validate config | ||
|  |             model_configuration = AppModelConfigService.validate_configuration( | ||
|  |                 account=current_user, | ||
|  |                 config=args['model_config'], | ||
|  |                 mode=args['mode'] | ||
|  |             ) | ||
|  | 
 | ||
|  |             app = App( | ||
|  |                 enable_site=True, | ||
|  |                 enable_api=True, | ||
|  |                 is_demo=False, | ||
|  |                 api_rpm=0, | ||
|  |                 api_rph=0, | ||
|  |                 status='normal' | ||
|  |             ) | ||
|  | 
 | ||
|  |             app_model_config = AppModelConfig( | ||
|  |                 provider="", | ||
|  |                 model_id="", | ||
|  |                 configs={}, | ||
|  |                 opening_statement=model_configuration['opening_statement'], | ||
|  |                 suggested_questions=json.dumps(model_configuration['suggested_questions']), | ||
|  |                 suggested_questions_after_answer=json.dumps(model_configuration['suggested_questions_after_answer']), | ||
|  |                 more_like_this=json.dumps(model_configuration['more_like_this']), | ||
|  |                 model=json.dumps(model_configuration['model']), | ||
|  |                 user_input_form=json.dumps(model_configuration['user_input_form']), | ||
|  |                 pre_prompt=model_configuration['pre_prompt'], | ||
|  |                 agent_mode=json.dumps(model_configuration['agent_mode']), | ||
|  |             ) | ||
|  |         else: | ||
|  |             if 'mode' not in args or args['mode'] is None: | ||
|  |                 abort(400, message="mode is required") | ||
|  | 
 | ||
|  |             model_config_template = model_templates[args['mode'] + '_default'] | ||
|  | 
 | ||
|  |             app = App(**model_config_template['app']) | ||
|  |             app_model_config = AppModelConfig(**model_config_template['model_config']) | ||
|  | 
 | ||
|  |         app.name = args['name'] | ||
|  |         app.mode = args['mode'] | ||
|  |         app.icon = args['icon'] | ||
|  |         app.icon_background = args['icon_background'] | ||
|  |         app.tenant_id = current_user.current_tenant_id | ||
|  | 
 | ||
|  |         db.session.add(app) | ||
|  |         db.session.flush() | ||
|  | 
 | ||
|  |         app_model_config.app_id = app.id | ||
|  |         db.session.add(app_model_config) | ||
|  |         db.session.flush() | ||
|  | 
 | ||
|  |         app.app_model_config_id = app_model_config.id | ||
|  | 
 | ||
|  |         account = current_user | ||
|  | 
 | ||
|  |         site = Site( | ||
|  |             app_id=app.id, | ||
|  |             title=app.name, | ||
|  |             default_language=account.interface_language, | ||
|  |             customize_token_strategy='not_allow', | ||
|  |             code=Site.generate_code(16) | ||
|  |         ) | ||
|  | 
 | ||
|  |         db.session.add(site) | ||
|  |         db.session.commit() | ||
|  | 
 | ||
|  |         app_was_created.send(app) | ||
|  | 
 | ||
|  |         return app, 201 | ||
|  | 
 | ||
|  | 
 | ||
|  | class AppTemplateApi(Resource): | ||
|  |     template_fields = { | ||
|  |         'name': fields.String, | ||
|  |         'icon': fields.String, | ||
|  |         'icon_background': fields.String, | ||
|  |         'description': fields.String, | ||
|  |         'mode': fields.String, | ||
|  |         'model_config': fields.Nested(model_config_fields), | ||
|  |     } | ||
|  | 
 | ||
|  |     template_list_fields = { | ||
|  |         'data': fields.List(fields.Nested(template_fields)), | ||
|  |     } | ||
|  | 
 | ||
|  |     @setup_required | ||
|  |     @login_required | ||
|  |     @account_initialization_required | ||
|  |     @marshal_with(template_list_fields) | ||
|  |     def get(self): | ||
|  |         """Get app demo templates""" | ||
|  |         account = current_user | ||
|  |         interface_language = account.interface_language | ||
|  | 
 | ||
|  |         return {'data': demo_model_templates.get(interface_language)} | ||
|  | 
 | ||
|  | 
 | ||
|  | class AppApi(Resource): | ||
|  |     site_fields = { | ||
|  |         'access_token': fields.String(attribute='code'), | ||
|  |         'code': fields.String, | ||
|  |         'title': fields.String, | ||
|  |         'icon': fields.String, | ||
|  |         'icon_background': fields.String, | ||
|  |         'description': fields.String, | ||
|  |         'default_language': fields.String, | ||
|  |         'customize_domain': fields.String, | ||
|  |         'copyright': fields.String, | ||
|  |         'privacy_policy': fields.String, | ||
|  |         'customize_token_strategy': fields.String, | ||
|  |         'prompt_public': fields.Boolean, | ||
|  |         'app_base_url': fields.String, | ||
|  |     } | ||
|  | 
 | ||
|  |     app_detail_fields_with_site = { | ||
|  |         'id': fields.String, | ||
|  |         'name': fields.String, | ||
|  |         'mode': fields.String, | ||
|  |         'icon': fields.String, | ||
|  |         'icon_background': fields.String, | ||
|  |         'enable_site': fields.Boolean, | ||
|  |         'enable_api': fields.Boolean, | ||
|  |         'api_rpm': fields.Integer, | ||
|  |         'api_rph': fields.Integer, | ||
|  |         'is_demo': fields.Boolean, | ||
|  |         'model_config': fields.Nested(model_config_fields, attribute='app_model_config'), | ||
|  |         'site': fields.Nested(site_fields), | ||
|  |         'api_base_url': fields.String, | ||
|  |         'created_at': TimestampField | ||
|  |     } | ||
|  | 
 | ||
|  |     @setup_required | ||
|  |     @login_required | ||
|  |     @account_initialization_required | ||
|  |     @marshal_with(app_detail_fields_with_site) | ||
|  |     def get(self, app_id): | ||
|  |         """Get app detail""" | ||
|  |         app_id = str(app_id) | ||
|  |         app = _get_app(app_id, current_user.current_tenant_id) | ||
|  | 
 | ||
|  |         return app | ||
|  | 
 | ||
|  |     @setup_required | ||
|  |     @login_required | ||
|  |     @account_initialization_required | ||
|  |     def delete(self, app_id): | ||
|  |         """Delete app""" | ||
|  |         app_id = str(app_id) | ||
|  |         app = _get_app(app_id, current_user.current_tenant_id) | ||
|  | 
 | ||
|  |         db.session.delete(app) | ||
|  |         db.session.commit() | ||
|  | 
 | ||
|  |         # todo delete related data?? | ||
|  |         # model_config, site, api_token, conversation, message, message_feedback, message_annotation | ||
|  | 
 | ||
|  |         app_was_deleted.send(app) | ||
|  | 
 | ||
|  |         return {'result': 'success'}, 204 | ||
|  | 
 | ||
|  | 
 | ||
|  | class AppNameApi(Resource): | ||
|  |     @setup_required | ||
|  |     @login_required | ||
|  |     @account_initialization_required | ||
|  |     @marshal_with(app_detail_fields) | ||
|  |     def post(self, app_id): | ||
|  | 
 | ||
|  |         # The role of the current user in the ta table must be admin or owner | ||
|  |         if current_user.current_tenant.current_role not in ['admin', 'owner']: | ||
|  |             raise Forbidden() | ||
|  | 
 | ||
|  |         parser = reqparse.RequestParser() | ||
|  |         parser.add_argument('name', type=str, required=True, location='json') | ||
|  |         args = parser.parse_args() | ||
|  | 
 | ||
|  |         app = db.get_or_404(App, str(app_id)) | ||
|  |         if app.tenant_id != flask.session.get('tenant_id'): | ||
|  |             raise Unauthorized() | ||
|  | 
 | ||
|  |         app.name = args.get('name') | ||
|  |         app.updated_at = datetime.utcnow() | ||
|  |         db.session.commit() | ||
|  |         return app | ||
|  | 
 | ||
|  | 
 | ||
|  | class AppIconApi(Resource): | ||
|  |     @setup_required | ||
|  |     @login_required | ||
|  |     @account_initialization_required | ||
|  |     @marshal_with(app_detail_fields) | ||
|  |     def post(self, app_id): | ||
|  | 
 | ||
|  |         # The role of the current user in the ta table must be admin or owner | ||
|  |         if current_user.current_tenant.current_role not in ['admin', 'owner']: | ||
|  |             raise Forbidden() | ||
|  | 
 | ||
|  |         parser = reqparse.RequestParser() | ||
|  |         parser.add_argument('icon', type=str, location='json') | ||
|  |         parser.add_argument('icon_background', type=str, location='json') | ||
|  |         args = parser.parse_args() | ||
|  | 
 | ||
|  |         app = db.get_or_404(App, str(app_id)) | ||
|  |         if app.tenant_id != flask.session.get('tenant_id'): | ||
|  |             raise Unauthorized() | ||
|  | 
 | ||
|  |         app.icon = args.get('icon') | ||
|  |         app.icon_background = args.get('icon_background') | ||
|  |         app.updated_at = datetime.utcnow() | ||
|  |         db.session.commit() | ||
|  | 
 | ||
|  |         return app | ||
|  | 
 | ||
|  | 
 | ||
|  | class AppSiteStatus(Resource): | ||
|  |     @setup_required | ||
|  |     @login_required | ||
|  |     @account_initialization_required | ||
|  |     @marshal_with(app_detail_fields) | ||
|  |     def post(self, app_id): | ||
|  |         parser = reqparse.RequestParser() | ||
|  |         parser.add_argument('enable_site', type=bool, required=True, location='json') | ||
|  |         args = parser.parse_args() | ||
|  |         app_id = str(app_id) | ||
|  |         app = db.session.query(App).filter(App.id == app_id, App.tenant_id == current_user.current_tenant_id).first() | ||
|  |         if not app: | ||
|  |             raise AppNotFoundError | ||
|  | 
 | ||
|  |         if args.get('enable_site') == app.enable_site: | ||
|  |             return app | ||
|  | 
 | ||
|  |         app.enable_site = args.get('enable_site') | ||
|  |         app.updated_at = datetime.utcnow() | ||
|  |         db.session.commit() | ||
|  |         return app | ||
|  | 
 | ||
|  | 
 | ||
|  | class AppApiStatus(Resource): | ||
|  |     @setup_required | ||
|  |     @login_required | ||
|  |     @account_initialization_required | ||
|  |     @marshal_with(app_detail_fields) | ||
|  |     def post(self, app_id): | ||
|  |         parser = reqparse.RequestParser() | ||
|  |         parser.add_argument('enable_api', type=bool, required=True, location='json') | ||
|  |         args = parser.parse_args() | ||
|  | 
 | ||
|  |         app_id = str(app_id) | ||
|  |         app = _get_app(app_id, current_user.current_tenant_id) | ||
|  | 
 | ||
|  |         if args.get('enable_api') == app.enable_api: | ||
|  |             return app | ||
|  | 
 | ||
|  |         app.enable_api = args.get('enable_api') | ||
|  |         app.updated_at = datetime.utcnow() | ||
|  |         db.session.commit() | ||
|  |         return app | ||
|  | 
 | ||
|  | 
 | ||
|  | class AppRateLimit(Resource): | ||
|  |     @setup_required | ||
|  |     @login_required | ||
|  |     @account_initialization_required | ||
|  |     @marshal_with(app_detail_fields) | ||
|  |     def post(self, app_id): | ||
|  |         parser = reqparse.RequestParser() | ||
|  |         parser.add_argument('api_rpm', type=inputs.natural, required=False, location='json') | ||
|  |         parser.add_argument('api_rph', type=inputs.natural, required=False, location='json') | ||
|  |         args = parser.parse_args() | ||
|  | 
 | ||
|  |         app_id = str(app_id) | ||
|  |         app = _get_app(app_id, current_user.current_tenant_id) | ||
|  | 
 | ||
|  |         if args.get('api_rpm'): | ||
|  |             app.api_rpm = args.get('api_rpm') | ||
|  |         if args.get('api_rph'): | ||
|  |             app.api_rph = args.get('api_rph') | ||
|  |         app.updated_at = datetime.utcnow() | ||
|  |         db.session.commit() | ||
|  |         return app | ||
|  | 
 | ||
|  | 
 | ||
|  | class AppCopy(Resource): | ||
|  |     @staticmethod | ||
|  |     def create_app_copy(app): | ||
|  |         copy_app = App( | ||
|  |             name=app.name + ' copy', | ||
|  |             icon=app.icon, | ||
|  |             icon_background=app.icon_background, | ||
|  |             tenant_id=app.tenant_id, | ||
|  |             mode=app.mode, | ||
|  |             app_model_config_id=app.app_model_config_id, | ||
|  |             enable_site=app.enable_site, | ||
|  |             enable_api=app.enable_api, | ||
|  |             api_rpm=app.api_rpm, | ||
|  |             api_rph=app.api_rph | ||
|  |         ) | ||
|  |         return copy_app | ||
|  | 
 | ||
|  |     @staticmethod | ||
|  |     def create_app_model_config_copy(app_config, copy_app_id): | ||
|  |         copy_app_model_config = AppModelConfig( | ||
|  |             app_id=copy_app_id, | ||
|  |             provider=app_config.provider, | ||
|  |             model_id=app_config.model_id, | ||
|  |             configs=app_config.configs, | ||
|  |             opening_statement=app_config.opening_statement, | ||
|  |             suggested_questions=app_config.suggested_questions, | ||
|  |             suggested_questions_after_answer=app_config.suggested_questions_after_answer, | ||
|  |             more_like_this=app_config.more_like_this, | ||
|  |             model=app_config.model, | ||
|  |             user_input_form=app_config.user_input_form, | ||
|  |             pre_prompt=app_config.pre_prompt, | ||
|  |             agent_mode=app_config.agent_mode | ||
|  |         ) | ||
|  |         return copy_app_model_config | ||
|  | 
 | ||
|  |     @setup_required | ||
|  |     @login_required | ||
|  |     @account_initialization_required | ||
|  |     @marshal_with(app_detail_fields) | ||
|  |     def post(self, app_id): | ||
|  |         app_id = str(app_id) | ||
|  |         app = _get_app(app_id, current_user.current_tenant_id) | ||
|  | 
 | ||
|  |         copy_app = self.create_app_copy(app) | ||
|  |         db.session.add(copy_app) | ||
|  | 
 | ||
|  |         app_config = db.session.query(AppModelConfig). \ | ||
|  |             filter(AppModelConfig.app_id == app_id). \ | ||
|  |             one_or_none() | ||
|  | 
 | ||
|  |         if app_config: | ||
|  |             copy_app_model_config = self.create_app_model_config_copy(app_config, copy_app.id) | ||
|  |             db.session.add(copy_app_model_config) | ||
|  |             db.session.commit() | ||
|  |             copy_app.app_model_config_id = copy_app_model_config.id | ||
|  |         db.session.commit() | ||
|  | 
 | ||
|  |         return copy_app, 201 | ||
|  | 
 | ||
|  | 
 | ||
|  | class AppExport(Resource): | ||
|  | 
 | ||
|  |     @setup_required | ||
|  |     @login_required | ||
|  |     @account_initialization_required | ||
|  |     def post(self, app_id): | ||
|  |         # todo | ||
|  |         pass | ||
|  | 
 | ||
|  | 
 | ||
|  | class IntroductionGenerateApi(Resource): | ||
|  |     @setup_required | ||
|  |     @login_required | ||
|  |     @account_initialization_required | ||
|  |     def post(self): | ||
|  |         parser = reqparse.RequestParser() | ||
|  |         parser.add_argument('prompt_template', type=str, required=True, location='json') | ||
|  |         args = parser.parse_args() | ||
|  | 
 | ||
|  |         account = current_user | ||
|  | 
 | ||
|  |         try: | ||
|  |             answer = LLMGenerator.generate_introduction( | ||
|  |                 account.current_tenant_id, | ||
|  |                 args['prompt_template'] | ||
|  |             ) | ||
|  |         except ProviderTokenNotInitError: | ||
|  |             raise ProviderNotInitializeError() | ||
|  |         except QuotaExceededError: | ||
|  |             raise ProviderQuotaExceededError() | ||
|  |         except ModelCurrentlyNotSupportError: | ||
|  |             raise ProviderModelCurrentlyNotSupportError() | ||
|  |         except (LLMBadRequestError, LLMAPIConnectionError, LLMAPIUnavailableError, | ||
|  |                 LLMRateLimitError, LLMAuthorizationError) as e: | ||
|  |             raise CompletionRequestError(str(e)) | ||
|  | 
 | ||
|  |         return {'introduction': answer} | ||
|  | 
 | ||
|  | 
 | ||
|  | api.add_resource(AppListApi, '/apps') | ||
|  | api.add_resource(AppTemplateApi, '/app-templates') | ||
|  | api.add_resource(AppApi, '/apps/<uuid:app_id>') | ||
|  | api.add_resource(AppCopy, '/apps/<uuid:app_id>/copy') | ||
|  | api.add_resource(AppNameApi, '/apps/<uuid:app_id>/name') | ||
|  | api.add_resource(AppSiteStatus, '/apps/<uuid:app_id>/site-enable') | ||
|  | api.add_resource(AppApiStatus, '/apps/<uuid:app_id>/api-enable') | ||
|  | api.add_resource(AppRateLimit, '/apps/<uuid:app_id>/rate-limit') | ||
|  | api.add_resource(IntroductionGenerateApi, '/introduction-generate') |