properly handle uptime
This commit is contained in:
parent
6e1713c967
commit
7d82a7bcfc
3 changed files with 33 additions and 5 deletions
17
src/data.rs
17
src/data.rs
|
@ -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 {
|
||||||
|
|
|
@ -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)]
|
||||||
|
|
19
src/main.rs
19
src/main.rs
|
@ -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)
|
||||||
|
|
Loading…
Add table
Reference in a new issue