aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbryan newbold <bnewbold@robocracy.org>2023-02-19 23:13:44 -0800
committerbryan newbold <bnewbold@robocracy.org>2023-02-19 23:16:03 -0800
commitb1af748739fadce312aafc1e5f09ced891c326b2 (patch)
tree6b26b076f2ad7100b562560d9054545d2a018d3b
parent7730ef1fac57ef5e67b0fcb380b45bea649695ee (diff)
downloadadenosine-b1af748739fadce312aafc1e5f09ced891c326b2.tar.gz
adenosine-b1af748739fadce312aafc1e5f09ced891c326b2.zip
cargo fmt + clippy
-rw-r--r--adenosine-cli/src/bin/adenosine.rs8
-rw-r--r--adenosine/src/xrpc.rs22
2 files changed, 18 insertions, 12 deletions
diff --git a/adenosine-cli/src/bin/adenosine.rs b/adenosine-cli/src/bin/adenosine.rs
index 8176348..169e5d7 100644
--- a/adenosine-cli/src/bin/adenosine.rs
+++ b/adenosine-cli/src/bin/adenosine.rs
@@ -474,13 +474,13 @@ fn run(opt: Opt) -> Result<()> {
ref nsid,
ref fields,
} => {
- update_params_from_fields(&fields, &mut params);
+ update_params_from_fields(fields, &mut params);
let body = value_from_fields(fields.clone());
match method {
- XrpcMethod::Get => xrpc_client.get(&nsid, Some(params))?,
+ XrpcMethod::Get => xrpc_client.get(nsid, Some(params))?,
XrpcMethod::Post => {
require_auth_did(&opt, &mut xrpc_client)?;
- xrpc_client.post(&nsid, Some(params), Some(body))?
+ xrpc_client.post(nsid, Some(params), Some(body))?
}
}
}
@@ -696,7 +696,7 @@ fn run(opt: Opt) -> Result<()> {
.as_ref()
.map(|v| v.to_string())
.unwrap_or(require_auth_did(&opt, &mut xrpc_client)?.to_string());
- params.insert("actor".to_string(), name.to_string());
+ params.insert("actor".to_string(), name);
xrpc_client.get(&Nsid::from_str("app.bsky.actor.getProfile")?, Some(params))?
}
Command::Bsky {
diff --git a/adenosine/src/xrpc.rs b/adenosine/src/xrpc.rs
index d958d5e..62f50cd 100644
--- a/adenosine/src/xrpc.rs
+++ b/adenosine/src/xrpc.rs
@@ -1,12 +1,12 @@
-use crate::identifiers::{Did, Nsid};
use crate::auth::parse_did_from_jwt;
+use crate::identifiers::{Did, Nsid};
use anyhow::anyhow;
pub use anyhow::Result;
use reqwest::header;
+use serde_json::{json, Value};
use std::collections::HashMap;
use std::str::FromStr;
use std::time::Duration;
-use serde_json::{json, Value};
static APP_USER_AGENT: &str = concat!(env!("CARGO_PKG_NAME"), "/", env!("CARGO_PKG_VERSION"),);
@@ -37,7 +37,6 @@ pub struct XrpcClient {
impl XrpcClient {
pub fn new(host: String, auth_token: Option<String>) -> Result<Self> {
-
let http_client = reqwest::blocking::Client::builder()
.user_agent(APP_USER_AGENT)
.timeout(Duration::from_secs(30))
@@ -45,13 +44,19 @@ impl XrpcClient {
.build()
.expect("ERROR :: Could not build reqwest client");
- Ok(XrpcClient { http_client, host, auth_token: auth_token.clone(), refresh_token: auth_token })
+ Ok(XrpcClient {
+ http_client,
+ host,
+ auth_token: auth_token.clone(),
+ refresh_token: auth_token,
+ })
}
fn auth_headers(&self) -> reqwest::header::HeaderMap {
let mut headers = header::HeaderMap::new();
if let Some(token) = &self.auth_token {
- let mut auth_value = header::HeaderValue::from_str(&format!("Bearer {token}")).expect("header formatting");
+ let mut auth_value = header::HeaderValue::from_str(&format!("Bearer {token}"))
+ .expect("header formatting");
auth_value.set_sensitive(true);
headers.insert(header::AUTHORIZATION, auth_value);
};
@@ -59,14 +64,15 @@ impl XrpcClient {
}
/// Creates a new session, and updates current client auth tokens with the result
- pub fn auth_login(&mut self, handle: &str, password: &str) -> Result <()> {
+ pub fn auth_login(&mut self, handle: &str, password: &str) -> Result<()> {
let resp = self.post(
&Nsid::from_str("com.atproto.session.create")?,
None,
Some(json!({
"handle": handle,
"password": password,
- })))?;
+ })),
+ )?;
let resp = resp.ok_or(anyhow!("missing session auth info"))?;
self.auth_token = resp["accessJwt"].as_str().map(|s| s.to_string());
self.refresh_token = resp["refreshJwt"].as_str().map(|s| s.to_string());
@@ -85,7 +91,7 @@ impl XrpcClient {
pub fn auth_did(&self) -> Result<Did> {
if let Some(token) = &self.auth_token {
- return Did::from_str(&parse_did_from_jwt(&token)?)
+ Did::from_str(&parse_did_from_jwt(token)?)
} else {
Err(anyhow!("no auth token configured"))
}