add volcengine tos storage (#8164)
parent
144d30d7ef
commit
c8df92d0eb
@ -0,0 +1,34 @@
|
|||||||
|
from typing import Optional
|
||||||
|
|
||||||
|
from pydantic import BaseModel, Field
|
||||||
|
|
||||||
|
|
||||||
|
class VolcengineTOSStorageConfig(BaseModel):
|
||||||
|
"""
|
||||||
|
Volcengine tos storage configs
|
||||||
|
"""
|
||||||
|
|
||||||
|
VOLCENGINE_TOS_BUCKET_NAME: Optional[str] = Field(
|
||||||
|
description="Volcengine TOS Bucket Name",
|
||||||
|
default=None,
|
||||||
|
)
|
||||||
|
|
||||||
|
VOLCENGINE_TOS_ACCESS_KEY: Optional[str] = Field(
|
||||||
|
description="Volcengine TOS Access Key",
|
||||||
|
default=None,
|
||||||
|
)
|
||||||
|
|
||||||
|
VOLCENGINE_TOS_SECRET_KEY: Optional[str] = Field(
|
||||||
|
description="Volcengine TOS Secret Key",
|
||||||
|
default=None,
|
||||||
|
)
|
||||||
|
|
||||||
|
VOLCENGINE_TOS_ENDPOINT: Optional[str] = Field(
|
||||||
|
description="Volcengine TOS Endpoint URL",
|
||||||
|
default=None,
|
||||||
|
)
|
||||||
|
|
||||||
|
VOLCENGINE_TOS_REGION: Optional[str] = Field(
|
||||||
|
description="Volcengine TOS Region",
|
||||||
|
default=None,
|
||||||
|
)
|
||||||
@ -0,0 +1,48 @@
|
|||||||
|
from collections.abc import Generator
|
||||||
|
|
||||||
|
import tos
|
||||||
|
from flask import Flask
|
||||||
|
|
||||||
|
from extensions.storage.base_storage import BaseStorage
|
||||||
|
|
||||||
|
|
||||||
|
class VolcengineStorage(BaseStorage):
|
||||||
|
"""Implementation for Volcengine TOS storage."""
|
||||||
|
|
||||||
|
def __init__(self, app: Flask):
|
||||||
|
super().__init__(app)
|
||||||
|
app_config = self.app.config
|
||||||
|
self.bucket_name = app_config.get("VOLCENGINE_TOS_BUCKET_NAME")
|
||||||
|
self.client = tos.TosClientV2(
|
||||||
|
ak=app_config.get("VOLCENGINE_TOS_ACCESS_KEY"),
|
||||||
|
sk=app_config.get("VOLCENGINE_TOS_SECRET_KEY"),
|
||||||
|
endpoint=app_config.get("VOLCENGINE_TOS_ENDPOINT"),
|
||||||
|
region=app_config.get("VOLCENGINE_TOS_REGION"),
|
||||||
|
)
|
||||||
|
|
||||||
|
def save(self, filename, data):
|
||||||
|
self.client.put_object(bucket=self.bucket_name, key=filename, content=data)
|
||||||
|
|
||||||
|
def load_once(self, filename: str) -> bytes:
|
||||||
|
data = self.client.get_object(bucket=self.bucket_name, key=filename).read()
|
||||||
|
return data
|
||||||
|
|
||||||
|
def load_stream(self, filename: str) -> Generator:
|
||||||
|
def generate(filename: str = filename) -> Generator:
|
||||||
|
response = self.client.get_object(bucket=self.bucket_name, key=filename)
|
||||||
|
while chunk := response.read(4096):
|
||||||
|
yield chunk
|
||||||
|
|
||||||
|
return generate()
|
||||||
|
|
||||||
|
def download(self, filename, target_filepath):
|
||||||
|
self.client.get_object_to_file(bucket=self.bucket_name, key=filename, file_path=target_filepath)
|
||||||
|
|
||||||
|
def exists(self, filename):
|
||||||
|
res = self.client.head_object(bucket=self.bucket_name, key=filename)
|
||||||
|
if res.status_code != 200:
|
||||||
|
return False
|
||||||
|
return True
|
||||||
|
|
||||||
|
def delete(self, filename):
|
||||||
|
self.client.delete_object(bucket=self.bucket_name, key=filename)
|
||||||
Loading…
Reference in New Issue