2022-12-30 08:23:19 +00:00
|
|
|
use crate::api::conn::Method;
|
|
|
|
use crate::api::conn::Param;
|
|
|
|
use crate::api::conn::Router;
|
|
|
|
use crate::api::opt::Range;
|
|
|
|
use crate::api::opt::Resource;
|
|
|
|
use crate::api::Connection;
|
|
|
|
use crate::api::Result;
|
|
|
|
use crate::sql::Id;
|
2023-04-28 11:20:57 +00:00
|
|
|
use crate::sql::Value;
|
2023-03-31 22:49:29 +00:00
|
|
|
use serde::de::DeserializeOwned;
|
2022-12-30 08:23:19 +00:00
|
|
|
use std::future::Future;
|
|
|
|
use std::future::IntoFuture;
|
|
|
|
use std::marker::PhantomData;
|
|
|
|
use std::pin::Pin;
|
|
|
|
|
|
|
|
/// A record delete future
|
|
|
|
#[derive(Debug)]
|
2023-04-19 08:26:22 +00:00
|
|
|
#[must_use = "futures do nothing unless you `.await` or poll them"]
|
2022-12-30 08:23:19 +00:00
|
|
|
pub struct Delete<'r, C: Connection, R> {
|
|
|
|
pub(super) router: Result<&'r Router<C>>,
|
|
|
|
pub(super) resource: Result<Resource>,
|
|
|
|
pub(super) range: Option<Range<Id>>,
|
|
|
|
pub(super) response_type: PhantomData<R>,
|
|
|
|
}
|
|
|
|
|
2023-04-25 14:22:34 +00:00
|
|
|
macro_rules! into_future {
|
2023-04-28 11:20:57 +00:00
|
|
|
($method:ident) => {
|
2023-04-25 14:22:34 +00:00
|
|
|
fn into_future(self) -> Self::IntoFuture {
|
|
|
|
let Delete {
|
|
|
|
router,
|
|
|
|
resource,
|
|
|
|
range,
|
|
|
|
..
|
|
|
|
} = self;
|
|
|
|
Box::pin(async {
|
|
|
|
let param = match range {
|
|
|
|
Some(range) => resource?.with_range(range)?,
|
|
|
|
None => resource?.into(),
|
|
|
|
};
|
|
|
|
let mut conn = Client::new(Method::Delete);
|
2023-04-28 11:20:57 +00:00
|
|
|
conn.$method(router?, Param::new(vec![param])).await
|
2023-04-25 14:22:34 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
};
|
2022-12-30 08:23:19 +00:00
|
|
|
}
|
|
|
|
|
2023-04-28 11:20:57 +00:00
|
|
|
impl<'r, Client> IntoFuture for Delete<'r, Client, Value>
|
|
|
|
where
|
|
|
|
Client: Connection,
|
|
|
|
{
|
|
|
|
type Output = Result<Value>;
|
|
|
|
type IntoFuture = Pin<Box<dyn Future<Output = Self::Output> + Send + Sync + 'r>>;
|
|
|
|
|
|
|
|
into_future! {execute_value}
|
|
|
|
}
|
|
|
|
|
2023-03-31 22:49:29 +00:00
|
|
|
impl<'r, Client, R> IntoFuture for Delete<'r, Client, Option<R>>
|
2022-12-30 08:23:19 +00:00
|
|
|
where
|
|
|
|
Client: Connection,
|
2023-04-25 14:22:34 +00:00
|
|
|
R: DeserializeOwned,
|
2022-12-30 08:23:19 +00:00
|
|
|
{
|
2023-04-28 11:20:57 +00:00
|
|
|
type Output = Result<Option<R>>;
|
2022-12-30 08:23:19 +00:00
|
|
|
type IntoFuture = Pin<Box<dyn Future<Output = Self::Output> + Send + Sync + 'r>>;
|
|
|
|
|
2023-04-28 11:20:57 +00:00
|
|
|
into_future! {execute_opt}
|
2022-12-30 08:23:19 +00:00
|
|
|
}
|
|
|
|
|
2023-03-31 22:49:29 +00:00
|
|
|
impl<'r, Client, R> IntoFuture for Delete<'r, Client, Vec<R>>
|
2022-12-30 08:23:19 +00:00
|
|
|
where
|
|
|
|
Client: Connection,
|
2023-04-25 14:22:34 +00:00
|
|
|
R: DeserializeOwned,
|
2022-12-30 08:23:19 +00:00
|
|
|
{
|
2023-03-31 22:49:29 +00:00
|
|
|
type Output = Result<Vec<R>>;
|
2022-12-30 08:23:19 +00:00
|
|
|
type IntoFuture = Pin<Box<dyn Future<Output = Self::Output> + Send + Sync + 'r>>;
|
|
|
|
|
2023-04-28 11:20:57 +00:00
|
|
|
into_future! {execute_vec}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<C> Delete<'_, C, Value>
|
|
|
|
where
|
|
|
|
C: Connection,
|
|
|
|
{
|
|
|
|
/// Restricts a range of records to delete
|
|
|
|
pub fn range(mut self, bounds: impl Into<Range<Id>>) -> Self {
|
|
|
|
self.range = Some(bounds.into());
|
|
|
|
self
|
|
|
|
}
|
2022-12-30 08:23:19 +00:00
|
|
|
}
|
|
|
|
|
2023-03-31 22:49:29 +00:00
|
|
|
impl<C, R> Delete<'_, C, Vec<R>>
|
2022-12-30 08:23:19 +00:00
|
|
|
where
|
|
|
|
C: Connection,
|
|
|
|
{
|
|
|
|
/// Restricts a range of records to delete
|
|
|
|
pub fn range(mut self, bounds: impl Into<Range<Id>>) -> Self {
|
|
|
|
self.range = Some(bounds.into());
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|