polish error handling for GET /images/by-user

This commit is contained in:
SadlyNotSappho 2024-04-12 11:57:33 -07:00
parent 0e4d5210f0
commit a9cbf77eaa
3 changed files with 51 additions and 17 deletions

View File

@ -174,7 +174,10 @@ async fn main() {
routes::posts::create,
],
)
.mount("/api", routes![routes::users::api_perms])
.mount(
"/api",
routes![routes::users::api_perms, routes::posts::get_post],
)
.mount("/css", FileServer::from("/srv/web/css"))
.register("/", catchers![default_catcher])
.launch()

View File

@ -181,24 +181,35 @@ pub async fn get_images_by_username(
mut db: Connection<Db>,
cookies: &CookieJar<'_>,
username: String,
) -> Result<Json<Vec<String>>, String> {
let token = cookies.get_private("token");
match token {
Some(t) => match User::get_by_token(&mut db, t).await {
Some(user) => match user.admin || user.username == username {
true => match Image::get_by_username(&mut db, &username).await {
Ok(images) => Ok(Json::from(
) -> status::Custom<Result<Json<Vec<String>>, String>> {
match User::login_status(&mut db, cookies).await {
LoginStatus::LoggedIn(user) => match user.admin || user.username == username {
true => match Image::get_by_username(&mut db, &username).await {
Ok(images) => status::Custom(
Status::Ok,
Ok(Json::from(
images.into_iter().map(|i| i.uuid).collect::<Vec<String>>(),
)),
Err(why) => {
eprintln!("{why:?}");
Err("Couldn't get that user's images".to_string())
}
},
false => Err("You don't have permission to do this".to_string()),
),
Err(why) => {
eprintln!("{why:?}");
status::Custom(
Status::NotFound,
Err("Couldn't get that user's images".to_string()),
)
}
},
None => Err("Invalid login token".to_string()),
false => status::Custom(
Status::Unauthorized,
Err("You don't have permission to do this".to_string()),
),
},
None => Err("Not logged in".to_string()),
LoginStatus::InvalidToken => status::Custom(
Status::Unauthorized,
Err("Invalid login token.".to_string()),
),
LoginStatus::NotLoggedIn => {
status::Custom(Status::Unauthorized, Err("Not logged in.".to_string()))
}
}
}

View File

@ -12,12 +12,13 @@ use crate::tables::posts::Post;
use crate::tables::{users::LoginStatus, users::User, Db};
use rocket::http::CookieJar;
use rocket::http::Status;
use rocket::post;
use rocket::response::status;
use rocket::serde::json::Json;
use rocket::serde::Deserialize;
use rocket::{get, post};
use rocket_db_pools::Connection;
use uuid::Uuid;
use rocket::serde::Serialize;
#[derive(Deserialize)]
#[serde(crate = "rocket::serde")]
@ -80,3 +81,22 @@ pub async fn create(
}
}
}
#[derive(Serialize)]
#[serde(crate = "rocket::serde")]
pub struct ApiPost {
title: String,
author: String,
text_id: String,
body: String,
timestamp: String,
uuid: String,
published: bool
}
#[get("/posts/<id>")]
pub async fn get_post(mut db: Connection<Db>, id: String) -> status::Custom<Result<Json<ApiPost>, String>> {
// get post by uuid
// if none, get post by text id
// if none, return none
status::Custom(Status::NotImplemented, Err("Not implemented yet.".to_string()))
}