76 lines
2.5 KiB
Python
76 lines
2.5 KiB
Python
import uuid
|
|
from typing import Optional
|
|
|
|
from sqlalchemy import select, func
|
|
from sqlalchemy.ext.asyncio import AsyncSession
|
|
|
|
from app.models.organization import Organization
|
|
|
|
|
|
class OrganizationRepository:
|
|
def __init__(self, session: AsyncSession):
|
|
self.session = session
|
|
|
|
async def get_by_id(self, id: uuid.UUID) -> Optional[Organization]:
|
|
result = await self.session.execute(
|
|
select(Organization).where(Organization.id == id)
|
|
)
|
|
return result.scalar_one_or_none()
|
|
|
|
async def get_by_slug(self, slug: str) -> Optional[Organization]:
|
|
result = await self.session.execute(
|
|
select(Organization).where(Organization.slug == slug)
|
|
)
|
|
return result.scalar_one_or_none()
|
|
|
|
async def list_all(self, *, skip: int = 0, limit: int = 100) -> list[Organization]:
|
|
result = await self.session.execute(
|
|
select(Organization)
|
|
.order_by(Organization.created_at.desc())
|
|
.offset(skip)
|
|
.limit(limit)
|
|
)
|
|
return list(result.scalars().all())
|
|
|
|
async def count_all(self) -> int:
|
|
result = await self.session.execute(
|
|
select(func.count()).select_from(Organization)
|
|
)
|
|
return result.scalar_one()
|
|
|
|
async def get_by_owner(self, user_id: str) -> list[Organization]:
|
|
from app.models.organization import OrgMember
|
|
result = await self.session.execute(
|
|
select(Organization)
|
|
.join(OrgMember, OrgMember.organization_id == Organization.id)
|
|
.where(
|
|
OrgMember.user_id == user_id,
|
|
OrgMember.role == "owner",
|
|
)
|
|
)
|
|
return list(result.scalars().all())
|
|
|
|
async def create(self, **kwargs) -> Organization:
|
|
instance = Organization(**kwargs)
|
|
self.session.add(instance)
|
|
await self.session.flush()
|
|
return instance
|
|
|
|
async def update(self, id: uuid.UUID, **kwargs) -> Optional[Organization]:
|
|
instance = await self.get_by_id(id)
|
|
if instance is None:
|
|
return None
|
|
for key, value in kwargs.items():
|
|
if hasattr(instance, key):
|
|
setattr(instance, key, value)
|
|
await self.session.flush()
|
|
return instance
|
|
|
|
async def delete(self, id: uuid.UUID) -> bool:
|
|
instance = await self.get_by_id(id)
|
|
if instance is None:
|
|
return False
|
|
await self.session.delete(instance)
|
|
await self.session.flush()
|
|
return True
|