Add connect timeout and overall timeout (#1238)

* Add connect timeout and overall timeout

* Make it configurable

* Fix test

* Add docs
This commit is contained in:
Ellie Huxtable 2023-09-18 08:39:19 +01:00 committed by GitHub
parent ebef5cdaf0
commit 351b3e8a57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 58 additions and 7 deletions

View File

@ -1,5 +1,6 @@
use std::collections::HashMap;
use std::env;
use std::time::Duration;
use eyre::{bail, Result};
use reqwest::{
@ -106,7 +107,12 @@ pub async fn latest_version() -> Result<Version> {
}
impl<'a> Client<'a> {
pub fn new(sync_addr: &'a str, session_token: &'a str) -> Result<Self> {
pub fn new(
sync_addr: &'a str,
session_token: &'a str,
connect_timeout: u64,
timeout: u64,
) -> Result<Self> {
let mut headers = HeaderMap::new();
headers.insert(AUTHORIZATION, format!("Token {session_token}").parse()?);
@ -115,6 +121,8 @@ impl<'a> Client<'a> {
client: reqwest::Client::builder()
.user_agent(APP_USER_AGENT)
.default_headers(headers)
.connect_timeout(Duration::new(connect_timeout, 0))
.timeout(Duration::new(timeout, 0))
.build()?,
})
}

View File

@ -22,7 +22,12 @@ pub enum Operation {
}
pub async fn diff(settings: &Settings, store: &mut impl Store) -> Result<(Vec<Diff>, RecordIndex)> {
let client = Client::new(&settings.sync_address, &settings.session_token)?;
let client = Client::new(
&settings.sync_address,
&settings.session_token,
settings.network_connect_timeout,
settings.network_timeout,
)?;
let local_index = store.tail_records().await?;
let remote_index = client.record_index().await?;
@ -218,7 +223,12 @@ pub async fn sync_remote(
local_store: &mut impl Store,
settings: &Settings,
) -> Result<(i64, i64)> {
let client = Client::new(&settings.sync_address, &settings.session_token)?;
let client = Client::new(
&settings.sync_address,
&settings.session_token,
settings.network_connect_timeout,
settings.network_timeout,
)?;
let mut uploaded = 0;
let mut downloaded = 0;

View File

@ -176,6 +176,9 @@ pub struct Settings {
pub workspaces: bool,
pub ctrl_n_shortcuts: bool,
pub network_connect_timeout: u64,
pub network_timeout: u64,
// This is automatically loaded when settings is created. Do not set in
// config! Keep secrets and settings apart.
pub session_token: String,
@ -372,6 +375,8 @@ impl Settings {
.set_default("workspaces", false)?
.set_default("ctrl_n_shortcuts", false)?
.set_default("secrets_filter", true)?
.set_default("network_connect_timeout", 5)?
.set_default("network_timeout", 30)?
.add_source(
Environment::with_prefix("atuin")
.prefix_separator("_")

View File

@ -189,7 +189,12 @@ async fn sync_upload(
}
pub async fn sync(settings: &Settings, force: bool, db: &mut (impl Database + Send)) -> Result<()> {
let client = api_client::Client::new(&settings.sync_address, &settings.session_token)?;
let client = api_client::Client::new(
&settings.sync_address,
&settings.session_token,
settings.network_connect_timeout,
settings.network_timeout,
)?;
let key = load_key(settings)?; // encryption key

View File

@ -9,7 +9,12 @@ pub async fn run(settings: &Settings) -> Result<()> {
bail!("You are not logged in");
}
let client = api_client::Client::new(&settings.sync_address, &settings.session_token)?;
let client = api_client::Client::new(
&settings.sync_address,
&settings.session_token,
settings.network_connect_timeout,
settings.network_timeout,
)?;
client.delete().await?;

View File

@ -4,7 +4,12 @@ use colored::Colorize;
use eyre::Result;
pub async fn run(settings: &Settings, db: &impl Database) -> Result<()> {
let client = api_client::Client::new(&settings.sync_address, &settings.session_token)?;
let client = api_client::Client::new(
&settings.sync_address,
&settings.session_token,
settings.network_connect_timeout,
settings.network_timeout,
)?;
let status = client.status().await?;
let last_sync = Settings::last_sync()?;

View File

@ -77,7 +77,7 @@ async fn registration() {
.await
.unwrap();
let client = api_client::Client::new(&address, &registration_response.session).unwrap();
let client = api_client::Client::new(&address, &registration_response.session, 5, 30).unwrap();
// the session token works
let status = client.status().await.unwrap();

View File

@ -292,3 +292,16 @@ macOS does not have an <kbd>Alt</kbd> key, although terminal emulators can often
# Use Ctrl-0 .. Ctrl-9 instead of Alt-0 .. Alt-9 UI shortcuts
ctrl_n_shortcuts = true
```
## network_timeout
Default: 30
The max amount of time (in seconds) to wait for a network request. If any
operations with a sync server take longer than this, the code will fail -
rather than wait indefinitely.
## network_connect_timeout
Default: 5
The max time (in seconds) we wait for a connection to become established with a
remote sync server. Any longer than this and the request will fail.