use reqwest::RequestBuilder;
use crate::{
api::{execute_api, ApiResponse},
error::Error,
options::{apply_options, make_url, ApiOptions},
parameter::creative_type::CreativeType,
response::{list_response::ListResponse, pin::Pin},
};
#[derive(Debug, Clone, Default)]
pub struct Api {
options: Option<ApiOptions>,
board_id: String,
ad_account_id: Option<String>,
bookmark: Option<String>,
page_size: Option<u64>,
creative_types: Option<Vec<CreativeType>>,
pin_metrics: Option<bool>,
}
impl Api {
pub fn new(options: Option<ApiOptions>, board_id: &str) -> Self {
Self {
options,
board_id: board_id.to_string(),
..Default::default()
}
}
pub fn ad_account_id(mut self, ad_account_id: &str) -> Self {
self.ad_account_id = Some(ad_account_id.to_string());
self
}
pub fn bookmark(mut self, bookmark: &str) -> Self {
self.bookmark = Some(bookmark.to_string());
self
}
pub fn page_size(mut self, page_size: u64) -> Self {
self.page_size = Some(page_size);
self
}
pub fn creative_types(mut self, creative_types: Vec<CreativeType>) -> Self {
self.creative_types = Some(creative_types);
self
}
pub fn pin_metrics(mut self, pin_metrics: bool) -> Self {
self.pin_metrics = Some(pin_metrics);
self
}
pub fn build(self, bearer_code: &str) -> RequestBuilder {
let mut query_parameters = vec![];
if let Some(ad_account_id) = self.ad_account_id {
query_parameters.push(("ad_account_id", ad_account_id));
}
if let Some(bookmark) = self.bookmark {
query_parameters.push(("bookmark", bookmark));
}
if let Some(page_size) = self.page_size {
query_parameters.push(("page_size", page_size.to_string()));
}
if let Some(creative_types) = self.creative_types {
query_parameters.push((
"creative_types",
creative_types
.iter()
.map(|x| x.to_string())
.collect::<Vec<String>>()
.join(","),
));
}
if let Some(pin_metrics) = self.pin_metrics {
query_parameters.push(("pin_metrics", pin_metrics.to_string()));
}
let client = reqwest::Client::new()
.get(make_url(
&format!("/boards/{}/pins", self.board_id),
&self.options,
))
.query(&query_parameters)
.bearer_auth(bearer_code);
apply_options(client, &self.options)
}
pub async fn execute(self, bearer_code: &str) -> Result<ApiResponse<ListResponse<Pin>>, Error> {
execute_api(self.build(bearer_code)).await
}
}
#[cfg(test)]
mod tests {
use super::*;
#[tokio::test]
async fn test_get_boards_board_id_pins() {
let bearer_code = std::env::var("BEARER_CODE").unwrap_or_default();
let board_id = std::env::var("BOARD_ID").unwrap_or_default();
let response = Api::new(None, &board_id)
.execute(bearer_code.as_str())
.await
.unwrap();
println!("{:?}", response);
}
}