mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 04:00:02 +00:00
63 lines
1.7 KiB
Rust
63 lines
1.7 KiB
Rust
|
use crate::api::community::{
|
||
|
GetCommunity, GetCommunityResponse, ListCommunities, ListCommunitiesResponse,
|
||
|
};
|
||
|
use crate::api::UserOperation;
|
||
|
use crate::api::{Oper, Perform};
|
||
|
use actix_web::{web, HttpResponse};
|
||
|
use diesel::r2d2::{ConnectionManager, Pool};
|
||
|
use diesel::PgConnection;
|
||
|
use failure::Error;
|
||
|
use serde::Serialize;
|
||
|
|
||
|
type DbParam = web::Data<Pool<ConnectionManager<PgConnection>>>;
|
||
|
|
||
|
pub fn config(cfg: &mut web::ServiceConfig) {
|
||
|
cfg
|
||
|
// TODO: need to repeat this for every endpoint
|
||
|
.route(
|
||
|
"/api/v1/list_communities",
|
||
|
web::get().to(|info, db| {
|
||
|
route::<ListCommunities, ListCommunitiesResponse>(UserOperation::ListCommunities, info, db)
|
||
|
}),
|
||
|
)
|
||
|
.route(
|
||
|
"/api/v1/get_community",
|
||
|
web::get().to(|info, db| {
|
||
|
route::<GetCommunity, GetCommunityResponse>(UserOperation::GetCommunity, info, db)
|
||
|
}),
|
||
|
);
|
||
|
}
|
||
|
|
||
|
fn perform<Request, Response>(
|
||
|
op: UserOperation,
|
||
|
data: Request,
|
||
|
db: DbParam,
|
||
|
) -> Result<HttpResponse, Error>
|
||
|
where
|
||
|
Response: Serialize,
|
||
|
Oper<Request>: Perform<Response>,
|
||
|
{
|
||
|
let conn = match db.get() {
|
||
|
Ok(c) => c,
|
||
|
Err(e) => return Err(format_err!("{}", e)),
|
||
|
};
|
||
|
let oper: Oper<Request> = Oper::new(op, data);
|
||
|
let response = oper.perform(&conn);
|
||
|
Ok(HttpResponse::Ok().json(response?))
|
||
|
}
|
||
|
|
||
|
async fn route<Data, Response>(
|
||
|
op: UserOperation,
|
||
|
info: web::Query<Data>,
|
||
|
db: DbParam,
|
||
|
) -> Result<HttpResponse, Error>
|
||
|
where
|
||
|
Data: Serialize,
|
||
|
Response: Serialize,
|
||
|
Oper<Data>: Perform<Response>,
|
||
|
{
|
||
|
// TODO: want an implementation like this, where useroperation is passed without explicitly passing the other params
|
||
|
// maybe with a higher order functions? (but that would probably have worse performance)
|
||
|
perform::<Data, Response>(op, info.0, db)
|
||
|
}
|