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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
#[cfg(feature = "model")]
use std::sync::Arc;
#[cfg(feature = "model")]
use futures::stream::Stream;
#[cfg(feature = "model")]
use crate::builder::{
Builder,
CreateAttachment,
CreateForumPost,
CreateInvite,
CreateMessage,
CreateStageInstance,
CreateThread,
CreateWebhook,
EditChannel,
EditMessage,
EditStageInstance,
EditThread,
GetMessages,
};
#[cfg(all(feature = "cache", feature = "model"))]
use crate::cache::{Cache, GuildChannelRef};
#[cfg(feature = "collector")]
use crate::collector::{MessageCollector, ReactionCollector};
#[cfg(feature = "collector")]
use crate::gateway::ShardMessenger;
#[cfg(feature = "model")]
use crate::http::{CacheHttp, Http, Typing};
#[cfg(feature = "model")]
use crate::json::json;
use crate::model::prelude::*;
#[cfg(feature = "model")]
impl ChannelId {
/// Broadcasts that the current user is typing to a channel for the next 5 seconds.
///
/// After 5 seconds, another request must be made to continue broadcasting that the current
/// user is typing.
///
/// This should rarely be used for bots, and should likely only be used for signifying that a
/// long-running command is still being executed.
///
/// **Note**: Requires the [Send Messages] permission.
///
/// # Examples
///
/// ```rust,no_run
/// use serenity::model::id::ChannelId;
///
/// # async fn run() {
/// # let http: serenity::http::Http = unimplemented!();
/// let _successful = ChannelId::new(7).broadcast_typing(&http).await;
/// # }
/// ```
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission to send messages to this
/// channel.
///
/// [Send Messages]: Permissions::SEND_MESSAGES
#[inline]
pub async fn broadcast_typing(self, http: impl AsRef<Http>) -> Result<()> {
http.as_ref().broadcast_typing(self).await
}
/// Creates an invite for the given channel.
///
/// **Note**: Requires the [Create Instant Invite] permission.
///
/// # Errors
///
/// If the `cache` is enabled, returns [`ModelError::InvalidPermissions`] if the current user
/// lacks permission. Otherwise returns [`Error::Http`], as well as if invalid data is given.
///
/// [Create Instant Invite]: Permissions::CREATE_INSTANT_INVITE
pub async fn create_invite(
self,
cache_http: impl CacheHttp,
builder: CreateInvite<'_>,
) -> Result<RichInvite> {
builder.execute(cache_http, self).await
}
/// Creates a [permission overwrite][`PermissionOverwrite`] for either a single [`Member`] or
/// [`Role`] within the channel.
///
/// Refer to the documentation for [`GuildChannel::create_permission`] for more information.
///
/// Requires the [Manage Channels] permission.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission, or if an invalid value is
/// set.
///
/// [Manage Channels]: Permissions::MANAGE_CHANNELS
pub async fn create_permission(
self,
http: impl AsRef<Http>,
target: PermissionOverwrite,
) -> Result<()> {
let data: PermissionOverwriteData = target.into();
http.as_ref().create_permission(self, data.id, &data, None).await
}
/// React to a [`Message`] with a custom [`Emoji`] or unicode character.
///
/// [`Message::react`] may be a more suited method of reacting in most cases.
///
/// Requires the [Add Reactions] permission, _if_ the current user is the first user to perform
/// a react with a certain emoji.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission.
///
/// [Add Reactions]: Permissions::ADD_REACTIONS
#[inline]
pub async fn create_reaction(
self,
http: impl AsRef<Http>,
message_id: impl Into<MessageId>,
reaction_type: impl Into<ReactionType>,
) -> Result<()> {
http.as_ref().create_reaction(self, message_id.into(), &reaction_type.into()).await
}
/// Deletes this channel, returning the channel on a successful deletion.
///
/// **Note**: Requires the [Manage Channels] permission.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission.
///
/// [Manage Channels]: Permissions::MANAGE_CHANNELS
#[inline]
pub async fn delete(self, http: impl AsRef<Http>) -> Result<Channel> {
http.as_ref().delete_channel(self, None).await
}
/// Deletes a [`Message`] given its Id.
///
/// Refer to [`Message::delete`] for more information.
///
/// Requires the [Manage Messages] permission, if the current user is not the author of the
/// message.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission to delete the message.
///
/// [Manage Messages]: Permissions::MANAGE_MESSAGES
#[inline]
pub async fn delete_message(
self,
http: impl AsRef<Http>,
message_id: impl Into<MessageId>,
) -> Result<()> {
http.as_ref().delete_message(self, message_id.into(), None).await
}
/// Deletes messages by Ids from the given vector in the given channel.
///
/// The Discord API supports deleting between 2 and 100 messages at once. This function
/// also handles the case of a single message by calling `delete_message` internally.
///
/// Requires the [Manage Messages] permission.
///
/// **Note**: Messages that are older than 2 weeks can't be deleted using this method.
///
/// # Errors
///
/// Returns [`ModelError::BulkDeleteAmount`] if an attempt was made to delete 0 or more
/// than 100 messages.
///
/// Also will return [`Error::Http`] if the current user lacks permission to delete messages.
///
/// [Manage Messages]: Permissions::MANAGE_MESSAGES
pub async fn delete_messages<T: AsRef<MessageId>>(
self,
http: impl AsRef<Http>,
message_ids: impl IntoIterator<Item = T>,
) -> Result<()> {
let ids =
message_ids.into_iter().map(|message_id| *message_id.as_ref()).collect::<Vec<_>>();
let len = ids.len();
if len == 0 || len > 100 {
return Err(Error::Model(ModelError::BulkDeleteAmount));
}
if ids.len() == 1 {
self.delete_message(http, ids[0]).await
} else {
let map = json!({ "messages": ids });
http.as_ref().delete_messages(self, &map, None).await
}
}
/// Deletes all permission overrides in the channel from a member or role.
///
/// **Note**: Requires the [Manage Channel] permission.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission.
///
/// [Manage Channel]: Permissions::MANAGE_CHANNELS
pub async fn delete_permission(
self,
http: impl AsRef<Http>,
permission_type: PermissionOverwriteType,
) -> Result<()> {
let id = match permission_type {
PermissionOverwriteType::Member(id) => id.into(),
PermissionOverwriteType::Role(id) => id.get().into(),
};
http.as_ref().delete_permission(self, id, None).await
}
/// Deletes the given [`Reaction`] from the channel.
///
/// **Note**: Requires the [Manage Messages] permission, _if_ the current user did not perform
/// the reaction.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user did not perform the reaction, and lacks
/// permission.
///
/// [Manage Messages]: Permissions::MANAGE_MESSAGES
#[inline]
pub async fn delete_reaction(
self,
http: impl AsRef<Http>,
message_id: impl Into<MessageId>,
user_id: Option<UserId>,
reaction_type: impl Into<ReactionType>,
) -> Result<()> {
let http = http.as_ref();
let message_id = message_id.into();
let reaction_type = reaction_type.into();
match user_id {
Some(user_id) => http.delete_reaction(self, message_id, user_id, &reaction_type).await,
None => http.delete_reaction_me(self, message_id, &reaction_type).await,
}
}
/// Deletes all of the [`Reaction`]s associated with the provided message id.
///
/// **Note**: Requires the [Manage Messages] permission.
///
/// [Manage Messages]: Permissions::MANAGE_MESSAGES
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission
///
/// [Manage Messages]: Permissions::MANAGE_MESSAGES
#[inline]
pub async fn delete_reactions(
self,
http: impl AsRef<Http>,
message_id: impl Into<MessageId>,
) -> Result<()> {
http.as_ref().delete_message_reactions(self, message_id.into()).await
}
/// Deletes all [`Reaction`]s of the given emoji to a message within the channel.
///
/// **Note**: Requires the [Manage Messages] permission.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission.
///
/// [Manage Messages]: Permissions::MANAGE_MESSAGES
#[inline]
pub async fn delete_reaction_emoji(
self,
http: impl AsRef<Http>,
message_id: impl Into<MessageId>,
reaction_type: impl Into<ReactionType>,
) -> Result<()> {
http.as_ref()
.delete_message_reaction_emoji(self, message_id.into(), &reaction_type.into())
.await
}
/// Edits a channel's settings.
///
/// Refer to the documentation for [`EditChannel`] for a full list of methods.
///
/// **Note**: Requires the [Manage Channels] permission. Modifying permissions via
/// [`EditChannel::permissions`] also requires the [Manage Roles] permission.
///
/// # Examples
///
/// Change a voice channel's name and bitrate:
///
/// ```rust,no_run
/// # use serenity::builder::EditChannel;
/// # use serenity::http::Http;
/// # use serenity::model::id::ChannelId;
/// # async fn run() {
/// # let http: Http = unimplemented!();
/// # let channel_id = ChannelId::new(1234);
/// let builder = EditChannel::new().name("test").bitrate(64000);
/// channel_id.edit(&http, builder).await;
/// # }
/// ```
///
/// # Errors
///
/// If the `cache` is enabled, returns a [`ModelError::InvalidPermissions`] if the current user
/// lacks permission. Otherwise returns [`Error::Http`], as well as if invalid data is given.
///
/// [Manage Channels]: Permissions::MANAGE_CHANNELS
/// [Manage Roles]: Permissions::MANAGE_ROLES
#[inline]
pub async fn edit(
self,
cache_http: impl CacheHttp,
builder: EditChannel<'_>,
) -> Result<GuildChannel> {
builder.execute(cache_http, self).await
}
/// Edits a [`Message`] in the channel given its Id.
///
/// Message editing preserves all unchanged message data, with some exceptions for embeds and
/// attachments.
///
/// **Note**: In most cases requires that the current user be the author of the message.
///
/// Refer to the documentation for [`EditMessage`] for information regarding content
/// restrictions and requirements.
///
/// # Errors
///
/// See [`EditMessage::execute`] for a list of possible errors, and their corresponding
/// reasons.
#[inline]
pub async fn edit_message(
self,
cache_http: impl CacheHttp,
message_id: impl Into<MessageId>,
builder: EditMessage,
) -> Result<Message> {
builder.execute(cache_http, (self, message_id.into(), None)).await
}
/// Follows the News Channel
///
/// Requires [Manage Webhook] permissions on the target channel.
///
/// **Note**: Only available on news channels.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission. [Manage Webhook]:
/// Permissions::MANAGE_WEBHOOKS
pub async fn follow(
self,
http: impl AsRef<Http>,
target_channel_id: impl Into<ChannelId>,
) -> Result<FollowedChannel> {
http.as_ref().follow_news_channel(self, target_channel_id.into()).await
}
/// Attempts to find a [`GuildChannel`] by its Id in the cache.
#[cfg(feature = "cache")]
#[inline]
#[deprecated = "Use Cache::guild and Guild::channels instead"]
pub fn to_channel_cached(self, cache: &Cache) -> Option<GuildChannelRef<'_>> {
#[allow(deprecated)]
cache.channel(self)
}
/// First attempts to retrieve the channel from the `temp_cache` if enabled, otherwise performs
/// a HTTP request.
///
/// It is recommended to first check if the channel is accessible via `Cache::guild` and
/// `Guild::members`, although this requires a `GuildId`.
///
/// # Errors
///
/// Returns [`Error::Http`] if the channel retrieval request failed.
#[inline]
pub async fn to_channel(self, cache_http: impl CacheHttp) -> Result<Channel> {
#[cfg(feature = "temp_cache")]
{
if let Some(cache) = cache_http.cache() {
if let Some(channel) = cache.temp_channels.get(&self) {
return Ok(Channel::Guild(GuildChannel::clone(&*channel)));
}
}
}
let channel = cache_http.http().get_channel(self).await?;
#[cfg(all(feature = "cache", feature = "temp_cache"))]
{
if let Some(cache) = cache_http.cache() {
if let Channel::Guild(guild_channel) = &channel {
use crate::cache::MaybeOwnedArc;
let cached_channel = MaybeOwnedArc::new(guild_channel.clone());
cache.temp_channels.insert(cached_channel.id, cached_channel);
}
}
}
Ok(channel)
}
/// Gets all of the channel's invites.
///
/// Requires the [Manage Channels] permission.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission.
///
/// [Manage Channels]: Permissions::MANAGE_CHANNELS
#[inline]
pub async fn invites(self, http: impl AsRef<Http>) -> Result<Vec<RichInvite>> {
http.as_ref().get_channel_invites(self).await
}
/// Gets a message from the channel.
///
/// If the cache feature is enabled the cache will be checked first. If not found it will
/// resort to an http request.
///
/// Requires the [Read Message History] permission.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission.
///
/// [Read Message History]: Permissions::READ_MESSAGE_HISTORY
#[inline]
pub async fn message(
self,
cache_http: impl CacheHttp,
message_id: impl Into<MessageId>,
) -> Result<Message> {
let message_id = message_id.into();
#[cfg(feature = "cache")]
if let Some(cache) = cache_http.cache() {
if let Some(message) = cache.message(self, message_id) {
return Ok(message.clone());
}
}
let message = cache_http.http().get_message(self, message_id).await?;
#[cfg(feature = "temp_cache")]
if let Some(cache) = cache_http.cache() {
use crate::cache::MaybeOwnedArc;
let message = MaybeOwnedArc::new(message.clone());
cache.temp_messages.insert(message_id, message);
}
Ok(message)
}
/// Gets messages from the channel.
///
/// **Note**: If the user does not have the [Read Message History] permission, returns an empty
/// [`Vec`].
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission.
///
/// [Read Message History]: Permissions::READ_MESSAGE_HISTORY
pub async fn messages(
self,
cache_http: impl CacheHttp,
builder: GetMessages,
) -> Result<Vec<Message>> {
builder.execute(cache_http, self).await
}
/// Streams over all the messages in a channel.
///
/// This is accomplished and equivalent to repeated calls to [`Self::messages`]. A buffer of at
/// most 100 messages is used to reduce the number of calls necessary.
///
/// The stream returns the newest message first, followed by older messages.
///
/// # Examples
///
/// ```rust,no_run
/// # use serenity::model::id::ChannelId;
/// # use serenity::http::Http;
/// #
/// # async fn run() {
/// # let channel_id = ChannelId::new(1);
/// # let ctx: Http = unimplemented!();
/// use serenity::futures::StreamExt;
/// use serenity::model::channel::MessagesIter;
///
/// let mut messages = channel_id.messages_iter(&ctx).boxed();
/// while let Some(message_result) = messages.next().await {
/// match message_result {
/// Ok(message) => println!("{} said \"{}\".", message.author.name, message.content,),
/// Err(error) => eprintln!("Uh oh! Error: {}", error),
/// }
/// }
/// # }
/// ```
pub fn messages_iter<H: AsRef<Http>>(self, http: H) -> impl Stream<Item = Result<Message>> {
MessagesIter::<H>::stream(http, self)
}
/// Returns the name of whatever channel this id holds.
///
/// DM channels don't have a name, so a name is generated according to
/// [`PrivateChannel::name()`].
///
/// # Errors
///
/// Same as [`Self::to_channel()`].
pub async fn name(self, cache_http: impl CacheHttp) -> Result<String> {
let channel = self.to_channel(cache_http).await?;
Ok(match channel {
Channel::Guild(channel) => channel.name,
Channel::Private(channel) => channel.name(),
})
}
/// Pins a [`Message`] to the channel.
///
/// **Note**: Requires the [Manage Messages] permission.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission, or if the channel has too
/// many pinned messages.
///
/// [Manage Messages]: Permissions::MANAGE_MESSAGES
#[inline]
pub async fn pin(self, http: impl AsRef<Http>, message_id: impl Into<MessageId>) -> Result<()> {
http.as_ref().pin_message(self, message_id.into(), None).await
}
/// Crossposts a [`Message`].
///
/// Requires either to be the message author or to have manage [Manage Messages] permissions on
/// this channel.
///
/// **Note**: Only available on news channels.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission, and if the user is not the
/// author of the message.
///
/// [Manage Messages]: Permissions::MANAGE_MESSAGES
pub async fn crosspost(
self,
http: impl AsRef<Http>,
message_id: impl Into<MessageId>,
) -> Result<Message> {
http.as_ref().crosspost_message(self, message_id.into()).await
}
/// Gets the list of [`Message`]s which are pinned to the channel.
///
/// **Note**: Returns an empty [`Vec`] if the current user does not have the [Read Message
/// History] permission.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission to view the channel.
///
/// [Read Message History]: Permissions::READ_MESSAGE_HISTORY
#[inline]
pub async fn pins(self, http: impl AsRef<Http>) -> Result<Vec<Message>> {
http.as_ref().get_pins(self).await
}
/// Gets the list of [`User`]s who have reacted to a [`Message`] with a certain [`Emoji`].
///
/// The default `limit` is `50` - specify otherwise to receive a different maximum number of
/// users. The maximum that may be retrieve at a time is `100`, if a greater number is provided
/// then it is automatically reduced.
///
/// The optional `after` attribute is to retrieve the users after a certain user. This is
/// useful for pagination.
///
/// **Note**: Requires the [Read Message History] permission.
///
/// **Note**: If the passed reaction_type is a custom guild emoji, it must contain the name.
/// So, [`Emoji`] or [`EmojiIdentifier`] will always work, [`ReactionType`] only if
/// [`ReactionType::Custom::name`] is Some, and **[`EmojiId`] will never work**.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission to read messages in the
/// channel.
///
/// [Read Message History]: Permissions::READ_MESSAGE_HISTORY
pub async fn reaction_users(
self,
http: impl AsRef<Http>,
message_id: impl Into<MessageId>,
reaction_type: impl Into<ReactionType>,
limit: Option<u8>,
after: impl Into<Option<UserId>>,
) -> Result<Vec<User>> {
let limit = limit.map_or(50, |x| if x > 100 { 100 } else { x });
http.as_ref()
.get_reaction_users(
self,
message_id.into(),
&reaction_type.into(),
limit,
after.into().map(UserId::get),
)
.await
}
/// Sends a message with just the given message content in the channel.
///
/// **Note**: Message content must be under 2000 unicode code points.
///
/// # Errors
///
/// Returns a [`ModelError::MessageTooLong`] if the content length is over the above limit. See
/// [`CreateMessage::execute`] for more details.
#[inline]
pub async fn say(
self,
cache_http: impl CacheHttp,
content: impl Into<String>,
) -> Result<Message> {
let builder = CreateMessage::new().content(content);
self.send_message(cache_http, builder).await
}
/// Sends file(s) along with optional message contents. The filename _must_ be specified.
///
/// Message contents may be passed using the `builder` argument.
///
/// Refer to the documentation for [`CreateMessage`] for information regarding content
/// restrictions and requirements.
///
/// # Examples
///
/// Send files with the paths `/path/to/file.jpg` and `/path/to/file2.jpg`:
///
/// ```rust,no_run
/// # use serenity::http::Http;
/// # use std::sync::Arc;
/// #
/// # async fn run() -> Result<(), serenity::Error> {
/// # let http: Arc<Http> = unimplemented!();
/// use serenity::builder::{CreateAttachment, CreateMessage};
/// use serenity::model::id::ChannelId;
///
/// let channel_id = ChannelId::new(7);
///
/// let paths = [
/// CreateAttachment::path("/path/to/file.jpg").await?,
/// CreateAttachment::path("path/to/file2.jpg").await?,
/// ];
///
/// let builder = CreateMessage::new().content("some files");
/// channel_id.send_files(&http, paths, builder).await?;
/// # Ok(()) }
/// ```
///
/// Send files using [`File`]:
///
/// ```rust,no_run
/// # use serenity::http::Http;
/// # use std::sync::Arc;
/// #
/// # async fn run() -> Result<(), Box<dyn std::error::Error>> {
/// # let http: Arc<Http> = unimplemented!();
/// use serenity::builder::{CreateAttachment, CreateMessage};
/// use serenity::model::id::ChannelId;
/// use tokio::fs::File;
///
/// let channel_id = ChannelId::new(7);
///
/// let f1 = File::open("my_file.jpg").await?;
/// let f2 = File::open("my_file2.jpg").await?;
///
/// let files = [
/// CreateAttachment::file(&f1, "my_file.jpg").await?,
/// CreateAttachment::file(&f2, "my_file2.jpg").await?,
/// ];
///
/// let builder = CreateMessage::new().content("some files");
/// let _ = channel_id.send_files(&http, files, builder).await;
/// # Ok(())
/// # }
/// ```
///
/// # Errors
///
/// See [`CreateMessage::execute`] for a list of possible errors, and their corresponding
/// reasons.
///
/// [`File`]: tokio::fs::File
pub async fn send_files(
self,
cache_http: impl CacheHttp,
files: impl IntoIterator<Item = CreateAttachment>,
builder: CreateMessage,
) -> Result<Message> {
self.send_message(cache_http, builder.files(files)).await
}
/// Sends a message to the channel.
///
/// Refer to the documentation for [`CreateMessage`] for information regarding content
/// restrictions and requirements.
///
/// # Errors
///
/// See [`CreateMessage::execute`] for a list of possible errors, and their corresponding
/// reasons.
pub async fn send_message(
self,
cache_http: impl CacheHttp,
builder: CreateMessage,
) -> Result<Message> {
builder.execute(cache_http, (self, None)).await
}
/// Starts typing in the channel for an indefinite period of time.
///
/// Returns [`Typing`] that is used to trigger the typing. [`Typing::stop`] must be called on
/// the returned struct to stop typing. Note that on some clients, typing may persist for a few
/// seconds after [`Typing::stop`] is called. Typing is also stopped when the struct is
/// dropped.
///
/// If a message is sent while typing is triggered, the user will stop typing for a brief
/// period of time and then resume again until either [`Typing::stop`] is called or the struct
/// is dropped.
///
/// This should rarely be used for bots, although it is a good indicator that a long-running
/// command is still being processed.
///
/// ## Examples
///
/// ```rust,no_run
/// # use serenity::{http::Http, Result, model::id::ChannelId};
/// # use std::sync::Arc;
/// #
/// # fn long_process() {}
/// # fn main() {
/// # let http: Arc<Http> = unimplemented!();
/// // Initiate typing (assuming http is `Arc<Http>`)
/// let typing = ChannelId::new(7).start_typing(&http);
///
/// // Run some long-running process
/// long_process();
///
/// // Stop typing
/// typing.stop();
/// # }
/// ```
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission
/// to send messages in this channel.
pub fn start_typing(self, http: &Arc<Http>) -> Typing {
http.start_typing(self)
}
/// Unpins a [`Message`] in the channel given by its Id.
///
/// Requires the [Manage Messages] permission.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission.
///
/// [Manage Messages]: Permissions::MANAGE_MESSAGES
#[inline]
pub async fn unpin(
self,
http: impl AsRef<Http>,
message_id: impl Into<MessageId>,
) -> Result<()> {
http.as_ref().unpin_message(self, message_id.into(), None).await
}
/// Retrieves the channel's webhooks.
///
/// **Note**: Requires the [Manage Webhooks] permission.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission.
///
/// [Manage Webhooks]: Permissions::MANAGE_WEBHOOKS
#[inline]
pub async fn webhooks(self, http: impl AsRef<Http>) -> Result<Vec<Webhook>> {
http.as_ref().get_channel_webhooks(self).await
}
/// Creates a webhook in the channel.
///
/// # Errors
///
/// See [`CreateWebhook::execute`] for a detailed list of possible errors.
pub async fn create_webhook(
self,
cache_http: impl CacheHttp,
builder: CreateWebhook<'_>,
) -> Result<Webhook> {
builder.execute(cache_http, self).await
}
/// Returns a builder which can be awaited to obtain a message or stream of messages in this
/// channel.
#[cfg(feature = "collector")]
pub fn await_reply(self, shard_messenger: impl AsRef<ShardMessenger>) -> MessageCollector {
MessageCollector::new(shard_messenger).channel_id(self)
}
/// Same as [`Self::await_reply`].
#[cfg(feature = "collector")]
pub fn await_replies(&self, shard_messenger: impl AsRef<ShardMessenger>) -> MessageCollector {
self.await_reply(shard_messenger)
}
/// Returns a builder which can be awaited to obtain a reaction or stream of reactions sent in
/// this channel.
#[cfg(feature = "collector")]
pub fn await_reaction(self, shard_messenger: impl AsRef<ShardMessenger>) -> ReactionCollector {
ReactionCollector::new(shard_messenger).channel_id(self)
}
/// Same as [`Self::await_reaction`].
#[cfg(feature = "collector")]
pub fn await_reactions(
&self,
shard_messenger: impl AsRef<ShardMessenger>,
) -> ReactionCollector {
self.await_reaction(shard_messenger)
}
/// Gets a stage instance.
///
/// # Errors
///
/// Returns [`Error::Http`] if the channel is not a stage channel, or if there is no stage
/// instance currently.
pub async fn get_stage_instance(self, http: impl AsRef<Http>) -> Result<StageInstance> {
http.as_ref().get_stage_instance(self).await
}
/// Creates a stage instance.
///
/// # Errors
///
/// Returns [`Error::Http`] if there is already a stage instance currently.
pub async fn create_stage_instance(
self,
cache_http: impl CacheHttp,
builder: CreateStageInstance<'_>,
) -> Result<StageInstance> {
builder.execute(cache_http, self).await
}
/// Edits the stage instance
///
/// # Errors
///
/// Returns [`ModelError::InvalidChannelType`] if the channel is not a stage channel.
///
/// Returns [`Error::Http`] if the channel is not a stage channel, or there is no stage
/// instance currently.
pub async fn edit_stage_instance(
self,
cache_http: impl CacheHttp,
builder: EditStageInstance<'_>,
) -> Result<StageInstance> {
builder.execute(cache_http, self).await
}
/// Edits a thread.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission.
pub async fn edit_thread(
self,
cache_http: impl CacheHttp,
builder: EditThread<'_>,
) -> Result<GuildChannel> {
builder.execute(cache_http, self).await
}
/// Deletes a stage instance.
///
/// # Errors
///
/// Returns [`Error::Http`] if the channel is not a stage channel, or if there is no stage
/// instance currently.
pub async fn delete_stage_instance(self, http: impl AsRef<Http>) -> Result<()> {
http.as_ref().delete_stage_instance(self, None).await
}
/// Creates a public thread that is connected to a message.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission, or if invalid data is given.
#[doc(alias = "create_public_thread")]
pub async fn create_thread_from_message(
self,
cache_http: impl CacheHttp,
message_id: impl Into<MessageId>,
builder: CreateThread<'_>,
) -> Result<GuildChannel> {
builder.execute(cache_http, (self, Some(message_id.into()))).await
}
/// Creates a thread that is not connected to a message.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission, or if invalid data is given.
#[doc(alias = "create_public_thread", alias = "create_private_thread")]
pub async fn create_thread(
self,
cache_http: impl CacheHttp,
builder: CreateThread<'_>,
) -> Result<GuildChannel> {
builder.execute(cache_http, (self, None)).await
}
/// Creates a post in a forum channel.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission, or if invalid data is given.
pub async fn create_forum_post(
self,
cache_http: impl CacheHttp,
builder: CreateForumPost<'_>,
) -> Result<GuildChannel> {
builder.execute(cache_http, self).await
}
/// Gets the thread members, if this channel is a thread.
///
/// # Errors
///
/// It may return an [`Error::Http`] if the channel is not a thread channel
pub async fn get_thread_members(self, http: impl AsRef<Http>) -> Result<Vec<ThreadMember>> {
http.as_ref().get_channel_thread_members(self).await
}
/// Joins the thread, if this channel is a thread.
///
/// # Errors
///
/// It may return an [`Error::Http`] if the channel is not a thread channel
pub async fn join_thread(self, http: impl AsRef<Http>) -> Result<()> {
http.as_ref().join_thread_channel(self).await
}
/// Leaves the thread, if this channel is a thread.
///
/// # Errors
///
/// It may return an [`Error::Http`] if the channel is not a thread channel
pub async fn leave_thread(self, http: impl AsRef<Http>) -> Result<()> {
http.as_ref().leave_thread_channel(self).await
}
/// Adds a thread member, if this channel is a thread.
///
/// # Errors
///
/// It may return an [`Error::Http`] if the channel is not a thread channel
pub async fn add_thread_member(self, http: impl AsRef<Http>, user_id: UserId) -> Result<()> {
http.as_ref().add_thread_channel_member(self, user_id).await
}
/// Removes a thread member, if this channel is a thread.
///
/// # Errors
///
/// It may return an [`Error::Http`] if the channel is not a thread channel
pub async fn remove_thread_member(self, http: impl AsRef<Http>, user_id: UserId) -> Result<()> {
http.as_ref().remove_thread_channel_member(self, user_id).await
}
/// Gets a thread member, if this channel is a thread.
///
/// `with_member` controls if ThreadMember::member should be `Some`
///
/// # Errors
///
/// It may return an [`Error::Http`] if the channel is not a thread channel
pub async fn get_thread_member(
self,
http: impl AsRef<Http>,
user_id: UserId,
with_member: bool,
) -> Result<ThreadMember> {
http.as_ref().get_thread_channel_member(self, user_id, with_member).await
}
/// Gets private archived threads of a channel.
///
/// # Errors
///
/// It may return an [`Error::Http`] if the bot doesn't have the permission to get it.
pub async fn get_archived_private_threads(
self,
http: impl AsRef<Http>,
before: Option<u64>,
limit: Option<u64>,
) -> Result<ThreadsData> {
http.as_ref().get_channel_archived_private_threads(self, before, limit).await
}
/// Gets public archived threads of a channel.
///
/// # Errors
///
/// It may return an [`Error::Http`] if the bot doesn't have the permission to get it.
pub async fn get_archived_public_threads(
self,
http: impl AsRef<Http>,
before: Option<u64>,
limit: Option<u64>,
) -> Result<ThreadsData> {
http.as_ref().get_channel_archived_public_threads(self, before, limit).await
}
/// Gets private archived threads joined by the current user of a channel.
///
/// # Errors
///
/// It may return an [`Error::Http`] if the bot doesn't have the permission to get it.
pub async fn get_joined_archived_private_threads(
self,
http: impl AsRef<Http>,
before: Option<u64>,
limit: Option<u64>,
) -> Result<ThreadsData> {
http.as_ref().get_channel_joined_archived_private_threads(self, before, limit).await
}
/// Get a list of users that voted for this specific answer.
///
/// # Errors
///
/// If the message does not have a poll.
pub async fn get_poll_answer_voters(
self,
http: impl AsRef<Http>,
message_id: MessageId,
answer_id: AnswerId,
after: Option<UserId>,
limit: Option<u8>,
) -> Result<Vec<User>> {
http.as_ref().get_poll_answer_voters(self, message_id, answer_id, after, limit).await
}
/// Ends the [`Poll`] on a given [`MessageId`], if there is one.
///
/// # Errors
///
/// If the message does not have a poll, or if the poll was not created by the current user.
pub async fn end_poll(self, http: impl AsRef<Http>, message_id: MessageId) -> Result<Message> {
http.as_ref().expire_poll(self, message_id).await
}
/// Sends a soundboard sound to this voice channel.
///
/// # Errors
///
/// Errors if this channel ID does not point to a voice channel, or you do not
/// have the required [`SPEAK`], [`USE_SOUNDBOARD`], and/or
/// [`USE_EXTERNAL_SOUNDS`] permissions.
///
/// [`SPEAK`]: Permissions::SPEAK
/// [`USE_SOUNDBOARD`]: Permissions::USE_SOUNDBOARD
/// [`USE_EXTERNAL_SOUNDS`]: Permissions::USE_EXTERNAL_SOUNDS
pub async fn send_soundboard(
self,
http: impl AsRef<Http>,
sound_id: SoundId,
guild_id: Option<GuildId>,
) -> Result<()> {
#[derive(serde::Serialize)]
struct SendSoundboard {
sound_id: SoundId,
source_guild_id: Option<GuildId>,
}
let map = SendSoundboard {
sound_id,
source_guild_id: guild_id,
};
http.as_ref().send_soundboard_sound(self, &map).await
}
}
#[cfg(feature = "model")]
impl From<Channel> for ChannelId {
/// Gets the Id of a [`Channel`].
fn from(channel: Channel) -> ChannelId {
channel.id()
}
}
#[cfg(feature = "model")]
impl From<&Channel> for ChannelId {
/// Gets the Id of a [`Channel`].
fn from(channel: &Channel) -> ChannelId {
channel.id()
}
}
impl From<PrivateChannel> for ChannelId {
/// Gets the Id of a private channel.
fn from(private_channel: PrivateChannel) -> ChannelId {
private_channel.id
}
}
impl From<&PrivateChannel> for ChannelId {
/// Gets the Id of a private channel.
fn from(private_channel: &PrivateChannel) -> ChannelId {
private_channel.id
}
}
impl From<GuildChannel> for ChannelId {
/// Gets the Id of a guild channel.
fn from(public_channel: GuildChannel) -> ChannelId {
public_channel.id
}
}
impl From<&GuildChannel> for ChannelId {
/// Gets the Id of a guild channel.
fn from(public_channel: &GuildChannel) -> ChannelId {
public_channel.id
}
}
impl From<WebhookChannel> for ChannelId {
/// Gets the Id of a webhook channel.
fn from(webhook_channel: WebhookChannel) -> ChannelId {
webhook_channel.id
}
}
impl From<&WebhookChannel> for ChannelId {
/// Gets the Id of a webhook channel.
fn from(webhook_channel: &WebhookChannel) -> ChannelId {
webhook_channel.id
}
}
/// A helper class returned by [`ChannelId::messages_iter`]
#[derive(Clone, Debug)]
#[cfg(feature = "model")]
pub struct MessagesIter<H: AsRef<Http>> {
http: H,
channel_id: ChannelId,
buffer: Vec<Message>,
before: Option<MessageId>,
tried_fetch: bool,
}
#[cfg(feature = "model")]
impl<H: AsRef<Http>> MessagesIter<H> {
fn new(http: H, channel_id: ChannelId) -> MessagesIter<H> {
MessagesIter {
http,
channel_id,
buffer: Vec::new(),
before: None,
tried_fetch: false,
}
}
/// Fills the `self.buffer` cache with [`Message`]s.
///
/// This drops any messages that were currently in the buffer. Ideally, it should only be
/// called when `self.buffer` is empty. Additionally, this updates `self.before` so that the
/// next call does not return duplicate items.
///
/// If there are no more messages to be fetched, then this sets `self.before` as [`None`],
/// indicating that no more calls ought to be made.
///
/// If this method is called with `self.before` as None, the last 100 (or lower) messages sent
/// in the channel are added in the buffer.
///
/// The messages are sorted such that the newest message is the first element of the buffer and
/// the newest message is the last.
///
/// [`Message`]: crate::model::channel::Message
async fn refresh(&mut self) -> Result<()> {
// Number of messages to fetch.
let grab_size = 100;
// If `self.before` is not set yet, we can use `.messages` to fetch the last message after
// very first fetch from last.
let mut builder = GetMessages::new().limit(grab_size);
if let Some(before) = self.before {
builder = builder.before(before);
}
self.buffer = self.channel_id.messages(self.http.as_ref(), builder).await?;
self.buffer.reverse();
self.before = self.buffer.first().map(|m| m.id);
self.tried_fetch = true;
Ok(())
}
/// Streams over all the messages in a channel.
///
/// This is accomplished and equivalent to repeated calls to [`ChannelId::messages`]. A buffer
/// of at most 100 messages is used to reduce the number of calls necessary.
///
/// The stream returns the newest message first, followed by older messages.
///
/// # Examples
///
/// ```rust,no_run
/// # use serenity::model::id::ChannelId;
/// # use serenity::http::Http;
/// #
/// # async fn run() {
/// # let channel_id = ChannelId::new(1);
/// # let ctx: Http = unimplemented!();
/// use serenity::futures::StreamExt;
/// use serenity::model::channel::MessagesIter;
///
/// let mut messages = MessagesIter::<Http>::stream(&ctx, channel_id).boxed();
/// while let Some(message_result) = messages.next().await {
/// match message_result {
/// Ok(message) => println!("{} said \"{}\"", message.author.name, message.content,),
/// Err(error) => eprintln!("Uh oh! Error: {}", error),
/// }
/// }
/// # }
/// ```
pub fn stream(
http: impl AsRef<Http>,
channel_id: ChannelId,
) -> impl Stream<Item = Result<Message>> {
let init_state = MessagesIter::new(http, channel_id);
futures::stream::unfold(init_state, |mut state| async {
if state.buffer.is_empty() && state.before.is_some() || !state.tried_fetch {
if let Err(error) = state.refresh().await {
return Some((Err(error), state));
}
}
// the resultant stream goes from newest to oldest.
state.buffer.pop().map(|entry| (Ok(entry), state))
})
}
}