2021-09-18 17:55:39 +00:00
|
|
|
use crate::error::{Error, ErrorKind};
|
2022-01-17 22:54:45 +00:00
|
|
|
use activitystreams::iri_string::types::IriString;
|
2022-11-16 02:53:55 +00:00
|
|
|
use actix_web::{http::header::Date, web::Bytes};
|
2022-11-16 17:23:36 +00:00
|
|
|
use awc::{Client, ClientResponse};
|
2021-11-23 22:19:59 +00:00
|
|
|
use dashmap::DashMap;
|
2020-03-18 04:35:20 +00:00
|
|
|
use http_signature_normalization_actix::prelude::*;
|
2022-10-29 17:22:13 +00:00
|
|
|
use rand::thread_rng;
|
|
|
|
use rsa::{pkcs1v15::SigningKey, RsaPrivateKey};
|
2020-03-18 04:35:20 +00:00
|
|
|
use sha2::{Digest, Sha256};
|
2022-10-29 17:22:13 +00:00
|
|
|
use signature::RandomizedSigner;
|
2020-05-23 23:56:27 +00:00
|
|
|
use std::{
|
|
|
|
cell::RefCell,
|
|
|
|
rc::Rc,
|
2020-12-23 18:06:15 +00:00
|
|
|
sync::{
|
|
|
|
atomic::{AtomicUsize, Ordering},
|
2020-12-29 17:27:14 +00:00
|
|
|
Arc,
|
2020-12-23 18:06:15 +00:00
|
|
|
},
|
2022-01-17 23:57:06 +00:00
|
|
|
time::{Duration, SystemTime},
|
2020-05-23 23:56:27 +00:00
|
|
|
};
|
2021-12-03 22:17:25 +00:00
|
|
|
use tracing_awc::Tracing;
|
2020-03-18 04:35:20 +00:00
|
|
|
|
2022-01-17 23:57:06 +00:00
|
|
|
const ONE_SECOND: u64 = 1;
|
|
|
|
const ONE_MINUTE: u64 = 60 * ONE_SECOND;
|
|
|
|
const ONE_HOUR: u64 = 60 * ONE_MINUTE;
|
|
|
|
const ONE_DAY: u64 = 24 * ONE_HOUR;
|
|
|
|
|
2020-12-23 18:06:15 +00:00
|
|
|
#[derive(Clone)]
|
2021-02-10 04:17:20 +00:00
|
|
|
pub(crate) struct Breakers {
|
2021-11-23 22:19:59 +00:00
|
|
|
inner: Arc<DashMap<String, Breaker>>,
|
2020-12-23 18:06:15 +00:00
|
|
|
}
|
|
|
|
|
2021-09-18 17:55:39 +00:00
|
|
|
impl std::fmt::Debug for Breakers {
|
|
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
|
|
f.debug_struct("Breakers").finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-23 18:06:15 +00:00
|
|
|
impl Breakers {
|
2022-01-17 22:54:45 +00:00
|
|
|
fn should_try(&self, url: &IriString) -> bool {
|
|
|
|
if let Some(authority) = url.authority_str() {
|
|
|
|
if let Some(breaker) = self.inner.get(authority) {
|
2021-11-23 22:19:59 +00:00
|
|
|
breaker.should_try()
|
2020-12-29 17:27:14 +00:00
|
|
|
} else {
|
|
|
|
true
|
|
|
|
}
|
2020-12-23 18:06:15 +00:00
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-17 22:54:45 +00:00
|
|
|
fn fail(&self, url: &IriString) {
|
|
|
|
if let Some(authority) = url.authority_str() {
|
2021-02-10 05:45:13 +00:00
|
|
|
let should_write = {
|
2022-01-17 22:54:45 +00:00
|
|
|
if let Some(mut breaker) = self.inner.get_mut(authority) {
|
2021-11-23 22:19:59 +00:00
|
|
|
breaker.fail();
|
2022-11-16 17:23:36 +00:00
|
|
|
if !breaker.should_try() {
|
|
|
|
tracing::warn!("Failed breaker for {}", authority);
|
|
|
|
}
|
2021-02-10 05:45:13 +00:00
|
|
|
false
|
|
|
|
} else {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if should_write {
|
2022-01-17 22:54:45 +00:00
|
|
|
let mut breaker = self.inner.entry(authority.to_owned()).or_default();
|
2021-11-23 22:19:59 +00:00
|
|
|
breaker.fail();
|
2020-12-29 17:27:14 +00:00
|
|
|
}
|
2020-12-23 18:06:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-17 22:54:45 +00:00
|
|
|
fn succeed(&self, url: &IriString) {
|
|
|
|
if let Some(authority) = url.authority_str() {
|
2021-02-10 05:45:13 +00:00
|
|
|
let should_write = {
|
2022-01-17 22:54:45 +00:00
|
|
|
if let Some(mut breaker) = self.inner.get_mut(authority) {
|
2021-11-23 22:19:59 +00:00
|
|
|
breaker.succeed();
|
2021-02-10 05:45:13 +00:00
|
|
|
false
|
|
|
|
} else {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if should_write {
|
2022-01-17 22:54:45 +00:00
|
|
|
let mut breaker = self.inner.entry(authority.to_owned()).or_default();
|
2021-11-23 22:19:59 +00:00
|
|
|
breaker.succeed();
|
2020-12-29 17:27:14 +00:00
|
|
|
}
|
2020-12-23 18:06:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Breakers {
|
|
|
|
fn default() -> Self {
|
|
|
|
Breakers {
|
2021-11-23 22:19:59 +00:00
|
|
|
inner: Arc::new(DashMap::new()),
|
2020-12-23 18:06:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-18 17:55:39 +00:00
|
|
|
#[derive(Debug)]
|
2020-12-23 18:06:15 +00:00
|
|
|
struct Breaker {
|
|
|
|
failures: usize,
|
2022-01-17 23:57:06 +00:00
|
|
|
last_attempt: SystemTime,
|
|
|
|
last_success: SystemTime,
|
2020-12-23 18:06:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Breaker {
|
2022-11-16 17:23:36 +00:00
|
|
|
const FAILURE_WAIT: Duration = Duration::from_secs(ONE_DAY);
|
|
|
|
const FAILURE_THRESHOLD: usize = 10;
|
2020-12-23 18:06:15 +00:00
|
|
|
|
|
|
|
fn should_try(&self) -> bool {
|
2022-11-16 17:23:36 +00:00
|
|
|
self.failures < Self::FAILURE_THRESHOLD
|
|
|
|
|| self.last_attempt + Self::FAILURE_WAIT < SystemTime::now()
|
2020-12-23 18:06:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn fail(&mut self) {
|
|
|
|
self.failures += 1;
|
2022-01-17 23:57:06 +00:00
|
|
|
self.last_attempt = SystemTime::now();
|
2020-12-23 18:06:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn succeed(&mut self) {
|
|
|
|
self.failures = 0;
|
2022-01-17 23:57:06 +00:00
|
|
|
self.last_attempt = SystemTime::now();
|
|
|
|
self.last_success = SystemTime::now();
|
2020-12-23 18:06:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Breaker {
|
|
|
|
fn default() -> Self {
|
2022-01-17 23:57:06 +00:00
|
|
|
let now = SystemTime::now();
|
2020-12-23 18:06:15 +00:00
|
|
|
|
|
|
|
Breaker {
|
|
|
|
failures: 0,
|
|
|
|
last_attempt: now,
|
|
|
|
last_success: now,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-18 04:35:20 +00:00
|
|
|
#[derive(Clone)]
|
2021-02-10 04:17:20 +00:00
|
|
|
pub(crate) struct Requests {
|
2020-05-23 23:56:27 +00:00
|
|
|
client: Rc<RefCell<Client>>,
|
|
|
|
consecutive_errors: Rc<AtomicUsize>,
|
|
|
|
error_limit: usize,
|
2020-03-18 04:35:20 +00:00
|
|
|
key_id: String,
|
2020-05-23 23:56:27 +00:00
|
|
|
user_agent: String,
|
2021-08-01 20:12:06 +00:00
|
|
|
private_key: RsaPrivateKey,
|
2020-03-18 04:35:20 +00:00
|
|
|
config: Config,
|
2020-12-23 18:06:15 +00:00
|
|
|
breakers: Breakers,
|
2020-03-18 04:35:20 +00:00
|
|
|
}
|
2020-03-17 17:15:16 +00:00
|
|
|
|
2021-09-18 17:55:39 +00:00
|
|
|
impl std::fmt::Debug for Requests {
|
|
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
|
|
f.debug_struct("Requests")
|
|
|
|
.field("error_limit", &self.error_limit)
|
|
|
|
.field("key_id", &self.key_id)
|
|
|
|
.field("user_agent", &self.user_agent)
|
|
|
|
.field("config", &self.config)
|
|
|
|
.field("breakers", &self.breakers)
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-16 04:56:38 +00:00
|
|
|
fn build_client(user_agent: &str) -> Client {
|
|
|
|
Client::builder()
|
|
|
|
.wrap(Tracing)
|
|
|
|
.add_default_header(("User-Agent", user_agent.to_string()))
|
|
|
|
.timeout(Duration::from_secs(15))
|
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
|
2020-03-18 04:35:20 +00:00
|
|
|
impl Requests {
|
2021-02-10 04:17:20 +00:00
|
|
|
pub(crate) fn new(
|
2020-12-23 18:06:15 +00:00
|
|
|
key_id: String,
|
2021-08-01 20:12:06 +00:00
|
|
|
private_key: RsaPrivateKey,
|
2020-12-23 18:06:15 +00:00
|
|
|
user_agent: String,
|
|
|
|
breakers: Breakers,
|
|
|
|
) -> Self {
|
2020-03-18 04:35:20 +00:00
|
|
|
Requests {
|
2022-11-16 04:56:38 +00:00
|
|
|
client: Rc::new(RefCell::new(build_client(&user_agent))),
|
2020-05-23 23:56:27 +00:00
|
|
|
consecutive_errors: Rc::new(AtomicUsize::new(0)),
|
|
|
|
error_limit: 3,
|
2020-03-18 04:35:20 +00:00
|
|
|
key_id,
|
2020-05-23 23:56:27 +00:00
|
|
|
user_agent,
|
2020-03-18 04:35:20 +00:00
|
|
|
private_key,
|
2020-09-30 00:33:50 +00:00
|
|
|
config: Config::default().mastodon_compat(),
|
2020-12-23 18:06:15 +00:00
|
|
|
breakers,
|
2020-03-18 04:35:20 +00:00
|
|
|
}
|
2020-03-17 17:15:16 +00:00
|
|
|
}
|
|
|
|
|
2020-05-23 23:56:27 +00:00
|
|
|
fn count_err(&self) {
|
|
|
|
let count = self.consecutive_errors.fetch_add(1, Ordering::Relaxed);
|
|
|
|
if count + 1 >= self.error_limit {
|
2022-11-16 17:23:36 +00:00
|
|
|
tracing::warn!("{} consecutive errors, rebuilding http client", count + 1);
|
2022-11-16 04:56:38 +00:00
|
|
|
*self.client.borrow_mut() = build_client(&self.user_agent);
|
2020-05-23 23:56:27 +00:00
|
|
|
self.reset_err();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn reset_err(&self) {
|
|
|
|
self.consecutive_errors.swap(0, Ordering::Relaxed);
|
|
|
|
}
|
|
|
|
|
2022-11-16 17:23:36 +00:00
|
|
|
async fn check_response(
|
|
|
|
&self,
|
|
|
|
parsed_url: &IriString,
|
|
|
|
res: &mut ClientResponse,
|
|
|
|
) -> Result<(), Error> {
|
|
|
|
self.reset_err();
|
|
|
|
|
|
|
|
if !res.status().is_success() {
|
|
|
|
self.breakers.fail(&parsed_url);
|
|
|
|
|
|
|
|
if let Ok(bytes) = res.body().await {
|
|
|
|
if let Ok(s) = String::from_utf8(bytes.as_ref().to_vec()) {
|
|
|
|
if s.to_lowercase().contains("http signature") {
|
|
|
|
return Err(ErrorKind::SignedDelivery(parsed_url.to_string()).into());
|
|
|
|
}
|
|
|
|
if !s.is_empty() {
|
|
|
|
tracing::warn!("Response from {}, {}", parsed_url, s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return Err(ErrorKind::Status(parsed_url.to_string(), res.status()).into());
|
|
|
|
}
|
|
|
|
|
|
|
|
self.breakers.succeed(&parsed_url);
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tracing::instrument(name = "Fetch Json", skip(self), fields(signing_string))]
|
2021-09-18 17:55:39 +00:00
|
|
|
pub(crate) async fn fetch_json<T>(&self, url: &str) -> Result<T, Error>
|
2020-07-10 22:24:47 +00:00
|
|
|
where
|
|
|
|
T: serde::de::DeserializeOwned,
|
|
|
|
{
|
|
|
|
self.do_fetch(url, "application/json").await
|
|
|
|
}
|
|
|
|
|
2022-11-16 17:23:36 +00:00
|
|
|
#[tracing::instrument(name = "Fetch Activity+Json", skip(self), fields(signing_string))]
|
2021-09-18 17:55:39 +00:00
|
|
|
pub(crate) async fn fetch<T>(&self, url: &str) -> Result<T, Error>
|
2020-07-10 22:24:47 +00:00
|
|
|
where
|
|
|
|
T: serde::de::DeserializeOwned,
|
|
|
|
{
|
|
|
|
self.do_fetch(url, "application/activity+json").await
|
|
|
|
}
|
|
|
|
|
2021-09-18 17:55:39 +00:00
|
|
|
async fn do_fetch<T>(&self, url: &str, accept: &str) -> Result<T, Error>
|
2020-03-18 04:35:20 +00:00
|
|
|
where
|
|
|
|
T: serde::de::DeserializeOwned,
|
|
|
|
{
|
2022-01-17 22:54:45 +00:00
|
|
|
let parsed_url = url.parse::<IriString>()?;
|
2020-12-23 18:06:15 +00:00
|
|
|
|
2021-11-23 22:19:59 +00:00
|
|
|
if !self.breakers.should_try(&parsed_url) {
|
2021-09-18 17:55:39 +00:00
|
|
|
return Err(ErrorKind::Breaker.into());
|
2020-12-23 18:06:15 +00:00
|
|
|
}
|
|
|
|
|
2020-03-30 06:06:13 +00:00
|
|
|
let signer = self.signer();
|
2022-11-16 17:23:36 +00:00
|
|
|
let span = tracing::Span::current();
|
2020-03-30 06:06:13 +00:00
|
|
|
|
2020-05-23 23:56:27 +00:00
|
|
|
let client: Client = self.client.borrow().clone();
|
2020-09-07 21:51:02 +00:00
|
|
|
let res = client
|
|
|
|
.get(url)
|
2021-02-11 00:00:11 +00:00
|
|
|
.insert_header(("Accept", accept))
|
|
|
|
.insert_header(Date(SystemTime::now().into()))
|
2020-03-30 06:06:13 +00:00
|
|
|
.signature(
|
|
|
|
self.config.clone(),
|
|
|
|
self.key_id.clone(),
|
2022-11-16 17:23:36 +00:00
|
|
|
move |signing_string| {
|
|
|
|
span.record("signing_string", signing_string);
|
|
|
|
span.in_scope(|| signer.sign(signing_string))
|
|
|
|
},
|
2020-03-30 06:06:13 +00:00
|
|
|
)
|
|
|
|
.await?
|
2020-03-18 04:35:20 +00:00
|
|
|
.send()
|
2020-05-23 23:56:27 +00:00
|
|
|
.await;
|
|
|
|
|
|
|
|
if res.is_err() {
|
|
|
|
self.count_err();
|
2021-11-23 22:19:59 +00:00
|
|
|
self.breakers.fail(&parsed_url);
|
2020-05-23 23:56:27 +00:00
|
|
|
}
|
|
|
|
|
2021-09-18 17:55:39 +00:00
|
|
|
let mut res = res.map_err(|e| ErrorKind::SendRequest(url.to_string(), e.to_string()))?;
|
2020-05-23 23:56:27 +00:00
|
|
|
|
2022-11-16 17:23:36 +00:00
|
|
|
self.check_response(&parsed_url, &mut res).await?;
|
2020-12-23 18:06:15 +00:00
|
|
|
|
2020-07-10 22:47:41 +00:00
|
|
|
let body = res
|
|
|
|
.body()
|
2020-04-21 21:39:02 +00:00
|
|
|
.await
|
2021-09-18 17:55:39 +00:00
|
|
|
.map_err(|e| ErrorKind::ReceiveResponse(url.to_string(), e.to_string()))?;
|
2020-07-10 22:47:41 +00:00
|
|
|
|
|
|
|
Ok(serde_json::from_slice(body.as_ref())?)
|
2020-03-17 21:53:31 +00:00
|
|
|
}
|
|
|
|
|
2022-11-16 17:23:36 +00:00
|
|
|
#[tracing::instrument(name = "Fetch Bytes", skip(self), fields(signing_string))]
|
2021-09-18 17:55:39 +00:00
|
|
|
pub(crate) async fn fetch_bytes(&self, url: &str) -> Result<(String, Bytes), Error> {
|
2022-01-17 22:54:45 +00:00
|
|
|
let parsed_url = url.parse::<IriString>()?;
|
2020-12-23 18:06:15 +00:00
|
|
|
|
2021-11-23 22:19:59 +00:00
|
|
|
if !self.breakers.should_try(&parsed_url) {
|
2021-09-18 17:55:39 +00:00
|
|
|
return Err(ErrorKind::Breaker.into());
|
2020-12-23 18:06:15 +00:00
|
|
|
}
|
|
|
|
|
2020-03-30 06:06:13 +00:00
|
|
|
let signer = self.signer();
|
2022-11-16 17:23:36 +00:00
|
|
|
let span = tracing::Span::current();
|
2020-03-30 06:06:13 +00:00
|
|
|
|
2020-05-23 23:56:27 +00:00
|
|
|
let client: Client = self.client.borrow().clone();
|
2020-09-07 21:51:02 +00:00
|
|
|
let res = client
|
|
|
|
.get(url)
|
2021-02-11 00:00:11 +00:00
|
|
|
.insert_header(("Accept", "*/*"))
|
|
|
|
.insert_header(Date(SystemTime::now().into()))
|
2020-03-30 06:06:13 +00:00
|
|
|
.signature(
|
|
|
|
self.config.clone(),
|
|
|
|
self.key_id.clone(),
|
2022-11-16 17:23:36 +00:00
|
|
|
move |signing_string| {
|
|
|
|
span.record("signing_string", signing_string);
|
|
|
|
span.in_scope(|| signer.sign(signing_string))
|
|
|
|
},
|
2020-03-30 06:06:13 +00:00
|
|
|
)
|
|
|
|
.await?
|
2020-03-26 03:26:45 +00:00
|
|
|
.send()
|
2020-05-23 23:56:27 +00:00
|
|
|
.await;
|
|
|
|
|
|
|
|
if res.is_err() {
|
2021-11-23 22:19:59 +00:00
|
|
|
self.breakers.fail(&parsed_url);
|
2020-05-23 23:56:27 +00:00
|
|
|
self.count_err();
|
|
|
|
}
|
|
|
|
|
2021-09-18 17:55:39 +00:00
|
|
|
let mut res = res.map_err(|e| ErrorKind::SendRequest(url.to_string(), e.to_string()))?;
|
2020-05-23 23:56:27 +00:00
|
|
|
|
2022-11-16 17:23:36 +00:00
|
|
|
self.check_response(&parsed_url, &mut res).await?;
|
2020-03-26 03:26:45 +00:00
|
|
|
|
|
|
|
let content_type = if let Some(content_type) = res.headers().get("content-type") {
|
|
|
|
if let Ok(s) = content_type.to_str() {
|
|
|
|
s.to_owned()
|
|
|
|
} else {
|
2021-09-18 17:55:39 +00:00
|
|
|
return Err(ErrorKind::ContentType.into());
|
2020-03-26 03:26:45 +00:00
|
|
|
}
|
|
|
|
} else {
|
2021-09-18 17:55:39 +00:00
|
|
|
return Err(ErrorKind::ContentType.into());
|
2020-03-26 03:26:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let bytes = match res.body().limit(1024 * 1024 * 4).await {
|
|
|
|
Err(e) => {
|
2021-09-18 17:55:39 +00:00
|
|
|
return Err(ErrorKind::ReceiveResponse(url.to_string(), e.to_string()).into());
|
2020-03-26 03:26:45 +00:00
|
|
|
}
|
|
|
|
Ok(bytes) => bytes,
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok((content_type, bytes))
|
|
|
|
}
|
|
|
|
|
2021-09-21 19:32:25 +00:00
|
|
|
#[tracing::instrument(
|
|
|
|
"Deliver to Inbox",
|
2022-11-01 20:57:33 +00:00
|
|
|
skip_all,
|
2022-11-16 17:23:36 +00:00
|
|
|
fields(inbox = inbox.to_string().as_str(), signing_string)
|
2021-09-21 19:32:25 +00:00
|
|
|
)]
|
2022-01-17 22:54:45 +00:00
|
|
|
pub(crate) async fn deliver<T>(&self, inbox: IriString, item: &T) -> Result<(), Error>
|
2020-03-18 04:35:20 +00:00
|
|
|
where
|
2021-09-21 18:26:31 +00:00
|
|
|
T: serde::ser::Serialize + std::fmt::Debug,
|
2020-03-18 04:35:20 +00:00
|
|
|
{
|
2021-11-23 22:19:59 +00:00
|
|
|
if !self.breakers.should_try(&inbox) {
|
2021-09-18 17:55:39 +00:00
|
|
|
return Err(ErrorKind::Breaker.into());
|
2020-12-23 18:06:15 +00:00
|
|
|
}
|
|
|
|
|
2020-03-30 06:06:13 +00:00
|
|
|
let signer = self.signer();
|
2022-11-16 17:23:36 +00:00
|
|
|
let span = tracing::Span::current();
|
2020-03-18 04:35:20 +00:00
|
|
|
let item_string = serde_json::to_string(item)?;
|
|
|
|
|
2020-05-23 23:56:27 +00:00
|
|
|
let client: Client = self.client.borrow().clone();
|
2021-09-21 16:21:06 +00:00
|
|
|
let (req, body) = client
|
2020-09-07 21:51:02 +00:00
|
|
|
.post(inbox.as_str())
|
2021-02-11 00:00:11 +00:00
|
|
|
.insert_header(("Accept", "application/activity+json"))
|
|
|
|
.insert_header(("Content-Type", "application/activity+json"))
|
|
|
|
.insert_header(Date(SystemTime::now().into()))
|
2020-03-18 04:35:20 +00:00
|
|
|
.signature_with_digest(
|
2020-03-30 06:06:13 +00:00
|
|
|
self.config.clone(),
|
|
|
|
self.key_id.clone(),
|
|
|
|
Sha256::new(),
|
2020-03-18 04:35:20 +00:00
|
|
|
item_string,
|
2022-11-16 17:23:36 +00:00
|
|
|
move |signing_string| {
|
|
|
|
span.record("signing_string", signing_string);
|
|
|
|
span.in_scope(|| signer.sign(signing_string))
|
|
|
|
},
|
2020-03-30 06:06:13 +00:00
|
|
|
)
|
|
|
|
.await?
|
2021-09-21 16:21:06 +00:00
|
|
|
.split();
|
|
|
|
|
2021-12-03 22:17:25 +00:00
|
|
|
let res = req.send_body(body).await;
|
2020-05-23 23:56:27 +00:00
|
|
|
|
|
|
|
if res.is_err() {
|
|
|
|
self.count_err();
|
2021-11-23 22:19:59 +00:00
|
|
|
self.breakers.fail(&inbox);
|
2020-05-23 23:56:27 +00:00
|
|
|
}
|
|
|
|
|
2021-09-18 17:55:39 +00:00
|
|
|
let mut res = res.map_err(|e| ErrorKind::SendRequest(inbox.to_string(), e.to_string()))?;
|
2020-05-23 23:56:27 +00:00
|
|
|
|
2022-11-16 17:23:36 +00:00
|
|
|
self.check_response(&inbox, &mut res).await?;
|
2020-12-23 18:06:15 +00:00
|
|
|
|
2020-03-18 04:35:20 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
2020-03-17 17:15:16 +00:00
|
|
|
|
2020-03-30 06:06:13 +00:00
|
|
|
fn signer(&self) -> Signer {
|
|
|
|
Signer {
|
|
|
|
private_key: self.private_key.clone(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Signer {
|
2021-08-01 20:12:06 +00:00
|
|
|
private_key: RsaPrivateKey,
|
2020-03-30 06:06:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Signer {
|
2021-09-18 17:55:39 +00:00
|
|
|
fn sign(&self, signing_string: &str) -> Result<String, Error> {
|
2022-10-29 17:22:13 +00:00
|
|
|
let signing_key = SigningKey::<Sha256>::new_with_prefix(self.private_key.clone());
|
2022-10-29 18:47:23 +00:00
|
|
|
let signature = signing_key.try_sign_with_rng(thread_rng(), signing_string.as_bytes())?;
|
2022-10-29 17:22:13 +00:00
|
|
|
Ok(base64::encode(signature.as_ref()))
|
2020-03-18 04:35:20 +00:00
|
|
|
}
|
2020-03-17 17:15:16 +00:00
|
|
|
}
|