use super::*;
use crate::eventsub;
use helix::RequestGet;
#[derive(PartialEq, Eq, Serialize, Clone, Debug, Default)]
#[cfg_attr(feature = "typed-builder", derive(typed_builder::TypedBuilder))]
#[must_use]
#[non_exhaustive]
pub struct GetEventSubSubscriptionsRequest<'a> {
#[cfg_attr(feature = "typed-builder", builder(default, setter(into)))]
pub status: Option<eventsub::Status>,
#[cfg_attr(feature = "typed-builder", builder(default, setter(into)))]
pub type_: Option<eventsub::EventType>,
#[cfg_attr(feature = "typed-builder", builder(default, setter(into)))]
#[cfg_attr(feature = "deser_borrow", serde(borrow = "'a"))]
pub user_id: Option<Cow<'a, types::UserIdRef>>,
#[cfg_attr(feature = "typed-builder", builder(default, setter(into)))]
#[cfg_attr(feature = "deser_borrow", serde(borrow = "'a"))]
pub after: Option<Cow<'a, helix::CursorRef>>,
#[cfg_attr(feature = "typed-builder", builder(default, setter(into)))]
pub first: Option<usize>,
}
impl GetEventSubSubscriptionsRequest<'_> {
pub fn status(status: impl Into<eventsub::Status>) -> Self {
Self {
status: Some(status.into()),
..Self::default()
}
}
pub fn eventsub_type(r#type: impl Into<eventsub::EventType>) -> Self {
Self {
type_: Some(r#type.into()),
..Self::default()
}
}
}
impl Request for GetEventSubSubscriptionsRequest<'_> {
type Response = EventSubSubscriptions;
const PATH: &'static str = "eventsub/subscriptions";
#[cfg(feature = "twitch_oauth2")]
const SCOPE: twitch_oauth2::Validator = twitch_oauth2::validator![];
}
#[derive(PartialEq, Eq, Deserialize, Serialize, Debug, Clone)]
#[cfg_attr(feature = "deny_unknown_fields", serde(deny_unknown_fields))]
#[non_exhaustive]
pub struct EventSubSubscriptions {
pub total: usize,
pub total_cost: usize,
pub max_total_cost: usize,
pub subscriptions: Vec<eventsub::EventSubSubscription>,
}
impl RequestGet for GetEventSubSubscriptionsRequest<'_> {
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)]
#[cfg_attr(feature = "deny_unknown_fields", serde(deny_unknown_fields))]
struct InnerResponse {
data: Vec<eventsub::EventSubSubscription>,
#[serde(default)]
pagination: helix::Pagination,
total: i64,
total_cost: usize,
max_total_cost: usize,
}
let response: InnerResponse = helix::parse_json(response, true).map_err(|e| {
helix::HelixRequestGetError::DeserializeError(
response.to_string(),
e,
uri.clone(),
status,
)
})?;
Ok(helix::Response::new(
EventSubSubscriptions {
total: response.total as usize,
total_cost: response.total_cost,
max_total_cost: response.max_total_cost,
subscriptions: response.data,
},
response.pagination.cursor,
request,
Some(response.total),
None,
))
}
}
impl helix::Paginated for GetEventSubSubscriptionsRequest<'_> {
fn set_pagination(&mut self, cursor: Option<helix::Cursor>) {
self.after = cursor.map(|c| c.into_cow())
}
}
#[cfg(test)]
#[test]
fn test_request() {
use helix::*;
let req: GetEventSubSubscriptionsRequest = GetEventSubSubscriptionsRequest::default();
let data = br#"{
"total": 2,
"data": [
{
"id": "26b1c993-bfcf-44d9-b876-379dacafe75a",
"status": "enabled",
"type": "stream.online",
"version": "1",
"condition": {
"broadcaster_user_id": "1234"
},
"created_at": "2020-11-10T20:08:33.12345678Z",
"transport": {
"method": "webhook",
"callback": "https://this-is-a-callback.com"
},
"cost": 1
},
{
"id": "35016908-41ff-33ce-7879-61b8dfc2ee16",
"status": "webhook_callback_verification_pending",
"type": "user.update",
"version": "1",
"condition": {
"user_id": "1234"
},
"created_at": "2020-11-10T14:32:18.730260295Z",
"transport": {
"method": "webhook",
"callback": "https://this-is-a-callback.com"
},
"cost": 0
}
],
"total_cost": 1,
"max_total_cost": 10000,
"pagination": {}
}
"#
.to_vec();
let http_response = http::Response::builder().status(200).body(data).unwrap();
let uri = req.get_uri().unwrap();
assert_eq!(
uri.to_string(),
"https://api.twitch.tv/helix/eventsub/subscriptions?"
);
dbg!(
"{:#?}",
GetEventSubSubscriptionsRequest::parse_response(Some(req), &uri, http_response).unwrap()
);
}