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
52 lines
1.5 KiB
Python
52 lines
1.5 KiB
Python
from flask import Response
|
|
from flask_restful import Resource, reqparse
|
|
from werkzeug.exceptions import Forbidden, NotFound
|
|
|
|
from controllers.files import api
|
|
from core.tools.tool_file_manager import ToolFileManager
|
|
from libs.exception import BaseHTTPException
|
|
|
|
|
|
class ToolFilePreviewApi(Resource):
|
|
def get(self, file_id, extension):
|
|
file_id = str(file_id)
|
|
|
|
parser = reqparse.RequestParser()
|
|
|
|
parser.add_argument("timestamp", type=str, required=True, location="args")
|
|
parser.add_argument("nonce", type=str, required=True, location="args")
|
|
parser.add_argument("sign", type=str, required=True, location="args")
|
|
|
|
args = parser.parse_args()
|
|
|
|
if not ToolFileManager.verify_file(
|
|
file_id=file_id,
|
|
timestamp=args["timestamp"],
|
|
nonce=args["nonce"],
|
|
sign=args["sign"],
|
|
):
|
|
raise Forbidden("Invalid request.")
|
|
|
|
try:
|
|
result = ToolFileManager.get_file_generator_by_tool_file_id(
|
|
file_id,
|
|
)
|
|
|
|
if not result:
|
|
raise NotFound("file is not found")
|
|
|
|
generator, mimetype = result
|
|
except Exception:
|
|
raise UnsupportedFileTypeError()
|
|
|
|
return Response(generator, mimetype=mimetype)
|
|
|
|
|
|
api.add_resource(ToolFilePreviewApi, "/files/tools/<uuid:file_id>.<string:extension>")
|
|
|
|
|
|
class UnsupportedFileTypeError(BaseHTTPException):
|
|
error_code = "unsupported_file_type"
|
|
description = "File type not allowed."
|
|
code = 415
|