Selaa lähdekoodia

fix: enhance filename validation and extraction in FileService #16867 (#16869)

tags/1.2.0
GuanMu 7 kuukautta sitten
vanhempi
commit
d65da600e5
No account linked to committer's email address
1 muutettua tiedostoa jossa 7 lisäystä ja 1 poistoa
  1. 7
    1
      api/services/file_service.py

+ 7
- 1
api/services/file_service.py Näytä tiedosto

@@ -1,5 +1,6 @@
import datetime
import hashlib
import os
import uuid
from typing import Any, Literal, Union

@@ -38,7 +39,12 @@ class FileService:
source_url: str = "",
) -> UploadFile:
# get file extension
extension = filename.split(".")[-1].lower()
extension = os.path.splitext(filename)[1].lstrip(".").lower()

# check if filename contains invalid characters
if any(c in filename for c in ["/", "\\", ":", "*", "?", '"', "<", ">", "|"]):
raise ValueError("Filename contains invalid characters")

if len(filename) > 200:
filename = filename.split(".")[0][:200] + "." + extension


Loading…
Peruuta
Tallenna