2019-12-11 20:21:47 +00:00
|
|
|
use crate::db::site_view::SiteView;
|
2019-11-15 02:08:25 +00:00
|
|
|
use crate::version;
|
2019-11-15 17:10:56 +00:00
|
|
|
use crate::Settings;
|
|
|
|
use actix_web::body::Body;
|
2019-12-31 12:55:33 +00:00
|
|
|
use actix_web::web;
|
2019-11-21 19:27:52 +00:00
|
|
|
use actix_web::HttpResponse;
|
2020-01-12 15:31:51 +00:00
|
|
|
use diesel::r2d2::{ConnectionManager, Pool};
|
|
|
|
use diesel::PgConnection;
|
2019-11-15 17:10:56 +00:00
|
|
|
use serde_json::json;
|
2019-11-15 02:08:25 +00:00
|
|
|
|
2019-12-31 12:55:33 +00:00
|
|
|
pub fn config(cfg: &mut web::ServiceConfig) {
|
|
|
|
cfg
|
|
|
|
.route("/nodeinfo/2.0.json", web::get().to(node_info))
|
|
|
|
.route("/.well-known/nodeinfo", web::get().to(node_info_well_known));
|
|
|
|
}
|
|
|
|
|
2020-01-11 12:30:45 +00:00
|
|
|
async fn node_info_well_known() -> HttpResponse<Body> {
|
2019-11-15 17:10:56 +00:00
|
|
|
let json = json!({
|
|
|
|
"links": {
|
|
|
|
"rel": "http://nodeinfo.diaspora.software/ns/schema/2.0",
|
|
|
|
"href": format!("https://{}/nodeinfo/2.0.json", Settings::get().hostname),
|
|
|
|
}
|
|
|
|
});
|
2019-11-15 02:08:25 +00:00
|
|
|
|
2020-01-12 21:57:48 +00:00
|
|
|
HttpResponse::Ok().json(json)
|
2019-11-15 02:08:25 +00:00
|
|
|
}
|
|
|
|
|
2020-01-12 15:31:51 +00:00
|
|
|
async fn node_info(
|
|
|
|
db: web::Data<Pool<ConnectionManager<PgConnection>>>,
|
|
|
|
) -> Result<HttpResponse, actix_web::Error> {
|
|
|
|
let res = web::block(move || {
|
|
|
|
let conn = db.get()?;
|
|
|
|
let site_view = match SiteView::read(&conn) {
|
|
|
|
Ok(site_view) => site_view,
|
|
|
|
Err(_) => return Err(format_err!("not_found")),
|
|
|
|
};
|
|
|
|
let protocols = if Settings::get().federation_enabled {
|
|
|
|
vec!["activitypub"]
|
|
|
|
} else {
|
|
|
|
vec![]
|
|
|
|
};
|
|
|
|
Ok(json!({
|
|
|
|
"version": "2.0",
|
|
|
|
"software": {
|
|
|
|
"name": "lemmy",
|
|
|
|
"version": version::VERSION,
|
2019-11-15 17:10:56 +00:00
|
|
|
},
|
2020-01-12 15:31:51 +00:00
|
|
|
"protocols": protocols,
|
|
|
|
"usage": {
|
|
|
|
"users": {
|
|
|
|
"total": site_view.number_of_users
|
|
|
|
},
|
|
|
|
"localPosts": site_view.number_of_posts,
|
|
|
|
"localComments": site_view.number_of_comments,
|
|
|
|
"openRegistrations": site_view.open_registration,
|
2019-11-15 17:10:56 +00:00
|
|
|
}
|
2020-01-12 15:31:51 +00:00
|
|
|
}))
|
|
|
|
})
|
|
|
|
.await
|
|
|
|
.map(|json| HttpResponse::Ok().json(json))
|
|
|
|
.map_err(|_| HttpResponse::InternalServerError())?;
|
|
|
|
Ok(res)
|
2019-11-15 02:08:25 +00:00
|
|
|
}
|