Compare commits

...

2 Commits

Author SHA1 Message Date
3d342892f1 Add README.md 2024-08-02 10:45:44 +02:00
3e2ce391a6 Use wrappers for datetime parsing 2024-08-02 10:45:37 +02:00
3 changed files with 110 additions and 21 deletions

View File

@ -10,6 +10,7 @@ authors = ["Maxime Augier <max@xolus.net>"]
chrono = { version = "0.4.38", features = ["serde"] }
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.121"
serde_repr = "0.1.19"
thiserror = "1.0.63"
tracing = "0.1.40"
ureq = { version = "2.10.0", features = ["json"] }

25
README.md Normal file
View File

@ -0,0 +1,25 @@
# Easee-rs - Bindings for the Easee.com Cloud API.
Work in progress.
## Features and Todo
- Authn/z
- [x] Token authentication
- [ ] Persistence of tokens
- Core functionality
- [x] Enumerate sites and chargers
- [x] Read energy meter
- [x] Read charger status
- [ ] Control charging (start/pause/resume/stop)
- [ ] Control dynamic current limits
- Ergonomics
- [ ] Enums for protocol constants
[1]: https://easee.com

View File

@ -1,7 +1,7 @@
use std::{io, time::{Duration, Instant}};
use chrono::NaiveDateTime;
use serde::{de::DeserializeOwned, Deserialize, Deserializer, Serialize};
use serde_repr::Deserialize_repr;
use thiserror::Error;
use tracing::{debug, info, instrument};
@ -15,13 +15,33 @@ pub struct Context {
const API_BASE: &'static str = "https://api.easee.com/api/";
const REFRESH_TOKEN_DELAY: Duration = Duration::from_secs(600);
#[derive(Debug)]
pub struct NaiveDateTime(pub chrono::NaiveDateTime);
fn parse_iso8601<'d, D: Deserializer<'d>>(de: D) -> Result<NaiveDateTime, D::Error> {
impl<'de> Deserialize<'de> for NaiveDateTime {
fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
{
use serde::de::Error;
let s = <&str as Deserialize>::deserialize(de)?;
Ok(NaiveDateTime::parse_from_str(s, "%Y-%m-%dT%H:%M:%S%.f")
.map_err(D::Error::custom)?)
let s = <&str as Deserialize>::deserialize(d)?;
let dt = chrono::NaiveDateTime::parse_from_str(s, "%Y-%m-%dT%H:%M:%S%.f")
.map_err(D::Error::custom)?;
Ok(NaiveDateTime(dt))
}
}
#[derive(Debug)]
pub struct UtcDateTime(pub chrono::DateTime<chrono::Utc>);
impl<'de> Deserialize<'de> for UtcDateTime {
fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
{
use serde::de::Error;
let s = <&str as Deserialize>::deserialize(d)?;
let dt = chrono::DateTime::parse_from_str(s, "%+")
.map_err(D::Error::custom)?
.to_utc();
Ok(UtcDateTime(dt))
}
}
#[derive(Deserialize, Debug)]
@ -31,20 +51,26 @@ pub struct Charger {
pub name: String,
pub product_code: u32,
pub color: Option<i32>,
#[serde(deserialize_with="parse_iso8601")]
pub created_on: NaiveDateTime,
#[serde(deserialize_with="parse_iso8601")]
pub updated_on: NaiveDateTime,
pub level_of_access: u32,
}
#[derive(Deserialize_repr, Debug)]
#[repr(u8)]
pub enum ChargerOpMode {
Zero = 0,
One = 1,
Paused = 2,
Charging = 3,
}
#[derive(Deserialize, Debug)]
#[serde(rename_all="camelCase")]
pub struct ChargerState {
pub smart_charging: bool,
pub cable_locked: bool,
pub charger_op_mode: u32,
pub charger_op_mode: ChargerOpMode,
pub total_power: f64,
pub session_energy: f64,
pub energy_per_hour: f64,
@ -62,8 +88,7 @@ pub struct ChargerState {
pub dynamic_circuit_current_p2: u32,
pub dynamic_circuit_current_p3: u32,
//#[serde(deserialize_with="parse_iso8601")]
//pub latest_pulse: NaiveDateTime,
pub latest_pulse: UtcDateTime,
pub charger_firmware: u32,
pub voltage: f64,
@ -115,6 +140,28 @@ pub struct ChargerState {
}
#[derive(Debug,Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ChargingSession {
pub charger_id: Option<String>,
pub session_energy: f64,
//pub session_start: Option<NaiveDateTime>,
//pub session_stop: Option<NaiveDateTime>,
pub session_id: Option<i32>,
pub charge_duration_in_seconds: Option<u32>,
//pub first_energy_transfer_period_start: Option<NaiveDateTime>,
//pub last_energy_transfer_period_end: Option<NaiveDateTime>,
#[serde(rename = "pricePrKwhIncludingVat")]
pub price_per_kwh_including_vat: Option<f64>,
pub price_per_kwh_excluding_vat: Option<f64>,
pub vat_percentage: Option<f64>,
pub currency_id: Option<String>,
pub cost_including_vat: Option<f64>,
pub cost_excluding_vat: Option<f64>,
}
#[derive(Debug,Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Address {
}
@ -249,6 +296,14 @@ impl Context {
Ok(resp.into_json_with_error()?)
}
fn maybe_get<T: DeserializeOwned>(&mut self, path: &str) -> Result<Option<T>, ApiError> {
match self.get(path) {
Ok(r) => Ok(Some(r)),
Err(ApiError::Ureq(ureq::Error::Status(404, _))) => Ok(None),
Err(other) => Err(other)
}
}
fn post<T: DeserializeOwned, P: Serialize>(&mut self, path: &str, params: &P) -> Result<T, ApiError> {
self.check_expired()?;
let url: String = format!("{}{}", API_BASE, path);
@ -291,4 +346,12 @@ impl Charger {
let url = format!("chargers/{}/state", self.id);
ctx.get(&url)
}
pub fn ongoing_session(&self, ctx: &mut Context) -> Result<Option<ChargingSession>, ApiError> {
ctx.maybe_get(&format!("chargers/{}/sessions/ongoing", &self.id))
}
pub fn latest_session(&self, ctx: &mut Context) -> Result<Option<ChargingSession>, ApiError> {
ctx.maybe_get(&format!("chargers/{}/sessions/latest", &self.id))
}
}