neko-image-gallery / app /util /generate_uuid.py
eggacheb's picture
Upload 97 files
21db53c verified
raw
history blame contribute delete
882 Bytes
import hashlib
import io
import pathlib
from uuid import UUID, uuid5, NAMESPACE_DNS
NAMESPACE_STR = 'github.com/hv0905/NekoImageGallery'
namespace_uuid = uuid5(NAMESPACE_DNS, NAMESPACE_STR)
def generate_uuid(file_input: pathlib.Path | io.BytesIO | bytes) -> UUID:
if isinstance(file_input, pathlib.Path):
with open(file_input, 'rb') as f:
file_content = f.read()
elif isinstance(file_input, io.BytesIO):
file_input.seek(0)
file_content = file_input.read()
elif isinstance(file_input, bytes):
file_content = file_input
else:
raise ValueError("Unsupported file type. Must be pathlib.Path or io.BytesIO.")
file_hash = hashlib.sha1(file_content).hexdigest()
return generate_uuid_from_sha1(file_hash)
def generate_uuid_from_sha1(sha1_hash: str) -> UUID:
return uuid5(namespace_uuid, sha1_hash.lower())