use super::*;
use helix::RequestGet;
#[derive(PartialEq, typed_builder::TypedBuilder, Deserialize, Serialize, Clone, Debug)]
#[non_exhaustive]
pub struct CheckUserSubscriptionRequest {
#[builder(setter(into))]
pub broadcaster_id: types::UserId,
#[builder(default)]
pub user_id: Vec<types::UserId>,
}
#[derive(PartialEq, Deserialize, Serialize, Debug, Clone)]
#[cfg_attr(feature = "deny_unknown_fields", serde(deny_unknown_fields))]
#[non_exhaustive]
pub struct UserSubscription {
pub broadcaster_id: types::UserId,
pub broadcaster_login: types::UserName,
pub broadcaster_name: types::DisplayName,
pub is_gift: bool,
pub gifter_login: Option<types::UserName>,
pub gifter_name: Option<types::DisplayName>,
pub tier: types::SubscriptionTier,
}
impl Request for CheckUserSubscriptionRequest {
type Response = UserSubscription;
const PATH: &'static str = "subscriptions/user";
#[cfg(feature = "twitch_oauth2")]
const SCOPE: &'static [twitch_oauth2::Scope] = &[twitch_oauth2::Scope::UserReadSubscriptions];
}
impl RequestGet for CheckUserSubscriptionRequest {
fn parse_inner_response(
request: Option<Self>,
uri: &http::Uri,
text: &str,
status: http::StatusCode,
) -> Result<helix::Response<Self, Self::Response>, helix::HelixRequestGetError>
where
Self: Sized,
{
let inner_response: helix::InnerResponse<Vec<_>> =
helix::parse_json(text, true).map_err(|e| {
helix::HelixRequestGetError::DeserializeError(
text.to_string(),
e,
uri.clone(),
status,
)
})?;
Ok(helix::Response {
data: inner_response.data.into_iter().next().ok_or(
helix::HelixRequestGetError::InvalidResponse {
reason: "expected an entry in `data`",
response: text.to_string(),
status,
uri: uri.clone(),
},
)?,
pagination: inner_response.pagination.cursor,
request,
total: inner_response.total,
other: inner_response.other,
})
}
}
#[cfg(test)]
#[test]
fn test_request1() {
use helix::*;
let req = CheckUserSubscriptionRequest::builder()
.broadcaster_id("123".to_string())
.build();
let data = br#"
{
"data": [
{
"broadcaster_id": "149747285",
"broadcaster_name": "TwitchPresents",
"broadcaster_login": "twitchpresents",
"is_gift": false,
"tier": "1000"
}
]
}
"#
.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/subscriptions/user?broadcaster_id=123"
);
dbg!(CheckUserSubscriptionRequest::parse_response(Some(req), &uri, http_response).unwrap());
}
#[cfg(test)]
#[test]
fn test_request2() {
use helix::*;
let req = CheckUserSubscriptionRequest::builder()
.broadcaster_id("123".to_string())
.build();
let data = br#"
{
"error": "Not Found",
"message": "twitchdev has no subscription to twitchpresents",
"status": 404
}
"#
.to_vec();
let http_response = http::Response::builder().status(404).body(data).unwrap();
let uri = req.get_uri().unwrap();
assert_eq!(
uri.to_string(),
"https://api.twitch.tv/helix/subscriptions/user?broadcaster_id=123"
);
dbg!(CheckUserSubscriptionRequest::parse_response(Some(req), &uri, http_response).unwrap_err());
}