mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-19 17:01:41 +03:00
eb779f9e58
* feat: display user rights on invitation page * feat: add brain name in invitation email
67 lines
1.8 KiB
Python
67 lines
1.8 KiB
Python
from uuid import UUID
|
|
|
|
from logger import get_logger
|
|
from pydantic import BaseModel
|
|
|
|
from models.settings import CommonsDep, common_dependencies
|
|
|
|
logger = get_logger(__name__)
|
|
|
|
|
|
class BrainSubscription(BaseModel):
|
|
brain_id: UUID
|
|
email: str
|
|
rights: str = "Viewer"
|
|
|
|
class Config:
|
|
arbitrary_types_allowed = True
|
|
|
|
@property
|
|
def commons(self) -> CommonsDep:
|
|
return common_dependencies()
|
|
|
|
def create_subscription_invitation(self):
|
|
logger.info("Creating subscription invitation")
|
|
response = (
|
|
self.commons["supabase"]
|
|
.table("brain_subscription_invitations")
|
|
.insert(
|
|
{
|
|
"brain_id": str(self.brain_id),
|
|
"email": self.email,
|
|
"rights": self.rights,
|
|
}
|
|
)
|
|
.execute()
|
|
)
|
|
return response.data
|
|
|
|
def update_subscription_invitation(self):
|
|
logger.info("Updating subscription invitation")
|
|
response = (
|
|
self.commons["supabase"]
|
|
.table("brain_subscription_invitations")
|
|
.update({"rights": self.rights})
|
|
.eq("brain_id", str(self.brain_id))
|
|
.eq("email", self.email)
|
|
.execute()
|
|
)
|
|
return response.data
|
|
|
|
def create_or_update_subscription_invitation(self):
|
|
response = (
|
|
self.commons["supabase"]
|
|
.table("brain_subscription_invitations")
|
|
.select("*")
|
|
.eq("brain_id", str(self.brain_id))
|
|
.eq("email", self.email)
|
|
.execute()
|
|
)
|
|
|
|
if response.data:
|
|
response = self.update_subscription_invitation()
|
|
else:
|
|
response = self.create_subscription_invitation()
|
|
|
|
return response
|