kitchen-freezer/examples/provider-sync.rs

43 lines
1.3 KiB
Rust
Raw Normal View History

2021-03-01 23:39:16 +01:00
use std::path::Path;
use my_tasks::{client::Client, traits::CalDavSource};
use my_tasks::cache::Cache;
use my_tasks::Provider;
2021-02-24 23:49:20 +01:00
use my_tasks::settings::URL;
use my_tasks::settings::USERNAME;
use my_tasks::settings::PASSWORD;
const CACHE_FOLDER: &str = "example_cache";
2021-03-01 23:39:16 +01:00
2021-02-24 23:49:20 +01:00
#[tokio::main]
async fn main() {
env_logger::init();
2021-04-11 19:15:04 +02:00
println!("This examples show how to sync a remote server with a local cache, using a Provider");
let cache_path = Path::new(CACHE_FOLDER);
2021-02-24 23:49:20 +01:00
let client = Client::new(URL, USERNAME, PASSWORD).unwrap();
let cache = match Cache::from_folder(&cache_path) {
2021-03-01 23:39:16 +01:00
Ok(cache) => cache,
Err(err) => {
log::warn!("Invalid cache file: {}. Using a default cache", err);
Cache::new(&cache_path)
}
};
let mut provider = Provider::new(client, cache);
2021-03-01 23:39:16 +01:00
let cals = provider.local().get_calendars().await.unwrap();
println!("---- before sync -----");
my_tasks::utils::print_calendar_list(&cals).await;
2021-03-01 23:39:16 +01:00
2021-04-11 19:15:04 +02:00
if provider.sync().await == false {
log::warn!("Sync did not complete, see the previous log lines for more info. You can safely start a new sync.");
}
2021-04-11 19:15:04 +02:00
2021-03-01 23:39:16 +01:00
println!("---- after sync -----");
let cals = provider.local().get_calendars().await.unwrap();
my_tasks::utils::print_calendar_list(&cals).await;
2021-02-24 23:49:20 +01:00
}