351 lines
19 KiB
Rust
351 lines
19 KiB
Rust
/*
|
|
* Fur Affinity API
|
|
*
|
|
* [](https://github.com/FurryCoders/furaffinity-api) [](https://github.com/FurryCoders/furaffinity-api/actions/workflows/test.yml) [](https://pypi.org/project/faapi/3.11.6) [](/robots.json) [](/docs) [](/redoc) Use the Fur Affinity API badge for your projects! [](https://furaffinity-api.herokuapp.com/badge/svg) _The badge is provided via [Shields.io](https://shields.io/)._
|
|
*
|
|
* The version of the OpenAPI document: 1.5.5
|
|
*
|
|
* Generated by: https://openapi-generator.tech
|
|
*/
|
|
|
|
|
|
use reqwest;
|
|
use serde::{Deserialize, Serialize};
|
|
use crate::{apis::ResponseContent, models};
|
|
use super::{Error, configuration};
|
|
|
|
|
|
/// struct for typed errors of method [`get_favorites_user_username_favorites_page_post`]
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
#[serde(untagged)]
|
|
pub enum GetFavoritesUserUsernameFavoritesPagePostError {
|
|
Status401(models::Error),
|
|
Status403(models::Error),
|
|
Status404(models::Error),
|
|
Status500(models::Error),
|
|
Status422(models::HttpValidationError),
|
|
UnknownValue(serde_json::Value),
|
|
}
|
|
|
|
/// struct for typed errors of method [`get_gallery_user_username_gallery_page_post`]
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
#[serde(untagged)]
|
|
pub enum GetGalleryUserUsernameGalleryPagePostError {
|
|
Status401(models::Error),
|
|
Status403(models::Error),
|
|
Status404(models::Error),
|
|
Status500(models::Error),
|
|
Status422(models::HttpValidationError),
|
|
UnknownValue(serde_json::Value),
|
|
}
|
|
|
|
/// struct for typed errors of method [`get_journals_user_username_journals_page_post`]
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
#[serde(untagged)]
|
|
pub enum GetJournalsUserUsernameJournalsPagePostError {
|
|
Status401(models::Error),
|
|
Status403(models::Error),
|
|
Status404(models::Error),
|
|
Status500(models::Error),
|
|
Status422(models::HttpValidationError),
|
|
UnknownValue(serde_json::Value),
|
|
}
|
|
|
|
/// struct for typed errors of method [`get_login_user_me_post`]
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
#[serde(untagged)]
|
|
pub enum GetLoginUserMePostError {
|
|
Status401(models::Error),
|
|
Status403(models::Error),
|
|
Status404(models::Error),
|
|
Status500(models::Error),
|
|
Status422(models::HttpValidationError),
|
|
UnknownValue(serde_json::Value),
|
|
}
|
|
|
|
/// struct for typed errors of method [`get_scraps_user_username_scraps_page_post`]
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
#[serde(untagged)]
|
|
pub enum GetScrapsUserUsernameScrapsPagePostError {
|
|
Status401(models::Error),
|
|
Status403(models::Error),
|
|
Status404(models::Error),
|
|
Status500(models::Error),
|
|
Status422(models::HttpValidationError),
|
|
UnknownValue(serde_json::Value),
|
|
}
|
|
|
|
/// struct for typed errors of method [`get_user_user_username_post`]
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
#[serde(untagged)]
|
|
pub enum GetUserUserUsernamePostError {
|
|
Status401(models::Error),
|
|
Status403(models::Error),
|
|
Status404(models::Error),
|
|
Status500(models::Error),
|
|
Status422(models::HttpValidationError),
|
|
UnknownValue(serde_json::Value),
|
|
}
|
|
|
|
/// struct for typed errors of method [`get_user_watchlist_by_user_username_watchlist_by_page_post`]
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
#[serde(untagged)]
|
|
pub enum GetUserWatchlistByUserUsernameWatchlistByPagePostError {
|
|
Status401(models::Error),
|
|
Status403(models::Error),
|
|
Status404(models::Error),
|
|
Status500(models::Error),
|
|
Status422(models::HttpValidationError),
|
|
UnknownValue(serde_json::Value),
|
|
}
|
|
|
|
/// struct for typed errors of method [`get_user_watchlist_to_user_username_watchlist_to_page_post`]
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
#[serde(untagged)]
|
|
pub enum GetUserWatchlistToUserUsernameWatchlistToPagePostError {
|
|
Status401(models::Error),
|
|
Status403(models::Error),
|
|
Status404(models::Error),
|
|
Status500(models::Error),
|
|
Status422(models::HttpValidationError),
|
|
UnknownValue(serde_json::Value),
|
|
}
|
|
|
|
|
|
/// Get a list of submissions from the user's favorites folder. Starting page should be 0 or '/'.
|
|
pub async fn get_favorites_user_username_favorites_page_post(configuration: &configuration::Configuration, username: &str, page: &str, body: models::Body) -> Result<models::SubmissionsFolder, Error<GetFavoritesUserUsernameFavoritesPagePostError>> {
|
|
// add a prefix to parameters to efficiently prevent name collisions
|
|
let p_username = username;
|
|
let p_page = page;
|
|
let p_body = body;
|
|
|
|
let uri_str = format!("{}/user/{username}/favorites/{page}", configuration.base_path, username=crate::apis::urlencode(p_username), page=crate::apis::urlencode(p_page));
|
|
let mut req_builder = configuration.client.request(reqwest::Method::POST, &uri_str);
|
|
|
|
if let Some(ref user_agent) = configuration.user_agent {
|
|
req_builder = req_builder.header(reqwest::header::USER_AGENT, user_agent.clone());
|
|
}
|
|
req_builder = req_builder.json(&p_body);
|
|
|
|
let req = req_builder.build()?;
|
|
let resp = configuration.client.execute(req).await?;
|
|
|
|
let status = resp.status();
|
|
|
|
if !status.is_client_error() && !status.is_server_error() {
|
|
let content = resp.text().await?;
|
|
serde_json::from_str(&content).map_err(Error::from)
|
|
} else {
|
|
let content = resp.text().await?;
|
|
let entity: Option<GetFavoritesUserUsernameFavoritesPagePostError> = serde_json::from_str(&content).ok();
|
|
Err(Error::ResponseError(ResponseContent { status, content, entity }))
|
|
}
|
|
}
|
|
|
|
/// Get a list of submissions from the user's gallery folder.
|
|
pub async fn get_gallery_user_username_gallery_page_post(configuration: &configuration::Configuration, username: &str, page: i32, body: models::Body) -> Result<models::SubmissionsFolder, Error<GetGalleryUserUsernameGalleryPagePostError>> {
|
|
// add a prefix to parameters to efficiently prevent name collisions
|
|
let p_username = username;
|
|
let p_page = page;
|
|
let p_body = body;
|
|
|
|
let uri_str = format!("{}/user/{username}/gallery/{page}/", configuration.base_path, username=crate::apis::urlencode(p_username), page=p_page);
|
|
let mut req_builder = configuration.client.request(reqwest::Method::POST, &uri_str);
|
|
|
|
if let Some(ref user_agent) = configuration.user_agent {
|
|
req_builder = req_builder.header(reqwest::header::USER_AGENT, user_agent.clone());
|
|
}
|
|
req_builder = req_builder.json(&p_body);
|
|
|
|
let req = req_builder.build()?;
|
|
let resp = configuration.client.execute(req).await?;
|
|
|
|
let status = resp.status();
|
|
|
|
if !status.is_client_error() && !status.is_server_error() {
|
|
let content = resp.text().await?;
|
|
serde_json::from_str(&content).map_err(Error::from)
|
|
} else {
|
|
let content = resp.text().await?;
|
|
let entity: Option<GetGalleryUserUsernameGalleryPagePostError> = serde_json::from_str(&content).ok();
|
|
Err(Error::ResponseError(ResponseContent { status, content, entity }))
|
|
}
|
|
}
|
|
|
|
/// Get a list of journals from the user's journals folder.
|
|
pub async fn get_journals_user_username_journals_page_post(configuration: &configuration::Configuration, username: &str, page: i32, body: models::Body) -> Result<models::JournalsFolder, Error<GetJournalsUserUsernameJournalsPagePostError>> {
|
|
// add a prefix to parameters to efficiently prevent name collisions
|
|
let p_username = username;
|
|
let p_page = page;
|
|
let p_body = body;
|
|
|
|
let uri_str = format!("{}/user/{username}/journals/{page}/", configuration.base_path, username=crate::apis::urlencode(p_username), page=p_page);
|
|
let mut req_builder = configuration.client.request(reqwest::Method::POST, &uri_str);
|
|
|
|
if let Some(ref user_agent) = configuration.user_agent {
|
|
req_builder = req_builder.header(reqwest::header::USER_AGENT, user_agent.clone());
|
|
}
|
|
req_builder = req_builder.json(&p_body);
|
|
|
|
let req = req_builder.build()?;
|
|
let resp = configuration.client.execute(req).await?;
|
|
|
|
let status = resp.status();
|
|
|
|
if !status.is_client_error() && !status.is_server_error() {
|
|
let content = resp.text().await?;
|
|
serde_json::from_str(&content).map_err(Error::from)
|
|
} else {
|
|
let content = resp.text().await?;
|
|
let entity: Option<GetJournalsUserUsernameJournalsPagePostError> = serde_json::from_str(&content).ok();
|
|
Err(Error::ResponseError(ResponseContent { status, content, entity }))
|
|
}
|
|
}
|
|
|
|
/// Get the logged-in user's details, profile text, etc. The username may contain underscore (_) characters
|
|
pub async fn get_login_user_me_post(configuration: &configuration::Configuration, body: models::Body) -> Result<models::User, Error<GetLoginUserMePostError>> {
|
|
// add a prefix to parameters to efficiently prevent name collisions
|
|
let p_body = body;
|
|
|
|
let uri_str = format!("{}/me/", configuration.base_path);
|
|
let mut req_builder = configuration.client.request(reqwest::Method::POST, &uri_str);
|
|
|
|
if let Some(ref user_agent) = configuration.user_agent {
|
|
req_builder = req_builder.header(reqwest::header::USER_AGENT, user_agent.clone());
|
|
}
|
|
req_builder = req_builder.json(&p_body);
|
|
|
|
let req = req_builder.build()?;
|
|
let resp = configuration.client.execute(req).await?;
|
|
|
|
let status = resp.status();
|
|
|
|
if !status.is_client_error() && !status.is_server_error() {
|
|
let content = resp.text().await?;
|
|
serde_json::from_str(&content).map_err(Error::from)
|
|
} else {
|
|
let content = resp.text().await?;
|
|
let entity: Option<GetLoginUserMePostError> = serde_json::from_str(&content).ok();
|
|
Err(Error::ResponseError(ResponseContent { status, content, entity }))
|
|
}
|
|
}
|
|
|
|
/// Get a list of submissions from the user's scraps folder.
|
|
pub async fn get_scraps_user_username_scraps_page_post(configuration: &configuration::Configuration, username: &str, page: i32, body: models::Body) -> Result<models::SubmissionsFolder, Error<GetScrapsUserUsernameScrapsPagePostError>> {
|
|
// add a prefix to parameters to efficiently prevent name collisions
|
|
let p_username = username;
|
|
let p_page = page;
|
|
let p_body = body;
|
|
|
|
let uri_str = format!("{}/user/{username}/scraps/{page}/", configuration.base_path, username=crate::apis::urlencode(p_username), page=p_page);
|
|
let mut req_builder = configuration.client.request(reqwest::Method::POST, &uri_str);
|
|
|
|
if let Some(ref user_agent) = configuration.user_agent {
|
|
req_builder = req_builder.header(reqwest::header::USER_AGENT, user_agent.clone());
|
|
}
|
|
req_builder = req_builder.json(&p_body);
|
|
|
|
let req = req_builder.build()?;
|
|
let resp = configuration.client.execute(req).await?;
|
|
|
|
let status = resp.status();
|
|
|
|
if !status.is_client_error() && !status.is_server_error() {
|
|
let content = resp.text().await?;
|
|
serde_json::from_str(&content).map_err(Error::from)
|
|
} else {
|
|
let content = resp.text().await?;
|
|
let entity: Option<GetScrapsUserUsernameScrapsPagePostError> = serde_json::from_str(&content).ok();
|
|
Err(Error::ResponseError(ResponseContent { status, content, entity }))
|
|
}
|
|
}
|
|
|
|
/// Get a user's details, profile text, etc. The username may contain underscore (_) characters
|
|
pub async fn get_user_user_username_post(configuration: &configuration::Configuration, username: &str, body: models::Body) -> Result<models::User, Error<GetUserUserUsernamePostError>> {
|
|
// add a prefix to parameters to efficiently prevent name collisions
|
|
let p_username = username;
|
|
let p_body = body;
|
|
|
|
let uri_str = format!("{}/user/{username}/", configuration.base_path, username=crate::apis::urlencode(p_username));
|
|
let mut req_builder = configuration.client.request(reqwest::Method::POST, &uri_str);
|
|
|
|
if let Some(ref user_agent) = configuration.user_agent {
|
|
req_builder = req_builder.header(reqwest::header::USER_AGENT, user_agent.clone());
|
|
}
|
|
req_builder = req_builder.json(&p_body);
|
|
|
|
let req = req_builder.build()?;
|
|
let resp = configuration.client.execute(req).await?;
|
|
|
|
let status = resp.status();
|
|
|
|
if !status.is_client_error() && !status.is_server_error() {
|
|
let content = resp.text().await?;
|
|
serde_json::from_str(&content).map_err(Error::from)
|
|
} else {
|
|
let content = resp.text().await?;
|
|
let entity: Option<GetUserUserUsernamePostError> = serde_json::from_str(&content).ok();
|
|
Err(Error::ResponseError(ResponseContent { status, content, entity }))
|
|
}
|
|
}
|
|
|
|
/// Get a list of users watched by {username}
|
|
pub async fn get_user_watchlist_by_user_username_watchlist_by_page_post(configuration: &configuration::Configuration, username: &str, page: i32, body: models::Body) -> Result<models::Watchlist, Error<GetUserWatchlistByUserUsernameWatchlistByPagePostError>> {
|
|
// add a prefix to parameters to efficiently prevent name collisions
|
|
let p_username = username;
|
|
let p_page = page;
|
|
let p_body = body;
|
|
|
|
let uri_str = format!("{}/user/{username}/watchlist/by/{page}/", configuration.base_path, username=crate::apis::urlencode(p_username), page=p_page);
|
|
let mut req_builder = configuration.client.request(reqwest::Method::POST, &uri_str);
|
|
|
|
if let Some(ref user_agent) = configuration.user_agent {
|
|
req_builder = req_builder.header(reqwest::header::USER_AGENT, user_agent.clone());
|
|
}
|
|
req_builder = req_builder.json(&p_body);
|
|
|
|
let req = req_builder.build()?;
|
|
let resp = configuration.client.execute(req).await?;
|
|
|
|
let status = resp.status();
|
|
|
|
if !status.is_client_error() && !status.is_server_error() {
|
|
let content = resp.text().await?;
|
|
serde_json::from_str(&content).map_err(Error::from)
|
|
} else {
|
|
let content = resp.text().await?;
|
|
let entity: Option<GetUserWatchlistByUserUsernameWatchlistByPagePostError> = serde_json::from_str(&content).ok();
|
|
Err(Error::ResponseError(ResponseContent { status, content, entity }))
|
|
}
|
|
}
|
|
|
|
/// Get a list of users watching {username}
|
|
pub async fn get_user_watchlist_to_user_username_watchlist_to_page_post(configuration: &configuration::Configuration, username: &str, page: i32, body: models::Body) -> Result<models::Watchlist, Error<GetUserWatchlistToUserUsernameWatchlistToPagePostError>> {
|
|
// add a prefix to parameters to efficiently prevent name collisions
|
|
let p_username = username;
|
|
let p_page = page;
|
|
let p_body = body;
|
|
|
|
let uri_str = format!("{}/user/{username}/watchlist/to/{page}/", configuration.base_path, username=crate::apis::urlencode(p_username), page=p_page);
|
|
let mut req_builder = configuration.client.request(reqwest::Method::POST, &uri_str);
|
|
|
|
if let Some(ref user_agent) = configuration.user_agent {
|
|
req_builder = req_builder.header(reqwest::header::USER_AGENT, user_agent.clone());
|
|
}
|
|
req_builder = req_builder.json(&p_body);
|
|
|
|
let req = req_builder.build()?;
|
|
let resp = configuration.client.execute(req).await?;
|
|
|
|
let status = resp.status();
|
|
|
|
if !status.is_client_error() && !status.is_server_error() {
|
|
let content = resp.text().await?;
|
|
serde_json::from_str(&content).map_err(Error::from)
|
|
} else {
|
|
let content = resp.text().await?;
|
|
let entity: Option<GetUserWatchlistToUserUsernameWatchlistToPagePostError> = serde_json::from_str(&content).ok();
|
|
Err(Error::ResponseError(ResponseContent { status, content, entity }))
|
|
}
|
|
}
|
|
|