🏡 index : ~doyle/chartered.git

//! Returns a list to the 10 most recently created crates that the user has access to for their
//! viewing pleasure

use axum::{extract, Json};
use chartered_db::{crates::Crate, users::User, ConnectionPool};
use chrono::{DateTime, TimeZone, Utc};
use serde::Serialize;
use std::sync::Arc;
use thiserror::Error;

pub async fn handle(
    extract::Extension(db): extract::Extension<ConnectionPool>,
    extract::Extension(user): extract::Extension<Arc<User>>,
) -> Result<Json<Response>, Error> {
    let crates = Crate::list_recently_created(db, user.id).await?;

    Ok(Json(Response {
        crates: crates
            .into_iter()
            .map(|(crate_, organisation)| ResponseCrate {
                name: crate_.name,
                created_at: chrono::Utc.from_local_datetime(&crate_.created_at).unwrap(),
                organisation: organisation.name,
            })
            .collect(),
    }))
}

#[derive(Serialize)]
pub struct Response {
    crates: Vec<ResponseCrate>,
}

#[derive(Serialize)]
pub struct ResponseCrate {
    name: String,
    created_at: DateTime<Utc>,
    organisation: String,
}

#[derive(Error, Debug)]
pub enum Error {
    #[error("{0}")]
    Database(#[from] chartered_db::Error),
}

impl Error {
    pub fn status_code(&self) -> axum::http::StatusCode {
        match self {
            Self::Database(e) => e.status_code(),
        }
    }
}

define_error_response!(Error);