2019-11-15 02:08:25 +00:00
|
|
|
use crate::db::community_view::SiteView;
|
2019-11-15 17:10:56 +00:00
|
|
|
use crate::db::establish_connection;
|
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::HttpResponse;
|
|
|
|
use actix_web::body::Body;
|
|
|
|
use serde_json::json;
|
2019-11-15 02:08:25 +00:00
|
|
|
|
2019-11-15 17:10:56 +00:00
|
|
|
pub fn node_info_well_known() -> HttpResponse<Body> {
|
|
|
|
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
|
|
|
|
2019-11-15 17:10:56 +00:00
|
|
|
return HttpResponse::Ok()
|
|
|
|
.content_type("application/json")
|
|
|
|
.body(json.to_string());
|
2019-11-15 02:08:25 +00:00
|
|
|
}
|
|
|
|
|
2019-11-15 17:10:56 +00:00
|
|
|
pub fn node_info() -> HttpResponse<Body> {
|
|
|
|
let conn = establish_connection();
|
|
|
|
let site_view = match SiteView::read(&conn) {
|
|
|
|
Ok(site_view) => site_view,
|
|
|
|
Err(_e) => return HttpResponse::InternalServerError().finish(),
|
|
|
|
};
|
|
|
|
let json = json!({
|
|
|
|
"version": "2.0",
|
|
|
|
"software": {
|
|
|
|
"name": "lemmy",
|
|
|
|
"version": version::VERSION,
|
|
|
|
},
|
|
|
|
"protocols": [],
|
|
|
|
"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,
|
|
|
|
"openRegistrations": true,
|
2019-11-15 17:10:56 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
return HttpResponse::Ok()
|
|
|
|
.content_type("application/json")
|
|
|
|
.body(json.to_string());
|
2019-11-15 02:08:25 +00:00
|
|
|
}
|