twilight_http/request/application/interaction/
create_response_with_response.rs

1use crate::{
2    client::Client,
3    error::Error,
4    request::{attachment::AttachmentManager, Request, TryIntoRequest},
5    response::{Response, ResponseFuture},
6    routing::Route,
7};
8use std::future::IntoFuture;
9use twilight_model::{
10    http::interaction::InteractionResponse,
11    id::{marker::InteractionMarker, Id},
12};
13
14/// Respond to an interaction, by its ID and token.
15///
16/// This endpoint is not bound to the application's global rate limit.
17#[must_use = "requests must be configured and executed"]
18pub struct CreateResponseWithResponse<'a> {
19    interaction_id: Id<InteractionMarker>,
20    interaction_token: &'a str,
21    response: &'a InteractionResponse,
22    http: &'a Client,
23}
24
25impl<'a> CreateResponseWithResponse<'a> {
26    pub(crate) const fn new(
27        http: &'a Client,
28        interaction_id: Id<InteractionMarker>,
29        interaction_token: &'a str,
30        response: &'a InteractionResponse,
31    ) -> Self {
32        Self {
33            interaction_id,
34            interaction_token,
35            response,
36            http,
37        }
38    }
39}
40
41impl IntoFuture for CreateResponseWithResponse<'_> {
42    type Output = Result<Response<InteractionResponse>, Error>;
43
44    type IntoFuture = ResponseFuture<InteractionResponse>;
45
46    fn into_future(self) -> Self::IntoFuture {
47        let http = self.http;
48
49        match self.try_into_request() {
50            Ok(request) => http.request(request),
51            Err(source) => ResponseFuture::error(source),
52        }
53    }
54}
55
56impl TryIntoRequest for CreateResponseWithResponse<'_> {
57    fn try_into_request(self) -> Result<Request, Error> {
58        let mut request = Request::builder(&Route::InteractionCallback {
59            interaction_id: self.interaction_id.get(),
60            interaction_token: self.interaction_token,
61            with_response: true,
62        });
63
64        // Interaction executions don't need the authorization token, only the
65        // interaction token.
66        request = request.use_authorization_token(false);
67
68        // Determine whether we need to use a multipart/form-data body or a JSON
69        // body.
70        if let Some(attachments) = self
71            .response
72            .data
73            .as_ref()
74            .and_then(|data| data.attachments.as_ref())
75        {
76            let fields = crate::json::to_vec(&self.response).map_err(Error::json)?;
77
78            let form = AttachmentManager::new()
79                .set_files(attachments.iter().collect())
80                .build_form(&fields);
81
82            request = request.form(form);
83        } else {
84            request = request.json(&self.response);
85        }
86
87        request.build()
88    }
89}
90
91#[cfg(test)]
92mod tests {
93    use crate::{client::Client, request::TryIntoRequest};
94    use std::error::Error;
95    use twilight_http_ratelimiting::Path;
96    use twilight_model::{
97        http::interaction::{InteractionResponse, InteractionResponseType},
98        id::Id,
99    };
100
101    #[test]
102    fn interaction_callback() -> Result<(), Box<dyn Error>> {
103        let application_id = Id::new(1);
104        let interaction_id = Id::new(2);
105        let token = "foo".to_owned().into_boxed_str();
106
107        let client = Client::new(String::new());
108
109        let response = InteractionResponse {
110            kind: InteractionResponseType::DeferredUpdateMessage,
111            data: None,
112        };
113
114        let req = client
115            .interaction(application_id)
116            .create_response(interaction_id, &token, &response)
117            .with_response()
118            .try_into_request()?;
119
120        assert!(!req.use_authorization_token());
121        assert_eq!(
122            &Path::InteractionCallback(interaction_id.get()),
123            req.ratelimit_path()
124        );
125
126        Ok(())
127    }
128}