2020-04-07 18:30:38 +02:00
|
|
|
use crate::error::ResponseError;
|
|
|
|
use actix_web::*;
|
2019-10-31 15:00:36 +01:00
|
|
|
use crate::Data;
|
|
|
|
use heed::types::{Str, Unit};
|
|
|
|
use serde::Deserialize;
|
|
|
|
|
|
|
|
const UNHEALTHY_KEY: &str = "_is_unhealthy";
|
|
|
|
|
2020-04-07 18:30:38 +02:00
|
|
|
#[get("/health")]
|
|
|
|
pub async fn get_health(
|
|
|
|
data: web::Data<Data>,
|
|
|
|
) -> Result<HttpResponse> {
|
|
|
|
let reader = data.db.main_read_txn()
|
|
|
|
.map_err(|_| ResponseError::CreateTransaction)?;
|
2019-10-31 15:00:36 +01:00
|
|
|
|
2020-04-07 18:30:38 +02:00
|
|
|
let common_store = data.db.common_store();
|
2019-10-31 15:00:36 +01:00
|
|
|
|
2019-11-26 16:12:06 +01:00
|
|
|
if let Ok(Some(_)) = common_store.get::<_, Str, Unit>(&reader, UNHEALTHY_KEY) {
|
2020-04-07 18:30:38 +02:00
|
|
|
return Err(ResponseError::Maintenance)?;
|
2019-10-31 15:00:36 +01:00
|
|
|
}
|
|
|
|
|
2020-04-07 18:30:38 +02:00
|
|
|
Ok(HttpResponse::Ok().finish())
|
2019-10-31 15:00:36 +01:00
|
|
|
}
|
|
|
|
|
2020-04-07 18:30:38 +02:00
|
|
|
pub async fn set_healthy(
|
|
|
|
data: web::Data<Data>,
|
|
|
|
) -> Result<HttpResponse> {
|
|
|
|
let mut writer = data.db.main_write_txn()
|
|
|
|
.map_err(|_| ResponseError::CreateTransaction)?;
|
|
|
|
let common_store = data.db.common_store();
|
|
|
|
common_store.delete::<_, Str>(&mut writer, UNHEALTHY_KEY)
|
|
|
|
.map_err(|e| ResponseError::Internal(e.to_string()))?;
|
|
|
|
writer.commit()
|
|
|
|
.map_err(|_| ResponseError::CommitTransaction)?;
|
2019-10-31 15:00:36 +01:00
|
|
|
|
2020-04-07 18:30:38 +02:00
|
|
|
Ok(HttpResponse::Ok().finish())
|
2019-10-31 15:00:36 +01:00
|
|
|
}
|
|
|
|
|
2020-04-07 18:30:38 +02:00
|
|
|
pub async fn set_unhealthy(
|
|
|
|
data: web::Data<Data>,
|
|
|
|
) -> Result<HttpResponse> {
|
|
|
|
let mut writer = data.db.main_write_txn()
|
|
|
|
.map_err(|_| ResponseError::CreateTransaction)?;
|
|
|
|
let common_store = data.db.common_store();
|
|
|
|
common_store.put::<_, Str, Unit>(&mut writer, UNHEALTHY_KEY, &())
|
|
|
|
.map_err(|e| ResponseError::Internal(e.to_string()))?;
|
|
|
|
writer.commit()
|
|
|
|
.map_err(|_| ResponseError::CommitTransaction)?;
|
2019-10-31 15:00:36 +01:00
|
|
|
|
2020-04-07 18:30:38 +02:00
|
|
|
Ok(HttpResponse::Ok().finish())
|
2019-10-31 15:00:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize, Clone)]
|
2020-04-07 18:30:38 +02:00
|
|
|
pub struct HealtBody {
|
2019-10-31 15:00:36 +01:00
|
|
|
health: bool,
|
|
|
|
}
|
|
|
|
|
2020-04-07 18:30:38 +02:00
|
|
|
#[put("/health")]
|
|
|
|
pub async fn change_healthyness(
|
|
|
|
data: web::Data<Data>,
|
|
|
|
body: web::Json<HealtBody>,
|
|
|
|
) -> Result<HttpResponse> {
|
2019-10-31 15:00:36 +01:00
|
|
|
if body.health {
|
2020-04-07 18:30:38 +02:00
|
|
|
set_healthy(data).await
|
2019-10-31 15:00:36 +01:00
|
|
|
} else {
|
2020-04-07 18:30:38 +02:00
|
|
|
set_unhealthy(data).await
|
2019-10-31 15:00:36 +01:00
|
|
|
}
|
|
|
|
}
|