mirror of
https://github.com/kristoferssolo/transmission-rpc.git
synced 2025-10-21 20:10:37 +00:00
27 lines
801 B
Rust
27 lines
801 B
Rust
extern crate transmission_rpc;
|
|
|
|
use dotenvy::dotenv;
|
|
use std::env;
|
|
use transmission_rpc::types::{BasicAuth, BlocklistUpdate, Result, RpcResponse};
|
|
use transmission_rpc::TransClient;
|
|
|
|
#[tokio::main]
|
|
async fn main() -> Result<()> {
|
|
dotenv().ok();
|
|
env_logger::init();
|
|
let url = env::var("TURL")?;
|
|
let mut client;
|
|
if let (Ok(user), Ok(password)) = (env::var("TUSER"), env::var("TPWD")) {
|
|
client = TransClient::with_auth(&url, BasicAuth { user, password });
|
|
} else {
|
|
client = TransClient::new(&url);
|
|
}
|
|
let response: Result<RpcResponse<BlocklistUpdate>> = client.blocklist_update().await;
|
|
match response {
|
|
Ok(_) => println!("Yay!"),
|
|
Err(_) => panic!("Oh no!"),
|
|
}
|
|
println!("Rpc response is ok: {}", response?.is_ok());
|
|
Ok(())
|
|
}
|