mirror of
https://github.com/langgenius/dify.git
synced 2025-11-23 08:24:45 +00:00
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: -LAN- <laipz8200@outlook.com>
67 lines
2.6 KiB
Python
67 lines
2.6 KiB
Python
from collections.abc import Generator
|
|
|
|
import tos
|
|
|
|
from configs import dify_config
|
|
from extensions.storage.base_storage import BaseStorage
|
|
|
|
|
|
class VolcengineTosStorage(BaseStorage):
|
|
"""Implementation for Volcengine TOS storage."""
|
|
|
|
def __init__(self):
|
|
super().__init__()
|
|
if not dify_config.VOLCENGINE_TOS_ACCESS_KEY:
|
|
raise ValueError("VOLCENGINE_TOS_ACCESS_KEY is not set")
|
|
if not dify_config.VOLCENGINE_TOS_SECRET_KEY:
|
|
raise ValueError("VOLCENGINE_TOS_SECRET_KEY is not set")
|
|
if not dify_config.VOLCENGINE_TOS_ENDPOINT:
|
|
raise ValueError("VOLCENGINE_TOS_ENDPOINT is not set")
|
|
if not dify_config.VOLCENGINE_TOS_REGION:
|
|
raise ValueError("VOLCENGINE_TOS_REGION is not set")
|
|
self.bucket_name = dify_config.VOLCENGINE_TOS_BUCKET_NAME
|
|
self.client = tos.TosClientV2(
|
|
ak=dify_config.VOLCENGINE_TOS_ACCESS_KEY,
|
|
sk=dify_config.VOLCENGINE_TOS_SECRET_KEY,
|
|
endpoint=dify_config.VOLCENGINE_TOS_ENDPOINT,
|
|
region=dify_config.VOLCENGINE_TOS_REGION,
|
|
)
|
|
|
|
def save(self, filename, data):
|
|
if not self.bucket_name:
|
|
raise ValueError("VOLCENGINE_TOS_BUCKET_NAME is not set")
|
|
self.client.put_object(bucket=self.bucket_name, key=filename, content=data)
|
|
|
|
def load_once(self, filename: str) -> bytes:
|
|
if not self.bucket_name:
|
|
raise FileNotFoundError("VOLCENGINE_TOS_BUCKET_NAME is not set")
|
|
data = self.client.get_object(bucket=self.bucket_name, key=filename).read()
|
|
if not isinstance(data, bytes):
|
|
raise TypeError(f"Expected bytes, got {type(data).__name__}")
|
|
return data
|
|
|
|
def load_stream(self, filename: str) -> Generator:
|
|
if not self.bucket_name:
|
|
raise FileNotFoundError("VOLCENGINE_TOS_BUCKET_NAME is not set")
|
|
response = self.client.get_object(bucket=self.bucket_name, key=filename)
|
|
while chunk := response.read(4096):
|
|
yield chunk
|
|
|
|
def download(self, filename, target_filepath):
|
|
if not self.bucket_name:
|
|
raise ValueError("VOLCENGINE_TOS_BUCKET_NAME is not set")
|
|
self.client.get_object_to_file(bucket=self.bucket_name, key=filename, file_path=target_filepath)
|
|
|
|
def exists(self, filename):
|
|
if not self.bucket_name:
|
|
return False
|
|
res = self.client.head_object(bucket=self.bucket_name, key=filename)
|
|
if res.status_code != 200:
|
|
return False
|
|
return True
|
|
|
|
def delete(self, filename):
|
|
if not self.bucket_name:
|
|
return
|
|
self.client.delete_object(bucket=self.bucket_name, key=filename)
|