cognee/cognee/infrastructure/files/utils/get_file_metadata.py
Igor Ilic e80377b729 refactor: Move hash calculation of file to util
Moved hash calculation of file to shared utils, added better typing

Refactor COG-505
2024-12-05 20:33:30 +01:00

31 lines
798 B
Python

from typing import BinaryIO, TypedDict
import hashlib
from .guess_file_type import guess_file_type
from cognee.shared.utils import get_file_content_hash
class FileMetadata(TypedDict):
name: str
file_path: str
mime_type: str
extension: str
content_hash: str
def get_file_metadata(file: BinaryIO) -> FileMetadata:
"""Get metadata from a file"""
file.seek(0)
content_hash = get_file_content_hash(file)
file.seek(0)
file_type = guess_file_type(file)
file_path = file.name
file_name = file_path.split("/")[-1].split(".")[0] if file_path else None
return FileMetadata(
name = file_name,
file_path = file_path,
mime_type = file_type.mime,
extension = file_type.extension,
content_hash = content_hash,
)