Adding more code to the syncers module

This commit is contained in:
kdeng00
2024-05-12 16:06:10 -04:00
parent bf2d760aa4
commit aab17f6f3c
6 changed files with 148 additions and 15 deletions
+49
View File
@@ -1,7 +1,10 @@
use std::default::Default;
use std::io::Error;
use crate::models;
// use super::syncer_base::Result;
pub struct RetrieveRecords {
pub api: models::api::API,
@@ -14,4 +17,50 @@ impl Default for RetrieveRecords {
api: models::api::API::default(),
}
}
}
impl RetrieveRecords {
pub async fn get_all_songs(&self, token: &models::token::Token)
-> Result<Vec<models::song::Song>, Error> {
let mut songs: Vec<models::song::Song> = Vec::new();
let url = self.retrieve_url();
let access_token = token.bearer_token();
let client = reqwest::Client::new();
let response = client.get(&url)
.header(reqwest::header::AUTHORIZATION, access_token)
.send()
.await
.unwrap();
match response.status() {
reqwest::StatusCode::OK => {
// on success, parse our JSON to an APIResponse
let s = response.json::<Vec<models::song::Song>>().await;
match s {
//
Ok(parsed) => {
songs = parsed;
},
Err(_) => println!("Hm, the response didn't match the shape we expected."),
};
}
reqwest::StatusCode::UNAUTHORIZED => {
println!("Need to grab a new token");
}
other => {
panic!("Uh oh! Something unexpected happened: {:?}", other);
}
}
return Ok(songs);
}
fn retrieve_url(&self) -> String {
let mut url: String = String::new();
return url;
}
}