-
-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(model, cache, http): add support for polls (#2341)
- Loading branch information
1 parent
c9e8013
commit f660fd8
Showing
33 changed files
with
1,062 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
use crate::{ | ||
client::Client, | ||
error::Error, | ||
request::{Request, TryIntoRequest}, | ||
response::{Response, ResponseFuture}, | ||
routing::Route, | ||
}; | ||
use serde::Serialize; | ||
use std::future::IntoFuture; | ||
use twilight_model::{ | ||
channel::Message, | ||
id::{ | ||
marker::{ChannelMarker, MessageMarker}, | ||
Id, | ||
}, | ||
}; | ||
|
||
#[derive(Serialize)] | ||
struct EndPollFields { | ||
channel_id: Id<ChannelMarker>, | ||
message_id: Id<MessageMarker>, | ||
} | ||
|
||
// Ends a poll in a channel. | ||
#[must_use = "requests must be configured and executed"] | ||
pub struct EndPoll<'a> { | ||
fields: EndPollFields, | ||
http: &'a Client, | ||
} | ||
|
||
impl<'a> EndPoll<'a> { | ||
pub(crate) const fn new( | ||
http: &'a Client, | ||
channel_id: Id<ChannelMarker>, | ||
message_id: Id<MessageMarker>, | ||
) -> Self { | ||
Self { | ||
fields: EndPollFields { | ||
channel_id, | ||
message_id, | ||
}, | ||
http, | ||
} | ||
} | ||
} | ||
|
||
impl IntoFuture for EndPoll<'_> { | ||
type Output = Result<Response<Message>, Error>; | ||
type IntoFuture = ResponseFuture<Message>; | ||
|
||
fn into_future(self) -> Self::IntoFuture { | ||
let http = self.http; | ||
|
||
match self.try_into_request() { | ||
Ok(request) => http.request(request), | ||
Err(source) => ResponseFuture::error(source), | ||
} | ||
} | ||
} | ||
|
||
impl TryIntoRequest for EndPoll<'_> { | ||
fn try_into_request(self) -> Result<Request, Error> { | ||
Ok(Request::from_route(&Route::EndPoll { | ||
channel_id: self.fields.channel_id.get(), | ||
message_id: self.fields.message_id.get(), | ||
})) | ||
} | ||
} |
Oops, something went wrong.