use std::future::IntoFuture;
use serde::{de::DeserializeOwned, Serialize};
use crate::{
bot::Bot,
requests::{HasPayload, Payload, Request, ResponseResult},
RequestError,
};
#[must_use = "Requests are lazy and do nothing unless sent"]
#[derive(Clone)]
pub struct JsonRequest<P> {
bot: Bot,
payload: P,
}
impl<P> JsonRequest<P> {
pub const fn new(bot: Bot, payload: P) -> Self {
Self { bot, payload }
}
}
impl<P> Request for JsonRequest<P>
where
P: 'static,
P: Payload + Serialize,
P::Output: DeserializeOwned,
{
type Err = RequestError;
type Send = Send<P>;
type SendRef = SendRef<P>;
fn send(self) -> Self::Send {
Send::new(self)
}
fn send_ref(&self) -> Self::SendRef {
SendRef::new(self)
}
}
impl<P> IntoFuture for JsonRequest<P>
where
P: 'static,
P: Payload + Serialize,
P::Output: DeserializeOwned,
{
type Output = Result<P::Output, RequestError>;
type IntoFuture = <Self as Request>::Send;
fn into_future(self) -> Self::IntoFuture {
self.send()
}
}
impl<P> HasPayload for JsonRequest<P>
where
P: Payload,
{
type Payload = P;
fn payload_mut(&mut self) -> &mut Self::Payload {
&mut self.payload
}
fn payload_ref(&self) -> &Self::Payload {
&self.payload
}
}
impl<P: Payload + Serialize> core::ops::Deref for JsonRequest<P> {
type Target = P;
fn deref(&self) -> &Self::Target {
self.payload_ref()
}
}
impl<P: Payload + Serialize> core::ops::DerefMut for JsonRequest<P> {
fn deref_mut(&mut self) -> &mut Self::Target {
self.payload_mut()
}
}
req_future! {
def: |it: JsonRequest<U>| {
it.bot.execute_json(&it.payload)
}
pub Send<U> (inner0) -> ResponseResult<U::Output>
where
U: 'static,
U: Payload + Serialize,
U::Output: DeserializeOwned,
}
req_future! {
def: |it: &JsonRequest<U>| {
it.bot.execute_json(&it.payload)
}
pub SendRef<U> (inner1) -> ResponseResult<U::Output>
where
U: 'static,
U: Payload + Serialize,
U::Output: DeserializeOwned,
}