1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
//! Used to interact with the [Collection Endpoints](https://replicate.com/docs/reference/http#collections.get).
//!
//! The Collection struct is used to interact with the [Collection Endpoints](https://replicate.com/docs/reference/http#collections.get).
//!
//! The Collection struct is initialized with a Client struct.
//!
//! The Collection struct has two methods:
//!
//! - `get`
//! - `list`
//!
//! # Example
//!
//! ```
//! use replicate_rust::Replicate;
//!
//! let replicate = Replicate::new();
//!
//! match replicate.collection.get(String::from("audio-generation")) {
//! Ok(result) => println!("Success : {:?}", result),
//! Err(e) => println!("Error : {}", e),
//! }
//!
//!
use crate::api_definitions::{GetCollectionModels, ListCollectionModels};
pub struct Collection {
// Holds a reference to a Replicate
pub parent: crate::client::Client,
}
impl Collection {
pub fn new(rep: crate::client::Client) -> Self {
Self { parent: rep }
}
pub fn get(
&self,
collection_slug: String,
) -> Result<GetCollectionModels, Box<dyn std::error::Error>> {
let client = reqwest::blocking::Client::new();
let response = client
.get(format!(
"{}/collections/{}",
self.parent.base_url, collection_slug
))
.header("Authorization", format!("Token {}", self.parent.auth))
.header("User-Agent", &self.parent.user_agent)
.send()?;
let response_string = response.text()?;
let response_struct: GetCollectionModels = serde_json::from_str(&response_string)?;
Ok(response_struct)
}
pub fn list(&self) -> Result<ListCollectionModels, Box<dyn std::error::Error>> {
let client = reqwest::blocking::Client::new();
let response = client
.get(format!("{}/collections", self.parent.base_url))
.header("Authorization", format!("Token {}", self.parent.auth))
.header("User-Agent", &self.parent.user_agent)
.send()?;
let response_string = response.text()?;
let response_struct: ListCollectionModels = serde_json::from_str(&response_string)?;
Ok(response_struct)
}
}