| |
| |
| |
|
|
| |
|
|
| use std::{ |
| path::PathBuf, |
| sync::{mpsc::Receiver, Mutex}, |
| }; |
|
|
| use cookie_store::{CookieStore, RawCookie, RawCookieParseError}; |
| use reqwest::header::HeaderValue; |
|
|
| fn set_cookies( |
| cookie_store: &mut CookieStore, |
| cookie_headers: &mut dyn Iterator<Item = &HeaderValue>, |
| url: &url::Url, |
| ) { |
| let cookies = cookie_headers.filter_map(|val| { |
| std::str::from_utf8(val.as_bytes()) |
| .map_err(RawCookieParseError::from) |
| .and_then(RawCookie::parse) |
| .map(|c| c.into_owned()) |
| .ok() |
| }); |
| cookie_store.store_response_cookies(cookies, url); |
| } |
|
|
| fn cookies(cookie_store: &CookieStore, url: &url::Url) -> Option<HeaderValue> { |
| let s = cookie_store |
| .get_request_values(url) |
| .map(|(name, value)| format!("{name}={value}")) |
| .collect::<Vec<_>>() |
| .join("; "); |
|
|
| if s.is_empty() { |
| return None; |
| } |
|
|
| HeaderValue::from_maybe_shared(bytes::Bytes::from(s)).ok() |
| } |
|
|
| |
| |
| #[derive(Debug)] |
| pub struct CookieStoreMutex { |
| pub path: PathBuf, |
| store: Mutex<CookieStore>, |
| save_task: Mutex<Option<CancellableTask>>, |
| } |
|
|
| impl CookieStoreMutex { |
| |
| pub fn new(path: PathBuf, cookie_store: CookieStore) -> CookieStoreMutex { |
| CookieStoreMutex { |
| path, |
| store: Mutex::new(cookie_store), |
| save_task: Default::default(), |
| } |
| } |
|
|
| pub fn load<R: std::io::BufRead>( |
| path: PathBuf, |
| reader: R, |
| ) -> cookie_store::Result<CookieStoreMutex> { |
| cookie_store::serde::load(reader, |c| serde_json::from_str(c)) |
| .map(|store| CookieStoreMutex::new(path, store)) |
| } |
|
|
| fn cookies_to_str(&self) -> Result<String, serde_json::Error> { |
| let mut cookies = Vec::new(); |
| for cookie in self |
| .store |
| .lock() |
| .expect("poisoned cookie jar mutex") |
| .iter_unexpired() |
| { |
| if cookie.is_persistent() { |
| cookies.push(cookie.clone()); |
| } |
| } |
| serde_json::to_string(&cookies) |
| } |
|
|
| pub fn request_save(&self) -> cookie_store::Result<Receiver<()>> { |
| let cookie_str = self.cookies_to_str()?; |
| let path = self.path.clone(); |
| let (tx, rx) = std::sync::mpsc::channel(); |
| let task = tauri::async_runtime::spawn(async move { |
| match tokio::fs::write(&path, &cookie_str).await { |
| Ok(()) => { |
| let _ = tx.send(()); |
| } |
| Err(_e) => { |
| #[cfg(feature = "tracing")] |
| tracing::error!("failed to save cookie jar: {_e}"); |
| } |
| } |
| }); |
| self.save_task |
| .lock() |
| .unwrap() |
| .replace(CancellableTask(task)); |
| Ok(rx) |
| } |
| } |
|
|
| impl reqwest::cookie::CookieStore for CookieStoreMutex { |
| fn set_cookies(&self, cookie_headers: &mut dyn Iterator<Item = &HeaderValue>, url: &url::Url) { |
| set_cookies(&mut self.store.lock().unwrap(), cookie_headers, url); |
|
|
| |
| if let Err(_e) = self.request_save() { |
| #[cfg(feature = "tracing")] |
| tracing::error!("failed to save cookie jar: {_e}"); |
| } |
| } |
|
|
| fn cookies(&self, url: &url::Url) -> Option<HeaderValue> { |
| let store = self.store.lock().unwrap(); |
| cookies(&store, url) |
| } |
| } |
|
|
| #[derive(Debug)] |
| struct CancellableTask(tauri::async_runtime::JoinHandle<()>); |
|
|
| impl Drop for CancellableTask { |
| fn drop(&mut self) { |
| self.0.abort(); |
| } |
| } |
|
|