use super::*;
use serde::Deserialize;
const API_URL: &str = "https://api.weather.gov/";
const MPH_TO_KPH: f64 = 1.609344;
#[derive(Deserialize, Debug, SmartDefault)]
#[serde(tag = "name", rename_all = "lowercase", deny_unknown_fields, default)]
pub struct Config {
coordinates: Option<(String, String)>,
#[default(12)]
forecast_hours: usize,
#[serde(default)]
units: UnitSystem,
}
#[derive(Clone, Debug)]
struct LocationInfo {
query: String,
name: String,
lat: f64,
lon: f64,
}
pub(super) struct Service<'a> {
config: &'a Config,
location: Option<LocationInfo>,
}
impl<'a> Service<'a> {
pub(super) async fn new(autolocate: bool, config: &'a Config) -> Result<Service<'a>> {
let location = if autolocate {
None
} else {
let coords = config.coordinates.as_ref().error("no location given")?;
Some(
Self::get_location_query(
coords.0.parse().error("Unable to convert string to f64")?,
coords.1.parse().error("Unable to convert string to f64")?,
config.units,
)
.await?,
)
};
Ok(Self { config, location })
}
async fn get_location_query(lat: f64, lon: f64, units: UnitSystem) -> Result<LocationInfo> {
let points_url = format!("{API_URL}/points/{lat},{lon}");
let response: ApiPoints = REQWEST_CLIENT
.get(points_url)
.send()
.await
.error("Zone resolution request failed")?
.json()
.await
.error("Failed to parse zone resolution request")?;
let mut query = response.properties.forecast_hourly;
query.push_str(match units {
UnitSystem::Metric => "?units=si",
UnitSystem::Imperial => "?units=us",
});
let location = response.properties.relative_location.properties;
let name = format!("{}, {}", location.city, location.state);
Ok(LocationInfo {
query,
name,
lat,
lon,
})
}
}
#[derive(Deserialize, Debug)]
struct ApiPoints {
properties: ApiPointsProperties,
}
#[derive(Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
struct ApiPointsProperties {
forecast_hourly: String,
relative_location: ApiRelativeLocation,
}
#[derive(Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
struct ApiRelativeLocation {
properties: ApiRelativeLocationProperties,
}
#[derive(Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
struct ApiRelativeLocationProperties {
city: String,
state: String,
}
#[derive(Deserialize, Debug)]
struct ApiForecastResponse {
properties: ApiForecastProperties,
}
#[derive(Deserialize, Debug)]
struct ApiForecastProperties {
periods: Vec<ApiForecast>,
}
#[derive(Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
struct ApiValue {
value: f64,
unit_code: String,
}
#[derive(Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
struct ApiForecast {
is_daytime: bool,
temperature: ApiValue,
relative_humidity: ApiValue,
wind_speed: ApiValue,
wind_direction: String,
short_forecast: String,
}
impl ApiForecast {
fn wind_direction(&self) -> Option<f64> {
let dir = match self.wind_direction.as_str() {
"N" => 0,
"NNE" => 1,
"NE" => 2,
"ENE" => 3,
"E" => 4,
"ESE" => 5,
"SE" => 6,
"SSE" => 7,
"S" => 8,
"SSW" => 9,
"SW" => 10,
"WSW" => 11,
"W" => 12,
"WNW" => 13,
"NW" => 14,
"NNW" => 15,
_ => return None,
};
Some((dir as f64) * (360.0 / 16.0))
}
fn icon_to_word(icon: WeatherIcon) -> String {
match icon {
WeatherIcon::Clear { .. } => "Clear",
WeatherIcon::Clouds { .. } => "Clouds",
WeatherIcon::Fog { .. } => "Fog",
WeatherIcon::Thunder { .. } => "Thunder",
WeatherIcon::Rain { .. } => "Rain",
WeatherIcon::Snow => "Snow",
WeatherIcon::Default => "Unknown",
}
.to_string()
}
fn wind_speed(&self) -> f64 {
if self.wind_speed.unit_code.ends_with("km_h-1") {
self.wind_speed.value / 3.6
} else {
self.wind_speed.value
}
}
fn wind_kmh(&self) -> f64 {
if self.wind_speed.unit_code.ends_with("km_h-1") {
self.wind_speed.value
} else {
self.wind_speed.value * MPH_TO_KPH
}
}
fn apparent_temp(&self) -> f64 {
let temp = if self.temperature.unit_code.ends_with("degC") {
self.temperature.value
} else {
(self.temperature.value - 32.0) * 5.0 / 9.0
};
let humidity = self.relative_humidity.value;
let wind_speed = self.wind_kmh() / 3.6;
let apparent = australian_apparent_temp(temp, humidity, wind_speed);
if self.temperature.unit_code.ends_with("degC") {
apparent
} else {
(apparent * 9.0 / 5.0) + 32.0
}
}
fn to_moment(&self) -> WeatherMoment {
let icon = short_forecast_to_icon(&self.short_forecast, !self.is_daytime);
let weather = Self::icon_to_word(icon);
WeatherMoment {
icon,
weather,
weather_verbose: self.short_forecast.clone(),
temp: self.temperature.value,
apparent: self.apparent_temp(),
humidity: self.relative_humidity.value,
wind: self.wind_speed(),
wind_kmh: self.wind_kmh(),
wind_direction: self.wind_direction(),
}
}
fn to_aggregate(&self) -> ForecastAggregateSegment {
ForecastAggregateSegment {
temp: Some(self.temperature.value),
apparent: Some(self.apparent_temp()),
humidity: Some(self.relative_humidity.value),
wind: Some(self.wind_speed()),
wind_kmh: Some(self.wind_kmh()),
wind_direction: self.wind_direction(),
}
}
}
#[async_trait]
impl WeatherProvider for Service<'_> {
async fn get_weather(
&self,
autolocated: Option<&Coordinates>,
need_forecast: bool,
) -> Result<WeatherResult> {
let location = if let Some(coords) = autolocated {
Self::get_location_query(coords.latitude, coords.longitude, self.config.units).await?
} else {
self.location.clone().error("No location was provided")?
};
let (sunrise, sunset) = calculate_sunrise_sunset(location.lat, location.lon, None)?;
let data: ApiForecastResponse = REQWEST_CLIENT
.get(location.query)
.header(
"Feature-Flags",
"forecast_wind_speed_qv,forecast_temperature_qv",
)
.send()
.await
.error("weather request failed")?
.json()
.await
.error("parsing weather data failed")?;
let data = data.properties.periods;
let current_weather = data.first().error("No current weather")?.to_moment();
if !need_forecast || self.config.forecast_hours == 0 {
return Ok(WeatherResult {
location: location.name,
current_weather,
forecast: None,
sunrise,
sunset,
});
}
let data_agg: Vec<ForecastAggregateSegment> = data
.iter()
.take(self.config.forecast_hours)
.map(|f| f.to_aggregate())
.collect();
let fin = data.last().error("no weather available")?.to_moment();
let forecast = Some(Forecast::new(&data_agg, fin));
Ok(WeatherResult {
location: location.name,
current_weather,
forecast,
sunrise,
sunset,
})
}
}
fn short_forecast_to_icon(weather: &str, is_night: bool) -> WeatherIcon {
let weather = weather.to_lowercase();
if weather.contains("snow") || weather.contains("flurr") || weather.contains("blizzard") {
return WeatherIcon::Snow;
}
if weather.contains("thunder") {
return WeatherIcon::Thunder { is_night };
}
if weather.contains("fog") || weather.contains("mist") {
return WeatherIcon::Fog { is_night };
}
if weather.contains("rain") || weather.contains("shower") || weather.contains("drizzle") {
return WeatherIcon::Rain { is_night };
}
if weather.contains("cloud") || weather.contains("overcast") {
return WeatherIcon::Clouds { is_night };
}
if weather.contains("clear") || weather.contains("sunny") {
return WeatherIcon::Clear { is_night };
}
WeatherIcon::Default
}