2022-07-21 17:08:49 +10:00
|
|
|
use clap::{Args, Parser, Subcommand};
|
|
|
|
use serde::{Deserialize, Serialize};
|
2022-07-25 13:47:43 +10:00
|
|
|
use teslatte::auth::{AccessToken, RefreshToken};
|
2023-08-29 11:33:03 +10:00
|
|
|
use teslatte::cli::energy::EnergySiteArgs;
|
|
|
|
use teslatte::cli::powerwall::PowerwallArgs;
|
2023-08-29 10:49:04 +10:00
|
|
|
use teslatte::cli::vehicle::VehicleArgs;
|
2023-08-29 10:29:06 +10:00
|
|
|
use teslatte::Api;
|
2022-07-21 17:08:49 +10:00
|
|
|
|
|
|
|
/// Teslatte
|
|
|
|
///
|
|
|
|
/// A command line interface for the Tesla API.
|
|
|
|
#[derive(Parser, Debug)]
|
|
|
|
#[clap(author, version, about, long_about = None)]
|
|
|
|
struct Cli {
|
|
|
|
#[clap(subcommand)]
|
|
|
|
command: Command,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Subcommand)]
|
|
|
|
enum Command {
|
|
|
|
/// Authenticate with Tesla via URL, and receive an access token and refresh token.
|
|
|
|
Auth {
|
|
|
|
/// Save tokens to a cli.json file.
|
|
|
|
///
|
|
|
|
/// Be careful with your access tokens!
|
|
|
|
#[clap(short, long)]
|
|
|
|
save: bool,
|
|
|
|
},
|
|
|
|
|
|
|
|
/// Refresh your tokens.
|
|
|
|
Refresh {
|
|
|
|
/// If not provided, will try to read the token from a cli.json file and automatically
|
|
|
|
/// update the file.
|
|
|
|
#[clap(short, long, env = "TESLA_REFRESH_TOKEN")]
|
|
|
|
refresh_token: Option<RefreshToken>,
|
|
|
|
},
|
|
|
|
|
|
|
|
/// Run API commands.
|
|
|
|
Api(ApiArgs),
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Args)]
|
|
|
|
struct ApiArgs {
|
|
|
|
/// Access token. If not provided, will try to load from the cli.json file.
|
|
|
|
#[clap(short, long, env = "TESLA_ACCESS_TOKEN")]
|
|
|
|
access_token: Option<AccessToken>,
|
|
|
|
|
|
|
|
#[clap(subcommand)]
|
|
|
|
command: ApiCommand,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Subcommand)]
|
|
|
|
enum ApiCommand {
|
2022-07-21 21:00:45 +10:00
|
|
|
/// List of vehicles.
|
2022-07-21 17:08:49 +10:00
|
|
|
Vehicles,
|
|
|
|
|
2022-07-21 18:00:41 +10:00
|
|
|
/// Specific Vehicle.
|
2022-07-21 21:00:45 +10:00
|
|
|
Vehicle(VehicleArgs),
|
|
|
|
|
|
|
|
/// List of energy sites.
|
|
|
|
EnergySites,
|
|
|
|
|
2022-07-24 13:00:05 +10:00
|
|
|
/// Specific energy site.
|
|
|
|
EnergySite(EnergySiteArgs),
|
|
|
|
|
2022-07-21 21:00:45 +10:00
|
|
|
/// Powerwall queries.
|
|
|
|
Powerwall(PowerwallArgs),
|
2022-07-21 18:00:41 +10:00
|
|
|
}
|
|
|
|
|
2022-07-21 17:08:49 +10:00
|
|
|
#[tokio::main]
|
2022-07-21 21:00:45 +10:00
|
|
|
async fn main() -> miette::Result<()> {
|
|
|
|
tracing_subscriber::fmt::init();
|
|
|
|
|
2022-07-21 17:08:49 +10:00
|
|
|
let args = Cli::parse();
|
|
|
|
|
|
|
|
match args.command {
|
|
|
|
Command::Auth { save } => {
|
2022-07-25 13:47:43 +10:00
|
|
|
let api = Api::from_interactive_url().await?;
|
2023-08-29 12:16:07 +10:00
|
|
|
print_or_save_tokens(save, &api);
|
2022-07-21 17:08:49 +10:00
|
|
|
}
|
|
|
|
Command::Refresh { refresh_token } => {
|
|
|
|
let (save, refresh_token) = match refresh_token {
|
|
|
|
Some(refresh_token) => (false, refresh_token),
|
|
|
|
None => {
|
|
|
|
let config = Config::load();
|
|
|
|
(true, config.refresh_token)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-07-25 13:47:43 +10:00
|
|
|
let api = Api::from_refresh_token(&refresh_token).await?;
|
2023-08-29 12:16:07 +10:00
|
|
|
print_or_save_tokens(save, &api);
|
2022-07-21 17:08:49 +10:00
|
|
|
}
|
|
|
|
Command::Api(api_args) => {
|
2022-07-25 13:47:43 +10:00
|
|
|
let (access_token, refresh_token) = match &api_args.access_token {
|
|
|
|
Some(a) => (a.clone(), None),
|
2022-07-21 17:08:49 +10:00
|
|
|
None => {
|
|
|
|
let config = Config::load();
|
2022-07-25 13:47:43 +10:00
|
|
|
(
|
|
|
|
config.access_token.clone(),
|
|
|
|
Some(config.refresh_token.clone()),
|
|
|
|
)
|
2022-07-21 17:08:49 +10:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-07-25 13:47:43 +10:00
|
|
|
let api = Api::new(access_token, refresh_token);
|
2022-07-21 17:08:49 +10:00
|
|
|
match api_args.command {
|
|
|
|
ApiCommand::Vehicles => {
|
2022-07-21 21:00:45 +10:00
|
|
|
dbg!(api.vehicles().await?);
|
2022-07-21 17:08:49 +10:00
|
|
|
}
|
2022-07-21 18:03:50 +10:00
|
|
|
ApiCommand::Vehicle(v) => {
|
2022-07-21 21:00:45 +10:00
|
|
|
v.run(&api).await?;
|
|
|
|
}
|
|
|
|
ApiCommand::EnergySites => {
|
|
|
|
dbg!(api.energy_sites().await?);
|
|
|
|
}
|
2022-07-24 13:00:05 +10:00
|
|
|
ApiCommand::EnergySite(e) => {
|
|
|
|
e.run(&api).await?;
|
|
|
|
}
|
2022-07-21 21:00:45 +10:00
|
|
|
ApiCommand::Powerwall(p) => {
|
|
|
|
p.run(&api).await?;
|
2022-07-21 18:03:50 +10:00
|
|
|
}
|
2022-07-21 17:08:49 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-07-21 21:00:45 +10:00
|
|
|
Ok(())
|
2022-07-21 17:08:49 +10:00
|
|
|
}
|
|
|
|
|
2023-08-29 12:16:07 +10:00
|
|
|
fn print_or_save_tokens(save: bool, api: &Api) {
|
2022-07-25 13:47:43 +10:00
|
|
|
let access_token = api.access_token.clone();
|
|
|
|
let refresh_token = api.refresh_token.clone().unwrap();
|
2023-08-29 12:16:07 +10:00
|
|
|
|
2022-07-21 17:08:49 +10:00
|
|
|
if save {
|
|
|
|
Config {
|
|
|
|
access_token,
|
|
|
|
refresh_token,
|
|
|
|
}
|
|
|
|
.save();
|
2023-08-29 12:16:07 +10:00
|
|
|
println!("Saved tokens to cli.json");
|
|
|
|
} else {
|
|
|
|
println!("Access token: {}", access_token);
|
|
|
|
println!("Refresh token: {}", refresh_token);
|
2022-07-21 17:08:49 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
struct Config {
|
|
|
|
access_token: AccessToken,
|
|
|
|
refresh_token: RefreshToken,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Config {
|
|
|
|
fn save(&self) {
|
|
|
|
let json = serde_json::to_string(&self).unwrap();
|
|
|
|
std::fs::write("cli.json", json).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn load() -> Self {
|
|
|
|
let file = std::fs::File::open("cli.json").unwrap();
|
|
|
|
let reader = std::io::BufReader::new(file);
|
|
|
|
let json: serde_json::Value = serde_json::from_reader(reader).unwrap();
|
|
|
|
let config: Config = serde_json::from_str(&json.to_string()).unwrap();
|
|
|
|
config
|
|
|
|
}
|
|
|
|
}
|