app.py 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. import os
  2. if os.environ.get("DEBUG", "false").lower() != "true":
  3. from gevent import monkey
  4. monkey.patch_all()
  5. import grpc.experimental.gevent
  6. grpc.experimental.gevent.init_gevent()
  7. import json
  8. import logging
  9. import sys
  10. import threading
  11. import time
  12. import warnings
  13. from logging.handlers import RotatingFileHandler
  14. from flask import Flask, Response, request
  15. from flask_cors import CORS
  16. from werkzeug.exceptions import Unauthorized
  17. import contexts
  18. from commands import register_commands
  19. from configs import dify_config
  20. # DO NOT REMOVE BELOW
  21. from events import event_handlers # noqa: F401
  22. from extensions import (
  23. ext_celery,
  24. ext_code_based_extension,
  25. ext_compress,
  26. ext_database,
  27. ext_hosting_provider,
  28. ext_login,
  29. ext_mail,
  30. ext_migrate,
  31. ext_proxy_fix,
  32. ext_redis,
  33. ext_sentry,
  34. ext_storage,
  35. )
  36. from extensions.ext_database import db
  37. from extensions.ext_login import login_manager
  38. from libs.passport import PassportService
  39. # TODO: Find a way to avoid importing models here
  40. from models import account, dataset, model, source, task, tool, tools, web # noqa: F401
  41. from services.account_service import AccountService
  42. # DO NOT REMOVE ABOVE
  43. warnings.simplefilter("ignore", ResourceWarning)
  44. os.environ["TZ"] = "UTC"
  45. # windows platform not support tzset
  46. if hasattr(time, "tzset"):
  47. time.tzset()
  48. class DifyApp(Flask):
  49. pass
  50. # -------------
  51. # Configuration
  52. # -------------
  53. config_type = os.getenv("EDITION", default="SELF_HOSTED") # ce edition first
  54. # ----------------------------
  55. # Application Factory Function
  56. # ----------------------------
  57. def create_flask_app_with_configs() -> Flask:
  58. """
  59. create a raw flask app
  60. with configs loaded from .env file
  61. """
  62. dify_app = DifyApp(__name__)
  63. dify_app.config.from_mapping(dify_config.model_dump())
  64. # populate configs into system environment variables
  65. for key, value in dify_app.config.items():
  66. if isinstance(value, str):
  67. os.environ[key] = value
  68. elif isinstance(value, int | float | bool):
  69. os.environ[key] = str(value)
  70. elif value is None:
  71. os.environ[key] = ""
  72. return dify_app
  73. def create_app() -> Flask:
  74. app = create_flask_app_with_configs()
  75. app.secret_key = app.config["SECRET_KEY"]
  76. log_handlers = None
  77. log_file = app.config.get("LOG_FILE")
  78. if log_file:
  79. log_dir = os.path.dirname(log_file)
  80. os.makedirs(log_dir, exist_ok=True)
  81. log_handlers = [
  82. RotatingFileHandler(
  83. filename=log_file,
  84. maxBytes=1024 * 1024 * 1024,
  85. backupCount=5,
  86. ),
  87. logging.StreamHandler(sys.stdout),
  88. ]
  89. logging.basicConfig(
  90. level=app.config.get("LOG_LEVEL"),
  91. format=app.config.get("LOG_FORMAT"),
  92. datefmt=app.config.get("LOG_DATEFORMAT"),
  93. handlers=log_handlers,
  94. force=True,
  95. )
  96. log_tz = app.config.get("LOG_TZ")
  97. if log_tz:
  98. from datetime import datetime
  99. import pytz
  100. timezone = pytz.timezone(log_tz)
  101. def time_converter(seconds):
  102. return datetime.utcfromtimestamp(seconds).astimezone(timezone).timetuple()
  103. for handler in logging.root.handlers:
  104. handler.formatter.converter = time_converter
  105. initialize_extensions(app)
  106. register_blueprints(app)
  107. register_commands(app)
  108. return app
  109. def initialize_extensions(app):
  110. # Since the application instance is now created, pass it to each Flask
  111. # extension instance to bind it to the Flask application instance (app)
  112. ext_compress.init_app(app)
  113. ext_code_based_extension.init()
  114. ext_database.init_app(app)
  115. ext_migrate.init(app, db)
  116. ext_redis.init_app(app)
  117. ext_storage.init_app(app)
  118. ext_celery.init_app(app)
  119. ext_login.init_app(app)
  120. ext_mail.init_app(app)
  121. ext_hosting_provider.init_app(app)
  122. ext_sentry.init_app(app)
  123. ext_proxy_fix.init_app(app)
  124. # Flask-Login configuration
  125. @login_manager.request_loader
  126. def load_user_from_request(request_from_flask_login):
  127. """Load user based on the request."""
  128. if request.blueprint not in {"console", "inner_api"}:
  129. return None
  130. # Check if the user_id contains a dot, indicating the old format
  131. auth_header = request.headers.get("Authorization", "")
  132. if not auth_header:
  133. auth_token = request.args.get("_token")
  134. if not auth_token:
  135. raise Unauthorized("Invalid Authorization token.")
  136. else:
  137. if " " not in auth_header:
  138. raise Unauthorized("Invalid Authorization header format. Expected 'Bearer <api-key>' format.")
  139. auth_scheme, auth_token = auth_header.split(None, 1)
  140. auth_scheme = auth_scheme.lower()
  141. if auth_scheme != "bearer":
  142. raise Unauthorized("Invalid Authorization header format. Expected 'Bearer <api-key>' format.")
  143. decoded = PassportService().verify(auth_token)
  144. user_id = decoded.get("user_id")
  145. logged_in_account = AccountService.load_logged_in_account(account_id=user_id)
  146. if logged_in_account:
  147. contexts.tenant_id.set(logged_in_account.current_tenant_id)
  148. return logged_in_account
  149. @login_manager.unauthorized_handler
  150. def unauthorized_handler():
  151. """Handle unauthorized requests."""
  152. return Response(
  153. json.dumps({"code": "unauthorized", "message": "Unauthorized."}),
  154. status=401,
  155. content_type="application/json",
  156. )
  157. # register blueprint routers
  158. def register_blueprints(app):
  159. from controllers.console import bp as console_app_bp
  160. from controllers.files import bp as files_bp
  161. from controllers.inner_api import bp as inner_api_bp
  162. from controllers.service_api import bp as service_api_bp
  163. from controllers.web import bp as web_bp
  164. CORS(
  165. service_api_bp,
  166. allow_headers=["Content-Type", "Authorization", "X-App-Code"],
  167. methods=["GET", "PUT", "POST", "DELETE", "OPTIONS", "PATCH"],
  168. )
  169. app.register_blueprint(service_api_bp)
  170. CORS(
  171. web_bp,
  172. resources={r"/*": {"origins": app.config["WEB_API_CORS_ALLOW_ORIGINS"]}},
  173. supports_credentials=True,
  174. allow_headers=["Content-Type", "Authorization", "X-App-Code"],
  175. methods=["GET", "PUT", "POST", "DELETE", "OPTIONS", "PATCH"],
  176. expose_headers=["X-Version", "X-Env"],
  177. )
  178. app.register_blueprint(web_bp)
  179. CORS(
  180. console_app_bp,
  181. resources={r"/*": {"origins": app.config["CONSOLE_CORS_ALLOW_ORIGINS"]}},
  182. supports_credentials=True,
  183. allow_headers=["Content-Type", "Authorization"],
  184. methods=["GET", "PUT", "POST", "DELETE", "OPTIONS", "PATCH"],
  185. expose_headers=["X-Version", "X-Env"],
  186. )
  187. app.register_blueprint(console_app_bp)
  188. CORS(files_bp, allow_headers=["Content-Type"], methods=["GET", "PUT", "POST", "DELETE", "OPTIONS", "PATCH"])
  189. app.register_blueprint(files_bp)
  190. app.register_blueprint(inner_api_bp)
  191. # create app
  192. app = create_app()
  193. celery = app.extensions["celery"]
  194. if app.config.get("TESTING"):
  195. print("App is running in TESTING mode")
  196. @app.after_request
  197. def after_request(response):
  198. """Add Version headers to the response."""
  199. response.set_cookie("remember_token", "", expires=0)
  200. response.headers.add("X-Version", app.config["CURRENT_VERSION"])
  201. response.headers.add("X-Env", app.config["DEPLOY_ENV"])
  202. return response
  203. @app.route("/health")
  204. def health():
  205. return Response(
  206. json.dumps({"pid": os.getpid(), "status": "ok", "version": app.config["CURRENT_VERSION"]}),
  207. status=200,
  208. content_type="application/json",
  209. )
  210. @app.route("/threads")
  211. def threads():
  212. num_threads = threading.active_count()
  213. threads = threading.enumerate()
  214. thread_list = []
  215. for thread in threads:
  216. thread_name = thread.name
  217. thread_id = thread.ident
  218. is_alive = thread.is_alive()
  219. thread_list.append(
  220. {
  221. "name": thread_name,
  222. "id": thread_id,
  223. "is_alive": is_alive,
  224. }
  225. )
  226. return {
  227. "pid": os.getpid(),
  228. "thread_num": num_threads,
  229. "threads": thread_list,
  230. }
  231. @app.route("/db-pool-stat")
  232. def pool_stat():
  233. engine = db.engine
  234. return {
  235. "pid": os.getpid(),
  236. "pool_size": engine.pool.size(),
  237. "checked_in_connections": engine.pool.checkedin(),
  238. "checked_out_connections": engine.pool.checkedout(),
  239. "overflow_connections": engine.pool.overflow(),
  240. "connection_timeout": engine.pool.timeout(),
  241. "recycle_time": db.engine.pool._recycle,
  242. }
  243. if __name__ == "__main__":
  244. app.run(host="0.0.0.0", port=5001)