Files
stoatchat/src/routes/channels/channel_fetch.rs
2021-08-06 17:24:16 +01:00

21 lines
459 B
Rust

use crate::database::*;
use crate::util::result::{Error, Result};
use rocket::serde::json::Value;
#[get("/<target>")]
pub async fn req(user: User, target: Ref) -> Result<Value> {
let target = target.fetch_channel().await?;
let perm = permissions::PermissionCalculator::new(&user)
.with_channel(&target)
.for_channel()
.await?;
if !perm.get_view() {
Err(Error::MissingPermission)?
}
Ok(json!(target))
}