use crate::helix::{Request, RequestPost};
use crate::{helix, types};
use serde_derive::{Deserialize, Serialize};
use std::borrow::Cow;
#[derive(PartialEq, Eq, Deserialize, Serialize, Clone, Debug)]
#[cfg_attr(feature = "typed-builder", derive(typed_builder::TypedBuilder))]
#[must_use]
#[non_exhaustive]
pub struct WarnChatUserRequest<'a> {
#[cfg_attr(feature = "typed-builder", builder(setter(into)))]
#[cfg_attr(feature = "deser_borrow", serde(borrow = "'a"))]
pub broadcaster_id: Cow<'a, types::UserIdRef>,
#[cfg_attr(feature = "typed-builder", builder(setter(into)))]
#[cfg_attr(feature = "deser_borrow", serde(borrow = "'a"))]
pub moderator_id: Cow<'a, types::UserIdRef>,
}
impl<'a> WarnChatUserRequest<'a> {
pub fn new(
broadcaster_id: impl types::IntoCow<'a, types::UserIdRef> + 'a,
moderator_id: impl types::IntoCow<'a, types::UserIdRef> + 'a,
) -> Self {
Self {
broadcaster_id: broadcaster_id.into_cow(),
moderator_id: moderator_id.into_cow(),
}
}
}
#[derive(PartialEq, Eq, Deserialize, Serialize, Clone, Debug)]
#[cfg_attr(feature = "typed-builder", derive(typed_builder::TypedBuilder))]
#[non_exhaustive]
pub struct WarnChatUserBody<'a> {
#[cfg_attr(feature = "typed-builder", builder(setter(into)))]
#[cfg_attr(feature = "deser_borrow", serde(borrow = "'a"))]
pub user_id: Cow<'a, types::UserIdRef>,
#[cfg_attr(feature = "typed-builder", builder(setter(into)))]
#[cfg_attr(feature = "deser_borrow", serde(borrow = "'a"))]
pub reason: Cow<'a, str>,
}
impl<'a> WarnChatUserBody<'a> {
pub fn new(
user_id: impl types::IntoCow<'a, types::UserIdRef> + 'a,
reason: impl Into<Cow<'a, str>>,
) -> Self {
Self {
user_id: user_id.into_cow(),
reason: reason.into(),
}
}
}
impl helix::HelixRequestBody for WarnChatUserBody<'_> {
fn try_to_body(&self) -> Result<hyper::body::Bytes, helix::BodyError> {
#[derive(Serialize)]
struct InnerBody<'a> {
data: &'a WarnChatUserBody<'a>,
}
serde_json::to_vec(&InnerBody { data: self })
.map_err(Into::into)
.map(Into::into)
}
}
#[derive(PartialEq, Eq, Deserialize, Serialize, Debug, Clone)]
#[cfg_attr(feature = "deny_unknown_fields", serde(deny_unknown_fields))]
#[non_exhaustive]
pub struct WarnChatUser {
pub broadcaster_id: types::UserId,
pub moderator_id: types::UserId,
pub user_id: types::UserId,
pub reason: String,
}
impl Request for WarnChatUserRequest<'_> {
type Response = WarnChatUser;
const PATH: &'static str = "moderation/warnings";
#[cfg(feature = "twitch_oauth2")]
const SCOPE: twitch_oauth2::Validator =
twitch_oauth2::validator![twitch_oauth2::Scope::ModeratorManageWarnings];
}
impl<'a> RequestPost for WarnChatUserRequest<'a> {
type Body = WarnChatUserBody<'a>;
fn parse_inner_response(
request: Option<Self>,
uri: &http::Uri,
response: &str,
status: http::StatusCode,
) -> Result<helix::Response<Self, Self::Response>, helix::HelixRequestPostError>
where
Self: Sized,
{
#[derive(PartialEq, Deserialize, Debug, Clone)]
struct InnerResponse {
data: Vec<WarnChatUser>,
}
let InnerResponse { data } = helix::parse_json(response, true).map_err(|e| {
helix::HelixRequestPostError::DeserializeError(
response.to_string(),
e,
uri.clone(),
status,
)
})?;
Ok(helix::Response::with_data(
data.into_iter().next().ok_or_else(|| {
helix::HelixRequestPostError::InvalidResponse {
reason: "missing response data",
response: response.to_string(),
status,
uri: uri.clone(),
}
})?,
request,
))
}
}
#[cfg(test)]
#[test]
fn test_request() {
use helix::*;
let req = WarnChatUserRequest::new("404040", "404041");
let body = WarnChatUserBody::new("9876", "stop doing that!");
assert_eq!(
std::str::from_utf8(&body.try_to_body().unwrap()).unwrap(),
r#"{"data":{"user_id":"9876","reason":"stop doing that!"}}"#
);
dbg!(req.create_request(body, "token", "clientid").unwrap());
let data = br#"
{
"data": [
{
"broadcaster_id": "404040",
"user_id": "9876",
"moderator_id": "404041",
"reason": "stop doing that!"
}
]
}
"#
.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/moderation/warnings?broadcaster_id=404040&moderator_id=404041"
);
dbg!(WarnChatUserRequest::parse_response(Some(req), &uri, http_response).unwrap());
}
#[cfg(test)]
#[test]
fn test_request_error() {
use helix::*;
let req = WarnChatUserRequest::new("404040", "404041");
let body = WarnChatUserBody::new("9876", "");
dbg!(req.create_request(body, "token", "clientid").unwrap());
let data = br#"
{
"error": "Bad Request",
"status": 400,
"message": "Missing required parameter \"reason\""
}
"#
.to_vec();
let http_response = http::Response::builder().status(400).body(data).unwrap();
let uri = req.get_uri().unwrap();
assert_eq!(
uri.to_string(),
"https://api.twitch.tv/helix/moderation/warnings?broadcaster_id=404040&moderator_id=404041"
);
dbg!(WarnChatUserRequest::parse_response(Some(req), &uri, http_response).unwrap_err());
}