feat: added a relay for gatus statuses and changes the url it uses

This commit is contained in:
Strix 2023-10-16 01:36:01 +02:00
parent 39134b5229
commit 43d05fadc4
No known key found for this signature in database
GPG Key ID: 49B2E37B8915B774
8 changed files with 1910 additions and 4 deletions

1
.dockerignore Normal file
View File

@ -0,0 +1 @@
target/

3
.gitignore vendored
View File

@ -1 +1,2 @@
.vscode
.vscode
/target

1834
Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

12
Cargo.toml Normal file
View File

@ -0,0 +1,12 @@
[package]
name = "ixvd-web"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "4"
actix-files = "0.6.2"
reqwest = "0.11.18"
env_logger = "0.10.0"

View File

@ -1,3 +1,16 @@
FROM nginx
FROM rust
COPY public /usr/share/nginx/html
WORKDIR /usr/src/app
# first cargo files to cache dependencies
COPY Cargo.toml Cargo.lock ./
RUN mkdir src && \
echo "fn main() {println!(\"if you see this, the build broke\")}" > src/main.rs && \
cargo build --release
RUN rm -rf src target/release/deps/ixvd_web*
COPY . .
RUN cargo build --release
EXPOSE 8080
CMD ["./target/release/ixvd-web"]

View File

@ -9,7 +9,7 @@ const serviceHolderDiv = document.querySelector('#service-holder');
async function update() {
serviceHolderDiv.innerHTML = 'Loading...';
let fetchResult = await (await fetch('https://s.ixvd.net/api/v1/endpoints/statuses')).json()
let fetchResult = await (await fetch('/relay/gatus')).json()
serviceHolderDiv.innerHTML = '';
fetchResult.forEach(s => {

23
src/main.rs Normal file
View File

@ -0,0 +1,23 @@
use actix_files as fs;
use actix_web::{App, HttpServer, middleware};
use env_logger;
mod relay;
#[actix_web::main]
async fn main() -> std::io::Result<()> {
env_logger::init_from_env(env_logger::Env::default().default_filter_or("info"));
HttpServer::new(|| {
App::new()
.wrap(middleware::Logger::default())
.configure(relay::configure)
.service(
fs::Files::new("/", "./public/")
.index_file("index.html")
)
})
.bind(("0.0.0.0", 8080))?
.run()
.await
}

22
src/relay.rs Normal file
View File

@ -0,0 +1,22 @@
use actix_web::{HttpResponse, web, get};
use actix_web::http::StatusCode;
#[get("/gatus")]
pub async fn get_gatus_services() -> HttpResponse {
let status_response = if let Ok(res) = reqwest::get("https://s.ixvd.net/api/v1/endpoints/statuses").await {
res
} else {
return HttpResponse::build(StatusCode::INTERNAL_SERVER_ERROR)
.body("Failed to get status from gatus");
};
HttpResponse::build(StatusCode::OK)
.body(status_response.text().await.unwrap())
}
pub fn configure(cfg: &mut web::ServiceConfig) {
cfg.service(
web::scope("/relay")
.service(get_gatus_services)
);
}