2024-09-24 20:26:15 -04:00
|
|
|
use crate::{datasources::posts::PostsDatasource, AppState};
|
2024-09-25 18:29:12 -04:00
|
|
|
use axum::{
|
|
|
|
extract::State,
|
|
|
|
http::StatusCode,
|
|
|
|
response::{IntoResponse, Response},
|
|
|
|
routing::get,
|
|
|
|
Json, Router,
|
|
|
|
};
|
|
|
|
use chrono::Utc;
|
|
|
|
use serde::{Serialize, Serializer};
|
|
|
|
use sqlx::{PgPool, Pool, Postgres};
|
|
|
|
|
|
|
|
#[derive(sqlx::FromRow, Serialize)]
|
|
|
|
pub struct Post {
|
|
|
|
pub post_id: i32,
|
|
|
|
pub title: String,
|
|
|
|
pub body: String,
|
|
|
|
#[serde(serialize_with = "serialize_datetime")]
|
|
|
|
pub created_at: chrono::DateTime<Utc>,
|
|
|
|
}
|
2024-09-24 20:26:15 -04:00
|
|
|
|
2024-09-22 22:38:35 -04:00
|
|
|
pub struct PostsRoute;
|
2024-09-24 20:26:15 -04:00
|
|
|
impl PostsRoute {
|
|
|
|
pub fn routes(app_state: &AppState) -> Router {
|
|
|
|
// add more post routes here!
|
|
|
|
Router::new()
|
2024-09-25 18:29:12 -04:00
|
|
|
.route("/all", get(PostsRoute::get_all))
|
|
|
|
// .route("/:id", get(PostsRoute::get_one))
|
|
|
|
.with_state(app_state.db.clone())
|
2024-09-24 20:26:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// get all posts
|
2024-09-25 18:29:12 -04:00
|
|
|
async fn get_all(State(pool): State<Pool<Postgres>>) -> impl IntoResponse {
|
|
|
|
match PostsDatasource::get_all(&pool).await {
|
|
|
|
Ok(posts) => Ok(Json(posts)),
|
|
|
|
Err(e) => Err((StatusCode::INTERNAL_SERVER_ERROR, e.to_string())),
|
|
|
|
}
|
2024-09-24 20:26:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// get one post
|
2024-09-25 18:29:12 -04:00
|
|
|
// async fn get_one(State(pool): State<PgPool>) -> Json<()> {
|
|
|
|
// let results = PostsDatasource::get_one(pool).await;
|
|
|
|
// Json {}
|
|
|
|
// }
|
2024-09-24 20:26:15 -04:00
|
|
|
|
|
|
|
// get the top three posts with the highest view count
|
2024-09-25 18:29:12 -04:00
|
|
|
// async fn get_popular_posts(State(pool): State<PgPool>) {}
|
2024-09-24 20:26:15 -04:00
|
|
|
|
|
|
|
// get the top three posts with the most comments
|
2024-09-25 18:29:12 -04:00
|
|
|
// async fn get_hot_posts(State(pool): State<PgPool>) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn serialize_datetime<S>(date: &chrono::DateTime<Utc>, serializer: S) -> Result<S::Ok, S::Error>
|
|
|
|
where
|
|
|
|
S: Serializer,
|
|
|
|
{
|
|
|
|
serializer.serialize_str(&date.to_rfc3339())
|
2024-09-24 20:26:15 -04:00
|
|
|
}
|