1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
use crate::{SlackApiResponse, SlackClient, SlackTypesFile};
use multipart::client::lazy::Multipart;
use serde_derive::{Deserialize, Serialize};
use serde_json::Value;


impl SlackClient {
    /// https://api.slack.com/methods/files.comments.delete
    // Deletes an existing comment on a file.
    pub async fn files_comments_delete(
        &self,
        value: &SlackApiFilesCommentsDeleteRequest,
    ) -> SlackApiResponse<SlackApiFilesCommentsDeleteResponse> {
        self.http_post("files.comments.delete", value).await
    }
    /// https://api.slack.com/methods/files.completeUploadExternal
    // Finishes an upload started with files.getUploadURLExternal
    pub async fn files_complete_upload_external(
        &self,
        value: &SlackApiFilesCompleteUploadExternalRequest,
    ) -> SlackApiResponse<SlackApiFilesCompleteUploadExternalResponse> {
        self.http_post("files.completeUploadExternal", value).await
    }
    /// https://api.slack.com/methods/files.delete
    // Deletes a file.
    pub async fn files_delete(
        &self,
        value: &SlackApiFilesDeleteRequest,
    ) -> SlackApiResponse<SlackApiFilesDeleteResponse> {
        self.http_post("files.delete", value).await
    }

    /// https://api.slack.com/methods/files.getUploadURLExternal
    // Gets a URL for an edge external file upload
    pub async fn files_get_upload_url_external(
        &self,
        value: &SlackApiFilesGetUploadUrlExternalRequest,
    ) -> SlackApiResponse<SlackApiFilesGetUploadUrlExternalResponse> {
        self.http_post("files.getUploadURLExternal", value).await
    }
    /// https://api.slack.com/methods/files.info
    // Gets information about a file.
    pub async fn files_info(
        &self,
        value: &SlackApiFilesInfoRequest,
    ) -> SlackApiResponse<SlackApiFilesInfoResponse> {
        self.http_post("files.info", value).await
    }
    /// https://api.slack.com/methods/files.list
    // List for a team, in a channel, or from a user with applied filters.
    pub async fn files_list(
        &self,
        value: &SlackApiFilesListRequest,
    ) -> SlackApiResponse<SlackApiFilesListResponse> {
        self.http_post("files.list", value).await
    }
    /// https://api.slack.com/methods/files.revokePublicURL
    // Revokes public/external sharing access for a file
    pub async fn files_revoke_public_url(
        &self,
        value: &SlackApiFilesRevokePublicUrlRequest,
    ) -> SlackApiResponse<SlackApiFilesRevokePublicUrlResponse> {
        self.http_post("files.revokePublicURL", value).await
    }

    /// https://api.slack.com/methods/files.sharedPublicURL
    // Enables a file for public/external sharing.
    pub async fn files_shared_public_url(
        &self,
        value: &SlackApiFilesSharePublicUrlRequest,
    ) -> SlackApiResponse<SlackApiFilesSharePublicUrlResponse> {
        self.http_post("files.sharedPublicURL", value).await
    }

    /// https://api.slack.com/methods/files.upload
    // Uploads or creates a file.
    /// https://api.slack.com/methods/chat.delete
    pub async fn files_upload(
        &self,
        value: &SlackApiFilesUploadRequest,
    ) -> SlackApiResponse<SlackApiFilesUploadResponse> {
        self.http_post_data(
            "files.upload",
            value.clone().to_multipart(),
        )
            .await
    }
    /// https://api.slack.com/methods/files.remote.add
    // Adds a file from a remote service
    pub async fn files_remote_add(
        &self,
        value: &SlackApiFilesRemoteAddRequest,
    ) -> SlackApiResponse<SlackApiFilesRemoteAddResponse> {
        self.http_post("files.remote.add", value).await
    }

    /// https://api.slack.com/methods/files.remote.info
    // Retrieve information about a remote file added to Slack
    pub async fn files_remote_info(
        &self,
        value: &SlackApiFilesRemoteInfoRequest,
    ) -> SlackApiResponse<SlackApiFilesRemoteInfoResponse> {
        self.http_post("files.remote.info", value).await
    }

    /// https://api.slack.com/methods/files.remote.list
    // Retrieve information about a remote file added to Slack
    pub async fn files_remote_list(
        &self,
        value: &SlackApiFilesRemoteListRequest,
    ) -> SlackApiResponse<SlackApiFilesRemoteListResponse> {
        self.http_post("files.remote.list", value).await
    }

    /// https://api.slack.com/methods/files.remote.remove
    // Remove a remote file.
    pub async fn files_remote_remove(
        &self,
        value: &SlackApiFilesRemoteRemoveRequest,
    ) -> SlackApiResponse<SlackApiFilesRemoteRemoveResponse> {
        self.http_post("files.remote.remove", value).await
    }

