rpc.rs

   1mod connection_pool;
   2
   3use crate::api::{CloudflareIpCountryHeader, SystemIdHeader};
   4use crate::db::billing_subscription::SubscriptionKind;
   5use crate::llm::{AGENT_EXTENDED_TRIAL_FEATURE_FLAG, LlmTokenClaims};
   6use crate::{
   7    AppState, Error, Result, auth,
   8    db::{
   9        self, BufferId, Capability, Channel, ChannelId, ChannelRole, ChannelsForUser,
  10        CreatedChannelMessage, Database, InviteMemberResult, MembershipUpdated, MessageId,
  11        NotificationId, Project, ProjectId, RejoinedProject, RemoveChannelMemberResult, ReplicaId,
  12        RespondToChannelInvite, RoomId, ServerId, UpdatedChannelMessage, User, UserId,
  13    },
  14    executor::Executor,
  15};
  16use anyhow::{Context as _, anyhow, bail};
  17use async_tungstenite::tungstenite::{
  18    Message as TungsteniteMessage, protocol::CloseFrame as TungsteniteCloseFrame,
  19};
  20use axum::{
  21    Extension, Router, TypedHeader,
  22    body::Body,
  23    extract::{
  24        ConnectInfo, WebSocketUpgrade,
  25        ws::{CloseFrame as AxumCloseFrame, Message as AxumMessage},
  26    },
  27    headers::{Header, HeaderName},
  28    http::StatusCode,
  29    middleware,
  30    response::IntoResponse,
  31    routing::get,
  32};
  33use chrono::Utc;
  34use collections::{HashMap, HashSet};
  35pub use connection_pool::{ConnectionPool, ZedVersion};
  36use core::fmt::{self, Debug, Formatter};
  37use reqwest_client::ReqwestClient;
  38use rpc::proto::split_repository_update;
  39use supermaven_api::{CreateExternalUserRequest, SupermavenAdminApi};
  40use util::maybe;
  41
  42use futures::{
  43    FutureExt, SinkExt, StreamExt, TryStreamExt, channel::oneshot, future::BoxFuture,
  44    stream::FuturesUnordered,
  45};
  46use prometheus::{IntGauge, register_int_gauge};
  47use rpc::{
  48    Connection, ConnectionId, ErrorCode, ErrorCodeExt, ErrorExt, Peer, Receipt, TypedEnvelope,
  49    proto::{
  50        self, Ack, AnyTypedEnvelope, EntityMessage, EnvelopedMessage, LiveKitConnectionInfo,
  51        RequestMessage, ShareProject, UpdateChannelBufferCollaborators,
  52    },
  53};
  54use semantic_version::SemanticVersion;
  55use serde::{Serialize, Serializer};
  56use std::{
  57    any::TypeId,
  58    future::Future,
  59    marker::PhantomData,
  60    mem,
  61    net::SocketAddr,
  62    ops::{Deref, DerefMut},
  63    rc::Rc,
  64    sync::{
  65        Arc, OnceLock,
  66        atomic::{AtomicBool, Ordering::SeqCst},
  67    },
  68    time::{Duration, Instant},
  69};
  70use time::OffsetDateTime;
  71use tokio::sync::{MutexGuard, Semaphore, watch};
  72use tower::ServiceBuilder;
  73use tracing::{
  74    Instrument,
  75    field::{self},
  76    info_span, instrument,
  77};
  78
  79pub const RECONNECT_TIMEOUT: Duration = Duration::from_secs(30);
  80
  81// kubernetes gives terminated pods 10s to shutdown gracefully. After they're gone, we can clean up old resources.
  82pub const CLEANUP_TIMEOUT: Duration = Duration::from_secs(15);
  83
  84const MESSAGE_COUNT_PER_PAGE: usize = 100;
  85const MAX_MESSAGE_LEN: usize = 1024;
  86const NOTIFICATION_COUNT_PER_PAGE: usize = 50;
  87
  88type MessageHandler =
  89    Box<dyn Send + Sync + Fn(Box<dyn AnyTypedEnvelope>, Session) -> BoxFuture<'static, ()>>;
  90
  91struct Response<R> {
  92    peer: Arc<Peer>,
  93    receipt: Receipt<R>,
  94    responded: Arc<AtomicBool>,
  95}
  96
  97impl<R: RequestMessage> Response<R> {
  98    fn send(self, payload: R::Response) -> Result<()> {
  99        self.responded.store(true, SeqCst);
 100        self.peer.respond(self.receipt, payload)?;
 101        Ok(())
 102    }
 103}
 104
 105#[derive(Clone, Debug)]
 106pub enum Principal {
 107    User(User),
 108    Impersonated { user: User, admin: User },
 109}
 110
 111impl Principal {
 112    fn update_span(&self, span: &tracing::Span) {
 113        match &self {
 114            Principal::User(user) => {
 115                span.record("user_id", user.id.0);
 116                span.record("login", &user.github_login);
 117            }
 118            Principal::Impersonated { user, admin } => {
 119                span.record("user_id", user.id.0);
 120                span.record("login", &user.github_login);
 121                span.record("impersonator", &admin.github_login);
 122            }
 123        }
 124    }
 125}
 126
 127#[derive(Clone)]
 128struct Session {
 129    principal: Principal,
 130    connection_id: ConnectionId,
 131    db: Arc<tokio::sync::Mutex<DbHandle>>,
 132    peer: Arc<Peer>,
 133    connection_pool: Arc<parking_lot::Mutex<ConnectionPool>>,
 134    app_state: Arc<AppState>,
 135    supermaven_client: Option<Arc<SupermavenAdminApi>>,
 136    /// The GeoIP country code for the user.
 137    #[allow(unused)]
 138    geoip_country_code: Option<String>,
 139    system_id: Option<String>,
 140    _executor: Executor,
 141}
 142
 143impl Session {
 144    async fn db(&self) -> tokio::sync::MutexGuard<DbHandle> {
 145        #[cfg(test)]
 146        tokio::task::yield_now().await;
 147        let guard = self.db.lock().await;
 148        #[cfg(test)]
 149        tokio::task::yield_now().await;
 150        guard
 151    }
 152
 153    async fn connection_pool(&self) -> ConnectionPoolGuard<'_> {
 154        #[cfg(test)]
 155        tokio::task::yield_now().await;
 156        let guard = self.connection_pool.lock();
 157        ConnectionPoolGuard {
 158            guard,
 159            _not_send: PhantomData,
 160        }
 161    }
 162
 163    fn is_staff(&self) -> bool {
 164        match &self.principal {
 165            Principal::User(user) => user.admin,
 166            Principal::Impersonated { .. } => true,
 167        }
 168    }
 169
 170    pub async fn has_llm_subscription(
 171        &self,
 172        db: &MutexGuard<'_, DbHandle>,
 173    ) -> anyhow::Result<bool> {
 174        if self.is_staff() {
 175            return Ok(true);
 176        }
 177
 178        let user_id = self.user_id();
 179
 180        Ok(db.has_active_billing_subscription(user_id).await?)
 181    }
 182
 183    pub async fn current_plan(&self, db: &MutexGuard<'_, DbHandle>) -> anyhow::Result<proto::Plan> {
 184        let user_id = self.user_id();
 185
 186        let subscription = db.get_active_billing_subscription(user_id).await?;
 187        let subscription_kind = subscription.and_then(|subscription| subscription.kind);
 188
 189        let plan = if let Some(subscription_kind) = subscription_kind {
 190            match subscription_kind {
 191                SubscriptionKind::ZedPro => proto::Plan::ZedPro,
 192                SubscriptionKind::ZedProTrial => proto::Plan::ZedProTrial,
 193                SubscriptionKind::ZedFree => proto::Plan::Free,
 194            }
 195        } else {
 196            proto::Plan::Free
 197        };
 198
 199        Ok(plan)
 200    }
 201
 202    fn user_id(&self) -> UserId {
 203        match &self.principal {
 204            Principal::User(user) => user.id,
 205            Principal::Impersonated { user, .. } => user.id,
 206        }
 207    }
 208
 209    pub fn email(&self) -> Option<String> {
 210        match &self.principal {
 211            Principal::User(user) => user.email_address.clone(),
 212            Principal::Impersonated { user, .. } => user.email_address.clone(),
 213        }
 214    }
 215}
 216
 217impl Debug for Session {
 218    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
 219        let mut result = f.debug_struct("Session");
 220        match &self.principal {
 221            Principal::User(user) => {
 222                result.field("user", &user.github_login);
 223            }
 224            Principal::Impersonated { user, admin } => {
 225                result.field("user", &user.github_login);
 226                result.field("impersonator", &admin.github_login);
 227            }
 228        }
 229        result.field("connection_id", &self.connection_id).finish()
 230    }
 231}
 232
 233struct DbHandle(Arc<Database>);
 234
 235impl Deref for DbHandle {
 236    type Target = Database;
 237
 238    fn deref(&self) -> &Self::Target {
 239        self.0.as_ref()
 240    }
 241}
 242
 243pub struct Server {
 244    id: parking_lot::Mutex<ServerId>,
 245    peer: Arc<Peer>,
 246    pub(crate) connection_pool: Arc<parking_lot::Mutex<ConnectionPool>>,
 247    app_state: Arc<AppState>,
 248    handlers: HashMap<TypeId, MessageHandler>,
 249    teardown: watch::Sender<bool>,
 250}
 251
 252pub(crate) struct ConnectionPoolGuard<'a> {
 253    guard: parking_lot::MutexGuard<'a, ConnectionPool>,
 254    _not_send: PhantomData<Rc<()>>,
 255}
 256
 257#[derive(Serialize)]
 258pub struct ServerSnapshot<'a> {
 259    peer: &'a Peer,
 260    #[serde(serialize_with = "serialize_deref")]
 261    connection_pool: ConnectionPoolGuard<'a>,
 262}
 263
 264pub fn serialize_deref<S, T, U>(value: &T, serializer: S) -> Result<S::Ok, S::Error>
 265where
 266    S: Serializer,
 267    T: Deref<Target = U>,
 268    U: Serialize,
 269{
 270    Serialize::serialize(value.deref(), serializer)
 271}
 272
 273impl Server {
 274    pub fn new(id: ServerId, app_state: Arc<AppState>) -> Arc<Self> {
 275        let mut server = Self {
 276            id: parking_lot::Mutex::new(id),
 277            peer: Peer::new(id.0 as u32),
 278            app_state: app_state.clone(),
 279            connection_pool: Default::default(),
 280            handlers: Default::default(),
 281            teardown: watch::channel(false).0,
 282        };
 283
 284        server
 285            .add_request_handler(ping)
 286            .add_request_handler(create_room)
 287            .add_request_handler(join_room)
 288            .add_request_handler(rejoin_room)
 289            .add_request_handler(leave_room)
 290            .add_request_handler(set_room_participant_role)
 291            .add_request_handler(call)
 292            .add_request_handler(cancel_call)
 293            .add_message_handler(decline_call)
 294            .add_request_handler(update_participant_location)
 295            .add_request_handler(share_project)
 296            .add_message_handler(unshare_project)
 297            .add_request_handler(join_project)
 298            .add_message_handler(leave_project)
 299            .add_request_handler(update_project)
 300            .add_request_handler(update_worktree)
 301            .add_request_handler(update_repository)
 302            .add_request_handler(remove_repository)
 303            .add_message_handler(start_language_server)
 304            .add_message_handler(update_language_server)
 305            .add_message_handler(update_diagnostic_summary)
 306            .add_message_handler(update_worktree_settings)
 307            .add_request_handler(forward_read_only_project_request::<proto::GetHover>)
 308            .add_request_handler(forward_read_only_project_request::<proto::GetDefinition>)
 309            .add_request_handler(forward_read_only_project_request::<proto::GetTypeDefinition>)
 310            .add_request_handler(forward_read_only_project_request::<proto::GetReferences>)
 311            .add_request_handler(forward_find_search_candidates_request)
 312            .add_request_handler(forward_read_only_project_request::<proto::GetDocumentHighlights>)
 313            .add_request_handler(forward_read_only_project_request::<proto::GetDocumentSymbols>)
 314            .add_request_handler(forward_read_only_project_request::<proto::GetProjectSymbols>)
 315            .add_request_handler(forward_read_only_project_request::<proto::OpenBufferForSymbol>)
 316            .add_request_handler(forward_read_only_project_request::<proto::OpenBufferById>)
 317            .add_request_handler(forward_read_only_project_request::<proto::SynchronizeBuffers>)
 318            .add_request_handler(forward_read_only_project_request::<proto::InlayHints>)
 319            .add_request_handler(forward_read_only_project_request::<proto::ResolveInlayHint>)
 320            .add_request_handler(forward_mutating_project_request::<proto::GetCodeLens>)
 321            .add_request_handler(forward_read_only_project_request::<proto::OpenBufferByPath>)
 322            .add_request_handler(forward_read_only_project_request::<proto::GitGetBranches>)
 323            .add_request_handler(forward_read_only_project_request::<proto::OpenUnstagedDiff>)
 324            .add_request_handler(forward_read_only_project_request::<proto::OpenUncommittedDiff>)
 325            .add_request_handler(forward_read_only_project_request::<proto::LspExtExpandMacro>)
 326            .add_request_handler(forward_read_only_project_request::<proto::LspExtOpenDocs>)
 327            .add_request_handler(forward_mutating_project_request::<proto::LspExtRunnables>)
 328            .add_request_handler(
 329                forward_read_only_project_request::<proto::LspExtSwitchSourceHeader>,
 330            )
 331            .add_request_handler(
 332                forward_read_only_project_request::<proto::LanguageServerIdForName>,
 333            )
 334            .add_request_handler(
 335                forward_mutating_project_request::<proto::RegisterBufferWithLanguageServers>,
 336            )
 337            .add_request_handler(forward_mutating_project_request::<proto::UpdateGitBranch>)
 338            .add_request_handler(forward_mutating_project_request::<proto::GetCompletions>)
 339            .add_request_handler(
 340                forward_mutating_project_request::<proto::ApplyCompletionAdditionalEdits>,
 341            )
 342            .add_request_handler(forward_mutating_project_request::<proto::OpenNewBuffer>)
 343            .add_request_handler(
 344                forward_mutating_project_request::<proto::ResolveCompletionDocumentation>,
 345            )
 346            .add_request_handler(forward_mutating_project_request::<proto::GetCodeActions>)
 347            .add_request_handler(forward_mutating_project_request::<proto::ApplyCodeAction>)
 348            .add_request_handler(forward_mutating_project_request::<proto::PrepareRename>)
 349            .add_request_handler(forward_mutating_project_request::<proto::PerformRename>)
 350            .add_request_handler(forward_mutating_project_request::<proto::ReloadBuffers>)
 351            .add_request_handler(forward_mutating_project_request::<proto::ApplyCodeActionKind>)
 352            .add_request_handler(forward_mutating_project_request::<proto::FormatBuffers>)
 353            .add_request_handler(forward_mutating_project_request::<proto::CreateProjectEntry>)
 354            .add_request_handler(forward_mutating_project_request::<proto::RenameProjectEntry>)
 355            .add_request_handler(forward_mutating_project_request::<proto::CopyProjectEntry>)
 356            .add_request_handler(forward_mutating_project_request::<proto::DeleteProjectEntry>)
 357            .add_request_handler(forward_mutating_project_request::<proto::ExpandProjectEntry>)
 358            .add_request_handler(
 359                forward_mutating_project_request::<proto::ExpandAllForProjectEntry>,
 360            )
 361            .add_request_handler(forward_mutating_project_request::<proto::OnTypeFormatting>)
 362            .add_request_handler(forward_mutating_project_request::<proto::SaveBuffer>)
 363            .add_request_handler(forward_mutating_project_request::<proto::BlameBuffer>)
 364            .add_request_handler(forward_mutating_project_request::<proto::MultiLspQuery>)
 365            .add_request_handler(forward_mutating_project_request::<proto::RestartLanguageServers>)
 366            .add_request_handler(forward_mutating_project_request::<proto::StopLanguageServers>)
 367            .add_request_handler(forward_mutating_project_request::<proto::LinkedEditingRange>)
 368            .add_message_handler(create_buffer_for_peer)
 369            .add_request_handler(update_buffer)
 370            .add_message_handler(broadcast_project_message_from_host::<proto::RefreshInlayHints>)
 371            .add_message_handler(broadcast_project_message_from_host::<proto::RefreshCodeLens>)
 372            .add_message_handler(broadcast_project_message_from_host::<proto::UpdateBufferFile>)
 373            .add_message_handler(broadcast_project_message_from_host::<proto::BufferReloaded>)
 374            .add_message_handler(broadcast_project_message_from_host::<proto::BufferSaved>)
 375            .add_message_handler(broadcast_project_message_from_host::<proto::UpdateDiffBases>)
 376            .add_request_handler(get_users)
 377            .add_request_handler(fuzzy_search_users)
 378            .add_request_handler(request_contact)
 379            .add_request_handler(remove_contact)
 380            .add_request_handler(respond_to_contact_request)
 381            .add_message_handler(subscribe_to_channels)
 382            .add_request_handler(create_channel)
 383            .add_request_handler(delete_channel)
 384            .add_request_handler(invite_channel_member)
 385            .add_request_handler(remove_channel_member)
 386            .add_request_handler(set_channel_member_role)
 387            .add_request_handler(set_channel_visibility)
 388            .add_request_handler(rename_channel)
 389            .add_request_handler(join_channel_buffer)
 390            .add_request_handler(leave_channel_buffer)
 391            .add_message_handler(update_channel_buffer)
 392            .add_request_handler(rejoin_channel_buffers)
 393            .add_request_handler(get_channel_members)
 394            .add_request_handler(respond_to_channel_invite)
 395            .add_request_handler(join_channel)
 396            .add_request_handler(join_channel_chat)
 397            .add_message_handler(leave_channel_chat)
 398            .add_request_handler(send_channel_message)
 399            .add_request_handler(remove_channel_message)
 400            .add_request_handler(update_channel_message)
 401            .add_request_handler(get_channel_messages)
 402            .add_request_handler(get_channel_messages_by_id)
 403            .add_request_handler(get_notifications)
 404            .add_request_handler(mark_notification_as_read)
 405            .add_request_handler(move_channel)
 406            .add_request_handler(follow)
 407            .add_message_handler(unfollow)
 408            .add_message_handler(update_followers)
 409            .add_request_handler(get_private_user_info)
 410            .add_request_handler(get_llm_api_token)
 411            .add_request_handler(accept_terms_of_service)
 412            .add_message_handler(acknowledge_channel_message)
 413            .add_message_handler(acknowledge_buffer_version)
 414            .add_request_handler(get_supermaven_api_key)
 415            .add_request_handler(forward_mutating_project_request::<proto::OpenContext>)
 416            .add_request_handler(forward_mutating_project_request::<proto::CreateContext>)
 417            .add_request_handler(forward_mutating_project_request::<proto::SynchronizeContexts>)
 418            .add_request_handler(forward_mutating_project_request::<proto::Stage>)
 419            .add_request_handler(forward_mutating_project_request::<proto::Unstage>)
 420            .add_request_handler(forward_mutating_project_request::<proto::Commit>)
 421            .add_request_handler(forward_mutating_project_request::<proto::GitInit>)
 422            .add_request_handler(forward_read_only_project_request::<proto::GetRemotes>)
 423            .add_request_handler(forward_read_only_project_request::<proto::GitShow>)
 424            .add_request_handler(forward_read_only_project_request::<proto::LoadCommitDiff>)
 425            .add_request_handler(forward_read_only_project_request::<proto::GitReset>)
 426            .add_request_handler(forward_read_only_project_request::<proto::GitCheckoutFiles>)
 427            .add_request_handler(forward_mutating_project_request::<proto::SetIndexText>)
 428            .add_request_handler(forward_mutating_project_request::<proto::ToggleBreakpoint>)
 429            .add_message_handler(broadcast_project_message_from_host::<proto::BreakpointsForFile>)
 430            .add_request_handler(forward_mutating_project_request::<proto::OpenCommitMessageBuffer>)
 431            .add_request_handler(forward_mutating_project_request::<proto::GitDiff>)
 432            .add_request_handler(forward_mutating_project_request::<proto::GitCreateBranch>)
 433            .add_request_handler(forward_mutating_project_request::<proto::GitChangeBranch>)
 434            .add_request_handler(forward_mutating_project_request::<proto::CheckForPushedCommits>)
 435            .add_message_handler(broadcast_project_message_from_host::<proto::AdvertiseContexts>)
 436            .add_message_handler(update_context);
 437
 438        Arc::new(server)
 439    }
 440
 441    pub async fn start(&self) -> Result<()> {
 442        let server_id = *self.id.lock();
 443        let app_state = self.app_state.clone();
 444        let peer = self.peer.clone();
 445        let timeout = self.app_state.executor.sleep(CLEANUP_TIMEOUT);
 446        let pool = self.connection_pool.clone();
 447        let livekit_client = self.app_state.livekit_client.clone();
 448
 449        let span = info_span!("start server");
 450        self.app_state.executor.spawn_detached(
 451            async move {
 452                tracing::info!("waiting for cleanup timeout");
 453                timeout.await;
 454                tracing::info!("cleanup timeout expired, retrieving stale rooms");
 455                if let Some((room_ids, channel_ids)) = app_state
 456                    .db
 457                    .stale_server_resource_ids(&app_state.config.zed_environment, server_id)
 458                    .await
 459                    .trace_err()
 460                {
 461                    tracing::info!(stale_room_count = room_ids.len(), "retrieved stale rooms");
 462                    tracing::info!(
 463                        stale_channel_buffer_count = channel_ids.len(),
 464                        "retrieved stale channel buffers"
 465                    );
 466
 467                    for channel_id in channel_ids {
 468                        if let Some(refreshed_channel_buffer) = app_state
 469                            .db
 470                            .clear_stale_channel_buffer_collaborators(channel_id, server_id)
 471                            .await
 472                            .trace_err()
 473                        {
 474                            for connection_id in refreshed_channel_buffer.connection_ids {
 475                                peer.send(
 476                                    connection_id,
 477                                    proto::UpdateChannelBufferCollaborators {
 478                                        channel_id: channel_id.to_proto(),
 479                                        collaborators: refreshed_channel_buffer
 480                                            .collaborators
 481                                            .clone(),
 482                                    },
 483                                )
 484                                .trace_err();
 485                            }
 486                        }
 487                    }
 488
 489                    for room_id in room_ids {
 490                        let mut contacts_to_update = HashSet::default();
 491                        let mut canceled_calls_to_user_ids = Vec::new();
 492                        let mut livekit_room = String::new();
 493                        let mut delete_livekit_room = false;
 494
 495                        if let Some(mut refreshed_room) = app_state
 496                            .db
 497                            .clear_stale_room_participants(room_id, server_id)
 498                            .await
 499                            .trace_err()
 500                        {
 501                            tracing::info!(
 502                                room_id = room_id.0,
 503                                new_participant_count = refreshed_room.room.participants.len(),
 504                                "refreshed room"
 505                            );
 506                            room_updated(&refreshed_room.room, &peer);
 507                            if let Some(channel) = refreshed_room.channel.as_ref() {
 508                                channel_updated(channel, &refreshed_room.room, &peer, &pool.lock());
 509                            }
 510                            contacts_to_update
 511                                .extend(refreshed_room.stale_participant_user_ids.iter().copied());
 512                            contacts_to_update
 513                                .extend(refreshed_room.canceled_calls_to_user_ids.iter().copied());
 514                            canceled_calls_to_user_ids =
 515                                mem::take(&mut refreshed_room.canceled_calls_to_user_ids);
 516                            livekit_room = mem::take(&mut refreshed_room.room.livekit_room);
 517                            delete_livekit_room = refreshed_room.room.participants.is_empty();
 518                        }
 519
 520                        {
 521                            let pool = pool.lock();
 522                            for canceled_user_id in canceled_calls_to_user_ids {
 523                                for connection_id in pool.user_connection_ids(canceled_user_id) {
 524                                    peer.send(
 525                                        connection_id,
 526                                        proto::CallCanceled {
 527                                            room_id: room_id.to_proto(),
 528                                        },
 529                                    )
 530                                    .trace_err();
 531                                }
 532                            }
 533                        }
 534
 535                        for user_id in contacts_to_update {
 536                            let busy = app_state.db.is_user_busy(user_id).await.trace_err();
 537                            let contacts = app_state.db.get_contacts(user_id).await.trace_err();
 538                            if let Some((busy, contacts)) = busy.zip(contacts) {
 539                                let pool = pool.lock();
 540                                let updated_contact = contact_for_user(user_id, busy, &pool);
 541                                for contact in contacts {
 542                                    if let db::Contact::Accepted {
 543                                        user_id: contact_user_id,
 544                                        ..
 545                                    } = contact
 546                                    {
 547                                        for contact_conn_id in
 548                                            pool.user_connection_ids(contact_user_id)
 549                                        {
 550                                            peer.send(
 551                                                contact_conn_id,
 552                                                proto::UpdateContacts {
 553                                                    contacts: vec![updated_contact.clone()],
 554                                                    remove_contacts: Default::default(),
 555                                                    incoming_requests: Default::default(),
 556                                                    remove_incoming_requests: Default::default(),
 557                                                    outgoing_requests: Default::default(),
 558                                                    remove_outgoing_requests: Default::default(),
 559                                                },
 560                                            )
 561                                            .trace_err();
 562                                        }
 563                                    }
 564                                }
 565                            }
 566                        }
 567
 568                        if let Some(live_kit) = livekit_client.as_ref() {
 569                            if delete_livekit_room {
 570                                live_kit.delete_room(livekit_room).await.trace_err();
 571                            }
 572                        }
 573                    }
 574                }
 575
 576                app_state
 577                    .db
 578                    .delete_stale_servers(&app_state.config.zed_environment, server_id)
 579                    .await
 580                    .trace_err();
 581            }
 582            .instrument(span),
 583        );
 584        Ok(())
 585    }
 586
 587    pub fn teardown(&self) {
 588        self.peer.teardown();
 589        self.connection_pool.lock().reset();
 590        let _ = self.teardown.send(true);
 591    }
 592
 593    #[cfg(test)]
 594    pub fn reset(&self, id: ServerId) {
 595        self.teardown();
 596        *self.id.lock() = id;
 597        self.peer.reset(id.0 as u32);
 598        let _ = self.teardown.send(false);
 599    }
 600
 601    #[cfg(test)]
 602    pub fn id(&self) -> ServerId {
 603        *self.id.lock()
 604    }
 605
 606    fn add_handler<F, Fut, M>(&mut self, handler: F) -> &mut Self
 607    where
 608        F: 'static + Send + Sync + Fn(TypedEnvelope<M>, Session) -> Fut,
 609        Fut: 'static + Send + Future<Output = Result<()>>,
 610        M: EnvelopedMessage,
 611    {
 612        let prev_handler = self.handlers.insert(
 613            TypeId::of::<M>(),
 614            Box::new(move |envelope, session| {
 615                let envelope = envelope.into_any().downcast::<TypedEnvelope<M>>().unwrap();
 616                let received_at = envelope.received_at;
 617                tracing::info!("message received");
 618                let start_time = Instant::now();
 619                let future = (handler)(*envelope, session);
 620                async move {
 621                    let result = future.await;
 622                    let total_duration_ms = received_at.elapsed().as_micros() as f64 / 1000.0;
 623                    let processing_duration_ms = start_time.elapsed().as_micros() as f64 / 1000.0;
 624                    let queue_duration_ms = total_duration_ms - processing_duration_ms;
 625                    let payload_type = M::NAME;
 626
 627                    match result {
 628                        Err(error) => {
 629                            tracing::error!(
 630                                ?error,
 631                                total_duration_ms,
 632                                processing_duration_ms,
 633                                queue_duration_ms,
 634                                payload_type,
 635                                "error handling message"
 636                            )
 637                        }
 638                        Ok(()) => tracing::info!(
 639                            total_duration_ms,
 640                            processing_duration_ms,
 641                            queue_duration_ms,
 642                            "finished handling message"
 643                        ),
 644                    }
 645                }
 646                .boxed()
 647            }),
 648        );
 649        if prev_handler.is_some() {
 650            panic!("registered a handler for the same message twice");
 651        }
 652        self
 653    }
 654
 655    fn add_message_handler<F, Fut, M>(&mut self, handler: F) -> &mut Self
 656    where
 657        F: 'static + Send + Sync + Fn(M, Session) -> Fut,
 658        Fut: 'static + Send + Future<Output = Result<()>>,
 659        M: EnvelopedMessage,
 660    {
 661        self.add_handler(move |envelope, session| handler(envelope.payload, session));
 662        self
 663    }
 664
 665    fn add_request_handler<F, Fut, M>(&mut self, handler: F) -> &mut Self
 666    where
 667        F: 'static + Send + Sync + Fn(M, Response<M>, Session) -> Fut,
 668        Fut: Send + Future<Output = Result<()>>,
 669        M: RequestMessage,
 670    {
 671        let handler = Arc::new(handler);
 672        self.add_handler(move |envelope, session| {
 673            let receipt = envelope.receipt();
 674            let handler = handler.clone();
 675            async move {
 676                let peer = session.peer.clone();
 677                let responded = Arc::new(AtomicBool::default());
 678                let response = Response {
 679                    peer: peer.clone(),
 680                    responded: responded.clone(),
 681                    receipt,
 682                };
 683                match (handler)(envelope.payload, response, session).await {
 684                    Ok(()) => {
 685                        if responded.load(std::sync::atomic::Ordering::SeqCst) {
 686                            Ok(())
 687                        } else {
 688                            Err(anyhow!("handler did not send a response"))?
 689                        }
 690                    }
 691                    Err(error) => {
 692                        let proto_err = match &error {
 693                            Error::Internal(err) => err.to_proto(),
 694                            _ => ErrorCode::Internal.message(format!("{}", error)).to_proto(),
 695                        };
 696                        peer.respond_with_error(receipt, proto_err)?;
 697                        Err(error)
 698                    }
 699                }
 700            }
 701        })
 702    }
 703
 704    pub fn handle_connection(
 705        self: &Arc<Self>,
 706        connection: Connection,
 707        address: String,
 708        principal: Principal,
 709        zed_version: ZedVersion,
 710        geoip_country_code: Option<String>,
 711        system_id: Option<String>,
 712        send_connection_id: Option<oneshot::Sender<ConnectionId>>,
 713        executor: Executor,
 714    ) -> impl Future<Output = ()> + use<> {
 715        let this = self.clone();
 716        let span = info_span!("handle connection", %address,
 717            connection_id=field::Empty,
 718            user_id=field::Empty,
 719            login=field::Empty,
 720            impersonator=field::Empty,
 721            geoip_country_code=field::Empty
 722        );
 723        principal.update_span(&span);
 724        if let Some(country_code) = geoip_country_code.as_ref() {
 725            span.record("geoip_country_code", country_code);
 726        }
 727
 728        let mut teardown = self.teardown.subscribe();
 729        async move {
 730            if *teardown.borrow() {
 731                tracing::error!("server is tearing down");
 732                return
 733            }
 734            let (connection_id, handle_io, mut incoming_rx) = this
 735                .peer
 736                .add_connection(connection, {
 737                    let executor = executor.clone();
 738                    move |duration| executor.sleep(duration)
 739                });
 740            tracing::Span::current().record("connection_id", format!("{}", connection_id));
 741
 742            tracing::info!("connection opened");
 743
 744            let user_agent = format!("Zed Server/{}", env!("CARGO_PKG_VERSION"));
 745            let http_client = match ReqwestClient::user_agent(&user_agent) {
 746                Ok(http_client) => Arc::new(http_client),
 747                Err(error) => {
 748                    tracing::error!(?error, "failed to create HTTP client");
 749                    return;
 750                }
 751            };
 752
 753            let supermaven_client = this.app_state.config.supermaven_admin_api_key.clone().map(|supermaven_admin_api_key| Arc::new(SupermavenAdminApi::new(
 754                    supermaven_admin_api_key.to_string(),
 755                    http_client.clone(),
 756                )));
 757
 758            let session = Session {
 759                principal: principal.clone(),
 760                connection_id,
 761                db: Arc::new(tokio::sync::Mutex::new(DbHandle(this.app_state.db.clone()))),
 762                peer: this.peer.clone(),
 763                connection_pool: this.connection_pool.clone(),
 764                app_state: this.app_state.clone(),
 765                geoip_country_code,
 766                system_id,
 767                _executor: executor.clone(),
 768                supermaven_client,
 769            };
 770
 771            if let Err(error) = this.send_initial_client_update(connection_id, &principal, zed_version, send_connection_id, &session).await {
 772                tracing::error!(?error, "failed to send initial client update");
 773                return;
 774            }
 775
 776            let handle_io = handle_io.fuse();
 777            futures::pin_mut!(handle_io);
 778
 779            // Handlers for foreground messages are pushed into the following `FuturesUnordered`.
 780            // This prevents deadlocks when e.g., client A performs a request to client B and
 781            // client B performs a request to client A. If both clients stop processing further
 782            // messages until their respective request completes, they won't have a chance to
 783            // respond to the other client's request and cause a deadlock.
 784            //
 785            // This arrangement ensures we will attempt to process earlier messages first, but fall
 786            // back to processing messages arrived later in the spirit of making progress.
 787            let mut foreground_message_handlers = FuturesUnordered::new();
 788            let concurrent_handlers = Arc::new(Semaphore::new(256));
 789            loop {
 790                let next_message = async {
 791                    let permit = concurrent_handlers.clone().acquire_owned().await.unwrap();
 792                    let message = incoming_rx.next().await;
 793                    (permit, message)
 794                }.fuse();
 795                futures::pin_mut!(next_message);
 796                futures::select_biased! {
 797                    _ = teardown.changed().fuse() => return,
 798                    result = handle_io => {
 799                        if let Err(error) = result {
 800                            tracing::error!(?error, "error handling I/O");
 801                        }
 802                        break;
 803                    }
 804                    _ = foreground_message_handlers.next() => {}
 805                    next_message = next_message => {
 806                        let (permit, message) = next_message;
 807                        if let Some(message) = message {
 808                            let type_name = message.payload_type_name();
 809                            // note: we copy all the fields from the parent span so we can query them in the logs.
 810                            // (https://github.com/tokio-rs/tracing/issues/2670).
 811                            let span = tracing::info_span!("receive message", %connection_id, %address, type_name,
 812                                user_id=field::Empty,
 813                                login=field::Empty,
 814                                impersonator=field::Empty,
 815                            );
 816                            principal.update_span(&span);
 817                            let span_enter = span.enter();
 818                            if let Some(handler) = this.handlers.get(&message.payload_type_id()) {
 819                                let is_background = message.is_background();
 820                                let handle_message = (handler)(message, session.clone());
 821                                drop(span_enter);
 822
 823                                let handle_message = async move {
 824                                    handle_message.await;
 825                                    drop(permit);
 826                                }.instrument(span);
 827                                if is_background {
 828                                    executor.spawn_detached(handle_message);
 829                                } else {
 830                                    foreground_message_handlers.push(handle_message);
 831                                }
 832                            } else {
 833                                tracing::error!("no message handler");
 834                            }
 835                        } else {
 836                            tracing::info!("connection closed");
 837                            break;
 838                        }
 839                    }
 840                }
 841            }
 842
 843            drop(foreground_message_handlers);
 844            tracing::info!("signing out");
 845            if let Err(error) = connection_lost(session, teardown, executor).await {
 846                tracing::error!(?error, "error signing out");
 847            }
 848
 849        }.instrument(span)
 850    }
 851
 852    async fn send_initial_client_update(
 853        &self,
 854        connection_id: ConnectionId,
 855        principal: &Principal,
 856        zed_version: ZedVersion,
 857        mut send_connection_id: Option<oneshot::Sender<ConnectionId>>,
 858        session: &Session,
 859    ) -> Result<()> {
 860        self.peer.send(
 861            connection_id,
 862            proto::Hello {
 863                peer_id: Some(connection_id.into()),
 864            },
 865        )?;
 866        tracing::info!("sent hello message");
 867        if let Some(send_connection_id) = send_connection_id.take() {
 868            let _ = send_connection_id.send(connection_id);
 869        }
 870
 871        match principal {
 872            Principal::User(user) | Principal::Impersonated { user, admin: _ } => {
 873                if !user.connected_once {
 874                    self.peer.send(connection_id, proto::ShowContacts {})?;
 875                    self.app_state
 876                        .db
 877                        .set_user_connected_once(user.id, true)
 878                        .await?;
 879                }
 880
 881                update_user_plan(user.id, session).await?;
 882
 883                let contacts = self.app_state.db.get_contacts(user.id).await?;
 884
 885                {
 886                    let mut pool = self.connection_pool.lock();
 887                    pool.add_connection(connection_id, user.id, user.admin, zed_version);
 888                    self.peer.send(
 889                        connection_id,
 890                        build_initial_contacts_update(contacts, &pool),
 891                    )?;
 892                }
 893
 894                if should_auto_subscribe_to_channels(zed_version) {
 895                    subscribe_user_to_channels(user.id, session).await?;
 896                }
 897
 898                if let Some(incoming_call) =
 899                    self.app_state.db.incoming_call_for_user(user.id).await?
 900                {
 901                    self.peer.send(connection_id, incoming_call)?;
 902                }
 903
 904                update_user_contacts(user.id, session).await?;
 905            }
 906        }
 907
 908        Ok(())
 909    }
 910
 911    pub async fn invite_code_redeemed(
 912        self: &Arc<Self>,
 913        inviter_id: UserId,
 914        invitee_id: UserId,
 915    ) -> Result<()> {
 916        if let Some(user) = self.app_state.db.get_user_by_id(inviter_id).await? {
 917            if let Some(code) = &user.invite_code {
 918                let pool = self.connection_pool.lock();
 919                let invitee_contact = contact_for_user(invitee_id, false, &pool);
 920                for connection_id in pool.user_connection_ids(inviter_id) {
 921                    self.peer.send(
 922                        connection_id,
 923                        proto::UpdateContacts {
 924                            contacts: vec![invitee_contact.clone()],
 925                            ..Default::default()
 926                        },
 927                    )?;
 928                    self.peer.send(
 929                        connection_id,
 930                        proto::UpdateInviteInfo {
 931                            url: format!("{}{}", self.app_state.config.invite_link_prefix, &code),
 932                            count: user.invite_count as u32,
 933                        },
 934                    )?;
 935                }
 936            }
 937        }
 938        Ok(())
 939    }
 940
 941    pub async fn invite_count_updated(self: &Arc<Self>, user_id: UserId) -> Result<()> {
 942        if let Some(user) = self.app_state.db.get_user_by_id(user_id).await? {
 943            if let Some(invite_code) = &user.invite_code {
 944                let pool = self.connection_pool.lock();
 945                for connection_id in pool.user_connection_ids(user_id) {
 946                    self.peer.send(
 947                        connection_id,
 948                        proto::UpdateInviteInfo {
 949                            url: format!(
 950                                "{}{}",
 951                                self.app_state.config.invite_link_prefix, invite_code
 952                            ),
 953                            count: user.invite_count as u32,
 954                        },
 955                    )?;
 956                }
 957            }
 958        }
 959        Ok(())
 960    }
 961
 962    pub async fn refresh_llm_tokens_for_user(self: &Arc<Self>, user_id: UserId) {
 963        let pool = self.connection_pool.lock();
 964        for connection_id in pool.user_connection_ids(user_id) {
 965            self.peer
 966                .send(connection_id, proto::RefreshLlmToken {})
 967                .trace_err();
 968        }
 969    }
 970
 971    pub async fn snapshot(self: &Arc<Self>) -> ServerSnapshot {
 972        ServerSnapshot {
 973            connection_pool: ConnectionPoolGuard {
 974                guard: self.connection_pool.lock(),
 975                _not_send: PhantomData,
 976            },
 977            peer: &self.peer,
 978        }
 979    }
 980}
 981
 982impl Deref for ConnectionPoolGuard<'_> {
 983    type Target = ConnectionPool;
 984
 985    fn deref(&self) -> &Self::Target {
 986        &self.guard
 987    }
 988}
 989
 990impl DerefMut for ConnectionPoolGuard<'_> {
 991    fn deref_mut(&mut self) -> &mut Self::Target {
 992        &mut self.guard
 993    }
 994}
 995
 996impl Drop for ConnectionPoolGuard<'_> {
 997    fn drop(&mut self) {
 998        #[cfg(test)]
 999        self.check_invariants();
1000    }
1001}
1002
1003fn broadcast<F>(
1004    sender_id: Option<ConnectionId>,
1005    receiver_ids: impl IntoIterator<Item = ConnectionId>,
1006    mut f: F,
1007) where
1008    F: FnMut(ConnectionId) -> anyhow::Result<()>,
1009{
1010    for receiver_id in receiver_ids {
1011        if Some(receiver_id) != sender_id {
1012            if let Err(error) = f(receiver_id) {
1013                tracing::error!("failed to send to {:?} {}", receiver_id, error);
1014            }
1015        }
1016    }
1017}
1018
1019pub struct ProtocolVersion(u32);
1020
1021impl Header for ProtocolVersion {
1022    fn name() -> &'static HeaderName {
1023        static ZED_PROTOCOL_VERSION: OnceLock<HeaderName> = OnceLock::new();
1024        ZED_PROTOCOL_VERSION.get_or_init(|| HeaderName::from_static("x-zed-protocol-version"))
1025    }
1026
1027    fn decode<'i, I>(values: &mut I) -> Result<Self, axum::headers::Error>
1028    where
1029        Self: Sized,
1030        I: Iterator<Item = &'i axum::http::HeaderValue>,
1031    {
1032        let version = values
1033            .next()
1034            .ok_or_else(axum::headers::Error::invalid)?
1035            .to_str()
1036            .map_err(|_| axum::headers::Error::invalid())?
1037            .parse()
1038            .map_err(|_| axum::headers::Error::invalid())?;
1039        Ok(Self(version))
1040    }
1041
1042    fn encode<E: Extend<axum::http::HeaderValue>>(&self, values: &mut E) {
1043        values.extend([self.0.to_string().parse().unwrap()]);
1044    }
1045}
1046
1047pub struct AppVersionHeader(SemanticVersion);
1048impl Header for AppVersionHeader {
1049    fn name() -> &'static HeaderName {
1050        static ZED_APP_VERSION: OnceLock<HeaderName> = OnceLock::new();
1051        ZED_APP_VERSION.get_or_init(|| HeaderName::from_static("x-zed-app-version"))
1052    }
1053
1054    fn decode<'i, I>(values: &mut I) -> Result<Self, axum::headers::Error>
1055    where
1056        Self: Sized,
1057        I: Iterator<Item = &'i axum::http::HeaderValue>,
1058    {
1059        let version = values
1060            .next()
1061            .ok_or_else(axum::headers::Error::invalid)?
1062            .to_str()
1063            .map_err(|_| axum::headers::Error::invalid())?
1064            .parse()
1065            .map_err(|_| axum::headers::Error::invalid())?;
1066        Ok(Self(version))
1067    }
1068
1069    fn encode<E: Extend<axum::http::HeaderValue>>(&self, values: &mut E) {
1070        values.extend([self.0.to_string().parse().unwrap()]);
1071    }
1072}
1073
1074pub fn routes(server: Arc<Server>) -> Router<(), Body> {
1075    Router::new()
1076        .route("/rpc", get(handle_websocket_request))
1077        .layer(
1078            ServiceBuilder::new()
1079                .layer(Extension(server.app_state.clone()))
1080                .layer(middleware::from_fn(auth::validate_header)),
1081        )
1082        .route("/metrics", get(handle_metrics))
1083        .layer(Extension(server))
1084}
1085
1086pub async fn handle_websocket_request(
1087    TypedHeader(ProtocolVersion(protocol_version)): TypedHeader<ProtocolVersion>,
1088    app_version_header: Option<TypedHeader<AppVersionHeader>>,
1089    ConnectInfo(socket_address): ConnectInfo<SocketAddr>,
1090    Extension(server): Extension<Arc<Server>>,
1091    Extension(principal): Extension<Principal>,
1092    country_code_header: Option<TypedHeader<CloudflareIpCountryHeader>>,
1093    system_id_header: Option<TypedHeader<SystemIdHeader>>,
1094    ws: WebSocketUpgrade,
1095) -> axum::response::Response {
1096    if protocol_version != rpc::PROTOCOL_VERSION {
1097        return (
1098            StatusCode::UPGRADE_REQUIRED,
1099            "client must be upgraded".to_string(),
1100        )
1101            .into_response();
1102    }
1103
1104    let Some(version) = app_version_header.map(|header| ZedVersion(header.0.0)) else {
1105        return (
1106            StatusCode::UPGRADE_REQUIRED,
1107            "no version header found".to_string(),
1108        )
1109            .into_response();
1110    };
1111
1112    if !version.can_collaborate() {
1113        return (
1114            StatusCode::UPGRADE_REQUIRED,
1115            "client must be upgraded".to_string(),
1116        )
1117            .into_response();
1118    }
1119
1120    let socket_address = socket_address.to_string();
1121    ws.on_upgrade(move |socket| {
1122        let socket = socket
1123            .map_ok(to_tungstenite_message)
1124            .err_into()
1125            .with(|message| async move { to_axum_message(message) });
1126        let connection = Connection::new(Box::pin(socket));
1127        async move {
1128            server
1129                .handle_connection(
1130                    connection,
1131                    socket_address,
1132                    principal,
1133                    version,
1134                    country_code_header.map(|header| header.to_string()),
1135                    system_id_header.map(|header| header.to_string()),
1136                    None,
1137                    Executor::Production,
1138                )
1139                .await;
1140        }
1141    })
1142}
1143
1144pub async fn handle_metrics(Extension(server): Extension<Arc<Server>>) -> Result<String> {
1145    static CONNECTIONS_METRIC: OnceLock<IntGauge> = OnceLock::new();
1146    let connections_metric = CONNECTIONS_METRIC
1147        .get_or_init(|| register_int_gauge!("connections", "number of connections").unwrap());
1148
1149    let connections = server
1150        .connection_pool
1151        .lock()
1152        .connections()
1153        .filter(|connection| !connection.admin)
1154        .count();
1155    connections_metric.set(connections as _);
1156
1157    static SHARED_PROJECTS_METRIC: OnceLock<IntGauge> = OnceLock::new();
1158    let shared_projects_metric = SHARED_PROJECTS_METRIC.get_or_init(|| {
1159        register_int_gauge!(
1160            "shared_projects",
1161            "number of open projects with one or more guests"
1162        )
1163        .unwrap()
1164    });
1165
1166    let shared_projects = server.app_state.db.project_count_excluding_admins().await?;
1167    shared_projects_metric.set(shared_projects as _);
1168
1169    let encoder = prometheus::TextEncoder::new();
1170    let metric_families = prometheus::gather();
1171    let encoded_metrics = encoder
1172        .encode_to_string(&metric_families)
1173        .map_err(|err| anyhow!("{}", err))?;
1174    Ok(encoded_metrics)
1175}
1176
1177#[instrument(err, skip(executor))]
1178async fn connection_lost(
1179    session: Session,
1180    mut teardown: watch::Receiver<bool>,
1181    executor: Executor,
1182) -> Result<()> {
1183    session.peer.disconnect(session.connection_id);
1184    session
1185        .connection_pool()
1186        .await
1187        .remove_connection(session.connection_id)?;
1188
1189    session
1190        .db()
1191        .await
1192        .connection_lost(session.connection_id)
1193        .await
1194        .trace_err();
1195
1196    futures::select_biased! {
1197        _ = executor.sleep(RECONNECT_TIMEOUT).fuse() => {
1198
1199            log::info!("connection lost, removing all resources for user:{}, connection:{:?}", session.user_id(), session.connection_id);
1200            leave_room_for_session(&session, session.connection_id).await.trace_err();
1201            leave_channel_buffers_for_session(&session)
1202                .await
1203                .trace_err();
1204
1205            if !session
1206                .connection_pool()
1207                .await
1208                .is_user_online(session.user_id())
1209            {
1210                let db = session.db().await;
1211                if let Some(room) = db.decline_call(None, session.user_id()).await.trace_err().flatten() {
1212                    room_updated(&room, &session.peer);
1213                }
1214            }
1215
1216            update_user_contacts(session.user_id(), &session).await?;
1217        },
1218        _ = teardown.changed().fuse() => {}
1219    }
1220
1221    Ok(())
1222}
1223
1224/// Acknowledges a ping from a client, used to keep the connection alive.
1225async fn ping(_: proto::Ping, response: Response<proto::Ping>, _session: Session) -> Result<()> {
1226    response.send(proto::Ack {})?;
1227    Ok(())
1228}
1229
1230/// Creates a new room for calling (outside of channels)
1231async fn create_room(
1232    _request: proto::CreateRoom,
1233    response: Response<proto::CreateRoom>,
1234    session: Session,
1235) -> Result<()> {
1236    let livekit_room = nanoid::nanoid!(30);
1237
1238    let live_kit_connection_info = util::maybe!(async {
1239        let live_kit = session.app_state.livekit_client.as_ref();
1240        let live_kit = live_kit?;
1241        let user_id = session.user_id().to_string();
1242
1243        let token = live_kit
1244            .room_token(&livekit_room, &user_id.to_string())
1245            .trace_err()?;
1246
1247        Some(proto::LiveKitConnectionInfo {
1248            server_url: live_kit.url().into(),
1249            token,
1250            can_publish: true,
1251        })
1252    })
1253    .await;
1254
1255    let room = session
1256        .db()
1257        .await
1258        .create_room(session.user_id(), session.connection_id, &livekit_room)
1259        .await?;
1260
1261    response.send(proto::CreateRoomResponse {
1262        room: Some(room.clone()),
1263        live_kit_connection_info,
1264    })?;
1265
1266    update_user_contacts(session.user_id(), &session).await?;
1267    Ok(())
1268}
1269
1270/// Join a room from an invitation. Equivalent to joining a channel if there is one.
1271async fn join_room(
1272    request: proto::JoinRoom,
1273    response: Response<proto::JoinRoom>,
1274    session: Session,
1275) -> Result<()> {
1276    let room_id = RoomId::from_proto(request.id);
1277
1278    let channel_id = session.db().await.channel_id_for_room(room_id).await?;
1279
1280    if let Some(channel_id) = channel_id {
1281        return join_channel_internal(channel_id, Box::new(response), session).await;
1282    }
1283
1284    let joined_room = {
1285        let room = session
1286            .db()
1287            .await
1288            .join_room(room_id, session.user_id(), session.connection_id)
1289            .await?;
1290        room_updated(&room.room, &session.peer);
1291        room.into_inner()
1292    };
1293
1294    for connection_id in session
1295        .connection_pool()
1296        .await
1297        .user_connection_ids(session.user_id())
1298    {
1299        session
1300            .peer
1301            .send(
1302                connection_id,
1303                proto::CallCanceled {
1304                    room_id: room_id.to_proto(),
1305                },
1306            )
1307            .trace_err();
1308    }
1309
1310    let live_kit_connection_info = if let Some(live_kit) = session.app_state.livekit_client.as_ref()
1311    {
1312        live_kit
1313            .room_token(
1314                &joined_room.room.livekit_room,
1315                &session.user_id().to_string(),
1316            )
1317            .trace_err()
1318            .map(|token| proto::LiveKitConnectionInfo {
1319                server_url: live_kit.url().into(),
1320                token,
1321                can_publish: true,
1322            })
1323    } else {
1324        None
1325    };
1326
1327    response.send(proto::JoinRoomResponse {
1328        room: Some(joined_room.room),
1329        channel_id: None,
1330        live_kit_connection_info,
1331    })?;
1332
1333    update_user_contacts(session.user_id(), &session).await?;
1334    Ok(())
1335}
1336
1337/// Rejoin room is used to reconnect to a room after connection errors.
1338async fn rejoin_room(
1339    request: proto::RejoinRoom,
1340    response: Response<proto::RejoinRoom>,
1341    session: Session,
1342) -> Result<()> {
1343    let room;
1344    let channel;
1345    {
1346        let mut rejoined_room = session
1347            .db()
1348            .await
1349            .rejoin_room(request, session.user_id(), session.connection_id)
1350            .await?;
1351
1352        response.send(proto::RejoinRoomResponse {
1353            room: Some(rejoined_room.room.clone()),
1354            reshared_projects: rejoined_room
1355                .reshared_projects
1356                .iter()
1357                .map(|project| proto::ResharedProject {
1358                    id: project.id.to_proto(),
1359                    collaborators: project
1360                        .collaborators
1361                        .iter()
1362                        .map(|collaborator| collaborator.to_proto())
1363                        .collect(),
1364                })
1365                .collect(),
1366            rejoined_projects: rejoined_room
1367                .rejoined_projects
1368                .iter()
1369                .map(|rejoined_project| rejoined_project.to_proto())
1370                .collect(),
1371        })?;
1372        room_updated(&rejoined_room.room, &session.peer);
1373
1374        for project in &rejoined_room.reshared_projects {
1375            for collaborator in &project.collaborators {
1376                session
1377                    .peer
1378                    .send(
1379                        collaborator.connection_id,
1380                        proto::UpdateProjectCollaborator {
1381                            project_id: project.id.to_proto(),
1382                            old_peer_id: Some(project.old_connection_id.into()),
1383                            new_peer_id: Some(session.connection_id.into()),
1384                        },
1385                    )
1386                    .trace_err();
1387            }
1388
1389            broadcast(
1390                Some(session.connection_id),
1391                project
1392                    .collaborators
1393                    .iter()
1394                    .map(|collaborator| collaborator.connection_id),
1395                |connection_id| {
1396                    session.peer.forward_send(
1397                        session.connection_id,
1398                        connection_id,
1399                        proto::UpdateProject {
1400                            project_id: project.id.to_proto(),
1401                            worktrees: project.worktrees.clone(),
1402                        },
1403                    )
1404                },
1405            );
1406        }
1407
1408        notify_rejoined_projects(&mut rejoined_room.rejoined_projects, &session)?;
1409
1410        let rejoined_room = rejoined_room.into_inner();
1411
1412        room = rejoined_room.room;
1413        channel = rejoined_room.channel;
1414    }
1415
1416    if let Some(channel) = channel {
1417        channel_updated(
1418            &channel,
1419            &room,
1420            &session.peer,
1421            &*session.connection_pool().await,
1422        );
1423    }
1424
1425    update_user_contacts(session.user_id(), &session).await?;
1426    Ok(())
1427}
1428
1429fn notify_rejoined_projects(
1430    rejoined_projects: &mut Vec<RejoinedProject>,
1431    session: &Session,
1432) -> Result<()> {
1433    for project in rejoined_projects.iter() {
1434        for collaborator in &project.collaborators {
1435            session
1436                .peer
1437                .send(
1438                    collaborator.connection_id,
1439                    proto::UpdateProjectCollaborator {
1440                        project_id: project.id.to_proto(),
1441                        old_peer_id: Some(project.old_connection_id.into()),
1442                        new_peer_id: Some(session.connection_id.into()),
1443                    },
1444                )
1445                .trace_err();
1446        }
1447    }
1448
1449    for project in rejoined_projects {
1450        for worktree in mem::take(&mut project.worktrees) {
1451            // Stream this worktree's entries.
1452            let message = proto::UpdateWorktree {
1453                project_id: project.id.to_proto(),
1454                worktree_id: worktree.id,
1455                abs_path: worktree.abs_path.clone(),
1456                root_name: worktree.root_name,
1457                updated_entries: worktree.updated_entries,
1458                removed_entries: worktree.removed_entries,
1459                scan_id: worktree.scan_id,
1460                is_last_update: worktree.completed_scan_id == worktree.scan_id,
1461                updated_repositories: worktree.updated_repositories,
1462                removed_repositories: worktree.removed_repositories,
1463            };
1464            for update in proto::split_worktree_update(message) {
1465                session.peer.send(session.connection_id, update)?;
1466            }
1467
1468            // Stream this worktree's diagnostics.
1469            for summary in worktree.diagnostic_summaries {
1470                session.peer.send(
1471                    session.connection_id,
1472                    proto::UpdateDiagnosticSummary {
1473                        project_id: project.id.to_proto(),
1474                        worktree_id: worktree.id,
1475                        summary: Some(summary),
1476                    },
1477                )?;
1478            }
1479
1480            for settings_file in worktree.settings_files {
1481                session.peer.send(
1482                    session.connection_id,
1483                    proto::UpdateWorktreeSettings {
1484                        project_id: project.id.to_proto(),
1485                        worktree_id: worktree.id,
1486                        path: settings_file.path,
1487                        content: Some(settings_file.content),
1488                        kind: Some(settings_file.kind.to_proto().into()),
1489                    },
1490                )?;
1491            }
1492        }
1493
1494        for repository in mem::take(&mut project.updated_repositories) {
1495            for update in split_repository_update(repository) {
1496                session.peer.send(session.connection_id, update)?;
1497            }
1498        }
1499
1500        for id in mem::take(&mut project.removed_repositories) {
1501            session.peer.send(
1502                session.connection_id,
1503                proto::RemoveRepository {
1504                    project_id: project.id.to_proto(),
1505                    id,
1506                },
1507            )?;
1508        }
1509    }
1510
1511    Ok(())
1512}
1513
1514/// leave room disconnects from the room.
1515async fn leave_room(
1516    _: proto::LeaveRoom,
1517    response: Response<proto::LeaveRoom>,
1518    session: Session,
1519) -> Result<()> {
1520    leave_room_for_session(&session, session.connection_id).await?;
1521    response.send(proto::Ack {})?;
1522    Ok(())
1523}
1524
1525/// Updates the permissions of someone else in the room.
1526async fn set_room_participant_role(
1527    request: proto::SetRoomParticipantRole,
1528    response: Response<proto::SetRoomParticipantRole>,
1529    session: Session,
1530) -> Result<()> {
1531    let user_id = UserId::from_proto(request.user_id);
1532    let role = ChannelRole::from(request.role());
1533
1534    let (livekit_room, can_publish) = {
1535        let room = session
1536            .db()
1537            .await
1538            .set_room_participant_role(
1539                session.user_id(),
1540                RoomId::from_proto(request.room_id),
1541                user_id,
1542                role,
1543            )
1544            .await?;
1545
1546        let livekit_room = room.livekit_room.clone();
1547        let can_publish = ChannelRole::from(request.role()).can_use_microphone();
1548        room_updated(&room, &session.peer);
1549        (livekit_room, can_publish)
1550    };
1551
1552    if let Some(live_kit) = session.app_state.livekit_client.as_ref() {
1553        live_kit
1554            .update_participant(
1555                livekit_room.clone(),
1556                request.user_id.to_string(),
1557                livekit_api::proto::ParticipantPermission {
1558                    can_subscribe: true,
1559                    can_publish,
1560                    can_publish_data: can_publish,
1561                    hidden: false,
1562                    recorder: false,
1563                },
1564            )
1565            .await
1566            .trace_err();
1567    }
1568
1569    response.send(proto::Ack {})?;
1570    Ok(())
1571}
1572
1573/// Call someone else into the current room
1574async fn call(
1575    request: proto::Call,
1576    response: Response<proto::Call>,
1577    session: Session,
1578) -> Result<()> {
1579    let room_id = RoomId::from_proto(request.room_id);
1580    let calling_user_id = session.user_id();
1581    let calling_connection_id = session.connection_id;
1582    let called_user_id = UserId::from_proto(request.called_user_id);
1583    let initial_project_id = request.initial_project_id.map(ProjectId::from_proto);
1584    if !session
1585        .db()
1586        .await
1587        .has_contact(calling_user_id, called_user_id)
1588        .await?
1589    {
1590        return Err(anyhow!("cannot call a user who isn't a contact"))?;
1591    }
1592
1593    let incoming_call = {
1594        let (room, incoming_call) = &mut *session
1595            .db()
1596            .await
1597            .call(
1598                room_id,
1599                calling_user_id,
1600                calling_connection_id,
1601                called_user_id,
1602                initial_project_id,
1603            )
1604            .await?;
1605        room_updated(room, &session.peer);
1606        mem::take(incoming_call)
1607    };
1608    update_user_contacts(called_user_id, &session).await?;
1609
1610    let mut calls = session
1611        .connection_pool()
1612        .await
1613        .user_connection_ids(called_user_id)
1614        .map(|connection_id| session.peer.request(connection_id, incoming_call.clone()))
1615        .collect::<FuturesUnordered<_>>();
1616
1617    while let Some(call_response) = calls.next().await {
1618        match call_response.as_ref() {
1619            Ok(_) => {
1620                response.send(proto::Ack {})?;
1621                return Ok(());
1622            }
1623            Err(_) => {
1624                call_response.trace_err();
1625            }
1626        }
1627    }
1628
1629    {
1630        let room = session
1631            .db()
1632            .await
1633            .call_failed(room_id, called_user_id)
1634            .await?;
1635        room_updated(&room, &session.peer);
1636    }
1637    update_user_contacts(called_user_id, &session).await?;
1638
1639    Err(anyhow!("failed to ring user"))?
1640}
1641
1642/// Cancel an outgoing call.
1643async fn cancel_call(
1644    request: proto::CancelCall,
1645    response: Response<proto::CancelCall>,
1646    session: Session,
1647) -> Result<()> {
1648    let called_user_id = UserId::from_proto(request.called_user_id);
1649    let room_id = RoomId::from_proto(request.room_id);
1650    {
1651        let room = session
1652            .db()
1653            .await
1654            .cancel_call(room_id, session.connection_id, called_user_id)
1655            .await?;
1656        room_updated(&room, &session.peer);
1657    }
1658
1659    for connection_id in session
1660        .connection_pool()
1661        .await
1662        .user_connection_ids(called_user_id)
1663    {
1664        session
1665            .peer
1666            .send(
1667                connection_id,
1668                proto::CallCanceled {
1669                    room_id: room_id.to_proto(),
1670                },
1671            )
1672            .trace_err();
1673    }
1674    response.send(proto::Ack {})?;
1675
1676    update_user_contacts(called_user_id, &session).await?;
1677    Ok(())
1678}
1679
1680/// Decline an incoming call.
1681async fn decline_call(message: proto::DeclineCall, session: Session) -> Result<()> {
1682    let room_id = RoomId::from_proto(message.room_id);
1683    {
1684        let room = session
1685            .db()
1686            .await
1687            .decline_call(Some(room_id), session.user_id())
1688            .await?
1689            .ok_or_else(|| anyhow!("failed to decline call"))?;
1690        room_updated(&room, &session.peer);
1691    }
1692
1693    for connection_id in session
1694        .connection_pool()
1695        .await
1696        .user_connection_ids(session.user_id())
1697    {
1698        session
1699            .peer
1700            .send(
1701                connection_id,
1702                proto::CallCanceled {
1703                    room_id: room_id.to_proto(),
1704                },
1705            )
1706            .trace_err();
1707    }
1708    update_user_contacts(session.user_id(), &session).await?;
1709    Ok(())
1710}
1711
1712/// Updates other participants in the room with your current location.
1713async fn update_participant_location(
1714    request: proto::UpdateParticipantLocation,
1715    response: Response<proto::UpdateParticipantLocation>,
1716    session: Session,
1717) -> Result<()> {
1718    let room_id = RoomId::from_proto(request.room_id);
1719    let location = request
1720        .location
1721        .ok_or_else(|| anyhow!("invalid location"))?;
1722
1723    let db = session.db().await;
1724    let room = db
1725        .update_room_participant_location(room_id, session.connection_id, location)
1726        .await?;
1727
1728    room_updated(&room, &session.peer);
1729    response.send(proto::Ack {})?;
1730    Ok(())
1731}
1732
1733/// Share a project into the room.
1734async fn share_project(
1735    request: proto::ShareProject,
1736    response: Response<proto::ShareProject>,
1737    session: Session,
1738) -> Result<()> {
1739    let (project_id, room) = &*session
1740        .db()
1741        .await
1742        .share_project(
1743            RoomId::from_proto(request.room_id),
1744            session.connection_id,
1745            &request.worktrees,
1746            request.is_ssh_project,
1747        )
1748        .await?;
1749    response.send(proto::ShareProjectResponse {
1750        project_id: project_id.to_proto(),
1751    })?;
1752    room_updated(room, &session.peer);
1753
1754    Ok(())
1755}
1756
1757/// Unshare a project from the room.
1758async fn unshare_project(message: proto::UnshareProject, session: Session) -> Result<()> {
1759    let project_id = ProjectId::from_proto(message.project_id);
1760    unshare_project_internal(project_id, session.connection_id, &session).await
1761}
1762
1763async fn unshare_project_internal(
1764    project_id: ProjectId,
1765    connection_id: ConnectionId,
1766    session: &Session,
1767) -> Result<()> {
1768    let delete = {
1769        let room_guard = session
1770            .db()
1771            .await
1772            .unshare_project(project_id, connection_id)
1773            .await?;
1774
1775        let (delete, room, guest_connection_ids) = &*room_guard;
1776
1777        let message = proto::UnshareProject {
1778            project_id: project_id.to_proto(),
1779        };
1780
1781        broadcast(
1782            Some(connection_id),
1783            guest_connection_ids.iter().copied(),
1784            |conn_id| session.peer.send(conn_id, message.clone()),
1785        );
1786        if let Some(room) = room {
1787            room_updated(room, &session.peer);
1788        }
1789
1790        *delete
1791    };
1792
1793    if delete {
1794        let db = session.db().await;
1795        db.delete_project(project_id).await?;
1796    }
1797
1798    Ok(())
1799}
1800
1801/// Join someone elses shared project.
1802async fn join_project(
1803    request: proto::JoinProject,
1804    response: Response<proto::JoinProject>,
1805    session: Session,
1806) -> Result<()> {
1807    let project_id = ProjectId::from_proto(request.project_id);
1808
1809    tracing::info!(%project_id, "join project");
1810
1811    let db = session.db().await;
1812    let (project, replica_id) = &mut *db
1813        .join_project(project_id, session.connection_id, session.user_id())
1814        .await?;
1815    drop(db);
1816    tracing::info!(%project_id, "join remote project");
1817    join_project_internal(response, session, project, replica_id)
1818}
1819
1820trait JoinProjectInternalResponse {
1821    fn send(self, result: proto::JoinProjectResponse) -> Result<()>;
1822}
1823impl JoinProjectInternalResponse for Response<proto::JoinProject> {
1824    fn send(self, result: proto::JoinProjectResponse) -> Result<()> {
1825        Response::<proto::JoinProject>::send(self, result)
1826    }
1827}
1828
1829fn join_project_internal(
1830    response: impl JoinProjectInternalResponse,
1831    session: Session,
1832    project: &mut Project,
1833    replica_id: &ReplicaId,
1834) -> Result<()> {
1835    let collaborators = project
1836        .collaborators
1837        .iter()
1838        .filter(|collaborator| collaborator.connection_id != session.connection_id)
1839        .map(|collaborator| collaborator.to_proto())
1840        .collect::<Vec<_>>();
1841    let project_id = project.id;
1842    let guest_user_id = session.user_id();
1843
1844    let worktrees = project
1845        .worktrees
1846        .iter()
1847        .map(|(id, worktree)| proto::WorktreeMetadata {
1848            id: *id,
1849            root_name: worktree.root_name.clone(),
1850            visible: worktree.visible,
1851            abs_path: worktree.abs_path.clone(),
1852        })
1853        .collect::<Vec<_>>();
1854
1855    let add_project_collaborator = proto::AddProjectCollaborator {
1856        project_id: project_id.to_proto(),
1857        collaborator: Some(proto::Collaborator {
1858            peer_id: Some(session.connection_id.into()),
1859            replica_id: replica_id.0 as u32,
1860            user_id: guest_user_id.to_proto(),
1861            is_host: false,
1862        }),
1863    };
1864
1865    for collaborator in &collaborators {
1866        session
1867            .peer
1868            .send(
1869                collaborator.peer_id.unwrap().into(),
1870                add_project_collaborator.clone(),
1871            )
1872            .trace_err();
1873    }
1874
1875    // First, we send the metadata associated with each worktree.
1876    response.send(proto::JoinProjectResponse {
1877        project_id: project.id.0 as u64,
1878        worktrees: worktrees.clone(),
1879        replica_id: replica_id.0 as u32,
1880        collaborators: collaborators.clone(),
1881        language_servers: project.language_servers.clone(),
1882        role: project.role.into(),
1883    })?;
1884
1885    for (worktree_id, worktree) in mem::take(&mut project.worktrees) {
1886        // Stream this worktree's entries.
1887        let message = proto::UpdateWorktree {
1888            project_id: project_id.to_proto(),
1889            worktree_id,
1890            abs_path: worktree.abs_path.clone(),
1891            root_name: worktree.root_name,
1892            updated_entries: worktree.entries,
1893            removed_entries: Default::default(),
1894            scan_id: worktree.scan_id,
1895            is_last_update: worktree.scan_id == worktree.completed_scan_id,
1896            updated_repositories: worktree.legacy_repository_entries.into_values().collect(),
1897            removed_repositories: Default::default(),
1898        };
1899        for update in proto::split_worktree_update(message) {
1900            session.peer.send(session.connection_id, update.clone())?;
1901        }
1902
1903        // Stream this worktree's diagnostics.
1904        for summary in worktree.diagnostic_summaries {
1905            session.peer.send(
1906                session.connection_id,
1907                proto::UpdateDiagnosticSummary {
1908                    project_id: project_id.to_proto(),
1909                    worktree_id: worktree.id,
1910                    summary: Some(summary),
1911                },
1912            )?;
1913        }
1914
1915        for settings_file in worktree.settings_files {
1916            session.peer.send(
1917                session.connection_id,
1918                proto::UpdateWorktreeSettings {
1919                    project_id: project_id.to_proto(),
1920                    worktree_id: worktree.id,
1921                    path: settings_file.path,
1922                    content: Some(settings_file.content),
1923                    kind: Some(settings_file.kind.to_proto() as i32),
1924                },
1925            )?;
1926        }
1927    }
1928
1929    for repository in mem::take(&mut project.repositories) {
1930        for update in split_repository_update(repository) {
1931            session.peer.send(session.connection_id, update)?;
1932        }
1933    }
1934
1935    for language_server in &project.language_servers {
1936        session.peer.send(
1937            session.connection_id,
1938            proto::UpdateLanguageServer {
1939                project_id: project_id.to_proto(),
1940                language_server_id: language_server.id,
1941                variant: Some(
1942                    proto::update_language_server::Variant::DiskBasedDiagnosticsUpdated(
1943                        proto::LspDiskBasedDiagnosticsUpdated {},
1944                    ),
1945                ),
1946            },
1947        )?;
1948    }
1949
1950    Ok(())
1951}
1952
1953/// Leave someone elses shared project.
1954async fn leave_project(request: proto::LeaveProject, session: Session) -> Result<()> {
1955    let sender_id = session.connection_id;
1956    let project_id = ProjectId::from_proto(request.project_id);
1957    let db = session.db().await;
1958
1959    let (room, project) = &*db.leave_project(project_id, sender_id).await?;
1960    tracing::info!(
1961        %project_id,
1962        "leave project"
1963    );
1964
1965    project_left(project, &session);
1966    if let Some(room) = room {
1967        room_updated(room, &session.peer);
1968    }
1969
1970    Ok(())
1971}
1972
1973/// Updates other participants with changes to the project
1974async fn update_project(
1975    request: proto::UpdateProject,
1976    response: Response<proto::UpdateProject>,
1977    session: Session,
1978) -> Result<()> {
1979    let project_id = ProjectId::from_proto(request.project_id);
1980    let (room, guest_connection_ids) = &*session
1981        .db()
1982        .await
1983        .update_project(project_id, session.connection_id, &request.worktrees)
1984        .await?;
1985    broadcast(
1986        Some(session.connection_id),
1987        guest_connection_ids.iter().copied(),
1988        |connection_id| {
1989            session
1990                .peer
1991                .forward_send(session.connection_id, connection_id, request.clone())
1992        },
1993    );
1994    if let Some(room) = room {
1995        room_updated(room, &session.peer);
1996    }
1997    response.send(proto::Ack {})?;
1998
1999    Ok(())
2000}
2001
2002/// Updates other participants with changes to the worktree
2003async fn update_worktree(
2004    request: proto::UpdateWorktree,
2005    response: Response<proto::UpdateWorktree>,
2006    session: Session,
2007) -> Result<()> {
2008    let guest_connection_ids = session
2009        .db()
2010        .await
2011        .update_worktree(&request, session.connection_id)
2012        .await?;
2013
2014    broadcast(
2015        Some(session.connection_id),
2016        guest_connection_ids.iter().copied(),
2017        |connection_id| {
2018            session
2019                .peer
2020                .forward_send(session.connection_id, connection_id, request.clone())
2021        },
2022    );
2023    response.send(proto::Ack {})?;
2024    Ok(())
2025}
2026
2027async fn update_repository(
2028    request: proto::UpdateRepository,
2029    response: Response<proto::UpdateRepository>,
2030    session: Session,
2031) -> Result<()> {
2032    let guest_connection_ids = session
2033        .db()
2034        .await
2035        .update_repository(&request, session.connection_id)
2036        .await?;
2037
2038    broadcast(
2039        Some(session.connection_id),
2040        guest_connection_ids.iter().copied(),
2041        |connection_id| {
2042            session
2043                .peer
2044                .forward_send(session.connection_id, connection_id, request.clone())
2045        },
2046    );
2047    response.send(proto::Ack {})?;
2048    Ok(())
2049}
2050
2051async fn remove_repository(
2052    request: proto::RemoveRepository,
2053    response: Response<proto::RemoveRepository>,
2054    session: Session,
2055) -> Result<()> {
2056    let guest_connection_ids = session
2057        .db()
2058        .await
2059        .remove_repository(&request, session.connection_id)
2060        .await?;
2061
2062    broadcast(
2063        Some(session.connection_id),
2064        guest_connection_ids.iter().copied(),
2065        |connection_id| {
2066            session
2067                .peer
2068                .forward_send(session.connection_id, connection_id, request.clone())
2069        },
2070    );
2071    response.send(proto::Ack {})?;
2072    Ok(())
2073}
2074
2075/// Updates other participants with changes to the diagnostics
2076async fn update_diagnostic_summary(
2077    message: proto::UpdateDiagnosticSummary,
2078    session: Session,
2079) -> Result<()> {
2080    let guest_connection_ids = session
2081        .db()
2082        .await
2083        .update_diagnostic_summary(&message, session.connection_id)
2084        .await?;
2085
2086    broadcast(
2087        Some(session.connection_id),
2088        guest_connection_ids.iter().copied(),
2089        |connection_id| {
2090            session
2091                .peer
2092                .forward_send(session.connection_id, connection_id, message.clone())
2093        },
2094    );
2095
2096    Ok(())
2097}
2098
2099/// Updates other participants with changes to the worktree settings
2100async fn update_worktree_settings(
2101    message: proto::UpdateWorktreeSettings,
2102    session: Session,
2103) -> Result<()> {
2104    let guest_connection_ids = session
2105        .db()
2106        .await
2107        .update_worktree_settings(&message, session.connection_id)
2108        .await?;
2109
2110    broadcast(
2111        Some(session.connection_id),
2112        guest_connection_ids.iter().copied(),
2113        |connection_id| {
2114            session
2115                .peer
2116                .forward_send(session.connection_id, connection_id, message.clone())
2117        },
2118    );
2119
2120    Ok(())
2121}
2122
2123/// Notify other participants that a language server has started.
2124async fn start_language_server(
2125    request: proto::StartLanguageServer,
2126    session: Session,
2127) -> Result<()> {
2128    let guest_connection_ids = session
2129        .db()
2130        .await
2131        .start_language_server(&request, session.connection_id)
2132        .await?;
2133
2134    broadcast(
2135        Some(session.connection_id),
2136        guest_connection_ids.iter().copied(),
2137        |connection_id| {
2138            session
2139                .peer
2140                .forward_send(session.connection_id, connection_id, request.clone())
2141        },
2142    );
2143    Ok(())
2144}
2145
2146/// Notify other participants that a language server has changed.
2147async fn update_language_server(
2148    request: proto::UpdateLanguageServer,
2149    session: Session,
2150) -> Result<()> {
2151    let project_id = ProjectId::from_proto(request.project_id);
2152    let project_connection_ids = session
2153        .db()
2154        .await
2155        .project_connection_ids(project_id, session.connection_id, true)
2156        .await?;
2157    broadcast(
2158        Some(session.connection_id),
2159        project_connection_ids.iter().copied(),
2160        |connection_id| {
2161            session
2162                .peer
2163                .forward_send(session.connection_id, connection_id, request.clone())
2164        },
2165    );
2166    Ok(())
2167}
2168
2169/// forward a project request to the host. These requests should be read only
2170/// as guests are allowed to send them.
2171async fn forward_read_only_project_request<T>(
2172    request: T,
2173    response: Response<T>,
2174    session: Session,
2175) -> Result<()>
2176where
2177    T: EntityMessage + RequestMessage,
2178{
2179    let project_id = ProjectId::from_proto(request.remote_entity_id());
2180    let host_connection_id = session
2181        .db()
2182        .await
2183        .host_for_read_only_project_request(project_id, session.connection_id)
2184        .await?;
2185    let payload = session
2186        .peer
2187        .forward_request(session.connection_id, host_connection_id, request)
2188        .await?;
2189    response.send(payload)?;
2190    Ok(())
2191}
2192
2193async fn forward_find_search_candidates_request(
2194    request: proto::FindSearchCandidates,
2195    response: Response<proto::FindSearchCandidates>,
2196    session: Session,
2197) -> Result<()> {
2198    let project_id = ProjectId::from_proto(request.remote_entity_id());
2199    let host_connection_id = session
2200        .db()
2201        .await
2202        .host_for_read_only_project_request(project_id, session.connection_id)
2203        .await?;
2204    let payload = session
2205        .peer
2206        .forward_request(session.connection_id, host_connection_id, request)
2207        .await?;
2208    response.send(payload)?;
2209    Ok(())
2210}
2211
2212/// forward a project request to the host. These requests are disallowed
2213/// for guests.
2214async fn forward_mutating_project_request<T>(
2215    request: T,
2216    response: Response<T>,
2217    session: Session,
2218) -> Result<()>
2219where
2220    T: EntityMessage + RequestMessage,
2221{
2222    let project_id = ProjectId::from_proto(request.remote_entity_id());
2223
2224    let host_connection_id = session
2225        .db()
2226        .await
2227        .host_for_mutating_project_request(project_id, session.connection_id)
2228        .await?;
2229    let payload = session
2230        .peer
2231        .forward_request(session.connection_id, host_connection_id, request)
2232        .await?;
2233    response.send(payload)?;
2234    Ok(())
2235}
2236
2237/// Notify other participants that a new buffer has been created
2238async fn create_buffer_for_peer(
2239    request: proto::CreateBufferForPeer,
2240    session: Session,
2241) -> Result<()> {
2242    session
2243        .db()
2244        .await
2245        .check_user_is_project_host(
2246            ProjectId::from_proto(request.project_id),
2247            session.connection_id,
2248        )
2249        .await?;
2250    let peer_id = request.peer_id.ok_or_else(|| anyhow!("invalid peer id"))?;
2251    session
2252        .peer
2253        .forward_send(session.connection_id, peer_id.into(), request)?;
2254    Ok(())
2255}
2256
2257/// Notify other participants that a buffer has been updated. This is
2258/// allowed for guests as long as the update is limited to selections.
2259async fn update_buffer(
2260    request: proto::UpdateBuffer,
2261    response: Response<proto::UpdateBuffer>,
2262    session: Session,
2263) -> Result<()> {
2264    let project_id = ProjectId::from_proto(request.project_id);
2265    let mut capability = Capability::ReadOnly;
2266
2267    for op in request.operations.iter() {
2268        match op.variant {
2269            None | Some(proto::operation::Variant::UpdateSelections(_)) => {}
2270            Some(_) => capability = Capability::ReadWrite,
2271        }
2272    }
2273
2274    let host = {
2275        let guard = session
2276            .db()
2277            .await
2278            .connections_for_buffer_update(project_id, session.connection_id, capability)
2279            .await?;
2280
2281        let (host, guests) = &*guard;
2282
2283        broadcast(
2284            Some(session.connection_id),
2285            guests.clone(),
2286            |connection_id| {
2287                session
2288                    .peer
2289                    .forward_send(session.connection_id, connection_id, request.clone())
2290            },
2291        );
2292
2293        *host
2294    };
2295
2296    if host != session.connection_id {
2297        session
2298            .peer
2299            .forward_request(session.connection_id, host, request.clone())
2300            .await?;
2301    }
2302
2303    response.send(proto::Ack {})?;
2304    Ok(())
2305}
2306
2307async fn update_context(message: proto::UpdateContext, session: Session) -> Result<()> {
2308    let project_id = ProjectId::from_proto(message.project_id);
2309
2310    let operation = message.operation.as_ref().context("invalid operation")?;
2311    let capability = match operation.variant.as_ref() {
2312        Some(proto::context_operation::Variant::BufferOperation(buffer_op)) => {
2313            if let Some(buffer_op) = buffer_op.operation.as_ref() {
2314                match buffer_op.variant {
2315                    None | Some(proto::operation::Variant::UpdateSelections(_)) => {
2316                        Capability::ReadOnly
2317                    }
2318                    _ => Capability::ReadWrite,
2319                }
2320            } else {
2321                Capability::ReadWrite
2322            }
2323        }
2324        Some(_) => Capability::ReadWrite,
2325        None => Capability::ReadOnly,
2326    };
2327
2328    let guard = session
2329        .db()
2330        .await
2331        .connections_for_buffer_update(project_id, session.connection_id, capability)
2332        .await?;
2333
2334    let (host, guests) = &*guard;
2335
2336    broadcast(
2337        Some(session.connection_id),
2338        guests.iter().chain([host]).copied(),
2339        |connection_id| {
2340            session
2341                .peer
2342                .forward_send(session.connection_id, connection_id, message.clone())
2343        },
2344    );
2345
2346    Ok(())
2347}
2348
2349/// Notify other participants that a project has been updated.
2350async fn broadcast_project_message_from_host<T: EntityMessage<Entity = ShareProject>>(
2351    request: T,
2352    session: Session,
2353) -> Result<()> {
2354    let project_id = ProjectId::from_proto(request.remote_entity_id());
2355    let project_connection_ids = session
2356        .db()
2357        .await
2358        .project_connection_ids(project_id, session.connection_id, false)
2359        .await?;
2360
2361    broadcast(
2362        Some(session.connection_id),
2363        project_connection_ids.iter().copied(),
2364        |connection_id| {
2365            session
2366                .peer
2367                .forward_send(session.connection_id, connection_id, request.clone())
2368        },
2369    );
2370    Ok(())
2371}
2372
2373/// Start following another user in a call.
2374async fn follow(
2375    request: proto::Follow,
2376    response: Response<proto::Follow>,
2377    session: Session,
2378) -> Result<()> {
2379    let room_id = RoomId::from_proto(request.room_id);
2380    let project_id = request.project_id.map(ProjectId::from_proto);
2381    let leader_id = request
2382        .leader_id
2383        .ok_or_else(|| anyhow!("invalid leader id"))?
2384        .into();
2385    let follower_id = session.connection_id;
2386
2387    session
2388        .db()
2389        .await
2390        .check_room_participants(room_id, leader_id, session.connection_id)
2391        .await?;
2392
2393    let response_payload = session
2394        .peer
2395        .forward_request(session.connection_id, leader_id, request)
2396        .await?;
2397    response.send(response_payload)?;
2398
2399    if let Some(project_id) = project_id {
2400        let room = session
2401            .db()
2402            .await
2403            .follow(room_id, project_id, leader_id, follower_id)
2404            .await?;
2405        room_updated(&room, &session.peer);
2406    }
2407
2408    Ok(())
2409}
2410
2411/// Stop following another user in a call.
2412async fn unfollow(request: proto::Unfollow, session: Session) -> Result<()> {
2413    let room_id = RoomId::from_proto(request.room_id);
2414    let project_id = request.project_id.map(ProjectId::from_proto);
2415    let leader_id = request
2416        .leader_id
2417        .ok_or_else(|| anyhow!("invalid leader id"))?
2418        .into();
2419    let follower_id = session.connection_id;
2420
2421    session
2422        .db()
2423        .await
2424        .check_room_participants(room_id, leader_id, session.connection_id)
2425        .await?;
2426
2427    session
2428        .peer
2429        .forward_send(session.connection_id, leader_id, request)?;
2430
2431    if let Some(project_id) = project_id {
2432        let room = session
2433            .db()
2434            .await
2435            .unfollow(room_id, project_id, leader_id, follower_id)
2436            .await?;
2437        room_updated(&room, &session.peer);
2438    }
2439
2440    Ok(())
2441}
2442
2443/// Notify everyone following you of your current location.
2444async fn update_followers(request: proto::UpdateFollowers, session: Session) -> Result<()> {
2445    let room_id = RoomId::from_proto(request.room_id);
2446    let database = session.db.lock().await;
2447
2448    let connection_ids = if let Some(project_id) = request.project_id {
2449        let project_id = ProjectId::from_proto(project_id);
2450        database
2451            .project_connection_ids(project_id, session.connection_id, true)
2452            .await?
2453    } else {
2454        database
2455            .room_connection_ids(room_id, session.connection_id)
2456            .await?
2457    };
2458
2459    // For now, don't send view update messages back to that view's current leader.
2460    let peer_id_to_omit = request.variant.as_ref().and_then(|variant| match variant {
2461        proto::update_followers::Variant::UpdateView(payload) => payload.leader_id,
2462        _ => None,
2463    });
2464
2465    for connection_id in connection_ids.iter().cloned() {
2466        if Some(connection_id.into()) != peer_id_to_omit && connection_id != session.connection_id {
2467            session
2468                .peer
2469                .forward_send(session.connection_id, connection_id, request.clone())?;
2470        }
2471    }
2472    Ok(())
2473}
2474
2475/// Get public data about users.
2476async fn get_users(
2477    request: proto::GetUsers,
2478    response: Response<proto::GetUsers>,
2479    session: Session,
2480) -> Result<()> {
2481    let user_ids = request
2482        .user_ids
2483        .into_iter()
2484        .map(UserId::from_proto)
2485        .collect();
2486    let users = session
2487        .db()
2488        .await
2489        .get_users_by_ids(user_ids)
2490        .await?
2491        .into_iter()
2492        .map(|user| proto::User {
2493            id: user.id.to_proto(),
2494            avatar_url: format!("https://github.com/{}.png?size=128", user.github_login),
2495            github_login: user.github_login,
2496            email: user.email_address,
2497            name: user.name,
2498        })
2499        .collect();
2500    response.send(proto::UsersResponse { users })?;
2501    Ok(())
2502}
2503
2504/// Search for users (to invite) buy Github login
2505async fn fuzzy_search_users(
2506    request: proto::FuzzySearchUsers,
2507    response: Response<proto::FuzzySearchUsers>,
2508    session: Session,
2509) -> Result<()> {
2510    let query = request.query;
2511    let users = match query.len() {
2512        0 => vec![],
2513        1 | 2 => session
2514            .db()
2515            .await
2516            .get_user_by_github_login(&query)
2517            .await?
2518            .into_iter()
2519            .collect(),
2520        _ => session.db().await.fuzzy_search_users(&query, 10).await?,
2521    };
2522    let users = users
2523        .into_iter()
2524        .filter(|user| user.id != session.user_id())
2525        .map(|user| proto::User {
2526            id: user.id.to_proto(),
2527            avatar_url: format!("https://github.com/{}.png?size=128", user.github_login),
2528            github_login: user.github_login,
2529            name: user.name,
2530            email: user.email_address,
2531        })
2532        .collect();
2533    response.send(proto::UsersResponse { users })?;
2534    Ok(())
2535}
2536
2537/// Send a contact request to another user.
2538async fn request_contact(
2539    request: proto::RequestContact,
2540    response: Response<proto::RequestContact>,
2541    session: Session,
2542) -> Result<()> {
2543    let requester_id = session.user_id();
2544    let responder_id = UserId::from_proto(request.responder_id);
2545    if requester_id == responder_id {
2546        return Err(anyhow!("cannot add yourself as a contact"))?;
2547    }
2548
2549    let notifications = session
2550        .db()
2551        .await
2552        .send_contact_request(requester_id, responder_id)
2553        .await?;
2554
2555    // Update outgoing contact requests of requester
2556    let mut update = proto::UpdateContacts::default();
2557    update.outgoing_requests.push(responder_id.to_proto());
2558    for connection_id in session
2559        .connection_pool()
2560        .await
2561        .user_connection_ids(requester_id)
2562    {
2563        session.peer.send(connection_id, update.clone())?;
2564    }
2565
2566    // Update incoming contact requests of responder
2567    let mut update = proto::UpdateContacts::default();
2568    update
2569        .incoming_requests
2570        .push(proto::IncomingContactRequest {
2571            requester_id: requester_id.to_proto(),
2572        });
2573    let connection_pool = session.connection_pool().await;
2574    for connection_id in connection_pool.user_connection_ids(responder_id) {
2575        session.peer.send(connection_id, update.clone())?;
2576    }
2577
2578    send_notifications(&connection_pool, &session.peer, notifications);
2579
2580    response.send(proto::Ack {})?;
2581    Ok(())
2582}
2583
2584/// Accept or decline a contact request
2585async fn respond_to_contact_request(
2586    request: proto::RespondToContactRequest,
2587    response: Response<proto::RespondToContactRequest>,
2588    session: Session,
2589) -> Result<()> {
2590    let responder_id = session.user_id();
2591    let requester_id = UserId::from_proto(request.requester_id);
2592    let db = session.db().await;
2593    if request.response == proto::ContactRequestResponse::Dismiss as i32 {
2594        db.dismiss_contact_notification(responder_id, requester_id)
2595            .await?;
2596    } else {
2597        let accept = request.response == proto::ContactRequestResponse::Accept as i32;
2598
2599        let notifications = db
2600            .respond_to_contact_request(responder_id, requester_id, accept)
2601            .await?;
2602        let requester_busy = db.is_user_busy(requester_id).await?;
2603        let responder_busy = db.is_user_busy(responder_id).await?;
2604
2605        let pool = session.connection_pool().await;
2606        // Update responder with new contact
2607        let mut update = proto::UpdateContacts::default();
2608        if accept {
2609            update
2610                .contacts
2611                .push(contact_for_user(requester_id, requester_busy, &pool));
2612        }
2613        update
2614            .remove_incoming_requests
2615            .push(requester_id.to_proto());
2616        for connection_id in pool.user_connection_ids(responder_id) {
2617            session.peer.send(connection_id, update.clone())?;
2618        }
2619
2620        // Update requester with new contact
2621        let mut update = proto::UpdateContacts::default();
2622        if accept {
2623            update
2624                .contacts
2625                .push(contact_for_user(responder_id, responder_busy, &pool));
2626        }
2627        update
2628            .remove_outgoing_requests
2629            .push(responder_id.to_proto());
2630
2631        for connection_id in pool.user_connection_ids(requester_id) {
2632            session.peer.send(connection_id, update.clone())?;
2633        }
2634
2635        send_notifications(&pool, &session.peer, notifications);
2636    }
2637
2638    response.send(proto::Ack {})?;
2639    Ok(())
2640}
2641
2642/// Remove a contact.
2643async fn remove_contact(
2644    request: proto::RemoveContact,
2645    response: Response<proto::RemoveContact>,
2646    session: Session,
2647) -> Result<()> {
2648    let requester_id = session.user_id();
2649    let responder_id = UserId::from_proto(request.user_id);
2650    let db = session.db().await;
2651    let (contact_accepted, deleted_notification_id) =
2652        db.remove_contact(requester_id, responder_id).await?;
2653
2654    let pool = session.connection_pool().await;
2655    // Update outgoing contact requests of requester
2656    let mut update = proto::UpdateContacts::default();
2657    if contact_accepted {
2658        update.remove_contacts.push(responder_id.to_proto());
2659    } else {
2660        update
2661            .remove_outgoing_requests
2662            .push(responder_id.to_proto());
2663    }
2664    for connection_id in pool.user_connection_ids(requester_id) {
2665        session.peer.send(connection_id, update.clone())?;
2666    }
2667
2668    // Update incoming contact requests of responder
2669    let mut update = proto::UpdateContacts::default();
2670    if contact_accepted {
2671        update.remove_contacts.push(requester_id.to_proto());
2672    } else {
2673        update
2674            .remove_incoming_requests
2675            .push(requester_id.to_proto());
2676    }
2677    for connection_id in pool.user_connection_ids(responder_id) {
2678        session.peer.send(connection_id, update.clone())?;
2679        if let Some(notification_id) = deleted_notification_id {
2680            session.peer.send(
2681                connection_id,
2682                proto::DeleteNotification {
2683                    notification_id: notification_id.to_proto(),
2684                },
2685            )?;
2686        }
2687    }
2688
2689    response.send(proto::Ack {})?;
2690    Ok(())
2691}
2692
2693fn should_auto_subscribe_to_channels(version: ZedVersion) -> bool {
2694    version.0.minor() < 139
2695}
2696
2697async fn update_user_plan(user_id: UserId, session: &Session) -> Result<()> {
2698    let db = session.db().await;
2699
2700    let feature_flags = db.get_user_flags(user_id).await?;
2701    let plan = session.current_plan(&db).await?;
2702    let billing_customer = db.get_billing_customer_by_user_id(user_id).await?;
2703    let billing_preferences = db.get_billing_preferences(user_id).await?;
2704
2705    let usage = if let Some(llm_db) = session.app_state.llm_db.clone() {
2706        let subscription = db.get_active_billing_subscription(user_id).await?;
2707
2708        let subscription_period = maybe!({
2709            let subscription = subscription?;
2710            let period_start_at = subscription.current_period_start_at()?;
2711            let period_end_at = subscription.current_period_end_at()?;
2712
2713            Some((period_start_at, period_end_at))
2714        });
2715
2716        if let Some((period_start_at, period_end_at)) = subscription_period {
2717            llm_db
2718                .get_subscription_usage_for_period(user_id, period_start_at, period_end_at)
2719                .await?
2720        } else {
2721            None
2722        }
2723    } else {
2724        None
2725    };
2726
2727    session
2728        .peer
2729        .send(
2730            session.connection_id,
2731            proto::UpdateUserPlan {
2732                plan: plan.into(),
2733                trial_started_at: billing_customer
2734                    .and_then(|billing_customer| billing_customer.trial_started_at)
2735                    .map(|trial_started_at| trial_started_at.and_utc().timestamp() as u64),
2736                is_usage_based_billing_enabled: if session.is_staff() {
2737                    Some(true)
2738                } else {
2739                    billing_preferences
2740                        .map(|preferences| preferences.model_request_overages_enabled)
2741                },
2742                usage: usage.map(|usage| {
2743                    let plan = match plan {
2744                        proto::Plan::Free => zed_llm_client::Plan::Free,
2745                        proto::Plan::ZedPro => zed_llm_client::Plan::ZedPro,
2746                        proto::Plan::ZedProTrial => zed_llm_client::Plan::ZedProTrial,
2747                    };
2748
2749                    let model_requests_limit = match plan.model_requests_limit() {
2750                        zed_llm_client::UsageLimit::Limited(limit) => {
2751                            let limit = if plan == zed_llm_client::Plan::ZedProTrial
2752                                && feature_flags
2753                                    .iter()
2754                                    .any(|flag| flag == AGENT_EXTENDED_TRIAL_FEATURE_FLAG)
2755                            {
2756                                1_000
2757                            } else {
2758                                limit
2759                            };
2760
2761                            zed_llm_client::UsageLimit::Limited(limit)
2762                        }
2763                        zed_llm_client::UsageLimit::Unlimited => {
2764                            zed_llm_client::UsageLimit::Unlimited
2765                        }
2766                    };
2767
2768                    proto::SubscriptionUsage {
2769                        model_requests_usage_amount: usage.model_requests as u32,
2770                        model_requests_usage_limit: Some(proto::UsageLimit {
2771                            variant: Some(match model_requests_limit {
2772                                zed_llm_client::UsageLimit::Limited(limit) => {
2773                                    proto::usage_limit::Variant::Limited(
2774                                        proto::usage_limit::Limited {
2775                                            limit: limit as u32,
2776                                        },
2777                                    )
2778                                }
2779                                zed_llm_client::UsageLimit::Unlimited => {
2780                                    proto::usage_limit::Variant::Unlimited(
2781                                        proto::usage_limit::Unlimited {},
2782                                    )
2783                                }
2784                            }),
2785                        }),
2786                        edit_predictions_usage_amount: usage.edit_predictions as u32,
2787                        edit_predictions_usage_limit: Some(proto::UsageLimit {
2788                            variant: Some(match plan.edit_predictions_limit() {
2789                                zed_llm_client::UsageLimit::Limited(limit) => {
2790                                    proto::usage_limit::Variant::Limited(
2791                                        proto::usage_limit::Limited {
2792                                            limit: limit as u32,
2793                                        },
2794                                    )
2795                                }
2796                                zed_llm_client::UsageLimit::Unlimited => {
2797                                    proto::usage_limit::Variant::Unlimited(
2798                                        proto::usage_limit::Unlimited {},
2799                                    )
2800                                }
2801                            }),
2802                        }),
2803                    }
2804                }),
2805            },
2806        )
2807        .trace_err();
2808
2809    Ok(())
2810}
2811
2812async fn subscribe_to_channels(_: proto::SubscribeToChannels, session: Session) -> Result<()> {
2813    subscribe_user_to_channels(session.user_id(), &session).await?;
2814    Ok(())
2815}
2816
2817async fn subscribe_user_to_channels(user_id: UserId, session: &Session) -> Result<(), Error> {
2818    let channels_for_user = session.db().await.get_channels_for_user(user_id).await?;
2819    let mut pool = session.connection_pool().await;
2820    for membership in &channels_for_user.channel_memberships {
2821        pool.subscribe_to_channel(user_id, membership.channel_id, membership.role)
2822    }
2823    session.peer.send(
2824        session.connection_id,
2825        build_update_user_channels(&channels_for_user),
2826    )?;
2827    session.peer.send(
2828        session.connection_id,
2829        build_channels_update(channels_for_user),
2830    )?;
2831    Ok(())
2832}
2833
2834/// Creates a new channel.
2835async fn create_channel(
2836    request: proto::CreateChannel,
2837    response: Response<proto::CreateChannel>,
2838    session: Session,
2839) -> Result<()> {
2840    let db = session.db().await;
2841
2842    let parent_id = request.parent_id.map(ChannelId::from_proto);
2843    let (channel, membership) = db
2844        .create_channel(&request.name, parent_id, session.user_id())
2845        .await?;
2846
2847    let root_id = channel.root_id();
2848    let channel = Channel::from_model(channel);
2849
2850    response.send(proto::CreateChannelResponse {
2851        channel: Some(channel.to_proto()),
2852        parent_id: request.parent_id,
2853    })?;
2854
2855    let mut connection_pool = session.connection_pool().await;
2856    if let Some(membership) = membership {
2857        connection_pool.subscribe_to_channel(
2858            membership.user_id,
2859            membership.channel_id,
2860            membership.role,
2861        );
2862        let update = proto::UpdateUserChannels {
2863            channel_memberships: vec![proto::ChannelMembership {
2864                channel_id: membership.channel_id.to_proto(),
2865                role: membership.role.into(),
2866            }],
2867            ..Default::default()
2868        };
2869        for connection_id in connection_pool.user_connection_ids(membership.user_id) {
2870            session.peer.send(connection_id, update.clone())?;
2871        }
2872    }
2873
2874    for (connection_id, role) in connection_pool.channel_connection_ids(root_id) {
2875        if !role.can_see_channel(channel.visibility) {
2876            continue;
2877        }
2878
2879        let update = proto::UpdateChannels {
2880            channels: vec![channel.to_proto()],
2881            ..Default::default()
2882        };
2883        session.peer.send(connection_id, update.clone())?;
2884    }
2885
2886    Ok(())
2887}
2888
2889/// Delete a channel
2890async fn delete_channel(
2891    request: proto::DeleteChannel,
2892    response: Response<proto::DeleteChannel>,
2893    session: Session,
2894) -> Result<()> {
2895    let db = session.db().await;
2896
2897    let channel_id = request.channel_id;
2898    let (root_channel, removed_channels) = db
2899        .delete_channel(ChannelId::from_proto(channel_id), session.user_id())
2900        .await?;
2901    response.send(proto::Ack {})?;
2902
2903    // Notify members of removed channels
2904    let mut update = proto::UpdateChannels::default();
2905    update
2906        .delete_channels
2907        .extend(removed_channels.into_iter().map(|id| id.to_proto()));
2908
2909    let connection_pool = session.connection_pool().await;
2910    for (connection_id, _) in connection_pool.channel_connection_ids(root_channel) {
2911        session.peer.send(connection_id, update.clone())?;
2912    }
2913
2914    Ok(())
2915}
2916
2917/// Invite someone to join a channel.
2918async fn invite_channel_member(
2919    request: proto::InviteChannelMember,
2920    response: Response<proto::InviteChannelMember>,
2921    session: Session,
2922) -> Result<()> {
2923    let db = session.db().await;
2924    let channel_id = ChannelId::from_proto(request.channel_id);
2925    let invitee_id = UserId::from_proto(request.user_id);
2926    let InviteMemberResult {
2927        channel,
2928        notifications,
2929    } = db
2930        .invite_channel_member(
2931            channel_id,
2932            invitee_id,
2933            session.user_id(),
2934            request.role().into(),
2935        )
2936        .await?;
2937
2938    let update = proto::UpdateChannels {
2939        channel_invitations: vec![channel.to_proto()],
2940        ..Default::default()
2941    };
2942
2943    let connection_pool = session.connection_pool().await;
2944    for connection_id in connection_pool.user_connection_ids(invitee_id) {
2945        session.peer.send(connection_id, update.clone())?;
2946    }
2947
2948    send_notifications(&connection_pool, &session.peer, notifications);
2949
2950    response.send(proto::Ack {})?;
2951    Ok(())
2952}
2953
2954/// remove someone from a channel
2955async fn remove_channel_member(
2956    request: proto::RemoveChannelMember,
2957    response: Response<proto::RemoveChannelMember>,
2958    session: Session,
2959) -> Result<()> {
2960    let db = session.db().await;
2961    let channel_id = ChannelId::from_proto(request.channel_id);
2962    let member_id = UserId::from_proto(request.user_id);
2963
2964    let RemoveChannelMemberResult {
2965        membership_update,
2966        notification_id,
2967    } = db
2968        .remove_channel_member(channel_id, member_id, session.user_id())
2969        .await?;
2970
2971    let mut connection_pool = session.connection_pool().await;
2972    notify_membership_updated(
2973        &mut connection_pool,
2974        membership_update,
2975        member_id,
2976        &session.peer,
2977    );
2978    for connection_id in connection_pool.user_connection_ids(member_id) {
2979        if let Some(notification_id) = notification_id {
2980            session
2981                .peer
2982                .send(
2983                    connection_id,
2984                    proto::DeleteNotification {
2985                        notification_id: notification_id.to_proto(),
2986                    },
2987                )
2988                .trace_err();
2989        }
2990    }
2991
2992    response.send(proto::Ack {})?;
2993    Ok(())
2994}
2995
2996/// Toggle the channel between public and private.
2997/// Care is taken to maintain the invariant that public channels only descend from public channels,
2998/// (though members-only channels can appear at any point in the hierarchy).
2999async fn set_channel_visibility(
3000    request: proto::SetChannelVisibility,
3001    response: Response<proto::SetChannelVisibility>,
3002    session: Session,
3003) -> Result<()> {
3004    let db = session.db().await;
3005    let channel_id = ChannelId::from_proto(request.channel_id);
3006    let visibility = request.visibility().into();
3007
3008    let channel_model = db
3009        .set_channel_visibility(channel_id, visibility, session.user_id())
3010        .await?;
3011    let root_id = channel_model.root_id();
3012    let channel = Channel::from_model(channel_model);
3013
3014    let mut connection_pool = session.connection_pool().await;
3015    for (user_id, role) in connection_pool
3016        .channel_user_ids(root_id)
3017        .collect::<Vec<_>>()
3018        .into_iter()
3019    {
3020        let update = if role.can_see_channel(channel.visibility) {
3021            connection_pool.subscribe_to_channel(user_id, channel_id, role);
3022            proto::UpdateChannels {
3023                channels: vec![channel.to_proto()],
3024                ..Default::default()
3025            }
3026        } else {
3027            connection_pool.unsubscribe_from_channel(&user_id, &channel_id);
3028            proto::UpdateChannels {
3029                delete_channels: vec![channel.id.to_proto()],
3030                ..Default::default()
3031            }
3032        };
3033
3034        for connection_id in connection_pool.user_connection_ids(user_id) {
3035            session.peer.send(connection_id, update.clone())?;
3036        }
3037    }
3038
3039    response.send(proto::Ack {})?;
3040    Ok(())
3041}
3042
3043/// Alter the role for a user in the channel.
3044async fn set_channel_member_role(
3045    request: proto::SetChannelMemberRole,
3046    response: Response<proto::SetChannelMemberRole>,
3047    session: Session,
3048) -> Result<()> {
3049    let db = session.db().await;
3050    let channel_id = ChannelId::from_proto(request.channel_id);
3051    let member_id = UserId::from_proto(request.user_id);
3052    let result = db
3053        .set_channel_member_role(
3054            channel_id,
3055            session.user_id(),
3056            member_id,
3057            request.role().into(),
3058        )
3059        .await?;
3060
3061    match result {
3062        db::SetMemberRoleResult::MembershipUpdated(membership_update) => {
3063            let mut connection_pool = session.connection_pool().await;
3064            notify_membership_updated(
3065                &mut connection_pool,
3066                membership_update,
3067                member_id,
3068                &session.peer,
3069            )
3070        }
3071        db::SetMemberRoleResult::InviteUpdated(channel) => {
3072            let update = proto::UpdateChannels {
3073                channel_invitations: vec![channel.to_proto()],
3074                ..Default::default()
3075            };
3076
3077            for connection_id in session
3078                .connection_pool()
3079                .await
3080                .user_connection_ids(member_id)
3081            {
3082                session.peer.send(connection_id, update.clone())?;
3083            }
3084        }
3085    }
3086
3087    response.send(proto::Ack {})?;
3088    Ok(())
3089}
3090
3091/// Change the name of a channel
3092async fn rename_channel(
3093    request: proto::RenameChannel,
3094    response: Response<proto::RenameChannel>,
3095    session: Session,
3096) -> Result<()> {
3097    let db = session.db().await;
3098    let channel_id = ChannelId::from_proto(request.channel_id);
3099    let channel_model = db
3100        .rename_channel(channel_id, session.user_id(), &request.name)
3101        .await?;
3102    let root_id = channel_model.root_id();
3103    let channel = Channel::from_model(channel_model);
3104
3105    response.send(proto::RenameChannelResponse {
3106        channel: Some(channel.to_proto()),
3107    })?;
3108
3109    let connection_pool = session.connection_pool().await;
3110    let update = proto::UpdateChannels {
3111        channels: vec![channel.to_proto()],
3112        ..Default::default()
3113    };
3114    for (connection_id, role) in connection_pool.channel_connection_ids(root_id) {
3115        if role.can_see_channel(channel.visibility) {
3116            session.peer.send(connection_id, update.clone())?;
3117        }
3118    }
3119
3120    Ok(())
3121}
3122
3123/// Move a channel to a new parent.
3124async fn move_channel(
3125    request: proto::MoveChannel,
3126    response: Response<proto::MoveChannel>,
3127    session: Session,
3128) -> Result<()> {
3129    let channel_id = ChannelId::from_proto(request.channel_id);
3130    let to = ChannelId::from_proto(request.to);
3131
3132    let (root_id, channels) = session
3133        .db()
3134        .await
3135        .move_channel(channel_id, to, session.user_id())
3136        .await?;
3137
3138    let connection_pool = session.connection_pool().await;
3139    for (connection_id, role) in connection_pool.channel_connection_ids(root_id) {
3140        let channels = channels
3141            .iter()
3142            .filter_map(|channel| {
3143                if role.can_see_channel(channel.visibility) {
3144                    Some(channel.to_proto())
3145                } else {
3146                    None
3147                }
3148            })
3149            .collect::<Vec<_>>();
3150        if channels.is_empty() {
3151            continue;
3152        }
3153
3154        let update = proto::UpdateChannels {
3155            channels,
3156            ..Default::default()
3157        };
3158
3159        session.peer.send(connection_id, update.clone())?;
3160    }
3161
3162    response.send(Ack {})?;
3163    Ok(())
3164}
3165
3166/// Get the list of channel members
3167async fn get_channel_members(
3168    request: proto::GetChannelMembers,
3169    response: Response<proto::GetChannelMembers>,
3170    session: Session,
3171) -> Result<()> {
3172    let db = session.db().await;
3173    let channel_id = ChannelId::from_proto(request.channel_id);
3174    let limit = if request.limit == 0 {
3175        u16::MAX as u64
3176    } else {
3177        request.limit
3178    };
3179    let (members, users) = db
3180        .get_channel_participant_details(channel_id, &request.query, limit, session.user_id())
3181        .await?;
3182    response.send(proto::GetChannelMembersResponse { members, users })?;
3183    Ok(())
3184}
3185
3186/// Accept or decline a channel invitation.
3187async fn respond_to_channel_invite(
3188    request: proto::RespondToChannelInvite,
3189    response: Response<proto::RespondToChannelInvite>,
3190    session: Session,
3191) -> Result<()> {
3192    let db = session.db().await;
3193    let channel_id = ChannelId::from_proto(request.channel_id);
3194    let RespondToChannelInvite {
3195        membership_update,
3196        notifications,
3197    } = db
3198        .respond_to_channel_invite(channel_id, session.user_id(), request.accept)
3199        .await?;
3200
3201    let mut connection_pool = session.connection_pool().await;
3202    if let Some(membership_update) = membership_update {
3203        notify_membership_updated(
3204            &mut connection_pool,
3205            membership_update,
3206            session.user_id(),
3207            &session.peer,
3208        );
3209    } else {
3210        let update = proto::UpdateChannels {
3211            remove_channel_invitations: vec![channel_id.to_proto()],
3212            ..Default::default()
3213        };
3214
3215        for connection_id in connection_pool.user_connection_ids(session.user_id()) {
3216            session.peer.send(connection_id, update.clone())?;
3217        }
3218    };
3219
3220    send_notifications(&connection_pool, &session.peer, notifications);
3221
3222    response.send(proto::Ack {})?;
3223
3224    Ok(())
3225}
3226
3227/// Join the channels' room
3228async fn join_channel(
3229    request: proto::JoinChannel,
3230    response: Response<proto::JoinChannel>,
3231    session: Session,
3232) -> Result<()> {
3233    let channel_id = ChannelId::from_proto(request.channel_id);
3234    join_channel_internal(channel_id, Box::new(response), session).await
3235}
3236
3237trait JoinChannelInternalResponse {
3238    fn send(self, result: proto::JoinRoomResponse) -> Result<()>;
3239}
3240impl JoinChannelInternalResponse for Response<proto::JoinChannel> {
3241    fn send(self, result: proto::JoinRoomResponse) -> Result<()> {
3242        Response::<proto::JoinChannel>::send(self, result)
3243    }
3244}
3245impl JoinChannelInternalResponse for Response<proto::JoinRoom> {
3246    fn send(self, result: proto::JoinRoomResponse) -> Result<()> {
3247        Response::<proto::JoinRoom>::send(self, result)
3248    }
3249}
3250
3251async fn join_channel_internal(
3252    channel_id: ChannelId,
3253    response: Box<impl JoinChannelInternalResponse>,
3254    session: Session,
3255) -> Result<()> {
3256    let joined_room = {
3257        let mut db = session.db().await;
3258        // If zed quits without leaving the room, and the user re-opens zed before the
3259        // RECONNECT_TIMEOUT, we need to make sure that we kick the user out of the previous
3260        // room they were in.
3261        if let Some(connection) = db.stale_room_connection(session.user_id()).await? {
3262            tracing::info!(
3263                stale_connection_id = %connection,
3264                "cleaning up stale connection",
3265            );
3266            drop(db);
3267            leave_room_for_session(&session, connection).await?;
3268            db = session.db().await;
3269        }
3270
3271        let (joined_room, membership_updated, role) = db
3272            .join_channel(channel_id, session.user_id(), session.connection_id)
3273            .await?;
3274
3275        let live_kit_connection_info =
3276            session
3277                .app_state
3278                .livekit_client
3279                .as_ref()
3280                .and_then(|live_kit| {
3281                    let (can_publish, token) = if role == ChannelRole::Guest {
3282                        (
3283                            false,
3284                            live_kit
3285                                .guest_token(
3286                                    &joined_room.room.livekit_room,
3287                                    &session.user_id().to_string(),
3288                                )
3289                                .trace_err()?,
3290                        )
3291                    } else {
3292                        (
3293                            true,
3294                            live_kit
3295                                .room_token(
3296                                    &joined_room.room.livekit_room,
3297                                    &session.user_id().to_string(),
3298                                )
3299                                .trace_err()?,
3300                        )
3301                    };
3302
3303                    Some(LiveKitConnectionInfo {
3304                        server_url: live_kit.url().into(),
3305                        token,
3306                        can_publish,
3307                    })
3308                });
3309
3310        response.send(proto::JoinRoomResponse {
3311            room: Some(joined_room.room.clone()),
3312            channel_id: joined_room
3313                .channel
3314                .as_ref()
3315                .map(|channel| channel.id.to_proto()),
3316            live_kit_connection_info,
3317        })?;
3318
3319        let mut connection_pool = session.connection_pool().await;
3320        if let Some(membership_updated) = membership_updated {
3321            notify_membership_updated(
3322                &mut connection_pool,
3323                membership_updated,
3324                session.user_id(),
3325                &session.peer,
3326            );
3327        }
3328
3329        room_updated(&joined_room.room, &session.peer);
3330
3331        joined_room
3332    };
3333
3334    channel_updated(
3335        &joined_room
3336            .channel
3337            .ok_or_else(|| anyhow!("channel not returned"))?,
3338        &joined_room.room,
3339        &session.peer,
3340        &*session.connection_pool().await,
3341    );
3342
3343    update_user_contacts(session.user_id(), &session).await?;
3344    Ok(())
3345}
3346
3347/// Start editing the channel notes
3348async fn join_channel_buffer(
3349    request: proto::JoinChannelBuffer,
3350    response: Response<proto::JoinChannelBuffer>,
3351    session: Session,
3352) -> Result<()> {
3353    let db = session.db().await;
3354    let channel_id = ChannelId::from_proto(request.channel_id);
3355
3356    let open_response = db
3357        .join_channel_buffer(channel_id, session.user_id(), session.connection_id)
3358        .await?;
3359
3360    let collaborators = open_response.collaborators.clone();
3361    response.send(open_response)?;
3362
3363    let update = UpdateChannelBufferCollaborators {
3364        channel_id: channel_id.to_proto(),
3365        collaborators: collaborators.clone(),
3366    };
3367    channel_buffer_updated(
3368        session.connection_id,
3369        collaborators
3370            .iter()
3371            .filter_map(|collaborator| Some(collaborator.peer_id?.into())),
3372        &update,
3373        &session.peer,
3374    );
3375
3376    Ok(())
3377}
3378
3379/// Edit the channel notes
3380async fn update_channel_buffer(
3381    request: proto::UpdateChannelBuffer,
3382    session: Session,
3383) -> Result<()> {
3384    let db = session.db().await;
3385    let channel_id = ChannelId::from_proto(request.channel_id);
3386
3387    let (collaborators, epoch, version) = db
3388        .update_channel_buffer(channel_id, session.user_id(), &request.operations)
3389        .await?;
3390
3391    channel_buffer_updated(
3392        session.connection_id,
3393        collaborators.clone(),
3394        &proto::UpdateChannelBuffer {
3395            channel_id: channel_id.to_proto(),
3396            operations: request.operations,
3397        },
3398        &session.peer,
3399    );
3400
3401    let pool = &*session.connection_pool().await;
3402
3403    let non_collaborators =
3404        pool.channel_connection_ids(channel_id)
3405            .filter_map(|(connection_id, _)| {
3406                if collaborators.contains(&connection_id) {
3407                    None
3408                } else {
3409                    Some(connection_id)
3410                }
3411            });
3412
3413    broadcast(None, non_collaborators, |peer_id| {
3414        session.peer.send(
3415            peer_id,
3416            proto::UpdateChannels {
3417                latest_channel_buffer_versions: vec![proto::ChannelBufferVersion {
3418                    channel_id: channel_id.to_proto(),
3419                    epoch: epoch as u64,
3420                    version: version.clone(),
3421                }],
3422                ..Default::default()
3423            },
3424        )
3425    });
3426
3427    Ok(())
3428}
3429
3430/// Rejoin the channel notes after a connection blip
3431async fn rejoin_channel_buffers(
3432    request: proto::RejoinChannelBuffers,
3433    response: Response<proto::RejoinChannelBuffers>,
3434    session: Session,
3435) -> Result<()> {
3436    let db = session.db().await;
3437    let buffers = db
3438        .rejoin_channel_buffers(&request.buffers, session.user_id(), session.connection_id)
3439        .await?;
3440
3441    for rejoined_buffer in &buffers {
3442        let collaborators_to_notify = rejoined_buffer
3443            .buffer
3444            .collaborators
3445            .iter()
3446            .filter_map(|c| Some(c.peer_id?.into()));
3447        channel_buffer_updated(
3448            session.connection_id,
3449            collaborators_to_notify,
3450            &proto::UpdateChannelBufferCollaborators {
3451                channel_id: rejoined_buffer.buffer.channel_id,
3452                collaborators: rejoined_buffer.buffer.collaborators.clone(),
3453            },
3454            &session.peer,
3455        );
3456    }
3457
3458    response.send(proto::RejoinChannelBuffersResponse {
3459        buffers: buffers.into_iter().map(|b| b.buffer).collect(),
3460    })?;
3461
3462    Ok(())
3463}
3464
3465/// Stop editing the channel notes
3466async fn leave_channel_buffer(
3467    request: proto::LeaveChannelBuffer,
3468    response: Response<proto::LeaveChannelBuffer>,
3469    session: Session,
3470) -> Result<()> {
3471    let db = session.db().await;
3472    let channel_id = ChannelId::from_proto(request.channel_id);
3473
3474    let left_buffer = db
3475        .leave_channel_buffer(channel_id, session.connection_id)
3476        .await?;
3477
3478    response.send(Ack {})?;
3479
3480    channel_buffer_updated(
3481        session.connection_id,
3482        left_buffer.connections,
3483        &proto::UpdateChannelBufferCollaborators {
3484            channel_id: channel_id.to_proto(),
3485            collaborators: left_buffer.collaborators,
3486        },
3487        &session.peer,
3488    );
3489
3490    Ok(())
3491}
3492
3493fn channel_buffer_updated<T: EnvelopedMessage>(
3494    sender_id: ConnectionId,
3495    collaborators: impl IntoIterator<Item = ConnectionId>,
3496    message: &T,
3497    peer: &Peer,
3498) {
3499    broadcast(Some(sender_id), collaborators, |peer_id| {
3500        peer.send(peer_id, message.clone())
3501    });
3502}
3503
3504fn send_notifications(
3505    connection_pool: &ConnectionPool,
3506    peer: &Peer,
3507    notifications: db::NotificationBatch,
3508) {
3509    for (user_id, notification) in notifications {
3510        for connection_id in connection_pool.user_connection_ids(user_id) {
3511            if let Err(error) = peer.send(
3512                connection_id,
3513                proto::AddNotification {
3514                    notification: Some(notification.clone()),
3515                },
3516            ) {
3517                tracing::error!(
3518                    "failed to send notification to {:?} {}",
3519                    connection_id,
3520                    error
3521                );
3522            }
3523        }
3524    }
3525}
3526
3527/// Send a message to the channel
3528async fn send_channel_message(
3529    request: proto::SendChannelMessage,
3530    response: Response<proto::SendChannelMessage>,
3531    session: Session,
3532) -> Result<()> {
3533    // Validate the message body.
3534    let body = request.body.trim().to_string();
3535    if body.len() > MAX_MESSAGE_LEN {
3536        return Err(anyhow!("message is too long"))?;
3537    }
3538    if body.is_empty() {
3539        return Err(anyhow!("message can't be blank"))?;
3540    }
3541
3542    // TODO: adjust mentions if body is trimmed
3543
3544    let timestamp = OffsetDateTime::now_utc();
3545    let nonce = request
3546        .nonce
3547        .ok_or_else(|| anyhow!("nonce can't be blank"))?;
3548
3549    let channel_id = ChannelId::from_proto(request.channel_id);
3550    let CreatedChannelMessage {
3551        message_id,
3552        participant_connection_ids,
3553        notifications,
3554    } = session
3555        .db()
3556        .await
3557        .create_channel_message(
3558            channel_id,
3559            session.user_id(),
3560            &body,
3561            &request.mentions,
3562            timestamp,
3563            nonce.clone().into(),
3564            request.reply_to_message_id.map(MessageId::from_proto),
3565        )
3566        .await?;
3567
3568    let message = proto::ChannelMessage {
3569        sender_id: session.user_id().to_proto(),
3570        id: message_id.to_proto(),
3571        body,
3572        mentions: request.mentions,
3573        timestamp: timestamp.unix_timestamp() as u64,
3574        nonce: Some(nonce),
3575        reply_to_message_id: request.reply_to_message_id,
3576        edited_at: None,
3577    };
3578    broadcast(
3579        Some(session.connection_id),
3580        participant_connection_ids.clone(),
3581        |connection| {
3582            session.peer.send(
3583                connection,
3584                proto::ChannelMessageSent {
3585                    channel_id: channel_id.to_proto(),
3586                    message: Some(message.clone()),
3587                },
3588            )
3589        },
3590    );
3591    response.send(proto::SendChannelMessageResponse {
3592        message: Some(message),
3593    })?;
3594
3595    let pool = &*session.connection_pool().await;
3596    let non_participants =
3597        pool.channel_connection_ids(channel_id)
3598            .filter_map(|(connection_id, _)| {
3599                if participant_connection_ids.contains(&connection_id) {
3600                    None
3601                } else {
3602                    Some(connection_id)
3603                }
3604            });
3605    broadcast(None, non_participants, |peer_id| {
3606        session.peer.send(
3607            peer_id,
3608            proto::UpdateChannels {
3609                latest_channel_message_ids: vec![proto::ChannelMessageId {
3610                    channel_id: channel_id.to_proto(),
3611                    message_id: message_id.to_proto(),
3612                }],
3613                ..Default::default()
3614            },
3615        )
3616    });
3617    send_notifications(pool, &session.peer, notifications);
3618
3619    Ok(())
3620}
3621
3622/// Delete a channel message
3623async fn remove_channel_message(
3624    request: proto::RemoveChannelMessage,
3625    response: Response<proto::RemoveChannelMessage>,
3626    session: Session,
3627) -> Result<()> {
3628    let channel_id = ChannelId::from_proto(request.channel_id);
3629    let message_id = MessageId::from_proto(request.message_id);
3630    let (connection_ids, existing_notification_ids) = session
3631        .db()
3632        .await
3633        .remove_channel_message(channel_id, message_id, session.user_id())
3634        .await?;
3635
3636    broadcast(
3637        Some(session.connection_id),
3638        connection_ids,
3639        move |connection| {
3640            session.peer.send(connection, request.clone())?;
3641
3642            for notification_id in &existing_notification_ids {
3643                session.peer.send(
3644                    connection,
3645                    proto::DeleteNotification {
3646                        notification_id: (*notification_id).to_proto(),
3647                    },
3648                )?;
3649            }
3650
3651            Ok(())
3652        },
3653    );
3654    response.send(proto::Ack {})?;
3655    Ok(())
3656}
3657
3658async fn update_channel_message(
3659    request: proto::UpdateChannelMessage,
3660    response: Response<proto::UpdateChannelMessage>,
3661    session: Session,
3662) -> Result<()> {
3663    let channel_id = ChannelId::from_proto(request.channel_id);
3664    let message_id = MessageId::from_proto(request.message_id);
3665    let updated_at = OffsetDateTime::now_utc();
3666    let UpdatedChannelMessage {
3667        message_id,
3668        participant_connection_ids,
3669        notifications,
3670        reply_to_message_id,
3671        timestamp,
3672        deleted_mention_notification_ids,
3673        updated_mention_notifications,
3674    } = session
3675        .db()
3676        .await
3677        .update_channel_message(
3678            channel_id,
3679            message_id,
3680            session.user_id(),
3681            request.body.as_str(),
3682            &request.mentions,
3683            updated_at,
3684        )
3685        .await?;
3686
3687    let nonce = request
3688        .nonce
3689        .clone()
3690        .ok_or_else(|| anyhow!("nonce can't be blank"))?;
3691
3692    let message = proto::ChannelMessage {
3693        sender_id: session.user_id().to_proto(),
3694        id: message_id.to_proto(),
3695        body: request.body.clone(),
3696        mentions: request.mentions.clone(),
3697        timestamp: timestamp.assume_utc().unix_timestamp() as u64,
3698        nonce: Some(nonce),
3699        reply_to_message_id: reply_to_message_id.map(|id| id.to_proto()),
3700        edited_at: Some(updated_at.unix_timestamp() as u64),
3701    };
3702
3703    response.send(proto::Ack {})?;
3704
3705    let pool = &*session.connection_pool().await;
3706    broadcast(
3707        Some(session.connection_id),
3708        participant_connection_ids,
3709        |connection| {
3710            session.peer.send(
3711                connection,
3712                proto::ChannelMessageUpdate {
3713                    channel_id: channel_id.to_proto(),
3714                    message: Some(message.clone()),
3715                },
3716            )?;
3717
3718            for notification_id in &deleted_mention_notification_ids {
3719                session.peer.send(
3720                    connection,
3721                    proto::DeleteNotification {
3722                        notification_id: (*notification_id).to_proto(),
3723                    },
3724                )?;
3725            }
3726
3727            for notification in &updated_mention_notifications {
3728                session.peer.send(
3729                    connection,
3730                    proto::UpdateNotification {
3731                        notification: Some(notification.clone()),
3732                    },
3733                )?;
3734            }
3735
3736            Ok(())
3737        },
3738    );
3739
3740    send_notifications(pool, &session.peer, notifications);
3741
3742    Ok(())
3743}
3744
3745/// Mark a channel message as read
3746async fn acknowledge_channel_message(
3747    request: proto::AckChannelMessage,
3748    session: Session,
3749) -> Result<()> {
3750    let channel_id = ChannelId::from_proto(request.channel_id);
3751    let message_id = MessageId::from_proto(request.message_id);
3752    let notifications = session
3753        .db()
3754        .await
3755        .observe_channel_message(channel_id, session.user_id(), message_id)
3756        .await?;
3757    send_notifications(
3758        &*session.connection_pool().await,
3759        &session.peer,
3760        notifications,
3761    );
3762    Ok(())
3763}
3764
3765/// Mark a buffer version as synced
3766async fn acknowledge_buffer_version(
3767    request: proto::AckBufferOperation,
3768    session: Session,
3769) -> Result<()> {
3770    let buffer_id = BufferId::from_proto(request.buffer_id);
3771    session
3772        .db()
3773        .await
3774        .observe_buffer_version(
3775            buffer_id,
3776            session.user_id(),
3777            request.epoch as i32,
3778            &request.version,
3779        )
3780        .await?;
3781    Ok(())
3782}
3783
3784/// Get a Supermaven API key for the user
3785async fn get_supermaven_api_key(
3786    _request: proto::GetSupermavenApiKey,
3787    response: Response<proto::GetSupermavenApiKey>,
3788    session: Session,
3789) -> Result<()> {
3790    let user_id: String = session.user_id().to_string();
3791    if !session.is_staff() {
3792        return Err(anyhow!("supermaven not enabled for this account"))?;
3793    }
3794
3795    let email = session
3796        .email()
3797        .ok_or_else(|| anyhow!("user must have an email"))?;
3798
3799    let supermaven_admin_api = session
3800        .supermaven_client
3801        .as_ref()
3802        .ok_or_else(|| anyhow!("supermaven not configured"))?;
3803
3804    let result = supermaven_admin_api
3805        .try_get_or_create_user(CreateExternalUserRequest { id: user_id, email })
3806        .await?;
3807
3808    response.send(proto::GetSupermavenApiKeyResponse {
3809        api_key: result.api_key,
3810    })?;
3811
3812    Ok(())
3813}
3814
3815/// Start receiving chat updates for a channel
3816async fn join_channel_chat(
3817    request: proto::JoinChannelChat,
3818    response: Response<proto::JoinChannelChat>,
3819    session: Session,
3820) -> Result<()> {
3821    let channel_id = ChannelId::from_proto(request.channel_id);
3822
3823    let db = session.db().await;
3824    db.join_channel_chat(channel_id, session.connection_id, session.user_id())
3825        .await?;
3826    let messages = db
3827        .get_channel_messages(channel_id, session.user_id(), MESSAGE_COUNT_PER_PAGE, None)
3828        .await?;
3829    response.send(proto::JoinChannelChatResponse {
3830        done: messages.len() < MESSAGE_COUNT_PER_PAGE,
3831        messages,
3832    })?;
3833    Ok(())
3834}
3835
3836/// Stop receiving chat updates for a channel
3837async fn leave_channel_chat(request: proto::LeaveChannelChat, session: Session) -> Result<()> {
3838    let channel_id = ChannelId::from_proto(request.channel_id);
3839    session
3840        .db()
3841        .await
3842        .leave_channel_chat(channel_id, session.connection_id, session.user_id())
3843        .await?;
3844    Ok(())
3845}
3846
3847/// Retrieve the chat history for a channel
3848async fn get_channel_messages(
3849    request: proto::GetChannelMessages,
3850    response: Response<proto::GetChannelMessages>,
3851    session: Session,
3852) -> Result<()> {
3853    let channel_id = ChannelId::from_proto(request.channel_id);
3854    let messages = session
3855        .db()
3856        .await
3857        .get_channel_messages(
3858            channel_id,
3859            session.user_id(),
3860            MESSAGE_COUNT_PER_PAGE,
3861            Some(MessageId::from_proto(request.before_message_id)),
3862        )
3863        .await?;
3864    response.send(proto::GetChannelMessagesResponse {
3865        done: messages.len() < MESSAGE_COUNT_PER_PAGE,
3866        messages,
3867    })?;
3868    Ok(())
3869}
3870
3871/// Retrieve specific chat messages
3872async fn get_channel_messages_by_id(
3873    request: proto::GetChannelMessagesById,
3874    response: Response<proto::GetChannelMessagesById>,
3875    session: Session,
3876) -> Result<()> {
3877    let message_ids = request
3878        .message_ids
3879        .iter()
3880        .map(|id| MessageId::from_proto(*id))
3881        .collect::<Vec<_>>();
3882    let messages = session
3883        .db()
3884        .await
3885        .get_channel_messages_by_id(session.user_id(), &message_ids)
3886        .await?;
3887    response.send(proto::GetChannelMessagesResponse {
3888        done: messages.len() < MESSAGE_COUNT_PER_PAGE,
3889        messages,
3890    })?;
3891    Ok(())
3892}
3893
3894/// Retrieve the current users notifications
3895async fn get_notifications(
3896    request: proto::GetNotifications,
3897    response: Response<proto::GetNotifications>,
3898    session: Session,
3899) -> Result<()> {
3900    let notifications = session
3901        .db()
3902        .await
3903        .get_notifications(
3904            session.user_id(),
3905            NOTIFICATION_COUNT_PER_PAGE,
3906            request.before_id.map(db::NotificationId::from_proto),
3907        )
3908        .await?;
3909    response.send(proto::GetNotificationsResponse {
3910        done: notifications.len() < NOTIFICATION_COUNT_PER_PAGE,
3911        notifications,
3912    })?;
3913    Ok(())
3914}
3915
3916/// Mark notifications as read
3917async fn mark_notification_as_read(
3918    request: proto::MarkNotificationRead,
3919    response: Response<proto::MarkNotificationRead>,
3920    session: Session,
3921) -> Result<()> {
3922    let database = &session.db().await;
3923    let notifications = database
3924        .mark_notification_as_read_by_id(
3925            session.user_id(),
3926            NotificationId::from_proto(request.notification_id),
3927        )
3928        .await?;
3929    send_notifications(
3930        &*session.connection_pool().await,
3931        &session.peer,
3932        notifications,
3933    );
3934    response.send(proto::Ack {})?;
3935    Ok(())
3936}
3937
3938/// Get the current users information
3939async fn get_private_user_info(
3940    _request: proto::GetPrivateUserInfo,
3941    response: Response<proto::GetPrivateUserInfo>,
3942    session: Session,
3943) -> Result<()> {
3944    let db = session.db().await;
3945
3946    let metrics_id = db.get_user_metrics_id(session.user_id()).await?;
3947    let user = db
3948        .get_user_by_id(session.user_id())
3949        .await?
3950        .ok_or_else(|| anyhow!("user not found"))?;
3951    let flags = db.get_user_flags(session.user_id()).await?;
3952
3953    response.send(proto::GetPrivateUserInfoResponse {
3954        metrics_id,
3955        staff: user.admin,
3956        flags,
3957        accepted_tos_at: user.accepted_tos_at.map(|t| t.and_utc().timestamp() as u64),
3958    })?;
3959    Ok(())
3960}
3961
3962/// Accept the terms of service (tos) on behalf of the current user
3963async fn accept_terms_of_service(
3964    _request: proto::AcceptTermsOfService,
3965    response: Response<proto::AcceptTermsOfService>,
3966    session: Session,
3967) -> Result<()> {
3968    let db = session.db().await;
3969
3970    let accepted_tos_at = Utc::now();
3971    db.set_user_accepted_tos_at(session.user_id(), Some(accepted_tos_at.naive_utc()))
3972        .await?;
3973
3974    response.send(proto::AcceptTermsOfServiceResponse {
3975        accepted_tos_at: accepted_tos_at.timestamp() as u64,
3976    })?;
3977    Ok(())
3978}
3979
3980/// The minimum account age an account must have in order to use the LLM service.
3981pub const MIN_ACCOUNT_AGE_FOR_LLM_USE: chrono::Duration = chrono::Duration::days(30);
3982
3983async fn get_llm_api_token(
3984    _request: proto::GetLlmToken,
3985    response: Response<proto::GetLlmToken>,
3986    session: Session,
3987) -> Result<()> {
3988    let db = session.db().await;
3989
3990    let flags = db.get_user_flags(session.user_id()).await?;
3991    let has_language_models_feature_flag = flags.iter().any(|flag| flag == "language-models");
3992
3993    if !session.is_staff() && !has_language_models_feature_flag {
3994        Err(anyhow!("permission denied"))?
3995    }
3996
3997    let user_id = session.user_id();
3998    let user = db
3999        .get_user_by_id(user_id)
4000        .await?
4001        .ok_or_else(|| anyhow!("user {} not found", user_id))?;
4002
4003    if user.accepted_tos_at.is_none() {
4004        Err(anyhow!("terms of service not accepted"))?
4005    }
4006
4007    let has_legacy_llm_subscription = session.has_llm_subscription(&db).await?;
4008    let billing_subscription = db.get_active_billing_subscription(user.id).await?;
4009    let billing_preferences = db.get_billing_preferences(user.id).await?;
4010
4011    let token = LlmTokenClaims::create(
4012        &user,
4013        session.is_staff(),
4014        billing_preferences,
4015        &flags,
4016        has_legacy_llm_subscription,
4017        billing_subscription,
4018        session.system_id.clone(),
4019        &session.app_state.config,
4020    )?;
4021    response.send(proto::GetLlmTokenResponse { token })?;
4022    Ok(())
4023}
4024
4025fn to_axum_message(message: TungsteniteMessage) -> anyhow::Result<AxumMessage> {
4026    let message = match message {
4027        TungsteniteMessage::Text(payload) => AxumMessage::Text(payload.as_str().to_string()),
4028        TungsteniteMessage::Binary(payload) => AxumMessage::Binary(payload.into()),
4029        TungsteniteMessage::Ping(payload) => AxumMessage::Ping(payload.into()),
4030        TungsteniteMessage::Pong(payload) => AxumMessage::Pong(payload.into()),
4031        TungsteniteMessage::Close(frame) => AxumMessage::Close(frame.map(|frame| AxumCloseFrame {
4032            code: frame.code.into(),
4033            reason: frame.reason.as_str().to_owned().into(),
4034        })),
4035        // We should never receive a frame while reading the message, according
4036        // to the `tungstenite` maintainers:
4037        //
4038        // > It cannot occur when you read messages from the WebSocket, but it
4039        // > can be used when you want to send the raw frames (e.g. you want to
4040        // > send the frames to the WebSocket without composing the full message first).
4041        // >
4042        // > — https://github.com/snapview/tungstenite-rs/issues/268
4043        TungsteniteMessage::Frame(_) => {
4044            bail!("received an unexpected frame while reading the message")
4045        }
4046    };
4047
4048    Ok(message)
4049}
4050
4051fn to_tungstenite_message(message: AxumMessage) -> TungsteniteMessage {
4052    match message {
4053        AxumMessage::Text(payload) => TungsteniteMessage::Text(payload.into()),
4054        AxumMessage::Binary(payload) => TungsteniteMessage::Binary(payload.into()),
4055        AxumMessage::Ping(payload) => TungsteniteMessage::Ping(payload.into()),
4056        AxumMessage::Pong(payload) => TungsteniteMessage::Pong(payload.into()),
4057        AxumMessage::Close(frame) => {
4058            TungsteniteMessage::Close(frame.map(|frame| TungsteniteCloseFrame {
4059                code: frame.code.into(),
4060                reason: frame.reason.as_ref().into(),
4061            }))
4062        }
4063    }
4064}
4065
4066fn notify_membership_updated(
4067    connection_pool: &mut ConnectionPool,
4068    result: MembershipUpdated,
4069    user_id: UserId,
4070    peer: &Peer,
4071) {
4072    for membership in &result.new_channels.channel_memberships {
4073        connection_pool.subscribe_to_channel(user_id, membership.channel_id, membership.role)
4074    }
4075    for channel_id in &result.removed_channels {
4076        connection_pool.unsubscribe_from_channel(&user_id, channel_id)
4077    }
4078
4079    let user_channels_update = proto::UpdateUserChannels {
4080        channel_memberships: result
4081            .new_channels
4082            .channel_memberships
4083            .iter()
4084            .map(|cm| proto::ChannelMembership {
4085                channel_id: cm.channel_id.to_proto(),
4086                role: cm.role.into(),
4087            })
4088            .collect(),
4089        ..Default::default()
4090    };
4091
4092    let mut update = build_channels_update(result.new_channels);
4093    update.delete_channels = result
4094        .removed_channels
4095        .into_iter()
4096        .map(|id| id.to_proto())
4097        .collect();
4098    update.remove_channel_invitations = vec![result.channel_id.to_proto()];
4099
4100    for connection_id in connection_pool.user_connection_ids(user_id) {
4101        peer.send(connection_id, user_channels_update.clone())
4102            .trace_err();
4103        peer.send(connection_id, update.clone()).trace_err();
4104    }
4105}
4106
4107fn build_update_user_channels(channels: &ChannelsForUser) -> proto::UpdateUserChannels {
4108    proto::UpdateUserChannels {
4109        channel_memberships: channels
4110            .channel_memberships
4111            .iter()
4112            .map(|m| proto::ChannelMembership {
4113                channel_id: m.channel_id.to_proto(),
4114                role: m.role.into(),
4115            })
4116            .collect(),
4117        observed_channel_buffer_version: channels.observed_buffer_versions.clone(),
4118        observed_channel_message_id: channels.observed_channel_messages.clone(),
4119    }
4120}
4121
4122fn build_channels_update(channels: ChannelsForUser) -> proto::UpdateChannels {
4123    let mut update = proto::UpdateChannels::default();
4124
4125    for channel in channels.channels {
4126        update.channels.push(channel.to_proto());
4127    }
4128
4129    update.latest_channel_buffer_versions = channels.latest_buffer_versions;
4130    update.latest_channel_message_ids = channels.latest_channel_messages;
4131
4132    for (channel_id, participants) in channels.channel_participants {
4133        update
4134            .channel_participants
4135            .push(proto::ChannelParticipants {
4136                channel_id: channel_id.to_proto(),
4137                participant_user_ids: participants.into_iter().map(|id| id.to_proto()).collect(),
4138            });
4139    }
4140
4141    for channel in channels.invited_channels {
4142        update.channel_invitations.push(channel.to_proto());
4143    }
4144
4145    update
4146}
4147
4148fn build_initial_contacts_update(
4149    contacts: Vec<db::Contact>,
4150    pool: &ConnectionPool,
4151) -> proto::UpdateContacts {
4152    let mut update = proto::UpdateContacts::default();
4153
4154    for contact in contacts {
4155        match contact {
4156            db::Contact::Accepted { user_id, busy } => {
4157                update.contacts.push(contact_for_user(user_id, busy, pool));
4158            }
4159            db::Contact::Outgoing { user_id } => update.outgoing_requests.push(user_id.to_proto()),
4160            db::Contact::Incoming { user_id } => {
4161                update
4162                    .incoming_requests
4163                    .push(proto::IncomingContactRequest {
4164                        requester_id: user_id.to_proto(),
4165                    })
4166            }
4167        }
4168    }
4169
4170    update
4171}
4172
4173fn contact_for_user(user_id: UserId, busy: bool, pool: &ConnectionPool) -> proto::Contact {
4174    proto::Contact {
4175        user_id: user_id.to_proto(),
4176        online: pool.is_user_online(user_id),
4177        busy,
4178    }
4179}
4180
4181fn room_updated(room: &proto::Room, peer: &Peer) {
4182    broadcast(
4183        None,
4184        room.participants
4185            .iter()
4186            .filter_map(|participant| Some(participant.peer_id?.into())),
4187        |peer_id| {
4188            peer.send(
4189                peer_id,
4190                proto::RoomUpdated {
4191                    room: Some(room.clone()),
4192                },
4193            )
4194        },
4195    );
4196}
4197
4198fn channel_updated(
4199    channel: &db::channel::Model,
4200    room: &proto::Room,
4201    peer: &Peer,
4202    pool: &ConnectionPool,
4203) {
4204    let participants = room
4205        .participants
4206        .iter()
4207        .map(|p| p.user_id)
4208        .collect::<Vec<_>>();
4209
4210    broadcast(
4211        None,
4212        pool.channel_connection_ids(channel.root_id())
4213            .filter_map(|(channel_id, role)| {
4214                role.can_see_channel(channel.visibility)
4215                    .then_some(channel_id)
4216            }),
4217        |peer_id| {
4218            peer.send(
4219                peer_id,
4220                proto::UpdateChannels {
4221                    channel_participants: vec![proto::ChannelParticipants {
4222                        channel_id: channel.id.to_proto(),
4223                        participant_user_ids: participants.clone(),
4224                    }],
4225                    ..Default::default()
4226                },
4227            )
4228        },
4229    );
4230}
4231
4232async fn update_user_contacts(user_id: UserId, session: &Session) -> Result<()> {
4233    let db = session.db().await;
4234
4235    let contacts = db.get_contacts(user_id).await?;
4236    let busy = db.is_user_busy(user_id).await?;
4237
4238    let pool = session.connection_pool().await;
4239    let updated_contact = contact_for_user(user_id, busy, &pool);
4240    for contact in contacts {
4241        if let db::Contact::Accepted {
4242            user_id: contact_user_id,
4243            ..
4244        } = contact
4245        {
4246            for contact_conn_id in pool.user_connection_ids(contact_user_id) {
4247                session
4248                    .peer
4249                    .send(
4250                        contact_conn_id,
4251                        proto::UpdateContacts {
4252                            contacts: vec![updated_contact.clone()],
4253                            remove_contacts: Default::default(),
4254                            incoming_requests: Default::default(),
4255                            remove_incoming_requests: Default::default(),
4256                            outgoing_requests: Default::default(),
4257                            remove_outgoing_requests: Default::default(),
4258                        },
4259                    )
4260                    .trace_err();
4261            }
4262        }
4263    }
4264    Ok(())
4265}
4266
4267async fn leave_room_for_session(session: &Session, connection_id: ConnectionId) -> Result<()> {
4268    let mut contacts_to_update = HashSet::default();
4269
4270    let room_id;
4271    let canceled_calls_to_user_ids;
4272    let livekit_room;
4273    let delete_livekit_room;
4274    let room;
4275    let channel;
4276
4277    if let Some(mut left_room) = session.db().await.leave_room(connection_id).await? {
4278        contacts_to_update.insert(session.user_id());
4279
4280        for project in left_room.left_projects.values() {
4281            project_left(project, session);
4282        }
4283
4284        room_id = RoomId::from_proto(left_room.room.id);
4285        canceled_calls_to_user_ids = mem::take(&mut left_room.canceled_calls_to_user_ids);
4286        livekit_room = mem::take(&mut left_room.room.livekit_room);
4287        delete_livekit_room = left_room.deleted;
4288        room = mem::take(&mut left_room.room);
4289        channel = mem::take(&mut left_room.channel);
4290
4291        room_updated(&room, &session.peer);
4292    } else {
4293        return Ok(());
4294    }
4295
4296    if let Some(channel) = channel {
4297        channel_updated(
4298            &channel,
4299            &room,
4300            &session.peer,
4301            &*session.connection_pool().await,
4302        );
4303    }
4304
4305    {
4306        let pool = session.connection_pool().await;
4307        for canceled_user_id in canceled_calls_to_user_ids {
4308            for connection_id in pool.user_connection_ids(canceled_user_id) {
4309                session
4310                    .peer
4311                    .send(
4312                        connection_id,
4313                        proto::CallCanceled {
4314                            room_id: room_id.to_proto(),
4315                        },
4316                    )
4317                    .trace_err();
4318            }
4319            contacts_to_update.insert(canceled_user_id);
4320        }
4321    }
4322
4323    for contact_user_id in contacts_to_update {
4324        update_user_contacts(contact_user_id, session).await?;
4325    }
4326
4327    if let Some(live_kit) = session.app_state.livekit_client.as_ref() {
4328        live_kit
4329            .remove_participant(livekit_room.clone(), session.user_id().to_string())
4330            .await
4331            .trace_err();
4332
4333        if delete_livekit_room {
4334            live_kit.delete_room(livekit_room).await.trace_err();
4335        }
4336    }
4337
4338    Ok(())
4339}
4340
4341async fn leave_channel_buffers_for_session(session: &Session) -> Result<()> {
4342    let left_channel_buffers = session
4343        .db()
4344        .await
4345        .leave_channel_buffers(session.connection_id)
4346        .await?;
4347
4348    for left_buffer in left_channel_buffers {
4349        channel_buffer_updated(
4350            session.connection_id,
4351            left_buffer.connections,
4352            &proto::UpdateChannelBufferCollaborators {
4353                channel_id: left_buffer.channel_id.to_proto(),
4354                collaborators: left_buffer.collaborators,
4355            },
4356            &session.peer,
4357        );
4358    }
4359
4360    Ok(())
4361}
4362
4363fn project_left(project: &db::LeftProject, session: &Session) {
4364    for connection_id in &project.connection_ids {
4365        if project.should_unshare {
4366            session
4367                .peer
4368                .send(
4369                    *connection_id,
4370                    proto::UnshareProject {
4371                        project_id: project.id.to_proto(),
4372                    },
4373                )
4374                .trace_err();
4375        } else {
4376            session
4377                .peer
4378                .send(
4379                    *connection_id,
4380                    proto::RemoveProjectCollaborator {
4381                        project_id: project.id.to_proto(),
4382                        peer_id: Some(session.connection_id.into()),
4383                    },
4384                )
4385                .trace_err();
4386        }
4387    }
4388}
4389
4390pub trait ResultExt {
4391    type Ok;
4392
4393    fn trace_err(self) -> Option<Self::Ok>;
4394}
4395
4396impl<T, E> ResultExt for Result<T, E>
4397where
4398    E: std::fmt::Debug,
4399{
4400    type Ok = T;
4401
4402    #[track_caller]
4403    fn trace_err(self) -> Option<T> {
4404        match self {
4405            Ok(value) => Some(value),
4406            Err(error) => {
4407                tracing::error!("{:?}", error);
4408                None
4409            }
4410        }
4411    }
4412}