use super::*;
use helix::RequestGet;
#[derive(PartialEq, typed_builder::TypedBuilder, Deserialize, Serialize, Clone, Debug)]
#[non_exhaustive]
pub struct GetUsersFollowsRequest {
#[builder(default)]
pub after: Option<helix::Cursor>,
#[builder(default, setter(into))]
pub first: Option<usize>,
#[builder(default, setter(into))]
pub from_id: Option<types::UserId>,
#[builder(default, setter(into))]
pub to_id: Option<types::UserId>,
}
#[derive(PartialEq, Deserialize, Serialize, Debug, Clone)]
#[cfg_attr(feature = "deny_unknown_fields", serde(deny_unknown_fields))]
#[non_exhaustive]
pub struct UsersFollows {
pub total: i64,
pub follow_relationships: Vec<FollowRelationship>,
}
#[derive(PartialEq, Deserialize, Serialize, Debug, Clone)]
#[cfg_attr(feature = "deny_unknown_fields", serde(deny_unknown_fields))]
#[non_exhaustive]
pub struct FollowRelationship {
pub followed_at: types::Timestamp,
pub from_id: types::UserId,
pub from_name: types::DisplayName,
pub from_login: types::UserName,
pub to_id: types::UserId,
pub to_name: types::DisplayName,
pub to_login: types::UserName,
}
impl Request for GetUsersFollowsRequest {
type Response = UsersFollows;
#[cfg(feature = "twitch_oauth2")]
const OPT_SCOPE: &'static [twitch_oauth2::Scope] = &[];
const PATH: &'static str = "users/follows";
#[cfg(feature = "twitch_oauth2")]
const SCOPE: &'static [twitch_oauth2::Scope] = &[];
}
impl RequestGet for GetUsersFollowsRequest {
fn parse_inner_response(
request: Option<Self>,
uri: &http::Uri,
response: &str,
status: http::StatusCode,
) -> Result<helix::Response<Self, Self::Response>, helix::HelixRequestGetError>
where
Self: Sized,
{
#[derive(PartialEq, Deserialize, Debug, Clone)]
struct InnerResponse {
data: Vec<FollowRelationship>,
total: i64,
#[serde(default)]
pagination: helix::Pagination,
}
let response: InnerResponse = helix::parse_json(response, true).map_err(|e| {
helix::HelixRequestGetError::DeserializeError(
response.to_string(),
e,
uri.clone(),
status,
)
})?;
Ok(helix::Response {
data: UsersFollows {
total: response.total,
follow_relationships: response.data,
},
pagination: response.pagination.cursor,
request,
total: Some(response.total),
other: None,
})
}
}
impl helix::Paginated for GetUsersFollowsRequest {
fn set_pagination(&mut self, cursor: Option<helix::Cursor>) { self.after = cursor }
}
#[cfg(test)]
#[test]
fn test_request() {
use helix::*;
let req = GetUsersFollowsRequest::builder()
.to_id(Some("23161357".into()))
.build();
let data = br#"
{
"total": 12345,
"data":
[
{
"from_id": "171003792",
"from_login": "iiisutha067iii",
"from_name": "IIIsutha067III",
"to_id": "23161357",
"to_name": "LIRIK",
"to_login": "lirik",
"followed_at": "2017-08-22T22:55:24Z"
},
{
"from_id": "113627897",
"from_login": "birdman616",
"from_name": "Birdman616",
"to_id": "23161357",
"to_name": "LIRIK",
"to_login": "lirik",
"followed_at": "2017-08-22T22:55:04Z"
}
],
"pagination":{
"cursor": "eyJiIjpudWxsLCJhIjoiMTUwMzQ0MTc3NjQyNDQyMjAwMCJ9"
}
}
"#
.to_vec();
let http_response = http::Response::builder().body(data).unwrap();
let uri = req.get_uri().unwrap();
assert_eq!(
uri.to_string(),
"https://api.twitch.tv/helix/users/follows?to_id=23161357"
);
dbg!(GetUsersFollowsRequest::parse_response(Some(req), &uri, http_response).unwrap());
}