Private
Public Access
is_archived was previously only exposed on the admin-only AdminRoom schema and checked in one place (excluding a room from Browse rooms) -- for anyone already a member it was a complete no-op: still in their sidebar, still fully postable, no indication anywhere it was archived. Expose is_archived on the regular RoomRead/MyRoomItem schemas, drop archived rooms from the sidebar list (while keeping them directly reachable via URL so history stays readable), and reject new messages in one -- both the WS "message" handler and incoming webhooks -- with a clear "archived and read-only" response instead of silently no-op'ing or a confusing membership error. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
108 lines
3.0 KiB
Python
108 lines
3.0 KiB
Python
import uuid
|
|
from datetime import datetime
|
|
from typing import Literal
|
|
|
|
from pydantic import BaseModel, ConfigDict, Field
|
|
|
|
from app.models import RoomRole
|
|
|
|
|
|
class RoomCreate(BaseModel):
|
|
name: str = Field(min_length=1, max_length=100)
|
|
description: str | None = Field(default=None, max_length=2000)
|
|
is_private: bool = False
|
|
|
|
|
|
class RoomUpdate(BaseModel):
|
|
name: str | None = Field(default=None, min_length=1, max_length=100)
|
|
description: str | None = Field(default=None, max_length=2000)
|
|
is_private: bool | None = None
|
|
|
|
|
|
class RoomRead(BaseModel):
|
|
model_config = ConfigDict(from_attributes=True)
|
|
|
|
id: uuid.UUID
|
|
name: str
|
|
description: str | None
|
|
is_private: bool
|
|
is_dm: bool
|
|
# #57: previously only exposed on the admin-only AdminRoom schema, so a
|
|
# member of an archived room had no way to even know it was archived --
|
|
# the flag was set server-side but had no effect on their own view of
|
|
# the room at all.
|
|
is_archived: bool
|
|
owner_id: uuid.UUID
|
|
created_at: datetime
|
|
|
|
|
|
class RoomListItem(RoomRead):
|
|
is_member: bool
|
|
|
|
|
|
class DmPartnerInfo(BaseModel):
|
|
user_id: uuid.UUID
|
|
username: str
|
|
display_name: str | None
|
|
avatar_filename: str | None
|
|
status: Literal["online", "offline"]
|
|
|
|
|
|
class MyRoomItem(RoomRead):
|
|
role: RoomRole
|
|
# Whether this room has a message newer than the caller's last_read_at --
|
|
# computed by the router/service, not a stored column on Room itself
|
|
# (it's inherently per-viewer, unlike everything else on RoomRead).
|
|
has_unread: bool
|
|
# Unread AND mentions this user specifically -- takes visual priority
|
|
# over has_unread in the sidebar (see RoomRow.tsx), not shown alongside
|
|
# it.
|
|
has_mention: bool
|
|
# #52: populated only when is_dm is true -- the *other* participant,
|
|
# precomputed here so the sidebar can render a DM row (their name +
|
|
# avatar, not this room's internal `name`) without a second fetch per
|
|
# row. None for a regular room.
|
|
dm_partner: DmPartnerInfo | None = None
|
|
|
|
|
|
class StartDmRequest(BaseModel):
|
|
other_user_id: uuid.UUID
|
|
|
|
|
|
class RoomMemberRead(BaseModel):
|
|
user_id: uuid.UUID
|
|
username: str
|
|
display_name: str | None
|
|
avatar_filename: str | None
|
|
role: RoomRole
|
|
joined_at: datetime
|
|
# "offline" whenever the user has set appear_offline, regardless of
|
|
# actual connection -- computed by the router (needs GlobalPresence),
|
|
# not derivable from the model alone.
|
|
status: Literal["online", "offline"]
|
|
|
|
|
|
class RoomMemberAdd(BaseModel):
|
|
user_id: uuid.UUID
|
|
|
|
|
|
class RoomMemberRoleUpdate(BaseModel):
|
|
role: RoomRole
|
|
|
|
|
|
class TransferOwnershipRequest(BaseModel):
|
|
new_owner_user_id: uuid.UUID
|
|
|
|
|
|
class RoomAttachmentRead(BaseModel):
|
|
id: uuid.UUID
|
|
kind: Literal["file", "image"]
|
|
# None for images -- MessageImage has no stored original filename,
|
|
# unlike MessageFile (see backend/app/models/message_image.py).
|
|
filename: str | None
|
|
content_type: str
|
|
size_bytes: int
|
|
uploaded_by: str
|
|
message_id: uuid.UUID
|
|
created_at: datetime
|