codemp/src/client.rs

195 lines
5 KiB
Rust
Raw Normal View History

2023-08-20 00:46:55 +02:00
//! ### client
//!
2023-08-20 00:46:55 +02:00
//! codemp client manager, containing grpc services
use std::sync::Arc;
use dashmap::DashMap;
2024-08-22 00:57:24 +02:00
use tonic::{service::interceptor::InterceptedService, transport::{Channel, Endpoint}};
use crate::{api::User, errors::{ConnectionResult, ProcedureResult}, ext::InternallyMutable, workspace::Workspace};
2024-08-22 00:57:24 +02:00
use codemp_proto::{
auth::{auth_client::AuthClient, LoginRequest},
common::{Empty, Token}, session::{session_client::SessionClient, InviteRequest, WorkspaceRequest},
};
#[cfg(feature = "python")]
use pyo3::prelude::*;
2023-08-20 00:46:55 +02:00
/// codemp client manager
///
/// contains all required grpc services and the unique user id
/// will disconnect when dropped
/// can be used to interact with server
#[derive(Debug, Clone)]
#[cfg_attr(feature = "js", napi_derive::napi)]
#[cfg_attr(feature = "python", pyclass)]
pub struct Client(Arc<ClientInner>);
#[derive(Debug)]
struct ClientInner {
2024-08-22 00:57:24 +02:00
user: User,
host: String,
workspaces: DashMap<String, Workspace>,
2024-08-22 00:57:24 +02:00
auth: AuthClient<Channel>,
session: SessionClient<InterceptedService<Channel, SessionInterceptor>>,
claims: InternallyMutable<Token>,
}
impl Client {
2023-08-20 00:46:55 +02:00
/// instantiate and connect a new client
2024-08-22 00:57:24 +02:00
pub async fn connect(
host: impl AsRef<str>,
username: impl AsRef<str>,
password: impl AsRef<str>,
) -> ConnectionResult<Self> {
let host = if host.as_ref().starts_with("http") {
host.as_ref().to_string()
} else {
format!("https://{}", host.as_ref())
};
2024-08-22 00:57:24 +02:00
let channel = Endpoint::from_shared(host.clone())?.connect().await?;
let mut auth = AuthClient::new(channel.clone());
let resp = auth.login(LoginRequest {
username: username.as_ref().to_string(),
password: password.as_ref().to_string(),
})
.await?
.into_inner();
let claims = InternallyMutable::new(resp.token);
let session = SessionClient::with_interceptor(
channel, SessionInterceptor(claims.channel())
);
Ok(Client(Arc::new(ClientInner {
host,
2024-08-22 00:57:24 +02:00
user: resp.user.into(),
workspaces: DashMap::default(),
2024-08-22 00:57:24 +02:00
claims,
auth, session,
})))
}
2024-08-22 00:57:24 +02:00
/// refresh session token
pub async fn refresh(&self) -> ProcedureResult<()> {
2024-08-22 00:57:24 +02:00
let new_token = self.0.auth.clone().refresh(self.0.claims.get())
.await?
.into_inner();
self.0.claims.set(new_token);
Ok(())
}
/// attempts to create a new workspace with given name
pub async fn create_workspace(&self, name: impl AsRef<str>) -> ProcedureResult<()> {
2024-08-22 00:57:24 +02:00
self.0.session
.clone()
.create_workspace(WorkspaceRequest { workspace: name.as_ref().to_string() })
.await?;
Ok(())
}
/// delete an existing workspace if possible
pub async fn delete_workspace(&self, name: impl AsRef<str>) -> ProcedureResult<()> {
2024-08-22 00:57:24 +02:00
self.0.session
.clone()
.delete_workspace(WorkspaceRequest { workspace: name.as_ref().to_string() })
.await?;
Ok(())
}
/// invite user associated with username to workspace, if possible
pub async fn invite_to_workspace(&self, workspace_name: impl AsRef<str>, user_name: impl AsRef<str>) -> ProcedureResult<()> {
2024-08-22 00:57:24 +02:00
self.0.session
.clone()
.invite_to_workspace(InviteRequest {
workspace: workspace_name.as_ref().to_string(),
user: user_name.as_ref().to_string(),
})
.await?;
Ok(())
}
/// list all available workspaces, filtering between those owned and those invited to
pub async fn list_workspaces(&self, owned: bool, invited: bool) -> ProcedureResult<Vec<String>> {
2024-08-22 00:57:24 +02:00
let mut workspaces = self.0.session
.clone()
.list_workspaces(Empty {})
.await?
.into_inner();
let mut out = Vec::new();
if owned { out.append(&mut workspaces.owned) }
if invited { out.append(&mut workspaces.invited) }
Ok(out)
}
/// join a workspace, returns [Workspace]
pub async fn join_workspace(&self, workspace: impl AsRef<str>) -> ConnectionResult<Workspace> {
2024-08-22 00:57:24 +02:00
let token = self.0.session
.clone()
.access_workspace(WorkspaceRequest { workspace: workspace.as_ref().to_string() })
.await?
.into_inner();
let ws = Workspace::try_new(
workspace.as_ref().to_string(),
2024-08-22 00:57:24 +02:00
self.0.user.clone(),
&self.0.host,
2024-08-22 00:57:24 +02:00
token,
self.0.claims.channel(),
)
.await?;
self.0
.workspaces
.insert(workspace.as_ref().to_string(), ws.clone());
Ok(ws)
}
/// leaves a [Workspace] by name
pub fn leave_workspace(&self, id: &str) -> bool {
self.0.workspaces.remove(id).is_some()
}
/// gets a [Workspace] by name
pub fn get_workspace(&self, id: &str) -> Option<Workspace> {
self.0.workspaces.get(id).map(|x| x.clone())
}
/// get name of all active [Workspace]s
pub fn active_workspaces(&self) -> Vec<String> {
self.0
.workspaces
.iter()
.map(|x| x.key().to_string())
.collect()
}
/// accessor for user id
2024-08-22 00:57:24 +02:00
pub fn user(&self) -> &User {
&self.0.user
}
}
#[derive(Debug, Clone)]
struct SessionInterceptor(tokio::sync::watch::Receiver<codemp_proto::common::Token>);
impl tonic::service::Interceptor for SessionInterceptor {
fn call(
&mut self,
mut request: tonic::Request<()>,
) -> tonic::Result<tonic::Request<()>> {
2024-08-22 00:57:24 +02:00
if let Ok(token) = self.0.borrow().token.parse() {
request.metadata_mut().insert("session", token);
}
Ok(request)
}
}