    /// https://api.slack.com/methods/files.remote.share
    // Share a remote file into a channel.
    pub async fn files_remote_share(
        &self,
        value: &SlackApiFilesRemoteShareRequest,
    ) -> SlackApiResponse<SlackApiFilesRemoteShareResponse> {
        self.http_post("files.remote.share", value).await
    }
    /// https://api.slack.com/methods/files.remote.update
    // Updates an existing remote file.
    pub async fn files_remote_update(
        &self,
        value: &SlackApiFilesRemoteUpdateRequest,
    ) -> SlackApiResponse<SlackApiFilesRemoteUpdateResponse> {
        self.http_post("files.remote.update", value).await
    }
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesCommentsDeleteRequest {
    pub channel: String,
    pub file: String,
    pub id: String,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesCommentsDeleteResponse {
    pub ok: bool,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesCompleteUploadExternalRequest {
    pub files: Vec<SlackApiFilesCompleteUploadExternalRequestFile>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub channel_id: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub initial_comment: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub thread_ts: Option<String>,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesCompleteUploadExternalRequestFile {
    id: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    title: Option<String>,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesCompleteUploadExternalResponse {
    pub ok: bool,
    pub files: Vec<SlackApiFilesCompleteUploadExternalRequestFile>,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesDeleteRequest {
    pub file: String,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesDeleteResponse {
    pub ok: bool,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesGetUploadUrlExternalRequest {
    pub filename: String,
    pub length: u32,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub alt_txt: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub snippet_type: Option<String>,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesGetUploadUrlExternalResponse {
    pub ok: bool,
    pub upload_url: String,
    pub file_id: String,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesInfoRequest {
    pub file: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub count: Option<u32>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub cursor: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub limit: Option<u32>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub page: Option<u32>,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesInfoResponse {
    pub ok: bool,
    pub upload_url: String,
    pub file_id: String,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesListRequest {
    pub channel: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub count: Option<u32>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub page: Option<u32>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub show_files_hidden_by_limit: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub team_id: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ts_from: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ts_to: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub types: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub user: Option<String>,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesListResponse {
    pub ok: bool,
    pub upload_url: String,
    pub files: Vec<SlackTypesFile>,
    pub paging: SlackTypesFile,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackTypesPaging {
    pub count: u32,
    pub total: u32,
    pub page: u32,
    pub pages: u32,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesRevokePublicUrlRequest {
    pub channel: String,
    pub file: String,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesRevokePublicUrlResponse {
    pub ok: bool,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesSharePublicUrlRequest {
    pub channel: String,
    pub file: String,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesSharePublicUrlResponse {
    pub ok: bool,
    pub file: SlackTypesFile,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesUploadRequest {
    pub channels: Option<String>,
    pub content: Option<String>,
    pub file: Option<String>,
    pub filename: Option<String>,
    pub filetype: Option<String>,
    pub initial_comment: Option<String>,
    pub thread_ts: Option<String>,
    pub title: Option<String>,
}

impl SlackApiFilesUploadRequest {
    fn to_multipart(&self) -> Multipart<'static, 'static> {
        let mut multipart = Multipart::new();
        let value = self.clone();
        if value.channels.is_some() {
            multipart.add_text("channels", value.channels.unwrap_or_default());
        }
        if value.content.is_some() {
            multipart.add_text("content", value.content.unwrap_or_default());
        }
        if value.file.is_some() {
            multipart.add_file("file", value.file.unwrap_or_default());
        }
        if value.filename.is_some() {
            multipart.add_text("filename", value.filename.unwrap_or_default());
        }
        if value.filetype.is_some() {
            multipart.add_text("filetype", value.filetype.unwrap_or_default());
        }
        if value.initial_comment.is_some() {
            multipart.add_text("initial_comment", value.initial_comment.unwrap_or_default());
        }
        if value.thread_ts.is_some() {
            multipart.add_text("thread_ts", value.thread_ts.unwrap_or_default());
        }
        if value.title.is_some() {
            multipart.add_text("title", value.title.unwrap_or_default());
        }
        multipart
    }
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesUploadResponse {
    pub ok: bool,
    pub file: SlackTypesFile,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesRemoteAddRequest {
    pub external_id: Option<String>,
    pub external_url: Option<String>,
    pub title: Option<String>,
    pub filetype: Option<String>,
    pub indexable_file_contents: Option<String>,
    pub preview_image: Option<String>,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesRemoteAddResponse {
    pub ok: bool,
    pub file: SlackTypesFile,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesRemoteInfoRequest {
    pub external_id: Option<String>,
    pub file: Option<String>,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesRemoteInfoResponse {
    pub ok: bool,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesRemoteListRequest {
    pub channel: Option<String>,
    pub cursor: Option<String>,
    pub limit: Option<u32>,
    pub ts_from: Option<String>,
    pub ts_to: Option<String>,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesRemoteListResponse {
    pub ok: bool,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesRemoteRemoveRequest {
    pub external_id: Option<String>,
    pub file: Option<String>,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesRemoteRemoveResponse {
    pub ok: bool,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesRemoteShareRequest {
    pub channels: Option<String>,
    pub external_id: Option<String>,
    pub file: Option<String>,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesRemoteShareResponse {
    pub ok: bool,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesRemoteUpdateRequest {
    pub external_id: Option<String>,
    pub external_url: Option<String>,
    pub file: Option<String>,
    pub filetype: Option<String>,
    pub indexable_file_contents: Option<String>,
    pub preview_image: Option<String>,
    pub title: Option<String>,
}

#[derive(Debug, Default,Clone, Deserialize, Serialize)]
pub struct SlackApiFilesRemoteUpdateResponse {
    pub ok: bool,
}