2025-10-01 22:36:19 -07:00
|
|
|
use askama::Template;
|
|
|
|
|
use axum::{
|
|
|
|
|
debug_handler,
|
|
|
|
|
extract::{Path, State},
|
|
|
|
|
response::{Html, IntoResponse},
|
|
|
|
|
};
|
2025-10-22 00:43:53 -07:00
|
|
|
use interim_models::{portal::Portal, workspace::Workspace};
|
2025-10-01 22:36:19 -07:00
|
|
|
use interim_pgtypes::pg_class::PgClass;
|
|
|
|
|
use serde::Deserialize;
|
|
|
|
|
use sqlx::postgres::types::Oid;
|
|
|
|
|
use uuid::Uuid;
|
|
|
|
|
|
|
|
|
|
use crate::{
|
|
|
|
|
app::{App, AppDbConn},
|
2025-10-22 00:43:53 -07:00
|
|
|
errors::AppError,
|
2025-10-01 22:36:19 -07:00
|
|
|
navigator::{Navigator, NavigatorPage as _},
|
|
|
|
|
settings::Settings,
|
|
|
|
|
user::CurrentUser,
|
|
|
|
|
workspace_nav::{NavLocation, RelLocation, WorkspaceNav},
|
|
|
|
|
workspace_pooler::{RoleAssignment, WorkspacePooler},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#[derive(Debug, Deserialize)]
|
|
|
|
|
pub(super) struct PathParams {
|
|
|
|
|
portal_id: Uuid,
|
|
|
|
|
rel_oid: u32,
|
|
|
|
|
workspace_id: Uuid,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// HTTP GET handler for portal settings, including renaming and deletion.
|
|
|
|
|
#[debug_handler(state = App)]
|
|
|
|
|
pub(super) async fn get(
|
|
|
|
|
State(settings): State<Settings>,
|
|
|
|
|
CurrentUser(user): CurrentUser,
|
|
|
|
|
AppDbConn(mut app_db): AppDbConn,
|
|
|
|
|
Path(PathParams {
|
|
|
|
|
portal_id,
|
|
|
|
|
rel_oid,
|
|
|
|
|
workspace_id,
|
|
|
|
|
}): Path<PathParams>,
|
|
|
|
|
navigator: Navigator,
|
|
|
|
|
State(mut pooler): State<WorkspacePooler>,
|
|
|
|
|
) -> Result<impl IntoResponse, AppError> {
|
2025-10-22 00:43:53 -07:00
|
|
|
// FIXME: Check workspace authorization.
|
2025-10-01 22:36:19 -07:00
|
|
|
// FIXME ensure workspace corresponds to rel/portal, and that user has
|
|
|
|
|
// permission to access/alter both as needed.
|
|
|
|
|
|
|
|
|
|
let workspace = Workspace::with_id(workspace_id)
|
|
|
|
|
.fetch_one(&mut app_db)
|
|
|
|
|
.await?;
|
|
|
|
|
|
|
|
|
|
let mut workspace_client = pooler
|
|
|
|
|
.acquire_for(workspace.id, RoleAssignment::User(user.id))
|
|
|
|
|
.await?;
|
|
|
|
|
|
|
|
|
|
let rel = PgClass::with_oid(Oid(rel_oid))
|
|
|
|
|
.fetch_one(&mut workspace_client)
|
|
|
|
|
.await?;
|
|
|
|
|
|
|
|
|
|
let portal = Portal::with_id(portal_id).fetch_one(&mut app_db).await?;
|
|
|
|
|
|
|
|
|
|
#[derive(Debug, Template)]
|
|
|
|
|
#[template(path = "relations_single/portal_settings.html")]
|
|
|
|
|
struct ResponseTemplate {
|
|
|
|
|
navigator: Navigator,
|
|
|
|
|
portal: Portal,
|
|
|
|
|
rel: PgClass,
|
|
|
|
|
settings: Settings,
|
|
|
|
|
workspace_nav: WorkspaceNav,
|
|
|
|
|
}
|
|
|
|
|
Ok(Html(
|
|
|
|
|
ResponseTemplate {
|
|
|
|
|
workspace_nav: WorkspaceNav::builder()
|
|
|
|
|
.navigator(navigator.clone())
|
|
|
|
|
.workspace(workspace)
|
|
|
|
|
.populate_rels(&mut app_db, &mut workspace_client)
|
|
|
|
|
.await?
|
|
|
|
|
.current(NavLocation::Rel(Oid(rel_oid), Some(RelLocation::Sharing)))
|
|
|
|
|
.build()?,
|
|
|
|
|
navigator,
|
|
|
|
|
portal,
|
|
|
|
|
rel,
|
|
|
|
|
settings,
|
|
|
|
|
}
|
|
|
|
|
.render()?,
|
|
|
|
|
))
|
|
|
|
|
}
|