mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-29 16:24:26 +01:00
61 lines
1.6 KiB
Rust
61 lines
1.6 KiB
Rust
use crate::error::{ResponseError, SResult};
|
|
use crate::helpers::tide::RequestExt;
|
|
use crate::helpers::tide::ACL::*;
|
|
use crate::Data;
|
|
|
|
use heed::types::{Str, Unit};
|
|
use serde::Deserialize;
|
|
use tide::{Request, Response};
|
|
|
|
const UNHEALTHY_KEY: &str = "_is_unhealthy";
|
|
|
|
pub async fn get_health(ctx: Request<Data>) -> SResult<Response> {
|
|
let db = &ctx.state().db;
|
|
let reader = db.main_read_txn()?;
|
|
|
|
let common_store = ctx.state().db.common_store();
|
|
|
|
if let Ok(Some(_)) = common_store.get::<_, Str, Unit>(&reader, UNHEALTHY_KEY) {
|
|
return Err(ResponseError::Maintenance);
|
|
}
|
|
|
|
Ok(tide::Response::new(200))
|
|
}
|
|
|
|
pub async fn set_healthy(ctx: Request<Data>) -> SResult<Response> {
|
|
ctx.is_allowed(Admin)?;
|
|
let db = &ctx.state().db;
|
|
let mut writer = db.main_write_txn()?;
|
|
let common_store = ctx.state().db.common_store();
|
|
common_store.delete::<_, Str>(&mut writer, UNHEALTHY_KEY)?;
|
|
writer.commit()?;
|
|
|
|
Ok(tide::Response::new(200))
|
|
}
|
|
|
|
pub async fn set_unhealthy(ctx: Request<Data>) -> SResult<Response> {
|
|
ctx.is_allowed(Admin)?;
|
|
let db = &ctx.state().db;
|
|
let mut writer = db.main_write_txn()?;
|
|
let common_store = ctx.state().db.common_store();
|
|
common_store.put::<_, Str, Unit>(&mut writer, UNHEALTHY_KEY, &())?;
|
|
writer.commit()?;
|
|
|
|
Ok(tide::Response::new(200))
|
|
}
|
|
|
|
#[derive(Deserialize, Clone)]
|
|
struct HealtBody {
|
|
health: bool,
|
|
}
|
|
|
|
pub async fn change_healthyness(mut ctx: Request<Data>) -> SResult<Response> {
|
|
let body: HealtBody = ctx.body_json().await.map_err(ResponseError::bad_request)?;
|
|
|
|
if body.health {
|
|
set_healthy(ctx).await
|
|
} else {
|
|
set_unhealthy(ctx).await
|
|
}
|
|
}
|