You've already forked AstralRinth
forked from didirus/AstralRinth
* Add dependencies to search * add attrs for faceting * run prepare * Add user data route from token * update to 24hrs * Fix report bugs
13 lines
424 B
Rust
13 lines
424 B
Rust
use actix_web::guard::GuardContext;
|
|
|
|
pub const ADMIN_KEY_HEADER: &str = "Modrinth-Admin";
|
|
pub fn admin_key_guard(ctx: &GuardContext) -> bool {
|
|
let admin_key = std::env::var("LABRINTH_ADMIN_KEY")
|
|
.expect("No admin key provided, this should have been caught by check_env_vars");
|
|
|
|
ctx.head()
|
|
.headers()
|
|
.get(ADMIN_KEY_HEADER)
|
|
.map_or(false, |it| it.as_bytes() == admin_key.as_bytes())
|
|
}
|