| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 | import datetimeimport hashlibimport uuidfrom collections.abc import Generatorfrom typing import Unionfrom flask_login import current_userfrom werkzeug.datastructures import FileStoragefrom werkzeug.exceptions import NotFoundfrom configs import dify_configfrom core.file.upload_file_parser import UploadFileParserfrom core.rag.extractor.extract_processor import ExtractProcessorfrom extensions.ext_database import dbfrom extensions.ext_storage import storagefrom models.account import Accountfrom models.model import EndUser, UploadFilefrom services.errors.file import FileTooLargeError, UnsupportedFileTypeErrorIMAGE_EXTENSIONS = ["jpg", "jpeg", "png", "webp", "gif", "svg"]IMAGE_EXTENSIONS.extend([ext.upper() for ext in IMAGE_EXTENSIONS])ALLOWED_EXTENSIONS = ["txt", "markdown", "md", "pdf", "html", "htm", "xlsx", "xls", "docx", "csv"]UNSTRUCTURED_ALLOWED_EXTENSIONS = [    "txt",    "markdown",    "md",    "pdf",    "html",    "htm",    "xlsx",    "xls",    "docx",    "csv",    "eml",    "msg",    "pptx",    "ppt",    "xml",    "epub",]PREVIEW_WORDS_LIMIT = 3000class FileService:    @staticmethod    def upload_file(file: FileStorage, user: Union[Account, EndUser], only_image: bool = False) -> UploadFile:        filename = file.filename        extension = file.filename.split(".")[-1]        if len(filename) > 200:            filename = filename.split(".")[0][:200] + "." + extension        etl_type = dify_config.ETL_TYPE        allowed_extensions = (            UNSTRUCTURED_ALLOWED_EXTENSIONS + IMAGE_EXTENSIONS            if etl_type == "Unstructured"            else ALLOWED_EXTENSIONS + IMAGE_EXTENSIONS        )        if extension.lower() not in allowed_extensions or only_image and extension.lower() not in IMAGE_EXTENSIONS:            raise UnsupportedFileTypeError()        # read file content        file_content = file.read()        # get file size        file_size = len(file_content)        if extension.lower() in IMAGE_EXTENSIONS:            file_size_limit = dify_config.UPLOAD_IMAGE_FILE_SIZE_LIMIT * 1024 * 1024        else:            file_size_limit = dify_config.UPLOAD_FILE_SIZE_LIMIT * 1024 * 1024        if file_size > file_size_limit:            message = f"File size exceeded. {file_size} > {file_size_limit}"            raise FileTooLargeError(message)        # user uuid as file name        file_uuid = str(uuid.uuid4())        if isinstance(user, Account):            current_tenant_id = user.current_tenant_id        else:            # end_user            current_tenant_id = user.tenant_id        file_key = "upload_files/" + current_tenant_id + "/" + file_uuid + "." + extension        # save file to storage        storage.save(file_key, file_content)        # save file to db        upload_file = UploadFile(            tenant_id=current_tenant_id,            storage_type=dify_config.STORAGE_TYPE,            key=file_key,            name=filename,            size=file_size,            extension=extension,            mime_type=file.mimetype,            created_by_role=("account" if isinstance(user, Account) else "end_user"),            created_by=user.id,            created_at=datetime.datetime.now(datetime.timezone.utc).replace(tzinfo=None),            used=False,            hash=hashlib.sha3_256(file_content).hexdigest(),        )        db.session.add(upload_file)        db.session.commit()        return upload_file    @staticmethod    def upload_text(text: str, text_name: str) -> UploadFile:        if len(text_name) > 200:            text_name = text_name[:200]        # user uuid as file name        file_uuid = str(uuid.uuid4())        file_key = "upload_files/" + current_user.current_tenant_id + "/" + file_uuid + ".txt"        # save file to storage        storage.save(file_key, text.encode("utf-8"))        # save file to db        upload_file = UploadFile(            tenant_id=current_user.current_tenant_id,            storage_type=dify_config.STORAGE_TYPE,            key=file_key,            name=text_name,            size=len(text),            extension="txt",            mime_type="text/plain",            created_by=current_user.id,            created_at=datetime.datetime.now(datetime.timezone.utc).replace(tzinfo=None),            used=True,            used_by=current_user.id,            used_at=datetime.datetime.now(datetime.timezone.utc).replace(tzinfo=None),        )        db.session.add(upload_file)        db.session.commit()        return upload_file    @staticmethod    def get_file_preview(file_id: str) -> str:        upload_file = db.session.query(UploadFile).filter(UploadFile.id == file_id).first()        if not upload_file:            raise NotFound("File not found")        # extract text from file        extension = upload_file.extension        etl_type = dify_config.ETL_TYPE        allowed_extensions = UNSTRUCTURED_ALLOWED_EXTENSIONS if etl_type == "Unstructured" else ALLOWED_EXTENSIONS        if extension.lower() not in allowed_extensions:            raise UnsupportedFileTypeError()        text = ExtractProcessor.load_from_upload_file(upload_file, return_text=True)        text = text[0:PREVIEW_WORDS_LIMIT] if text else ""        return text    @staticmethod    def get_image_preview(file_id: str, timestamp: str, nonce: str, sign: str) -> tuple[Generator, str]:        result = UploadFileParser.verify_image_file_signature(file_id, timestamp, nonce, sign)        if not result:            raise NotFound("File not found or signature is invalid")        upload_file = db.session.query(UploadFile).filter(UploadFile.id == file_id).first()        if not upload_file:            raise NotFound("File not found or signature is invalid")        # extract text from file        extension = upload_file.extension        if extension.lower() not in IMAGE_EXTENSIONS:            raise UnsupportedFileTypeError()        generator = storage.load(upload_file.key, stream=True)        return generator, upload_file.mime_type    @staticmethod    def get_public_image_preview(file_id: str) -> tuple[Generator, str]:        upload_file = db.session.query(UploadFile).filter(UploadFile.id == file_id).first()        if not upload_file:            raise NotFound("File not found or signature is invalid")        # extract text from file        extension = upload_file.extension        if extension.lower() not in IMAGE_EXTENSIONS:            raise UnsupportedFileTypeError()        generator = storage.load(upload_file.key)        return generator, upload_file.mime_type
 |