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 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570
#[cfg(feature = "model")]
use futures::stream::Stream;
#[cfg(feature = "model")]
use serde_json::json;
#[cfg(feature = "model")]
use crate::builder::CreateChannel;
#[cfg(feature = "model")]
use crate::builder::{EditGuild, EditGuildWelcomeScreen, EditGuildWidget, EditMember, EditRole};
#[cfg(all(feature = "cache", feature = "model"))]
use crate::cache::Cache;
#[cfg(feature = "collector")]
use crate::client::bridge::gateway::ShardMessenger;
#[cfg(feature = "collector")]
use crate::collector::{
CollectReaction,
CollectReply,
MessageCollectorBuilder,
ReactionCollectorBuilder,
};
#[cfg(feature = "model")]
use crate::http::{CacheHttp, Http};
#[cfg(feature = "model")]
use crate::internal::prelude::*;
use crate::model::prelude::*;
#[cfg(feature = "model")]
use crate::utils;
#[cfg(all(feature = "model", feature = "unstable_discord_api"))]
use crate::{
builder::{
CreateApplicationCommand,
CreateApplicationCommandPermissionsData,
CreateApplicationCommands,
CreateApplicationCommandsPermissions,
},
model::interactions::application_command::{ApplicationCommand, ApplicationCommandPermission},
};
#[cfg(feature = "model")]
impl GuildId {
/// Ban a [`User`] from the guild, deleting a number of
/// days' worth of messages (`dmd`) between the range 0 and 7.
///
/// Refer to the documentation for [`Guild::ban`] for more information.
///
/// **Note**: Requires the [Ban Members] permission.
///
/// # Examples
///
/// Ban a member and remove all messages they've sent in the last 4 days:
///
/// ```rust,no_run
/// use serenity::model::id::GuildId;
/// use serenity::model::id::UserId;
///
/// # async fn run() -> Result<(), Box<dyn std::error::Error>> {
/// # use serenity::http::Http;
/// # let http = Http::default();
/// # let user = UserId(1);
/// // assuming a `user` has already been bound
/// let _ = GuildId(81384788765712384).ban(&http, user, 4).await;
/// # Ok(())
/// # }
/// ```
///
/// # Errors
///
/// Returns a [`ModelError::DeleteMessageDaysAmount`] if the number of
/// days' worth of messages to delete is over the maximum.
///
/// Also can return [`Error::Http`] if the current user lacks permission.
///
/// [Ban Members]: Permissions::BAN_MEMBERS
#[inline]
pub async fn ban(self, http: impl AsRef<Http>, user: impl Into<UserId>, dmd: u8) -> Result<()> {
self._ban_with_reason(http, user.into(), dmd, "").await
}
/// Ban a [`User`] from the guild with a reason. Refer to [`Self::ban`] to further documentation.
///
/// # Errors
///
/// In addition to the reasons [`Self::ban`] may return an error, may
/// also return [`Error::ExceededLimit`] if `reason` is too long.
#[inline]
pub async fn ban_with_reason(
self,
http: impl AsRef<Http>,
user: impl Into<UserId>,
dmd: u8,
reason: impl AsRef<str>,
) -> Result<()> {
self._ban_with_reason(http, user.into(), dmd, reason.as_ref()).await
}
async fn _ban_with_reason(
self,
http: impl AsRef<Http>,
user: UserId,
dmd: u8,
reason: &str,
) -> Result<()> {
if dmd > 7 {
return Err(Error::Model(ModelError::DeleteMessageDaysAmount(dmd)));
}
if reason.len() > 512 {
return Err(Error::ExceededLimit(reason.to_string(), 512));
}
http.as_ref().ban_user(self.0, user.0, dmd, reason).await
}
/// Gets a list of the guild's bans.
///
/// **Note**: Requires the [Ban Members] permission.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission.
///
/// [Ban Members]: Permissions::BAN_MEMBERS
#[inline]
pub async fn bans(self, http: impl AsRef<Http>) -> Result<Vec<Ban>> {
http.as_ref().get_bans(self.0).await
}
/// Gets a list of the guild's audit log entries
///
/// **Note**: Requires the [View Audit Log] permission.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission,
/// or if an invalid value is given.
///
/// [View Audit Log]: Permissions::VIEW_AUDIT_LOG
#[inline]
pub async fn audit_logs(
self,
http: impl AsRef<Http>,
action_type: Option<u8>,
user_id: Option<UserId>,
before: Option<AuditLogEntryId>,
limit: Option<u8>,
) -> Result<AuditLogs> {
http.as_ref()
.get_audit_logs(self.0, action_type, user_id.map(|u| u.0), before.map(|a| a.0), limit)
.await
}
/// Gets all of the guild's channels over the REST API.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user is not in
/// the guild.
pub async fn channels(
self,
http: impl AsRef<Http>,
) -> Result<HashMap<ChannelId, GuildChannel>> {
let mut channels = HashMap::new();
// Clippy is suggesting:
// consider removing
// `http.as_ref().get_channels(self.0)?()`:
// `http.as_ref().get_channels(self.0)?`.
#[allow(clippy::useless_conversion)]
for channel in http.as_ref().get_channels(self.0).await? {
channels.insert(channel.id, channel);
}
Ok(channels)
}
/// Creates a [`GuildChannel`] in the the guild.
///
/// Refer to [`Http::create_channel`] for more information.
///
/// Requires the [Manage Channels] permission.
///
/// # Examples
///
/// Create a voice channel in a guild with the name `test`:
///
/// ```rust,no_run
/// use serenity::model::channel::ChannelType;
/// use serenity::model::id::GuildId;
///
/// # async fn run() {
/// # use serenity::http::Http;
/// # let http = Http::default();
/// let _channel =
/// GuildId(7).create_channel(&http, |c| c.name("test").kind(ChannelType::Voice)).await;
/// # }
/// ```
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission,
/// or if invalid values are set.
///
/// [Manage Channels]: Permissions::MANAGE_CHANNELS
#[inline]
pub async fn create_channel(
self,
http: impl AsRef<Http>,
f: impl FnOnce(&mut CreateChannel) -> &mut CreateChannel,
) -> Result<GuildChannel> {
let mut builder = CreateChannel::default();
f(&mut builder);
let map = utils::hashmap_to_json_map(builder.0);
http.as_ref().create_channel(self.0, &map).await
}
/// Creates an emoji in the guild with a name and base64-encoded image.
///
/// Refer to the documentation for [`Guild::create_emoji`] for more
/// information.
///
/// Requires the [Manage Emojis] permission.
///
/// # Examples
///
/// See the [`EditProfile::avatar`] example for an in-depth example as to
/// how to read an image from the filesystem and encode it as base64. Most
/// of the example can be applied similarly for this method.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission,
/// if the name is too long, or if the image is too big.
///
/// [`EditProfile::avatar`]: crate::builder::EditProfile::avatar
/// [Manage Emojis]: Permissions::MANAGE_EMOJIS
#[inline]
pub async fn create_emoji(
self,
http: impl AsRef<Http>,
name: &str,
image: &str,
) -> Result<Emoji> {
let map = json!({
"name": name,
"image": image,
});
http.as_ref().create_emoji(self.0, &map).await
}
/// Creates an integration for the guild.
///
/// Requires the [Manage Guild] permission.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission.
///
/// [Manage Guild]: Permissions::MANAGE_GUILD
#[inline]
pub async fn create_integration(
self,
http: impl AsRef<Http>,
integration_id: impl Into<IntegrationId>,
kind: &str,
) -> Result<()> {
let integration_id = integration_id.into();
let map = json!({
"id": integration_id.0,
"type": kind,
});
http.as_ref().create_guild_integration(self.0, integration_id.0, &map).await
}
/// Creates a new role in the guild with the data set, if any.
///
/// See the documentation for [`Guild::create_role`] on how to use this.
///
/// **Note**: Requires the [Manage Roles] permission.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission,
/// or if invalid data is given.
///
/// [Manage Roles]: Permissions::MANAGE_ROLES
#[inline]
pub async fn create_role<F>(self, http: impl AsRef<Http>, f: F) -> Result<Role>
where
F: FnOnce(&mut EditRole) -> &mut EditRole,
{
let mut edit_role = EditRole::default();
f(&mut edit_role);
let map = utils::hashmap_to_json_map(edit_role.0);
let role = http.as_ref().create_role(self.0, &map).await?;
if let Some(position) = map.get("position").and_then(Value::as_u64) {
self.edit_role_position(&http, role.id, position).await?;
}
Ok(role)
}
/// Deletes the current guild if the current account is the owner of the
/// guild.
///
/// Refer to [`Guild::delete`] for more information.
///
/// **Note**: Requires the current user to be the owner of the guild.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user is not the owner of the guild.
#[inline]
pub async fn delete(self, http: impl AsRef<Http>) -> Result<PartialGuild> {
http.as_ref().delete_guild(self.0).await
}
/// Deletes an [`Emoji`] from the guild.
///
/// **Note**: Requires the [Manage Emojis] permission.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission,
/// or if an Emoji with that Id does not exist.
///
/// [Manage Emojis]: Permissions::MANAGE_EMOJIS
#[inline]
pub async fn delete_emoji(
self,
http: impl AsRef<Http>,
emoji_id: impl Into<EmojiId>,
) -> Result<()> {
http.as_ref().delete_emoji(self.0, emoji_id.into().0).await
}
/// Deletes an integration by Id from the guild.
///
/// **Note**: Requires the [Manage Guild] permission.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission,
/// or if an integration with that Id does not exist.
///
/// [Manage Guild]: Permissions::MANAGE_GUILD
#[inline]
pub async fn delete_integration(
self,
http: impl AsRef<Http>,
integration_id: impl Into<IntegrationId>,
) -> Result<()> {
http.as_ref().delete_guild_integration(self.0, integration_id.into().0).await
}
/// Deletes a [`Role`] by Id from the guild.
///
/// Also see [`Role::delete`] if you have the `cache` and `model` features
/// enabled.
///
/// **Note**: Requires the [Manage Roles] permission.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission,
/// or if a role with that Id does not exist.
///
/// [Manage Roles]: Permissions::MANAGE_ROLES
#[inline]
pub async fn delete_role(
self,
http: impl AsRef<Http>,
role_id: impl Into<RoleId>,
) -> Result<()> {
http.as_ref().delete_role(self.0, role_id.into().0).await
}
/// Edits the current guild with new data where specified.
///
/// Refer to [`Guild::edit`] for more information.
///
/// **Note**: Requires the current user to have the [Manage Guild]
/// permission.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission,
/// or if an invalid value is set.
///
/// [Manage Guild]: Permissions::MANAGE_GUILD
#[inline]
pub async fn edit<F>(&mut self, http: impl AsRef<Http>, f: F) -> Result<PartialGuild>
where
F: FnOnce(&mut EditGuild) -> &mut EditGuild,
{
let mut edit_guild = EditGuild::default();
f(&mut edit_guild);
let map = utils::hashmap_to_json_map(edit_guild.0);
http.as_ref().edit_guild(self.0, &map).await
}
/// Edits an [`Emoji`]'s name in the guild.
///
/// Also see [`Emoji::edit`] if you have the `cache` and `methods` features
/// enabled.
///
/// Requires the [Manage Emojis] permission.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission.
///
/// [Manage Emojis]: Permissions::MANAGE_EMOJIS
/// [`Error::Http`]: crate::error::Error::Http
#[inline]
pub async fn edit_emoji(
self,
http: impl AsRef<Http>,
emoji_id: impl Into<EmojiId>,
name: &str,
) -> Result<Emoji> {
let map = json!({
"name": name,
});
http.as_ref().edit_emoji(self.0, emoji_id.into().0, &map).await
}
/// Edits the properties of member of the guild, such as muting or
/// nicknaming them.
///
/// Refer to [`EditMember`]'s documentation for a full list of methods and
/// permission restrictions.
///
/// # Examples
///
/// Mute a member and set their roles to just one role with a predefined Id:
///
/// ```rust,ignore
/// guild.edit_member(&context, user_id, |m| m.mute(true).roles(&vec![role_id]));
/// ```
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks the necessary permissions.
///
/// [`Error::Http`]: crate::error::Error::Http
#[inline]
pub async fn edit_member<F>(
self,
http: impl AsRef<Http>,
user_id: impl Into<UserId>,
f: F,
) -> Result<Member>
where
F: FnOnce(&mut EditMember) -> &mut EditMember,
{
let mut edit_member = EditMember::default();
f(&mut edit_member);
let map = utils::hashmap_to_json_map(edit_member.0);
http.as_ref().edit_member(self.0, user_id.into().0, &map).await
}
/// Edits the current user's nickname for the guild.
///
/// Pass [`None`] to reset the nickname.
///
/// Requires the [Change Nickname] permission.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission.
///
/// [Change Nickname]: Permissions::CHANGE_NICKNAME
/// [`Error::Http`]: crate::error::Error::Http
#[inline]
pub async fn edit_nickname(
self,
http: impl AsRef<Http>,
new_nickname: Option<&str>,
) -> Result<()> {
http.as_ref().edit_nickname(self.0, new_nickname).await
}
/// Edits a [`Role`], optionally setting its new fields.
///
/// Requires the [Manage Roles] permission.
///
/// # Examples
///
/// Make a role hoisted:
///
/// ```rust,ignore
/// use serenity::model::{GuildId, RoleId};
///
/// GuildId(7).edit_role(&context, RoleId(8), |r| r.hoist(true));
/// ```
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission.
///
/// [Manage Roles]: Permissions::MANAGE_ROLES
/// [`Error::Http`]: crate::error::Error::Http
#[inline]
pub async fn edit_role<F>(
self,
http: impl AsRef<Http>,
role_id: impl Into<RoleId>,
f: F,
) -> Result<Role>
where
F: FnOnce(&mut EditRole) -> &mut EditRole,
{
let mut edit_role = EditRole::default();
f(&mut edit_role);
let map = utils::hashmap_to_json_map(edit_role.0);
http.as_ref().edit_role(self.0, role_id.into().0, &map).await
}
/// Edits the order of [`Role`]s
/// Requires the [Manage Roles] permission.
///
/// # Examples
///
/// Change the order of a role:
///
/// ```rust,ignore
/// use serenity::model::{GuildId, RoleId};
/// GuildId(7).edit_role_position(&context, RoleId(8), 2);
/// ```
///
/// # Errors
///
/// Returns an [`Error::Http`] if the current user lacks permission.
///
/// [Manage Roles]: Permissions::MANAGE_ROLES
/// [`Error::Http`]: crate::error::Error::Http
#[inline]
pub async fn edit_role_position(
self,
http: impl AsRef<Http>,
role_id: impl Into<RoleId>,
position: u64,
) -> Result<Vec<Role>> {
http.as_ref().edit_role_position(self.0, role_id.into().0, position).await
}
/// Edits the [`GuildWelcomeScreen`].
///
/// # Errors
///
/// Returns an [`Error::Http`] if some mandatory fields are not provided.
///
/// [`Error::Http`]: crate::error::Error::Http
/// [`GuildWelcomeScreen`]: super::guild::GuildWelcomeScreen
pub async fn edit_welcome_screen<F>(
&self,
http: impl AsRef<Http>,
f: F,
) -> Result<GuildWelcomeScreen>
where
F: FnOnce(&mut EditGuildWelcomeScreen) -> &mut EditGuildWelcomeScreen,
{
let mut map = EditGuildWelcomeScreen::default();
f(&mut map);
http.as_ref()
.edit_guild_welcome_screen(self.0, &Value::Object(utils::hashmap_to_json_map(map.0)))
.await
}
/// Edits the [`GuildWidget`].
///
/// # Errors
///
/// Returns an [`Error::Http`] if the bot does not have the `MANAGE_GUILD`
/// permission.
///
/// [`Error::Http`]: crate::error::Error::Http
/// [`GuildWelcomeScreen`]: super::guild::GuildWelcomeScreen
pub async fn edit_widget<F>(&self, http: impl AsRef<Http>, f: F) -> Result<GuildWidget>
where
F: FnOnce(&mut EditGuildWidget) -> &mut EditGuildWidget,
{
let mut map = EditGuildWidget::default();
f(&mut map);
http.as_ref()
.edit_guild_widget(self.0, &Value::Object(utils::hashmap_to_json_map(map.0)))
.await
}
/// Gets all of the guild's roles over the REST API.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user is not in
/// the guild.
pub async fn roles(self, http: impl AsRef<Http>) -> Result<HashMap<RoleId, Role>> {
let mut roles = HashMap::new();
#[allow(clippy::useless_conversion)]
for role in http.as_ref().get_guild_roles(self.0).await? {
roles.insert(role.id, role);
}
Ok(roles)
}
/// Tries to find the [`Guild`] by its Id in the cache.
#[cfg(feature = "cache")]
#[inline]
pub async fn to_guild_cached(self, cache: impl AsRef<Cache>) -> Option<Guild> {
cache.as_ref().guild(self).await
}
/// Requests [`PartialGuild`] over REST API.
///
/// **Note**: This will not be a [`Guild`], as the REST API does not send
/// all data with a guild retrieval.
///
/// # Errors
///
/// Returns an [`Error::Http`] if the current user is not in the guild.
///
/// [`Error::Http`]: crate::error::Error::Http
#[inline]
pub async fn to_partial_guild(self, http: impl AsRef<Http>) -> Result<PartialGuild> {
http.as_ref().get_guild(self.0).await
}
/// Requests [`PartialGuild`] over REST API with counts.
///
/// **Note**: This will not be a [`Guild`], as the REST API does not send
/// all data with a guild retrieval.
///
/// # Errors
///
/// Returns an [`Error::Http`] if the current user is not in the guild.
///
/// [`Error::Http`]: crate::error::Error::Http
#[inline]
pub async fn to_partial_guild_with_counts(
self,
http: impl AsRef<Http>,
) -> Result<PartialGuild> {
http.as_ref().get_guild_with_counts(self.0).await
}
/// Gets all [`Emoji`]s of this guild via HTTP.
///
/// # Errors
///
/// Returns an [`Error::Http`] if the guild is unavailable.
///
/// [`Error::Http`]: crate::error::Error::Http
#[inline]
pub async fn emojis(&self, http: impl AsRef<Http>) -> Result<Vec<Emoji>> {
http.as_ref().get_emojis(self.0).await
}
/// Gets an [`Emoji`] of this guild by its ID via HTTP.
///
/// # Errors
///
/// Returns an [`Error::Http`] if an emoji with that Id does not exist.
///
/// [`Error::Http`]: crate::error::Error::Http
#[inline]
pub async fn emoji(&self, http: impl AsRef<Http>, emoji_id: EmojiId) -> Result<Emoji> {
http.as_ref().get_emoji(self.0, emoji_id.0).await
}
/// Gets all integration of the guild.
///
/// Requires the [Manage Guild] permission.
///
/// # Errors
///
/// Returns an [`Error::Http`] if the current user lacks permission,
/// also may return [`Error::Json`] if there is an error in deserializing
/// the API response.
///
/// [Manage Guild]: Permissions::MANAGE_GUILD
/// [`Error::Http`]: crate::error::Error::Http
/// [`Error::Json`]: crate::error::Error::Json
#[inline]
pub async fn integrations(self, http: impl AsRef<Http>) -> Result<Vec<Integration>> {
http.as_ref().get_guild_integrations(self.0).await
}
/// Gets all of the guild's invites.
///
/// Requires the [Manage Guild] permission.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission,
/// also may return [`Error::Json`] if there is an error in
/// deserializing the API response.
///
/// [Manage Guild]: Permissions::MANAGE_GUILD
/// [`Error::Http`]: crate::error::Error::Http
/// [`Error::Json`]: crate::error::Error::Json
#[inline]
pub async fn invites(self, http: impl AsRef<Http>) -> Result<Vec<RichInvite>> {
http.as_ref().get_guild_invites(self.0).await
}
/// Kicks a [`Member`] from the guild.
///
/// Requires the [Kick Members] permission.
///
/// # Errors
///
/// Returns [`Error::Http`] if the member cannot be kicked by
/// the current user.
///
/// [`Error::Http`]: crate::error::Error::Http
/// [Kick Members]: Permissions::KICK_MEMBERS
#[inline]
pub async fn kick(self, http: impl AsRef<Http>, user_id: impl Into<UserId>) -> Result<()> {
http.as_ref().kick_member(self.0, user_id.into().0).await
}
#[inline]
/// # Errors
///
/// In addition to the reasons [`Self::kick`] may return an error,
/// may also return an error if the reason is too long.
pub async fn kick_with_reason(
self,
http: impl AsRef<Http>,
user_id: impl Into<UserId>,
reason: &str,
) -> Result<()> {
http.as_ref().kick_member_with_reason(self.0, user_id.into().0, reason).await
}
/// Leaves the guild.
///
/// # Errors
///
/// May return an [`Error::Http`] if the current user
/// cannot leave the guild, or currently is not in the guild.
///
/// [`Error::Http`]: crate::error::Error::Http
#[inline]
pub async fn leave(self, http: impl AsRef<Http>) -> Result<()> {
http.as_ref().leave_guild(self.0).await
}
/// Gets a user's [`Member`] for the guild by Id.
///
/// If the cache feature is enabled the cache will be checked
/// first. If not found it will resort to an http request.
///
/// # Errors
///
/// Returns an [`Error::Http`] if the user is not in the guild,
/// or if the guild is otherwise unavailable
///
/// [`Error::Http`]: crate::error::Error::Http
#[inline]
pub async fn member(
self,
cache_http: impl CacheHttp,
user_id: impl Into<UserId>,
) -> Result<Member> {
let user_id = user_id.into();
#[cfg(feature = "cache")]
{
if let Some(cache) = cache_http.cache() {
if let Some(member) = cache.member(self.0, user_id).await {
return Ok(member);
}
}
}
cache_http.http().get_member(self.0, user_id.0).await
}
/// Gets a list of the guild's members.
///
/// Optionally pass in the `limit` to limit the number of results.
/// Minimum value is 1, maximum and default value is 1000.
///
/// Optionally pass in `after` to offset the results by a [`User`]'s Id.
///
/// # Errors
///
/// Returns an [`Error::Http`] if the API returns an error, may also
/// return [`Error::NotInRange`] if the input is not within range.
///
/// [`User`]: crate::model::user::User
/// [`Error::Http`]: crate::error::Error::Http
/// [`Error::NotInRange`]: crate::error::Error::NotInRange
#[inline]
pub async fn members(
self,
http: impl AsRef<Http>,
limit: Option<u64>,
after: impl Into<Option<UserId>>,
) -> Result<Vec<Member>> {
http.as_ref().get_guild_members(self.0, limit, after.into().map(|x| x.0)).await
}
/// Streams over all the members in a guild.
///
/// This is accomplished and equivalent to repeated calls to [`Self::members`].
/// A buffer of at most 1,000 members is used to reduce the number of calls
/// necessary.
///
/// # Examples
/// ```rust,no_run
/// # use serenity::model::id::GuildId;
/// # use serenity::http::Http;
/// #
/// # async fn run() {
/// # let guild_id = GuildId::default();
/// # let ctx = Http::default();
/// use serenity::futures::StreamExt;
/// use serenity::model::guild::MembersIter;
///
/// let mut members = guild_id.members_iter(&ctx).boxed();
/// while let Some(member_result) = members.next().await {
/// match member_result {
/// Ok(member) => println!("{} is {}", member, member.display_name(),),
/// Err(error) => eprintln!("Uh oh! Error: {}", error),
/// }
/// }
/// # }
/// ```
pub fn members_iter<H: AsRef<Http>>(self, http: H) -> impl Stream<Item = Result<Member>> {
MembersIter::<H>::stream(http, self)
}
/// Moves a member to a specific voice channel.
///
/// Requires the [Move Members] permission.
///
/// # Errors
///
/// Returns an [`Error::Http`] if the current user
/// lacks permission, or if the member is not currently
/// in a voice channel for this [`Guild`].
///
/// [Move Members]: Permissions::MOVE_MEMBERS
/// [`Error::Http`]: crate::error::Error::Http
#[inline]
pub async fn move_member(
self,
http: impl AsRef<Http>,
user_id: impl Into<UserId>,
channel_id: impl Into<ChannelId>,
) -> Result<Member> {
let mut map = Map::new();
map.insert("channel_id".to_string(), Value::Number(Number::from(channel_id.into().0)));
http.as_ref().edit_member(self.0, user_id.into().0, &map).await
}
/// Returns the name of whatever guild this id holds.
#[cfg(feature = "cache")]
pub async fn name(self, cache: impl AsRef<Cache>) -> Option<String> {
let guild = self.to_guild_cached(&cache).await?;
Some(guild.name)
}
/// Disconnects a member from a voice channel in the guild.
///
/// Requires the [Move Members] permission.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission,
/// or if the member is not currently in a voice channel for this guild.
///
/// [Move Members]: Permissions::MOVE_MEMBERS
#[inline]
pub async fn disconnect_member(
self,
http: impl AsRef<Http>,
user_id: impl Into<UserId>,
) -> Result<Member> {
let mut map = Map::new();
map.insert("channel_id".to_string(), Value::Null);
http.as_ref().edit_member(self.0, user_id.into().0, &map).await
}
/// Gets the number of [`Member`]s that would be pruned with the given
/// number of days.
///
/// Requires the [Kick Members] permission.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user does not have permission.
///
/// [Kick Members]: Permissions::KICK_MEMBERS
#[inline]
pub async fn prune_count(self, http: impl AsRef<Http>, days: u16) -> Result<GuildPrune> {
let map = json!({
"days": days,
});
http.as_ref().get_guild_prune_count(self.0, &map).await
}
/// Re-orders the channels of the guild.
///
/// Accepts an iterator of a tuple of the channel ID to modify and its new
/// position.
///
/// Although not required, you should specify all channels' positions,
/// regardless of whether they were updated. Otherwise, positioning can
/// sometimes get weird.
///
/// **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 reorder_channels<It>(self, http: impl AsRef<Http>, channels: It) -> Result<()>
where
It: IntoIterator<Item = (ChannelId, u64)>,
{
let items = channels
.into_iter()
.map(|(id, pos)| {
json!({
"id": id,
"position": pos,
})
})
.collect();
http.as_ref().edit_guild_channel_positions(self.0, &Value::Array(items)).await
}
/// Returns a list of [`Member`]s in a [`Guild`] whose username or nickname
/// starts with a provided string.
///
/// Optionally pass in the `limit` to limit the number of results.
/// Minimum value is 1, maximum and default value is 1000.
///
/// # Errors
///
/// Returns an [`Error::Http`] if the API returns an error.
///
/// [`Error::Http`]: crate::error::Error::Http
#[inline]
pub async fn search_members(
self,
http: impl AsRef<Http>,
query: &str,
limit: Option<u64>,
) -> Result<Vec<Member>> {
http.as_ref().search_guild_members(self.0, query, limit).await
}
/// Returns the Id of the shard associated with the guild.
///
/// When the cache is enabled this will automatically retrieve the total
/// number of shards.
///
/// **Note**: When the cache is enabled, this function unlocks the cache to
/// retrieve the total number of shards in use. If you already have the
/// total, consider using [`utils::shard_id`].
#[cfg(all(feature = "cache", feature = "utils"))]
#[inline]
pub async fn shard_id(self, cache: impl AsRef<Cache>) -> u64 {
crate::utils::shard_id(self.0, cache.as_ref().shard_count().await)
}
/// Returns the Id of the shard associated with the guild.
///
/// When the cache is enabled this will automatically retrieve the total
/// number of shards.
///
/// When the cache is not enabled, the total number of shards being used
/// will need to be passed.
///
/// # Examples
///
/// Retrieve the Id of the shard for a guild with Id `81384788765712384`,
/// using 17 shards:
///
/// ```rust
/// use serenity::model::id::GuildId;
/// use serenity::utils;
///
/// # async fn run() {
/// let guild_id = GuildId(81384788765712384);
///
/// assert_eq!(guild_id.shard_id(17).await, 7);
/// # }
/// ```
#[cfg(all(feature = "utils", not(feature = "cache")))]
#[inline]
pub async fn shard_id(self, shard_count: u64) -> u64 {
crate::utils::shard_id(self.0, shard_count)
}
/// Starts an integration sync for the given integration Id.
///
/// Requires the [Manage Guild] permission.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission,
/// or if an [`Integration`] with that Id does not exist.
///
/// [Manage Guild]: Permissions::MANAGE_GUILD
#[inline]
pub async fn start_integration_sync(
self,
http: impl AsRef<Http>,
integration_id: impl Into<IntegrationId>,
) -> Result<()> {
http.as_ref().start_integration_sync(self.0, integration_id.into().0).await
}
/// Starts a prune of [`Member`]s.
///
/// See the documentation on [`GuildPrune`] for more information.
///
/// **Note**: Requires the [Kick Members] permission.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user lacks permission.
///
/// [Kick Members]: Permissions::KICK_MEMBERS
#[inline]
pub async fn start_prune(self, http: impl AsRef<Http>, days: u16) -> Result<GuildPrune> {
let map = json!({
"days": days,
});
http.as_ref().start_guild_prune(self.0, &map).await
}
/// Unbans a [`User`] from the guild.
///
/// **Note**: Requires the [Ban Members] permission.
///
/// # Errors
///
/// Returns [`Error::Http`] if the current user does not have permission.
///
/// [Ban Members]: Permissions::BAN_MEMBERS
#[inline]
pub async fn unban(self, http: impl AsRef<Http>, user_id: impl Into<UserId>) -> Result<()> {
http.as_ref().remove_ban(self.0, user_id.into().0).await
}
/// Retrieve's the guild's vanity URL.
///
/// **Note**: Requires the [Manage Guild] permission.
///
/// # Errors
///
/// Will return [`Error::Http`] if the current user lacks permission.
/// Can also return [`Error::Json`] if there is an error deserializing
/// the API response.
///
/// [Manage Guild]: Permissions::MANAGE_GUILD
#[inline]
pub async fn vanity_url(self, http: impl AsRef<Http>) -> Result<String> {
http.as_ref().get_guild_vanity_url(self.0).await
}
/// Retrieves the guild's webhooks.
///
/// **Note**: Requires the [Manage Webhooks] permission.
///
/// [Manage Webhooks]: Permissions::MANAGE_WEBHOOKS
///
/// # Errors
///
/// Will return an [`Error::Http`] if the bot is lacking permissions.
/// Can also return an [`Error::Json`] if there is an error deserializing
/// the API response.
///
/// [`Error::Http`]: crate::error::Error::Http
/// [`Error::Json`]: crate::error::Error::Json
#[inline]
pub async fn webhooks(self, http: impl AsRef<Http>) -> Result<Vec<Webhook>> {
http.as_ref().get_guild_webhooks(self.0).await
}
/// Returns a future that will await one message sent in this guild.
#[cfg(feature = "collector")]
pub fn await_reply<'a>(
&self,
shard_messenger: &'a impl AsRef<ShardMessenger>,
) -> CollectReply<'a> {
CollectReply::new(shard_messenger).guild_id(self.0)
}
/// Returns a stream builder which can be awaited to obtain a stream of messages in this guild.
#[cfg(feature = "collector")]
pub fn await_replies<'a>(
&self,
shard_messenger: &'a impl AsRef<ShardMessenger>,
) -> MessageCollectorBuilder<'a> {
MessageCollectorBuilder::new(shard_messenger).guild_id(self.0)
}
/// Await a single reaction in this guild.
#[cfg(feature = "collector")]
pub fn await_reaction<'a>(
&self,
shard_messenger: &'a impl AsRef<ShardMessenger>,
) -> CollectReaction<'a> {
CollectReaction::new(shard_messenger).guild_id(self.0)
}
/// Returns a stream builder which can be awaited to obtain a stream of reactions sent in this guild.
#[cfg(feature = "collector")]
pub fn await_reactions<'a>(
&self,
shard_messenger: &'a impl AsRef<ShardMessenger>,
) -> ReactionCollectorBuilder<'a> {
ReactionCollectorBuilder::new(shard_messenger).guild_id(self.0)
}
/// Creates a guild specific [`ApplicationCommand`]
///
/// **Note**: Unlike global `ApplicationCommand`s, guild commands will update instantly.
///
/// # Errors
///
/// Returns the same possible errors as [`create_global_application_command`].
///
/// [`ApplicationCommand`]: crate::model::interactions::application_command::ApplicationCommand
/// [`create_global_application_command`]: crate::model::interactions::application_command::ApplicationCommand::create_global_application_command
#[cfg(feature = "unstable_discord_api")]
pub async fn create_application_command<F>(
&self,
http: impl AsRef<Http>,
f: F,
) -> Result<ApplicationCommand>
where
F: FnOnce(&mut CreateApplicationCommand) -> &mut CreateApplicationCommand,
{
let map = ApplicationCommand::build_application_command(f);
http.as_ref().create_guild_application_command(self.0, &Value::Object(map)).await
}
/// Overrides all guild application commands.
///
/// # Errors
///
/// Returns the same possible errors as [`set_global_application_commands`].
///
/// [`set_global_application_commands`]: crate::model::interactions::application_command::ApplicationCommand::set_global_application_commands
#[cfg(feature = "unstable_discord_api")]
pub async fn set_application_commands<F>(
&self,
http: impl AsRef<Http>,
f: F,
) -> Result<Vec<ApplicationCommand>>
where
F: FnOnce(&mut CreateApplicationCommands) -> &mut CreateApplicationCommands,
{
let mut array = CreateApplicationCommands::default();
f(&mut array);
http.as_ref().create_guild_application_commands(self.0, &Value::Array(array.0)).await
}
/// Creates a guild specific [`ApplicationCommandPermission`].
///
/// **Note**: It will update instantly.
///
/// [`ApplicationCommandPermission`]: crate::model::interactions::application_command::ApplicationCommandPermission
///
/// # Errors
///
/// If there is an error, it will be either [`Error::Http`] or [`Error::Json`].
///
/// [`Error::Http`]: crate::error::Error::Http
/// [`Error::Json`]: crate::error::Error::Json
#[cfg(feature = "unstable_discord_api")]
pub async fn create_application_command_permission<F>(
&self,
http: impl AsRef<Http>,
command_id: CommandId,
f: F,
) -> Result<ApplicationCommandPermission>
where
F: FnOnce(
&mut CreateApplicationCommandPermissionsData,
) -> &mut CreateApplicationCommandPermissionsData,
{
let mut map = CreateApplicationCommandPermissionsData::default();
f(&mut map);
http.as_ref()
.edit_guild_application_command_permissions(
self.0,
command_id.into(),
&Value::Object(utils::hashmap_to_json_map(map.0)),
)
.await
}
/// Overrides all application commands permissions.
///
/// # Errors
///
/// If there is an error, it will be either [`Error::Http`] or [`Error::Json`].
///
/// [`Error::Http`]: crate::error::Error::Http
/// [`Error::Json`]: crate::error::Error::Json
#[cfg(feature = "unstable_discord_api")]
pub async fn set_application_commands_permissions<F>(
&self,
http: impl AsRef<Http>,
f: F,
) -> Result<Vec<ApplicationCommandPermission>>
where
F: FnOnce(
&mut CreateApplicationCommandsPermissions,
) -> &mut CreateApplicationCommandsPermissions,
{
let mut map = CreateApplicationCommandsPermissions::default();
f(&mut map);
http.as_ref()
.edit_guild_application_commands_permissions(self.0, &Value::Array(map.0))
.await
}
/// Get all guild application commands.
///
/// # Errors
///
/// If there is an error, it will be either [`Error::Http`] or [`Error::Json`].
///
/// [`Error::Http`]: crate::error::Error::Http
/// [`Error::Json`]: crate::error::Error::Json
#[cfg(feature = "unstable_discord_api")]
pub async fn get_application_commands(
&self,
http: impl AsRef<Http>,
) -> Result<Vec<ApplicationCommand>> {
http.as_ref().get_guild_application_commands(self.0).await
}
/// Get a specific guild application command by its Id.
///
/// # Errors
///
/// If there is an error, it will be either [`Error::Http`] or [`Error::Json`].
///
/// [`Error::Http`]: crate::error::Error::Http
/// [`Error::Json`]: crate::error::Error::Json
#[cfg(feature = "unstable_discord_api")]
pub async fn get_application_command(
&self,
http: impl AsRef<Http>,
command_id: CommandId,
) -> Result<ApplicationCommand> {
http.as_ref().get_guild_application_command(self.0, command_id.into()).await
}
/// Edit guild application command by its Id.
///
/// # Errors
///
/// If there is an error, it will be either [`Error::Http`] or [`Error::Json`].
///
/// [`Error::Http`]: crate::error::Error::Http
/// [`Error::Json`]: crate::error::Error::Json
#[cfg(feature = "unstable_discord_api")]
pub async fn edit_application_command<F>(
&self,
http: impl AsRef<Http>,
command_id: CommandId,
f: F,
) -> Result<ApplicationCommand>
where
F: FnOnce(&mut CreateApplicationCommand) -> &mut CreateApplicationCommand,
{
let map = ApplicationCommand::build_application_command(f);
http.as_ref()
.edit_guild_application_command(self.0, command_id.into(), &Value::Object(map))
.await
}
/// Delete guild application command by its Id.
///
/// # Errors
///
/// If there is an error, it will be either [`Error::Http`] or [`Error::Json`].
///
/// [`Error::Http`]: crate::error::Error::Http
/// [`Error::Json`]: crate::error::Error::Json
#[cfg(feature = "unstable_discord_api")]
pub async fn delete_application_command(
&self,
http: impl AsRef<Http>,
command_id: CommandId,
) -> Result<()> {
http.as_ref().delete_guild_application_command(self.0, command_id.into()).await
}
/// Get all guild application commands permissions only.
///
/// # Errors
///
/// If there is an error, it will be either [`Error::Http`] or [`Error::Json`].
///
/// [`Error::Http`]: crate::error::Error::Http
/// [`Error::Json`]: crate::error::Error::Json
#[cfg(feature = "unstable_discord_api")]
pub async fn get_application_commands_permissions(
&self,
http: impl AsRef<Http>,
) -> Result<Vec<ApplicationCommandPermission>> {
http.as_ref().get_guild_application_commands_permissions(self.0).await
}
/// Get permissions for specific guild application command by its Id.
///
/// # Errors
///
/// If there is an error, it will be either [`Error::Http`] or [`Error::Json`].
///
/// [`Error::Http`]: crate::error::Error::Http
/// [`Error::Json`]: crate::error::Error::Json
#[cfg(feature = "unstable_discord_api")]
pub async fn get_application_command_permissions(
&self,
http: impl AsRef<Http>,
command_id: CommandId,
) -> Result<ApplicationCommandPermission> {
http.as_ref().get_guild_application_command_permissions(self.0, command_id.into()).await
}
/// Get the guild welcome screen.
///
/// # Errors
///
/// Returns [`Error::Http`] if the guild does not have a welcome screen.
pub async fn get_welcome_screen(&self, http: impl AsRef<Http>) -> Result<GuildWelcomeScreen> {
http.as_ref().get_guild_welcome_screen(self.0).await
}
/// Get the guild preview.
///
/// **Note**: The bot need either to be part of the guild
/// or the guild needs to have the `DISCOVERABLE` feature.
///
/// # Errors
///
/// Returns [`Error::Http`] if the bot cannot see the guild preview, see the note.
pub async fn get_preview(&self, http: impl AsRef<Http>) -> Result<GuildPreview> {
http.as_ref().get_guild_preview(self.0).await
}
/// Get the guild widget.
///
/// # Errors
///
/// Returns [`Error::Http`] if the bot does not have `MANAGE_MESSAGES` permission.
pub async fn get_widget(&self, http: impl AsRef<Http>) -> Result<GuildWidget> {
http.as_ref().get_guild_widget(self.0).await
}
/// Get the widget image URL.
pub fn widget_image_url(&self, style: GuildWidgetStyle) -> String {
format!(api!("/guilds/{}/widget.png?style={}"), self.0.to_string(), style.to_string())
}
/// Gets the guild active threads.
///
/// # Errors
///
/// Returns [`Error::Http`] if there is an error in the deserialization, or
/// if the bot issuing the request is not in the guild.
pub async fn get_active_threads(&self, http: impl AsRef<Http>) -> Result<ThreadsData> {
http.as_ref().get_guild_active_threads(self.0).await
}
}
impl From<PartialGuild> for GuildId {
/// Gets the Id of a partial guild.
fn from(guild: PartialGuild) -> GuildId {
guild.id
}
}
impl<'a> From<&'a PartialGuild> for GuildId {
/// Gets the Id of a partial guild.
fn from(guild: &PartialGuild) -> GuildId {
guild.id
}
}
impl From<GuildInfo> for GuildId {
/// Gets the Id of Guild information struct.
fn from(guild_info: GuildInfo) -> GuildId {
guild_info.id
}
}
impl<'a> From<&'a GuildInfo> for GuildId {
/// Gets the Id of Guild information struct.
fn from(guild_info: &GuildInfo) -> GuildId {
guild_info.id
}
}
impl From<InviteGuild> for GuildId {
/// Gets the Id of Invite Guild struct.
fn from(invite_guild: InviteGuild) -> GuildId {
invite_guild.id
}
}
impl<'a> From<&'a InviteGuild> for GuildId {
/// Gets the Id of Invite Guild struct.
fn from(invite_guild: &InviteGuild) -> GuildId {
invite_guild.id
}
}
impl From<Guild> for GuildId {
/// Gets the Id of Guild.
fn from(live_guild: Guild) -> GuildId {
live_guild.id
}
}
impl<'a> From<&'a Guild> for GuildId {
/// Gets the Id of Guild.
fn from(live_guild: &Guild) -> GuildId {
live_guild.id
}
}
/// A helper class returned by [`GuildId::members_iter`]
#[derive(Clone, Debug)]
#[cfg(feature = "model")]
pub struct MembersIter<H: AsRef<Http>> {
guild_id: GuildId,
http: H,
buffer: Vec<Member>,
after: Option<UserId>,
tried_fetch: bool,
}
#[cfg(feature = "model")]
impl<H: AsRef<Http>> MembersIter<H> {
fn new(guild_id: GuildId, http: H) -> MembersIter<H> {
MembersIter {
guild_id,
http,
buffer: Vec::new(),
after: None,
tried_fetch: false,
}
}
/// Fills the `self.buffer` cache of Members.
///
/// This drops any members that
/// were currently in the buffer, so it should only be called when
/// `self.buffer` is empty. Additionally, this updates `self.after` so that
/// the next call does not return duplicate items. If there are no more
/// members to be fetched, then this marks `self.after` as None, indicating
/// that no more calls ought to be made.
async fn refresh(&mut self) -> Result<()> {
// Number of profiles to fetch
let grab_size: u64 = 1000;
self.buffer = self.guild_id.members(&self.http, Some(grab_size), self.after).await?;
// Get the last member. If shorter than 1000, there are no more results anyway
self.after = self.buffer.get(grab_size as usize - 1).map(|member| member.user.id);
// Reverse to optimize pop()
self.buffer.reverse();
self.tried_fetch = true;
Ok(())
}
/// Streams over all the members in a guild.
///
/// This is accomplished and equivalent to repeated calls to [`GuildId::members`].
/// A buffer of at most 1,000 members is used to reduce the number of calls
/// necessary.
///
/// # Examples
///
/// ```rust,no_run
/// # use serenity::model::id::GuildId;
/// # use serenity::http::Http;
/// #
/// # async fn run() {
/// # let guild_id = GuildId::default();
/// # let ctx = Http::default();
/// use serenity::futures::StreamExt;
/// use serenity::model::guild::MembersIter;
///
/// let mut members = MembersIter::<Http>::stream(&ctx, guild_id).boxed();
/// while let Some(member_result) = members.next().await {
/// match member_result {
/// Ok(member) => println!("{} is {}", member, member.display_name(),),
/// Err(error) => eprintln!("Uh oh! Error: {}", error),
/// }
/// }
/// # }
/// ```
pub fn stream(http: impl AsRef<Http>, guild_id: GuildId) -> impl Stream<Item = Result<Member>> {
let init_state = MembersIter::new(guild_id, http);
futures::stream::unfold(init_state, |mut state| async {
if state.buffer.is_empty() && state.after.is_some() || !state.tried_fetch {
if let Err(error) = state.refresh().await {
return Some((Err(error), state));
}
}
state.buffer.pop().map(|entry| (Ok(entry), state))
})
}
}
#[derive(Copy, Clone, Debug, Hash, Eq, PartialEq, Serialize, Deserialize)]
#[non_exhaustive]
pub enum GuildWidgetStyle {
Shield,
Banner1,
Banner2,
Banner3,
Banner4,
}
impl Display for GuildWidgetStyle {
fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result {
match self {
GuildWidgetStyle::Shield => f.write_str("shield"),
GuildWidgetStyle::Banner1 => f.write_str("banner1"),
GuildWidgetStyle::Banner2 => f.write_str("banner2"),
GuildWidgetStyle::Banner3 => f.write_str("banner3"),
GuildWidgetStyle::Banner4 => f.write_str("banner4"),
}
}
}