2024-09-24 20:26:15 -04:00
|
|
|
use crate::{datasources::posts::PostsDatasource, AppState};
|
|
|
|
use axum::{extract::State, routing::get, Json, Router};
|
|
|
|
use sqlx::PgPool;
|
|
|
|
|
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()
|
|
|
|
.route("/", get(PostsRoute::get_all))
|
|
|
|
.route("/:id", get(PostsRoute::get_one))
|
|
|
|
.with_state(app_state.db)
|
|
|
|
}
|
|
|
|
|
|
|
|
// get all posts
|
|
|
|
async fn get_all(State(pool): State<PgPool>) -> Json<()> {
|
|
|
|
let results = PostsDatasource::get_all(pool).await;
|
|
|
|
Json {}
|
|
|
|
}
|
|
|
|
|
|
|
|
// get one post
|
|
|
|
async fn get_one(State(pool): State<PgPool>) -> Json<()> {
|
|
|
|
let results = PostsDatasource::get_one(pool).await;
|
|
|
|
Json {}
|
|
|
|
}
|
|
|
|
|
|
|
|
// get the top three posts with the highest view count
|
|
|
|
async fn get_popular_posts(State(pool): State<PgPool>) -> Json<()> {}
|
|
|
|
|
|
|
|
// get the top three posts with the most comments
|
|
|
|
async fn get_hot_posts(State(pool): State<PgPool>) -> Json<()> {}
|
|
|
|
}
|