123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- import os
- import shutil
- import json
- from abc import ABC, abstractmethod
- from typing import BinaryIO, Tuple
- from io import BytesIO
- import boto3
- from botocore.exceptions import ClientError
- from open_webui.config import (
- S3_ACCESS_KEY_ID,
- S3_BUCKET_NAME,
- S3_ENDPOINT_URL,
- S3_REGION_NAME,
- S3_SECRET_ACCESS_KEY,
- GCS_BUCKET_NAME,
- GOOGLE_APPLICATION_CREDENTIALS_JSON,
- STORAGE_PROVIDER,
- UPLOAD_DIR,
- )
- from google.cloud import storage
- from google.cloud.exceptions import GoogleCloudError, NotFound
- from open_webui.constants import ERROR_MESSAGES
- class StorageProvider(ABC):
- @abstractmethod
- def get_file(self, file_path: str) -> str:
- pass
- @abstractmethod
- def upload_file(self, file: BinaryIO, filename: str) -> Tuple[bytes, str]:
- pass
- @abstractmethod
- def delete_all_files(self) -> None:
- pass
- @abstractmethod
- def delete_file(self, file_path: str) -> None:
- pass
- class LocalStorageProvider(StorageProvider):
- @staticmethod
- def upload_file(file: BinaryIO, filename: str) -> Tuple[bytes, str]:
- contents = file.read()
- if not contents:
- raise ValueError(ERROR_MESSAGES.EMPTY_CONTENT)
- file_path = f"{UPLOAD_DIR}/{filename}"
- with open(file_path, "wb") as f:
- f.write(contents)
- return contents, file_path
- @staticmethod
- def get_file(file_path: str) -> str:
- """Handles downloading of the file from local storage."""
- return file_path
- @staticmethod
- def delete_file(file_path: str) -> None:
- """Handles deletion of the file from local storage."""
- filename = file_path.split("/")[-1]
- file_path = f"{UPLOAD_DIR}/{filename}"
- if os.path.isfile(file_path):
- os.remove(file_path)
- else:
- print(f"File {file_path} not found in local storage.")
- @staticmethod
- def delete_all_files() -> None:
- """Handles deletion of all files from local storage."""
- if os.path.exists(UPLOAD_DIR):
- for filename in os.listdir(UPLOAD_DIR):
- file_path = os.path.join(UPLOAD_DIR, filename)
- try:
- if os.path.isfile(file_path) or os.path.islink(file_path):
- os.unlink(file_path) # Remove the file or link
- elif os.path.isdir(file_path):
- shutil.rmtree(file_path) # Remove the directory
- except Exception as e:
- print(f"Failed to delete {file_path}. Reason: {e}")
- else:
- print(f"Directory {UPLOAD_DIR} not found in local storage.")
- class S3StorageProvider(StorageProvider):
- def __init__(self):
- self.s3_client = boto3.client(
- "s3",
- region_name=S3_REGION_NAME,
- endpoint_url=S3_ENDPOINT_URL,
- aws_access_key_id=S3_ACCESS_KEY_ID,
- aws_secret_access_key=S3_SECRET_ACCESS_KEY,
- )
- self.bucket_name = S3_BUCKET_NAME
- def upload_file(self, file: BinaryIO, filename: str) -> Tuple[bytes, str]:
- """Handles uploading of the file to S3 storage."""
- _, file_path = LocalStorageProvider.upload_file(file, filename)
- try:
- self.s3_client.upload_file(file_path, self.bucket_name, filename)
- return (
- open(file_path, "rb").read(),
- "s3://" + self.bucket_name + "/" + filename,
- )
- except ClientError as e:
- raise RuntimeError(f"Error uploading file to S3: {e}")
- def get_file(self, file_path: str) -> str:
- """Handles downloading of the file from S3 storage."""
- try:
- bucket_name, key = file_path.split("//")[1].split("/")
- local_file_path = f"{UPLOAD_DIR}/{key}"
- self.s3_client.download_file(bucket_name, key, local_file_path)
- return local_file_path
- except ClientError as e:
- raise RuntimeError(f"Error downloading file from S3: {e}")
- def delete_file(self, file_path: str) -> None:
- """Handles deletion of the file from S3 storage."""
- filename = file_path.split("/")[-1]
- try:
- self.s3_client.delete_object(Bucket=self.bucket_name, Key=filename)
- except ClientError as e:
- raise RuntimeError(f"Error deleting file from S3: {e}")
- # Always delete from local storage
- LocalStorageProvider.delete_file(file_path)
- def delete_all_files(self) -> None:
- """Handles deletion of all files from S3 storage."""
- try:
- response = self.s3_client.list_objects_v2(Bucket=self.bucket_name)
- if "Contents" in response:
- for content in response["Contents"]:
- self.s3_client.delete_object(
- Bucket=self.bucket_name, Key=content["Key"]
- )
- except ClientError as e:
- raise RuntimeError(f"Error deleting all files from S3: {e}")
- # Always delete from local storage
- LocalStorageProvider.delete_all_files()
- class GCSStorageProvider(StorageProvider):
- def __init__(self):
- self.gcs_client = storage.Client.from_service_account_info(info=json.loads(GOOGLE_APPLICATION_CREDENTIALS_JSON))
- self.bucket_name = self.gcs_client.bucket(GCS_BUCKET_NAME)
-
- def upload_file(self, file: BinaryIO, filename: str):
- """Handles uploading of the file to GCS storage."""
- contents, _ = LocalStorageProvider.upload_file(file, filename)
- try:
- # Get the blob (object in the bucket)
- blob = self.bucket_name.blob(filename)
- # Upload the file to the bucket
- blob.upload_from_file(BytesIO(contents))
- return contents, _
- except GoogleCloudError as e:
- raise RuntimeError(f"Error uploading file to GCS: {e}")
- def get_file(self, file_path:str) -> str:
- """Handles downloading of the file from GCS storage."""
- try:
- local_file_path=file_path.removeprefix(UPLOAD_DIR + "/")
- # Get the blob (object in the bucket)
- blob = self.bucket_name.blob(local_file_path)
- # Download the file to a local destination
- blob.download_to_filename(file_path)
- return file_path
- except NotFound as e:
- raise RuntimeError(f"Error downloading file from GCS: {e}")
-
- def delete_file(self, file_path:str) -> None:
- """Handles deletion of the file from GCS storage."""
- try:
- local_file_path = file_path.removeprefix(UPLOAD_DIR + "/")
- # Get the blob (object in the bucket)
- blob = self.bucket_name.blob(local_file_path)
- # Delete the file
- blob.delete()
- except NotFound as e:
- raise RuntimeError(f"Error deleting file from GCS: {e}")
-
- # Always delete from local storage
- LocalStorageProvider.delete_file(file_path)
- def delete_all_files(self) -> None:
- """Handles deletion of all files from GCS storage."""
- try:
- # List all objects in the bucket
- blobs = self.bucket_name.list_blobs()
- # Delete all files
- for blob in blobs:
- blob.delete()
- except NotFound as e:
- raise RuntimeError(f"Error deleting all files from GCS: {e}")
-
- # Always delete from local storage
- LocalStorageProvider.delete_all_files()
- def get_storage_provider(storage_provider: str):
- if storage_provider == "local":
- Storage = LocalStorageProvider()
- elif storage_provider == "s3":
- Storage = S3StorageProvider()
- elif storage_provider == "gcs":
- Storage = GCSStorageProvider()
- else:
- raise RuntimeError(f"Unsupported storage provider: {storage_provider}")
- return Storage
- Storage = get_storage_provider(STORAGE_PROVIDER)
|