Initial commit
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,77 @@
|
||||
import os
|
||||
from typing import Dict, Optional, Any, TypedDict, List
|
||||
from supabase import create_client, Client
|
||||
from supabase.lib.client_options import SyncClientOptions
|
||||
from gotrue import SyncMemoryStorage
|
||||
from modules.logger_tool import initialise_logger
|
||||
|
||||
logger = initialise_logger(__name__, os.getenv("LOG_LEVEL"), os.getenv("LOG_PATH"), 'default', True)
|
||||
|
||||
class CreateBucketOptions(TypedDict, total=False):
|
||||
"""Options for bucket creation, matching Supabase API requirements"""
|
||||
public: bool
|
||||
file_size_limit: int
|
||||
allowed_mime_types: List[str]
|
||||
name: str
|
||||
|
||||
def _create_base_client(url: str, key: str, options: Optional[Dict[str, Any]] = None, access_token: Optional[str] = None) -> Client:
|
||||
"""Create a base Supabase client with given configuration."""
|
||||
client_options = SyncClientOptions(
|
||||
schema="public",
|
||||
storage=SyncMemoryStorage(),
|
||||
headers={
|
||||
"apikey": key,
|
||||
"Authorization": f"Bearer {access_token if access_token else key}"
|
||||
}
|
||||
)
|
||||
return create_client(url, key, options=client_options)
|
||||
|
||||
class SupabaseServiceRoleClient:
|
||||
"""Supabase client for making authenticated requests using the service role key"""
|
||||
|
||||
def __init__(self, url: Optional[str] = None, service_role_key: Optional[str] = None, access_token: Optional[str] = None):
|
||||
"""Initialize the Supabase client with URL and service role key"""
|
||||
self.url = url or os.environ.get("SUPABASE_URL", "http://kong:8000")
|
||||
self.service_role_key = service_role_key or os.environ.get("SERVICE_ROLE_KEY")
|
||||
|
||||
if not self.url or not self.service_role_key:
|
||||
raise ValueError("SUPABASE_URL and SERVICE_ROLE_KEY must be provided")
|
||||
|
||||
# Initialize Supabase client with service role key and optional access token
|
||||
self.supabase = _create_base_client(self.url, self.service_role_key, access_token=access_token)
|
||||
|
||||
def create_bucket(self, id: str, options: Optional[CreateBucketOptions] = None) -> Dict[str, Any]:
|
||||
"""Create a storage bucket with the given ID and options"""
|
||||
if options is None:
|
||||
options = CreateBucketOptions()
|
||||
if 'name' not in options:
|
||||
options['name'] = id # Use ID as default name if not provided
|
||||
return self.supabase.storage.create_bucket(id, options=options)
|
||||
|
||||
@classmethod
|
||||
def for_admin(cls, access_token: str) -> 'SupabaseServiceRoleClient':
|
||||
"""Create a client instance for the super admin using their access token"""
|
||||
return cls(access_token=access_token)
|
||||
|
||||
class SupabaseAnonClient:
|
||||
"""Supabase client for making authenticated requests using the anon key"""
|
||||
|
||||
def __init__(self, url: Optional[str] = None, anon_key: Optional[str] = None, access_token: Optional[str] = None):
|
||||
"""Initialize the Supabase client with URL and anon key"""
|
||||
self.url = url or os.environ.get("SUPABASE_URL", "http://kong:8000")
|
||||
self.anon_key = anon_key or os.environ.get("ANON_KEY")
|
||||
|
||||
if not self.url or not self.anon_key:
|
||||
raise ValueError("SUPABASE_URL and ANON_KEY must be provided")
|
||||
|
||||
# Initialize Supabase client with anon key and optional access token
|
||||
self.supabase = _create_base_client(self.url, self.anon_key, access_token=access_token)
|
||||
|
||||
def create_bucket(self, id: str, options: Optional[CreateBucketOptions] = None) -> Dict[str, Any]:
|
||||
"""Create a storage bucket with the given ID and options"""
|
||||
return self.supabase.storage.create_bucket(id, options=options)
|
||||
|
||||
@classmethod
|
||||
def for_user(cls, access_token: str) -> 'SupabaseAnonClient':
|
||||
"""Create a client instance for a specific user using their access token"""
|
||||
return cls(access_token=access_token)
|
||||
@@ -0,0 +1,289 @@
|
||||
import os
|
||||
from typing import Dict, List, Optional, Any, TypedDict
|
||||
from .client import SupabaseServiceRoleClient, SupabaseAnonClient
|
||||
from modules.logger_tool import initialise_logger
|
||||
|
||||
class CreateBucketOptions(TypedDict, total=False):
|
||||
"""Options for bucket creation, matching Supabase API requirements"""
|
||||
public: bool
|
||||
file_size_limit: int
|
||||
allowed_mime_types: List[str]
|
||||
|
||||
class StorageError(Exception):
|
||||
"""Custom exception for storage-related errors"""
|
||||
pass
|
||||
|
||||
class StorageManager:
|
||||
"""Base storage manager class with common functionality"""
|
||||
|
||||
def __init__(self, client: SupabaseServiceRoleClient | SupabaseAnonClient):
|
||||
self.client = client
|
||||
self.logger = initialise_logger(__name__)
|
||||
|
||||
def check_bucket_exists(self, bucket_id: str) -> bool:
|
||||
"""Check if a storage bucket exists"""
|
||||
try:
|
||||
self.logger.info(f"Checking if bucket {bucket_id} exists")
|
||||
buckets = self.client.supabase.storage.list_buckets()
|
||||
return any(bucket.name == bucket_id for bucket in buckets)
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error checking bucket {bucket_id}: {str(e)}")
|
||||
return False
|
||||
|
||||
def list_bucket_contents(self, bucket_id: str, path: str = "") -> Dict:
|
||||
"""List contents of a bucket at specified path"""
|
||||
try:
|
||||
self.logger.info(f"Listing contents of bucket {bucket_id} at path {path}")
|
||||
contents = self.client.supabase.storage.from_(bucket_id).list(path)
|
||||
return {
|
||||
"folders": [item for item in contents if item.get("id", "").endswith("/")],
|
||||
"files": [item for item in contents if not item.get("id", "").endswith("/")]
|
||||
}
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error listing bucket contents: {str(e)}")
|
||||
raise StorageError(str(e))
|
||||
|
||||
def upload_file(self, bucket_id: str, file_path: str, file_data: bytes, content_type: str, upsert: bool = True) -> Any:
|
||||
"""Upload a file to a storage bucket"""
|
||||
try:
|
||||
self.logger.info(f"Uploading file to {bucket_id} at path {file_path}")
|
||||
return self.client.supabase.storage.from_(bucket_id).upload(
|
||||
path=file_path,
|
||||
file=file_data,
|
||||
file_options={
|
||||
"content-type": content_type,
|
||||
"x-upsert": "true" if upsert else "false"
|
||||
}
|
||||
)
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error uploading file: {str(e)}")
|
||||
raise StorageError(str(e))
|
||||
|
||||
def download_file(self, bucket_id: str, file_path: str) -> bytes:
|
||||
"""Download a file from a storage bucket"""
|
||||
try:
|
||||
self.logger.info(f"Downloading file from {bucket_id} at path {file_path}")
|
||||
return self.client.supabase.storage.from_(bucket_id).download(file_path)
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error downloading file: {str(e)}")
|
||||
raise StorageError(str(e))
|
||||
|
||||
def delete_file(self, bucket_id: str, file_path: str) -> None:
|
||||
"""Delete a file from a storage bucket"""
|
||||
try:
|
||||
self.logger.info(f"Deleting file from {bucket_id} at path {file_path}")
|
||||
self.client.supabase.storage.from_(bucket_id).remove([file_path])
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error deleting file: {str(e)}")
|
||||
raise StorageError(str(e))
|
||||
|
||||
def get_public_url(self, bucket_id: str, file_path: str) -> str:
|
||||
"""Get public URL for a file"""
|
||||
try:
|
||||
self.logger.info(f"Getting public URL for file in {bucket_id} at path {file_path}")
|
||||
return self.client.supabase.storage.from_(bucket_id).get_public_url(file_path)
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error getting public URL: {str(e)}")
|
||||
raise StorageError(str(e))
|
||||
|
||||
def create_signed_url(self, bucket_id: str, file_path: str, expires_in: int = 3600) -> Any:
|
||||
"""Create a signed URL for temporary file access"""
|
||||
try:
|
||||
self.logger.info(f"Creating signed URL for file in {bucket_id} at path {file_path}")
|
||||
return self.client.supabase.storage.from_(bucket_id).create_signed_url(file_path, expires_in)
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error creating signed URL: {str(e)}")
|
||||
raise StorageError(str(e))
|
||||
|
||||
class StorageAdmin(StorageManager):
|
||||
"""Storage admin class for managing storage buckets with service role access."""
|
||||
|
||||
def __init__(self, admin_user_id: Optional[str] = None):
|
||||
"""Initialize StorageAdmin with service role client."""
|
||||
super().__init__(SupabaseServiceRoleClient())
|
||||
self.admin_user_id = admin_user_id
|
||||
|
||||
def create_bucket(
|
||||
self,
|
||||
id: str,
|
||||
name: Optional[str] = None,
|
||||
public: bool = False,
|
||||
file_size_limit: Optional[int] = None,
|
||||
allowed_mime_types: Optional[List[str]] = None,
|
||||
owner: Optional[str] = None, # Kept for backwards compatibility but not used
|
||||
owner_id: Optional[str] = None # Kept for backwards compatibility but not used
|
||||
) -> Dict[str, Any]:
|
||||
"""Create a new storage bucket with supported parameters."""
|
||||
try:
|
||||
self.logger.info(f"Creating bucket {id} with name {name}")
|
||||
|
||||
# Prepare bucket options with only supported parameters
|
||||
options: Optional[CreateBucketOptions] = {}
|
||||
if public:
|
||||
options["public"] = public
|
||||
if file_size_limit is not None:
|
||||
options["file_size_limit"] = file_size_limit
|
||||
if allowed_mime_types is not None:
|
||||
options["allowed_mime_types"] = allowed_mime_types
|
||||
|
||||
# Create bucket with supported parameters only
|
||||
bucket = self.client.supabase.storage.create_bucket(
|
||||
str(id),
|
||||
options=options if options else None
|
||||
)
|
||||
|
||||
return bucket
|
||||
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error creating bucket {id}: {str(e)}")
|
||||
raise StorageError(str(e))
|
||||
|
||||
def initialize_core_buckets(self, admin_user_id: Optional[str] = None) -> List[Dict[str, Any]]:
|
||||
"""Initialize core storage buckets for the application."""
|
||||
try:
|
||||
owner_id = admin_user_id or self.admin_user_id
|
||||
if not owner_id:
|
||||
raise ValueError("Admin user ID is required for bucket initialization")
|
||||
|
||||
core_buckets = [
|
||||
{
|
||||
"id": "cc.users",
|
||||
"name": "CC Users",
|
||||
"public": False,
|
||||
"owner": owner_id,
|
||||
"owner_id": "superadmin",
|
||||
"file_size_limit": 50 * 1024 * 1024, # 50MB
|
||||
"allowed_mime_types": [
|
||||
'image/*', 'video/*', 'application/pdf',
|
||||
'application/msword', 'application/vnd.openxmlformats-officedocument.*',
|
||||
'text/plain', 'text/csv', 'application/json'
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "cc.institutes",
|
||||
"name": "CC Institutes",
|
||||
"public": False,
|
||||
"owner": owner_id,
|
||||
"owner_id": "superadmin",
|
||||
"file_size_limit": 50 * 1024 * 1024, # 50MB
|
||||
"allowed_mime_types": [
|
||||
'image/*', 'video/*', 'application/pdf',
|
||||
'application/msword', 'application/vnd.openxmlformats-officedocument.*',
|
||||
'text/plain', 'text/csv', 'application/json'
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
results = []
|
||||
for bucket in core_buckets:
|
||||
try:
|
||||
bucket_name = bucket.pop("name") # Remove name from options
|
||||
result = self.create_bucket(name=bucket_name, **bucket)
|
||||
results.append({
|
||||
"bucket": bucket["id"],
|
||||
"status": "success",
|
||||
"result": result
|
||||
})
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error creating bucket {bucket['id']}: {str(e)}")
|
||||
results.append({
|
||||
"bucket": bucket["id"],
|
||||
"status": "error",
|
||||
"error": str(e)
|
||||
})
|
||||
|
||||
return results
|
||||
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error initializing core buckets: {str(e)}")
|
||||
raise StorageError(str(e))
|
||||
|
||||
def create_user_bucket(self, user_id: str, username: str) -> Dict[str, Any]:
|
||||
"""Create a storage bucket for a specific user."""
|
||||
try:
|
||||
bucket_id = f"cc.users.admin.{username}"
|
||||
bucket_name = f"User Files - {username}"
|
||||
|
||||
return self.create_bucket(
|
||||
id=bucket_id,
|
||||
name=bucket_name,
|
||||
public=False,
|
||||
owner=user_id,
|
||||
owner_id=username,
|
||||
file_size_limit=50 * 1024 * 1024, # 50MB
|
||||
allowed_mime_types=[
|
||||
'image/*', 'video/*', 'application/pdf',
|
||||
'application/msword', 'application/vnd.openxmlformats-officedocument.*',
|
||||
'text/plain', 'text/csv', 'application/json'
|
||||
]
|
||||
)
|
||||
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error creating user bucket for {username}: {str(e)}")
|
||||
raise StorageError(str(e))
|
||||
|
||||
def create_school_buckets(self, school_id: str, school_name: str, admin_user_id: Optional[str] = None) -> Dict[str, Any]:
|
||||
"""Create storage buckets for a school."""
|
||||
try:
|
||||
owner_id = admin_user_id or self.admin_user_id
|
||||
if not owner_id:
|
||||
raise ValueError("Admin user ID is required for school bucket creation")
|
||||
|
||||
school_buckets = [
|
||||
{
|
||||
"id": f"cc.institutes.{school_id}.public",
|
||||
"name": f"{school_name} - Public Files",
|
||||
"public": True,
|
||||
"owner": owner_id,
|
||||
"owner_id": school_id,
|
||||
"file_size_limit": 50 * 1024 * 1024, # 50MB
|
||||
"allowed_mime_types": [
|
||||
'image/*', 'video/*', 'application/pdf',
|
||||
'application/msword', 'application/vnd.openxmlformats-officedocument.*',
|
||||
'text/plain', 'text/csv', 'application/json'
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": f"cc.institutes.{school_id}.private",
|
||||
"name": f"{school_name} - Private Files",
|
||||
"public": False,
|
||||
"owner": owner_id,
|
||||
"owner_id": school_id,
|
||||
"file_size_limit": 50 * 1024 * 1024, # 50MB
|
||||
"allowed_mime_types": [
|
||||
'image/*', 'video/*', 'application/pdf',
|
||||
'application/msword', 'application/vnd.openxmlformats-officedocument.*',
|
||||
'text/plain', 'text/csv', 'application/json'
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
results = {}
|
||||
for bucket in school_buckets:
|
||||
try:
|
||||
bucket_name = bucket.pop("name") # Remove name from options
|
||||
result = self.create_bucket(name=bucket_name, **bucket)
|
||||
results[bucket["id"]] = {
|
||||
"status": "success",
|
||||
"result": result
|
||||
}
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error creating school bucket {bucket['id']}: {str(e)}")
|
||||
results[bucket["id"]] = {
|
||||
"status": "error",
|
||||
"error": str(e)
|
||||
}
|
||||
|
||||
return results
|
||||
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error creating school buckets: {str(e)}")
|
||||
raise StorageError(str(e))
|
||||
|
||||
class StorageUser(StorageManager):
|
||||
"""Storage user class for managing storage buckets with user role access."""
|
||||
|
||||
def __init__(self, user_id: Optional[str] = None):
|
||||
"""Initialize StorageUser with user role client."""
|
||||
super().__init__(SupabaseAnonClient())
|
||||
self.user_id = user_id
|
||||
Reference in New Issue
Block a user