2019-11-15 17:10:56 +00:00
|
|
|
use crate::db::establish_connection;
|
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;
|
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-02 11:30:00 +00:00
|
|
|
HttpResponse::Ok()
|
2019-11-15 17:10:56 +00:00
|
|
|
.content_type("application/json")
|
2020-01-02 11:30:00 +00:00
|
|
|
.body(json.to_string())
|
2019-11-15 02:08:25 +00:00
|
|
|
}
|
|
|
|
|
2020-01-11 12:30:45 +00:00
|
|
|
async fn node_info() -> HttpResponse<Body> {
|
2019-11-15 17:10:56 +00:00
|
|
|
let conn = establish_connection();
|
|
|
|
let site_view = match SiteView::read(&conn) {
|
|
|
|
Ok(site_view) => site_view,
|
|
|
|
Err(_e) => return HttpResponse::InternalServerError().finish(),
|
|
|
|
};
|
2019-12-19 00:29:56 +00:00
|
|
|
let protocols = if Settings::get().federation_enabled {
|
|
|
|
vec!["activitypub"]
|
|
|
|
} else {
|
|
|
|
vec![]
|
|
|
|
};
|
2019-11-15 17:10:56 +00:00
|
|
|
let json = json!({
|
|
|
|
"version": "2.0",
|
|
|
|
"software": {
|
|
|
|
"name": "lemmy",
|
|
|
|
"version": version::VERSION,
|
|
|
|
},
|
2019-12-19 00:29:56 +00:00
|
|
|
"protocols": protocols,
|
2019-11-15 17:10:56 +00:00
|
|
|
"usage": {
|
|
|
|
"users": {
|
|
|
|
"total": site_view.number_of_users
|
|
|
|
},
|
2019-11-21 14:51:57 +00:00
|
|
|
"localPosts": site_view.number_of_posts,
|
|
|
|
"localComments": site_view.number_of_comments,
|
2019-12-31 15:44:30 +00:00
|
|
|
"openRegistrations": site_view.open_registration,
|
2019-11-15 17:10:56 +00:00
|
|
|
}
|
|
|
|
});
|
2020-01-02 11:30:00 +00:00
|
|
|
HttpResponse::Ok()
|
2019-11-15 17:10:56 +00:00
|
|
|
.content_type("application/json")
|
2020-01-02 11:30:00 +00:00
|
|
|
.body(json.to_string())
|
2019-11-15 02:08:25 +00:00
|
|
|
}
|