properly handle uptime

This commit is contained in:
insects 2025-02-04 21:50:28 +01:00
parent 6e1713c967
commit 7d82a7bcfc
3 changed files with 33 additions and 5 deletions

View file

@ -122,6 +122,23 @@ impl<'a> CombinedFish<'a> {
.unwrap(); .unwrap();
data.forecasts.get(&spot.forecast_id) data.forecasts.get(&spot.forecast_id)
} }
pub fn is_in_correct_weather(&self, forecast: &Forecast) -> bool {
if self.entry.weather_set.is_empty() {
return true;
}
let cur_weather = forecast.weather_now();
self.entry
.weather_set
.iter()
.any(|ws| ws == &cur_weather.weather_id)
}
pub fn is_up(&self, data: &Data) -> bool {
let forecast = self.get_forecast(data);
self.is_in_time_range()
&& forecast.is_none_or(|forecast| self.is_in_correct_weather(forecast))
}
} }
impl Data { impl Data {

View file

@ -1,6 +1,6 @@
use std::collections::HashMap; use std::collections::HashMap;
use chrono::{DateTime, NaiveTime, Timelike, Utc}; use chrono::{DateTime, Timelike, Utc};
/// A forecast is used to divine specific weather patterns for a zone. /// A forecast is used to divine specific weather patterns for a zone.
#[derive(Debug)] #[derive(Debug)]

View file

@ -1,7 +1,7 @@
use std::sync::Arc; use std::sync::Arc;
use axum::{extract::State, http::StatusCode, response::IntoResponse, routing::get, Router}; use axum::{extract::State, http::StatusCode, response::IntoResponse, routing::get, Router};
use data::Data; use data::{CombinedFish, Data};
use maud::{html, Markup}; use maud::{html, Markup};
pub mod clock; pub mod clock;
@ -36,12 +36,23 @@ where
#[axum::debug_handler] #[axum::debug_handler]
async fn main_handler(state: State<Arc<AppState>>) -> Result<Markup, AppError> { async fn main_handler(state: State<Arc<AppState>>) -> Result<Markup, AppError> {
let meta = state.data.fish_with_meta(); let meta = state.data.fish_with_meta();
let values = meta.values(); let mut values: Vec<(&CombinedFish, bool)> = meta
.values()
.filter_map(|fish| {
if fish.entry.big_fish {
let is_up = fish.is_up(&state.data);
Some((fish, is_up))
} else {
None
}
})
.collect();
values.sort_by(|(afish, aup), (bfish, bup)| bup.cmp(aup));
Ok(html! { Ok(html! {
h1 { "Hello! Current ET " (clock::get_current_eorzea_date().format("%H:%M")) } h1 { "Hello! Current ET " (clock::get_current_eorzea_date().format("%H:%M")) }
@for fish in values { @for (fish, is_up) in values {
li { li {
@if fish.is_in_time_range() { @if is_up {
"Up! " "Up! "
} }
(fish.meta.name_en) (fish.meta.name_en)