- Create backend/services/image_storage.py with 4 core functions:
- sanitize_filename(): remove unsafe chars, limit to 255 chars, convert to lowercase
- get_unique_filename(): handle collisions with UUID suffix (format: {name}_{uuid8}_{variant}.jpg)
- ensure_image_directories(): create /images/ root and category subdirs on startup
- save_image(): save bytes to /images/{category}/{filename}, returns relative path
- Create comprehensive test suite (22 tests) covering all functionality
- Integrate ensure_image_directories() into FastAPI startup event
- Directory structure: /images/{category}/{filename}
- Collision handling: auto-suffix with UUID if filename exists
- All tests passing, pathlib.Path for safe operations
21 lines
659 B
Python
21 lines
659 B
Python
from __future__ import annotations
|
|
|
|
import warnings
|
|
|
|
from .datastructures import Headers, MultipleValuesError # noqa: F401
|
|
|
|
|
|
with warnings.catch_warnings():
|
|
# Suppress redundant DeprecationWarning raised by websockets.legacy.
|
|
warnings.filterwarnings("ignore", category=DeprecationWarning)
|
|
from .legacy.http import read_request, read_response # noqa: F401
|
|
|
|
|
|
warnings.warn( # deprecated in 9.0 - 2021-09-01
|
|
"Headers and MultipleValuesError were moved "
|
|
"from websockets.http to websockets.datastructures"
|
|
"and read_request and read_response were moved "
|
|
"from websockets.http to websockets.legacy.http",
|
|
DeprecationWarning,
|
|
)
|