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
//! A cache containing data received from [`Shard`]s.
//!
//! Using the cache allows to avoid REST API requests via the [`http`] module
//! where possible. Issuing too many requests will lead to ratelimits.
//!
//! Following a policy to never hand out locks, the cache will clone all values
//! when calling its methods.
//!
//! # Use by Models
//!
//! Most models of Discord objects, such as the [`Message`], [`GuildChannel`],
//! or [`Emoji`], have methods for interacting with that single instance. This
//! feature is only compiled if the `methods` feature is enabled. An example of
//! this is [`Guild::edit`], which performs a check to ensure that the current
//! user is the owner of the guild, prior to actually performing the HTTP
//! request. The cache is involved due to the function's use of unlocking the
//! cache and retrieving the Id of the current user, and comparing it to the Id
//! of the user that owns the guild. This is an inexpensive method of being able
//! to access data required by these sugary methods.
//!
//! # Do I need the Cache?
//!
//! If you're asking this, the answer is likely "definitely yes" or
//! "definitely no"; any in-between tends to be "yes". If you are low on RAM,
//! and need to run on only a couple MB, then the answer is "definitely no". If
//! you do not care about RAM and want your bot to be able to access data
//! while needing to hit the REST API as little as possible, then the answer
//! is "yes".
//!
//! [`Shard`]: crate::gateway::Shard
//! [`http`]: crate::http
use std::collections::{hash_map::Entry, HashMap, HashSet, VecDeque};
use std::default::Default;
use std::str::FromStr;
use async_trait::async_trait;
use tokio::sync::RwLock;
use tracing::instrument;
use crate::model::prelude::*;
mod cache_update;
mod settings;
pub use self::cache_update::CacheUpdate;
pub use self::settings::Settings;
type MessageCache = HashMap<ChannelId, HashMap<MessageId, Message>>;
#[async_trait]
pub trait FromStrAndCache: Sized {
type Err;
async fn from_str<CRL>(cache: CRL, s: &str) -> Result<Self, Self::Err>
where
CRL: AsRef<Cache> + Send + Sync;
}
#[async_trait]
pub trait StrExt: Sized {
async fn parse_cached<CRL, F: FromStrAndCache>(&self, cache: CRL) -> Result<F, F::Err>
where
CRL: AsRef<Cache> + Send + Sync;
}
#[async_trait]
impl StrExt for &str {
async fn parse_cached<CRL, F: FromStrAndCache>(&self, cache: CRL) -> Result<F, F::Err>
where
CRL: AsRef<Cache> + Send + Sync,
{
F::from_str(&cache, self).await
}
}
#[async_trait]
impl<F: FromStr> FromStrAndCache for F {
type Err = F::Err;
async fn from_str<CRL>(_cache: CRL, s: &str) -> Result<Self, Self::Err>
where
CRL: AsRef<Cache> + Send + Sync,
{
s.parse::<F>()
}
}
/// Iterator given to the selector closure in [`Cache::channel_messages_field`].
// Wrapper around a specific iterator type to allow swapping out iterators on cache design changes
#[derive(Clone, Debug)]
pub struct MessageIterator<'a>(std::collections::hash_map::Values<'a, MessageId, Message>);
impl<'a> Iterator for MessageIterator<'a> {
type Item = &'a Message;
fn next(&mut self) -> Option<&'a Message> {
self.0.next()
}
fn size_hint(&self) -> (usize, Option<usize>) {
self.0.size_hint()
}
}
/// A cache containing data received from [`Shard`]s.
///
/// Using the cache allows to avoid REST API requests via the [`http`] module
/// where possible. Issuing too many requests will lead to ratelimits.
///
/// The cache will clone all values when calling its methods.
///
/// [`Shard`]: crate::gateway::Shard
/// [`http`]: crate::http
#[derive(Debug)]
#[non_exhaustive]
pub struct Cache {
/// A map of channels in [`Guild`]s that the current user has received data
/// for.
///
/// When a [`Event::GuildDelete`] or [`Event::GuildUnavailable`] is
/// received and processed by the cache, the relevant channels are also
/// removed from this map.
pub(crate) channels: RwLock<HashMap<ChannelId, GuildChannel>>,
/// A map of channel categories.
pub(crate) categories: RwLock<HashMap<ChannelId, ChannelCategory>>,
/// A map of guilds with full data available. This includes data like
/// [`Role`]s and [`Emoji`]s that are not available through the REST API.
pub(crate) guilds: RwLock<HashMap<GuildId, Guild>>,
pub(crate) messages: RwLock<MessageCache>,
/// A map of users' presences. This is updated in real-time. Note that
/// status updates are often "eaten" by the gateway, and this should not
/// be treated as being entirely 100% accurate.
pub(crate) presences: RwLock<HashMap<UserId, Presence>>,
/// A map of direct message channels that the current user has open with
/// other users.
pub(crate) private_channels: RwLock<HashMap<ChannelId, PrivateChannel>>,
/// The total number of shards being used by the bot.
pub(crate) shard_count: RwLock<u64>,
/// A list of guilds which are "unavailable". Refer to the documentation for
/// [`Event::GuildUnavailable`] for more information on when this can occur.
///
/// Additionally, guilds are always unavailable for bot users when a Ready
/// is received. Guilds are "sent in" over time through the receiving of
/// [`Event::GuildCreate`]s.
pub(crate) unavailable_guilds: RwLock<HashSet<GuildId>>,
/// The current user "logged in" and for which events are being received
/// for.
///
/// The current user contains information that a regular [`User`] does not,
/// such as whether it is a bot, whether the user is verified, etc.
///
/// Refer to the documentation for [`CurrentUser`] for more information.
pub(crate) user: RwLock<CurrentUser>,
/// A map of users that the current user sees.
///
/// Users are added to - and updated from - this map via the following
/// received events:
///
/// - [`GuildMemberAdd`][`GuildMemberAddEvent`]
/// - [`GuildMemberRemove`][`GuildMemberRemoveEvent`]
/// - [`GuildMembersChunk`][`GuildMembersChunkEvent`]
/// - [`PresenceUpdate`][`PresenceUpdateEvent`]
/// - [`Ready`][`ReadyEvent`]
///
/// Note, however, that users are _not_ removed from the map on removal
/// events such as [`GuildMemberRemove`][`GuildMemberRemoveEvent`], as other
/// structs such as members or recipients may still exist.
pub(crate) users: RwLock<HashMap<UserId, User>>,
/// Queue of message IDs for each channel.
///
/// This is simply a vecdeque so we can keep track of the order of messages
/// inserted into the cache. When a maximum number of messages are in a
/// channel's cache, we can pop the front and remove that ID from the cache.
pub(crate) message_queue: RwLock<HashMap<ChannelId, VecDeque<MessageId>>>,
/// The settings for the cache.
settings: RwLock<Settings>,
}
impl Cache {
/// Creates a new cache.
#[inline]
pub fn new() -> Self {
Self::default()
}
/// Creates a new cache instance with settings applied.
///
/// # Examples
///
/// ```rust
/// use serenity::cache::{Cache, Settings};
///
/// let mut settings = Settings::new();
/// settings.max_messages(10);
///
/// let cache = Cache::new_with_settings(settings);
/// ```
#[instrument]
pub fn new_with_settings(settings: Settings) -> Self {
Self {
settings: RwLock::new(settings),
..Default::default()
}
}
/// Fetches the number of [`Member`]s that have not had data received.
///
/// The important detail to note here is that this is the number of
/// _member_s that have not had data received. A single [`User`] may have
/// multiple associated member objects that have not been received.
///
/// This can be used in combination with [`Shard::chunk_guild`], and can be
/// used to determine how many members have not yet been received.
///
/// ```rust,no_run
/// # use serenity::model::prelude::*;
/// # use serenity::prelude::*;
/// #
/// # #[cfg(feature = "client")]
/// # async fn run() -> Result<(), Box<dyn std::error::Error>> {
/// use std::thread;
/// use std::time::Duration;
///
/// struct Handler;
///
/// #[serenity::async_trait]
/// impl EventHandler for Handler {
/// async fn ready(&self, ctx: Context, _: Ready) {
/// // Wait some time for guilds to be received.
/// //
/// // You should keep track of this in a better fashion by tracking how
/// // many guilds each `ready` has, and incrementing a counter on
/// // GUILD_CREATEs. Once the number is equal, print the number of
/// // unknown members.
/// //
/// // For demonstrative purposes we're just sleeping the thread for 5
/// // seconds.
/// tokio::time::sleep(Duration::from_secs(5)).await;
///
/// println!("{} unknown members", ctx.cache.unknown_members().await);
/// }
/// }
///
/// let mut client = Client::builder("token").event_handler(Handler).await?;
///
/// client.start().await?;
/// # Ok(())
/// # }
/// ```
///
/// [`Shard::chunk_guild`]: crate::gateway::Shard::chunk_guild
pub async fn unknown_members(&self) -> u64 {
let mut total = 0;
for guild in self.guilds.read().await.values() {
let members = guild.members.len() as u64;
if guild.member_count > members {
total += guild.member_count - members;
}
}
total
}
/// Fetches a vector of all [`PrivateChannel`] Ids that are
/// stored in the cache.
///
/// # Examples
///
/// If there are 6 private channels and 2 groups in the cache, then `8` Ids
/// will be returned.
///
/// Printing the count of all private channels and groups:
///
/// ```rust,no_run
/// # use serenity::cache::Cache;
/// # use tokio::sync::RwLock;
/// # use std::sync::Arc;
/// #
/// # async fn run() {
/// # let cache = Cache::default();
/// let amount = cache.private_channels().await.len();
///
/// println!("There are {} private channels", amount);
/// # }
/// ```
pub async fn private_channels(&self) -> HashMap<ChannelId, PrivateChannel> {
self.private_channels.read().await.clone()
}
/// Fetches a vector of all [`Guild`]s' Ids that are stored in the cache.
///
/// Note that if you are utilizing multiple [`Shard`]s, then the guilds
/// retrieved over all shards are included in this count -- not just the
/// current [`Context`]'s shard, if accessing from one.
///
/// # Examples
///
/// Print all of the Ids of guilds in the Cache:
///
/// ```rust,no_run
/// # use serenity::model::prelude::*;
/// # use serenity::prelude::*;
/// #
/// struct Handler;
///
/// #[serenity::async_trait]
/// impl EventHandler for Handler {
/// async fn ready(&self, context: Context, _: Ready) {
/// let guilds = context.cache.guilds().await.len();
///
/// println!("Guilds in the Cache: {}", guilds);
/// }
/// }
/// ```
///
/// [`Context`]: crate::client::Context
/// [`Shard`]: crate::gateway::Shard
pub async fn guilds(&self) -> Vec<GuildId> {
let chain = self.unavailable_guilds.read().await.clone().into_iter();
self.guilds.read().await.keys().cloned().chain(chain).collect()
}
/// Retrieves a [`Channel`] from the cache based on the given Id.
///
/// This will search the [`Self::channels`] map, then the [`Self::private_channels`] map.
///
/// If you know what type of channel you're looking for, you should instead
/// manually retrieve from one of the respective maps or methods:
///
/// - [`GuildChannel`]: [`Self::guild_channel`] or [`Self::channels`]
/// - [`PrivateChannel`]: [`Self::private_channel`] or [`Self::private_channels`]
#[inline]
pub async fn channel<C: Into<ChannelId>>(&self, id: C) -> Option<Channel> {
self._channel(id.into()).await
}
async fn _channel(&self, id: ChannelId) -> Option<Channel> {
if let Some(channel) = self.channels.read().await.get(&id) {
let channel = channel.clone();
return Some(Channel::Guild(channel));
}
if let Some(private_channel) = self.private_channels.read().await.get(&id).cloned() {
return Some(Channel::Private(private_channel));
}
None
}
/// This method allows to extract specific data from the cached messages of a channel by
/// providing a `selector` closure picking what you want to extract from the messages
/// iterator of a given channel.
///
/// ```rust,no_run
/// # let cache: serenity::cache::Cache = todo!();
/// // Find all messages by user ID 8 in channel ID 7
/// let messages_by_user = cache.channel_messages_field(7, |msgs| {
/// msgs.filter(|m| m.author.id == 8).cloned().collect::<Vec<_>>()
/// });
/// ```
pub async fn channel_messages_field<T>(
&self,
channel_id: impl Into<ChannelId>,
selector: impl FnOnce(MessageIterator<'_>) -> T,
) -> Option<T> {
let messages = self.messages.read().await;
let message_iter = MessageIterator(messages.get(&channel_id.into())?.values());
Some(selector(message_iter))
}
/// Clones an entire guild from the cache based on the given `id`.
///
/// In order to clone only a field of the guild, use [`Self::guild_field`].
///
///
/// # Examples
///
/// Retrieve a guild from the cache and print its name:
///
/// ```rust,no_run
/// # use serenity::cache::Cache;
/// # use tokio::sync::RwLock;
/// # use std::sync::Arc;
/// #
/// # async fn run() -> Result<(), Box<dyn std::error::Error>> {
/// # let cache = Cache::default();
/// // assuming the cache is in scope, e.g. via `Context`
/// if let Some(guild) = cache.guild(7).await {
/// println!("Guild name: {}", guild.name);
/// }
/// # Ok(())
/// # }
/// ```
#[inline]
pub async fn guild<G: Into<GuildId>>(&self, id: G) -> Option<Guild> {
self._guild(id.into()).await
}
async fn _guild(&self, id: GuildId) -> Option<Guild> {
self.guilds.read().await.get(&id).cloned()
}
/// This method allows to select a field of the guild instead of
/// the entire guild by providing a `field_selector`-closure picking what
/// you want to clone.
///
/// ```rust,no_run
/// # use serenity::cache::Cache;
/// #
/// # async fn run() -> Result<(), Box<dyn std::error::Error>> {
/// # let cache = Cache::default();
/// // We clone only the `len()` returned `usize` instead of the entire guild or the channels.
/// if let Some(channel_len) = cache.guild_field(7, |guild| guild.channels.len()).await {
/// println!("Guild channels count: {}", channel_len);
/// }
/// # Ok(())
/// # }
/// ```
#[inline]
pub async fn guild_field<Ret, Fun>(
&self,
id: impl Into<GuildId>,
field_selector: Fun,
) -> Option<Ret>
where
Fun: FnOnce(&Guild) -> Ret,
{
self._guild_field(id.into(), field_selector).await
}
async fn _guild_field<Ret, Fun>(&self, id: GuildId, field_accessor: Fun) -> Option<Ret>
where
Fun: FnOnce(&Guild) -> Ret,
{
let guilds = self.guilds.read().await;
let guild = guilds.get(&id)?;
Some(field_accessor(guild))
}
/// Returns the number of cached guilds.
pub async fn guild_count(&self) -> usize {
self.guilds.read().await.len()
}
/// Retrieves a reference to a [`Guild`]'s channel. Unlike [`Self::channel`],
/// this will only search guilds for the given channel.
///
/// The only advantage of this method is that you can pass in anything that
/// is indirectly a [`ChannelId`].
///
/// # Examples
///
/// Getting a guild's channel via the Id of the message received through a
/// [`EventHandler::message`] event dispatch:
///
/// ```rust,no_run
/// # use serenity::model::prelude::*;
/// # use serenity::prelude::*;
/// #
/// struct Handler;
///
/// #[serenity::async_trait]
/// impl EventHandler for Handler {
/// async fn message(&self, context: Context, message: Message) {
/// let channel = match context.cache.guild_channel(message.channel_id).await {
/// Some(channel) => channel,
/// None => {
/// let result = message
/// .channel_id
/// .say(&context, "Could not find guild's channel data")
/// .await;
/// if let Err(why) = result {
/// println!("Error sending message: {:?}", why);
/// }
///
/// return;
/// },
/// };
/// }
/// }
///
/// # #[cfg(feature = "client")]
/// # async fn run() -> Result<(), Box<dyn std::error::Error>> {
/// let mut client = Client::builder("token").event_handler(Handler).await?;
///
/// client.start().await?;
/// # Ok(())
/// # }
/// ```
///
/// [`EventHandler::message`]: crate::client::EventHandler::message
#[inline]
pub async fn guild_channel<C: Into<ChannelId>>(&self, id: C) -> Option<GuildChannel> {
self._guild_channel(id.into()).await
}
async fn _guild_channel(&self, id: ChannelId) -> Option<GuildChannel> {
self.channels.read().await.get(&id).cloned()
}
/// This method allows to only clone a field of the guild channel instead of
/// the entire guild by providing a `field_selector`-closure picking what
/// you want to clone.
///
/// ```rust,no_run
/// # use serenity::cache::Cache;
/// #
/// # async fn run() -> Result<(), Box<dyn std::error::Error>> {
/// # let cache = Cache::default();
/// // We clone only the `name` instead of the entire channel.
/// if let Some(channel_name) = cache.guild_channel_field(7, |channel| channel.name.clone()).await {
/// println!("Guild channel name: {}", channel_name);
/// }
/// # Ok(())
/// # }
/// ```
#[inline]
pub async fn guild_channel_field<Ret, Fun>(
&self,
id: impl Into<ChannelId>,
field_selector: Fun,
) -> Option<Ret>
where
Fun: FnOnce(&GuildChannel) -> Ret,
{
self._guild_channel_field(id.into(), field_selector).await
}
async fn _guild_channel_field<Ret, Fun>(
&self,
id: ChannelId,
field_selector: Fun,
) -> Option<Ret>
where
Fun: FnOnce(&GuildChannel) -> Ret,
{
let guild_channels = &self.channels.read().await;
let channel = guild_channels.get(&id)?;
Some(field_selector(channel))
}
/// Retrieves a [`Guild`]'s member from the cache based on the guild's and
/// user's given Ids.
///
/// **Note**: This will clone the entire member. Instead, retrieve the guild
/// and retrieve from the guild's [`members`] map to avoid this.
///
/// # Examples
///
/// Retrieving the member object of the user that posted a message, in a
/// [`EventHandler::message`] context:
///
/// ```rust,no_run
/// # use serenity::cache::Cache;
/// # use serenity::http::Http;
/// # use serenity::model::id::{ChannelId, MessageId};
/// # use std::sync::Arc;
/// #
/// # async fn run() {
/// # let http = Arc::new(Http::new_with_token("DISCORD_TOKEN"));
/// # let message = ChannelId(0).message(&http, MessageId(1)).await.unwrap();
/// # let cache = Cache::default();
/// #
/// let member = {
/// let channel = match cache.guild_channel(message.channel_id).await {
/// Some(channel) => channel,
/// None => {
/// if let Err(why) = message.channel_id.say(http, "Error finding channel data").await {
/// println!("Error sending message: {:?}", why);
/// }
/// return;
/// },
/// };
///
/// match cache.member(channel.guild_id, message.author.id).await {
/// Some(member) => member,
/// None => {
/// if let Err(why) = message.channel_id.say(&http, "Error finding member data").await {
/// println!("Error sending message: {:?}", why);
/// }
/// return;
/// },
/// }
/// };
///
/// let msg = format!("You have {} roles", member.roles.len());
///
/// if let Err(why) = message.channel_id.say(&http, &msg).await {
/// println!("Error sending message: {:?}", why);
/// }
/// # }
/// ```
///
/// [`EventHandler::message`]: crate::client::EventHandler::message
/// [`members`]: crate::model::guild::Guild::members
#[inline]
pub async fn member<G, U>(&self, guild_id: G, user_id: U) -> Option<Member>
where
G: Into<GuildId>,
U: Into<UserId>,
{
self._member(guild_id.into(), user_id.into()).await
}
async fn _member(&self, guild_id: GuildId, user_id: UserId) -> Option<Member> {
match self.guilds.read().await.get(&guild_id) {
Some(guild) => guild.members.get(&user_id).cloned(),
None => None,
}
}
/// This method allows to only clone a field of a member instead of
/// the entire member by providing a `field_selector`-closure picking what
/// you want to clone.
///
/// ```rust,no_run
/// # use serenity::cache::Cache;
/// #
/// # async fn run() -> Result<(), Box<dyn std::error::Error>> {
/// # let cache = Cache::default();
/// // We clone only the `name` instead of the entire channel.
/// if let Some(Some(nick)) = cache.member_field(7, 8, |member| member.nick.clone()).await {
/// println!("Member's nick: {}", nick);
/// }
/// # Ok(())
/// # }
/// ```
#[inline]
pub async fn member_field<Ret, Fun>(
&self,
guild_id: impl Into<GuildId>,
user_id: impl Into<UserId>,
field_selector: Fun,
) -> Option<Ret>
where
Fun: FnOnce(&Member) -> Ret,
{
self._member_field(guild_id.into(), user_id.into(), field_selector).await
}
async fn _member_field<Ret, Fun>(
&self,
guild_id: GuildId,
user_id: UserId,
field_selector: Fun,
) -> Option<Ret>
where
Fun: FnOnce(&Member) -> Ret,
{
let guilds = &self.guilds.read().await;
let guild = guilds.get(&guild_id)?;
let member = guild.members.get(&user_id)?;
Some(field_selector(member))
}
#[inline]
pub async fn guild_roles(&self, guild_id: impl Into<GuildId>) -> Option<HashMap<RoleId, Role>> {
self._guild_roles(guild_id.into()).await
}
async fn _guild_roles(&self, guild_id: GuildId) -> Option<HashMap<RoleId, Role>> {
self.guilds.read().await.get(&guild_id).map(|g| g.roles.clone())
}
/// This method clones and returns all unavailable guilds.
#[inline]
pub async fn unavailable_guilds(&self) -> HashSet<GuildId> {
self.unavailable_guilds.read().await.clone()
}
/// This method returns all channels from a guild of with the given `guild_id`.
#[inline]
pub async fn guild_channels(
&self,
guild_id: impl Into<GuildId>,
) -> Option<HashMap<ChannelId, GuildChannel>> {
self._guild_channels(guild_id.into()).await
}
async fn _guild_channels(&self, guild_id: GuildId) -> Option<HashMap<ChannelId, GuildChannel>> {
self.guilds.read().await.get(&guild_id).map(|g| g.channels.clone())
}
/// Returns the number of guild channels in the cache.
pub async fn guild_channel_count(&self) -> usize {
self.channels.read().await.len()
}
/// Returns the number of shards.
#[inline]
pub async fn shard_count(&self) -> u64 {
*self.shard_count.read().await
}
/// Retrieves a [`Channel`]'s message from the cache based on the channel's and
/// message's given Ids.
///
/// **Note**: This will clone the entire message.
///
/// # Examples
///
/// Retrieving the message object from a channel, in a
/// [`EventHandler::message`] context:
///
/// ```rust,no_run
/// # use serenity::cache::Cache;
/// # use serenity::http::Http;
/// # use serenity::model::id::{ChannelId, MessageId};
/// # use tokio::sync::RwLock;
/// # use std::sync::Arc;
/// #
/// # async fn run() -> Result<(), Box<dyn std::error::Error>> {
/// # let http = Arc::new(Http::new_with_token("DISCORD_TOKEN"));
/// # let message = ChannelId(0).message(&http, MessageId(1)).await?;
/// # let cache = Cache::default();
/// #
/// match cache.message(message.channel_id, message.id).await {
/// Some(m) => assert_eq!(message.content, m.content),
/// None => println!("No message found in cache."),
/// };
/// # Ok(())
/// # }
/// ```
///
/// [`EventHandler::message`]: crate::client::EventHandler::message
#[inline]
pub async fn message<C, M>(&self, channel_id: C, message_id: M) -> Option<Message>
where
C: Into<ChannelId>,
M: Into<MessageId>,
{
self._message(channel_id.into(), message_id.into()).await
}
async fn _message(&self, channel_id: ChannelId, message_id: MessageId) -> Option<Message> {
self.messages
.read()
.await
.get(&channel_id)
.and_then(|messages| messages.get(&message_id).cloned())
}
/// Retrieves a [`PrivateChannel`] from the cache's [`Self::private_channels`]
/// map, if it exists.
///
/// The only advantage of this method is that you can pass in anything that
/// is indirectly a [`ChannelId`].
///
/// # Examples
///
/// Retrieve a private channel from the cache and print its recipient's
/// name:
///
/// ```rust,no_run
/// # use serenity::cache::Cache;
/// # use tokio::sync::RwLock;
/// # use std::sync::Arc;
/// #
/// # async fn run() -> Result<(), Box<dyn std::error::Error>> {
/// # let cache = Cache::default();
/// // assuming the cache has been unlocked
///
/// if let Some(channel) = cache.private_channel(7).await {
/// println!("The recipient is {}", channel.recipient);
/// }
/// # Ok(())
/// # }
/// ```
#[inline]
pub async fn private_channel(
&self,
channel_id: impl Into<ChannelId>,
) -> Option<PrivateChannel> {
self._private_channel(channel_id.into()).await
}
async fn _private_channel(&self, channel_id: ChannelId) -> Option<PrivateChannel> {
self.private_channels.read().await.get(&channel_id).cloned()
}
/// Retrieves a [`Guild`]'s role by their Ids.
///
/// **Note**: This will clone the entire role. Instead, retrieve the guild
/// and retrieve from the guild's [`roles`] map to avoid this.
///
/// [`Guild`]: crate::model::guild::Guild
/// [`roles`]: crate::model::guild::Guild::roles
///
/// # Examples
///
/// Retrieve a role from the cache and print its name:
///
/// ```rust,no_run
/// # use serenity::cache::Cache;
/// # use tokio::sync::RwLock;
/// # use std::sync::Arc;
/// #
/// # async fn run() -> Result<(), Box<dyn std::error::Error>> {
/// # let cache = Cache::default();
/// // assuming the cache is in scope, e.g. via `Context`
/// if let Some(role) = cache.role(7, 77).await {
/// println!("Role with Id 77 is called {}", role.name);
/// }
/// # Ok(())
/// # }
/// ```
#[inline]
pub async fn role<G, R>(&self, guild_id: G, role_id: R) -> Option<Role>
where
G: Into<GuildId>,
R: Into<RoleId>,
{
self._role(guild_id.into(), role_id.into()).await
}
async fn _role(&self, guild_id: GuildId, role_id: RoleId) -> Option<Role> {
self.guilds.read().await.get(&guild_id).and_then(|g| g.roles.get(&role_id)).cloned()
}
/// Returns the settings.
///
/// # Examples
///
/// Printing the maximum number of messages in a channel to be cached:
///
/// ```rust
/// use serenity::cache::Cache;
///
/// # async fn test() {
/// let mut cache = Cache::new();
/// println!("Max settings: {}", cache.settings().await.max_messages);
/// # }
/// ```
pub async fn settings(&self) -> Settings {
self.settings.read().await.clone()
}
/// Sets the maximum amount of messages per channel to cache.
///
/// By default, no messages will be cached.
pub async fn set_max_messages(&self, max: usize) {
self.settings.write().await.max_messages = max;
}
/// Retrieves a [`User`] from the cache's [`Self::users`] map, if it exists.
///
/// The only advantage of this method is that you can pass in anything that
/// is indirectly a [`UserId`].
///
/// [`UserId`]: crate::model::id::UserId
///
/// # Examples
///
/// Retrieve a user from the cache and print their name:
///
/// ```rust,no_run
/// # use serenity::client::Context;
/// # use serenity::framework::standard::{CommandResult, macros::command};
/// #
/// # #[command]
/// # async fn test(context: &Context) -> CommandResult {
/// if let Some(user) = context.cache.user(7).await {
/// println!("User with Id 7 is currently named {}", user.name);
/// }
/// # Ok(())
/// # }
/// ```
#[inline]
pub async fn user<U: Into<UserId>>(&self, user_id: U) -> Option<User> {
self._user(user_id.into()).await
}
async fn _user(&self, user_id: UserId) -> Option<User> {
self.users.read().await.get(&user_id).cloned()
}
/// Clones all users and returns them.
#[inline]
pub async fn users(&self) -> HashMap<UserId, User> {
self.users.read().await.clone()
}
/// Returns the amount of cached users.
#[inline]
pub async fn user_count(&self) -> usize {
self.users.read().await.len()
}
/// Clones a category matching the `channel_id` and returns it.
#[inline]
pub async fn category<C: Into<ChannelId>>(&self, channel_id: C) -> Option<ChannelCategory> {
self._category(channel_id.into()).await
}
async fn _category(&self, channel_id: ChannelId) -> Option<ChannelCategory> {
self.categories.read().await.get(&channel_id).cloned()
}
/// Clones all categories and returns them.
#[inline]
pub async fn categories(&self) -> HashMap<ChannelId, ChannelCategory> {
self.categories.read().await.clone()
}
/// Returns the amount of cached categories.
#[inline]
pub async fn category_count(&self) -> usize {
self.categories.read().await.len()
}
/// Returns the optional category ID of a channel.
#[inline]
pub async fn channel_category_id(&self, channel_id: ChannelId) -> Option<ChannelId> {
self.categories.read().await.get(&channel_id).map(|category| category.id)
}
/// This method clones and returns the user used by the bot.
#[inline]
pub async fn current_user(&self) -> CurrentUser {
self.user.read().await.clone()
}
/// This method returns the bot's ID.
#[inline]
pub async fn current_user_id(&self) -> UserId {
self.user.read().await.id
}
/// This method allows to only clone a field of the current user instead of
/// the entire user by providing a `field_selector`-closure picking what
/// you want to clone.
///
/// ```rust,no_run
/// # use serenity::cache::Cache;
/// #
/// # async fn run() -> Result<(), Box<dyn std::error::Error>> {
/// # let cache = Cache::default();
/// // We clone only the `name` instead of the entire channel.
/// let id = cache.current_user_field(|user| user.id).await;
/// println!("Current user's ID: {}", id);
/// # Ok(())
/// # }
/// ```
#[inline]
pub async fn current_user_field<Ret: Clone, Fun>(&self, field_selector: Fun) -> Ret
where
Fun: FnOnce(&CurrentUser) -> Ret,
{
let user = self.user.read().await;
field_selector(&user)
}
/// Updates the cache with the update implementation for an event or other
/// custom update implementation.
///
/// Refer to the documentation for [`CacheUpdate`] for more information.
///
/// # Examples
///
/// Refer to the [`CacheUpdate` examples].
///
/// [`CacheUpdate`]: CacheUpdate
/// [`CacheUpdate` examples]: CacheUpdate#examples
#[instrument(skip(self, e))]
pub async fn update<E: CacheUpdate>(&self, e: &mut E) -> Option<E::Output> {
e.update(self).await
}
pub(crate) async fn update_user_entry(&self, user: &User) {
match self.users.write().await.entry(user.id) {
Entry::Vacant(e) => {
e.insert(user.clone());
},
Entry::Occupied(mut e) => {
e.get_mut().clone_from(user);
},
}
}
}
impl Default for Cache {
fn default() -> Cache {
Cache {
channels: RwLock::new(HashMap::default()),
categories: RwLock::new(HashMap::default()),
guilds: RwLock::new(HashMap::default()),
messages: RwLock::new(HashMap::default()),
presences: RwLock::new(HashMap::default()),
private_channels: RwLock::new(HashMap::with_capacity(128)),
settings: RwLock::new(Settings::default()),
shard_count: RwLock::new(1),
unavailable_guilds: RwLock::new(HashSet::default()),
user: RwLock::new(CurrentUser::default()),
users: RwLock::new(HashMap::default()),
message_queue: RwLock::new(HashMap::default()),
}
}
}
#[cfg(test)]
mod test {
use std::collections::HashMap;
use chrono::{DateTime, Utc};
use serde_json::{Number, Value};
use crate::{
cache::{Cache, CacheUpdate, Settings},
model::prelude::*,
};
#[tokio::test]
#[allow(clippy::unwrap_used)]
async fn test_cache_messages() {
let mut settings = Settings::new();
settings.max_messages(2);
let cache = Cache::new_with_settings(settings);
// Test inserting one message into a channel's message cache.
let datetime =
DateTime::parse_from_str("1983 Apr 13 12:09:14.274 +0000", "%Y %b %d %H:%M:%S%.3f %z")
.unwrap()
.with_timezone(&Utc);
let mut event = MessageCreateEvent {
message: Message {
id: MessageId(3),
attachments: vec![],
author: User {
id: UserId(2),
avatar: None,
bot: false,
discriminator: 1,
name: "user 1".to_owned(),
public_flags: None,
banner: None,
accent_colour: None,
},
channel_id: ChannelId(2),
guild_id: Some(GuildId(1)),
content: String::new(),
edited_timestamp: None,
embeds: vec![],
kind: MessageType::Regular,
member: None,
mention_everyone: false,
mention_roles: vec![],
mention_channels: vec![],
mentions: vec![],
nonce: Value::Number(Number::from(1)),
pinned: false,
reactions: vec![],
timestamp: datetime,
tts: false,
webhook_id: None,
activity: None,
application: None,
message_reference: None,
flags: None,
stickers: vec![],
referenced_message: None,
#[cfg(feature = "unstable_discord_api")]
interaction: None,
#[cfg(feature = "unstable_discord_api")]
components: vec![],
},
};
// Check that the channel cache doesn't exist.
assert!(!cache.messages.read().await.contains_key(&event.message.channel_id));
// Add first message, none because message ID 2 doesn't already exist.
assert!(event.update(&cache).await.is_none());
// None, it only returns the oldest message if the cache was already full.
assert!(event.update(&cache).await.is_none());
// Assert there's only 1 message in the channel's message cache.
assert_eq!(cache.messages.read().await.get(&event.message.channel_id).unwrap().len(), 1);
// Add a second message, assert that channel message cache length is 2.
event.message.id = MessageId(4);
assert!(event.update(&cache).await.is_none());
assert_eq!(cache.messages.read().await.get(&event.message.channel_id).unwrap().len(), 2);
// Add a third message, the first should now be removed.
event.message.id = MessageId(5);
assert!(event.update(&cache).await.is_some());
{
let messages = cache.messages.read().await;
let channel = messages.get(&event.message.channel_id).unwrap();
assert_eq!(channel.len(), 2);
// Check that the first message is now removed.
assert!(!channel.contains_key(&MessageId(3)));
}
let guild_channel = GuildChannel {
id: event.message.channel_id,
bitrate: None,
category_id: None,
guild_id: event.message.guild_id.unwrap(),
kind: ChannelType::Text,
last_message_id: None,
last_pin_timestamp: None,
name: String::new(),
permission_overwrites: vec![],
position: 0,
topic: None,
user_limit: None,
nsfw: false,
slow_mode_rate: Some(0),
rtc_region: None,
video_quality_mode: None,
message_count: None,
member_count: None,
thread_metadata: None,
member: None,
default_auto_archive_duration: None,
};
// Add a channel delete event to the cache, the cached messages for that
// channel should now be gone.
let mut delete = ChannelDeleteEvent {
channel: Channel::Guild(guild_channel.clone()),
};
assert!(cache.update(&mut delete).await.is_none());
assert!(!cache.messages.read().await.contains_key(&delete.channel.id()));
// Test deletion of a guild channel's message cache when a GuildDeleteEvent
// is received.
let mut guild_create = {
let mut channels = HashMap::new();
channels.insert(ChannelId(2), guild_channel.clone());
#[allow(deprecated)]
GuildCreateEvent {
guild: Guild {
id: GuildId(1),
afk_channel_id: None,
afk_timeout: 0,
application_id: None,
default_message_notifications: DefaultMessageNotificationLevel::All,
emojis: HashMap::new(),
explicit_content_filter: ExplicitContentFilter::None,
features: vec![],
icon: None,
joined_at: datetime,
large: false,
member_count: 0,
members: HashMap::new(),
mfa_level: MfaLevel::None,
name: String::new(),
owner_id: UserId(3),
presences: HashMap::new(),
region: String::new(),
roles: HashMap::new(),
splash: None,
discovery_splash: None,
system_channel_id: None,
system_channel_flags: Default::default(),
rules_channel_id: None,
public_updates_channel_id: None,
verification_level: VerificationLevel::Low,
voice_states: HashMap::new(),
description: None,
premium_tier: PremiumTier::Tier0,
channels,
premium_subscription_count: 0,
banner: None,
vanity_url_code: Some("bruhmoment".to_string()),
preferred_locale: "en-US".to_string(),
welcome_screen: None,
approximate_member_count: None,
approximate_presence_count: None,
nsfw: false,
nsfw_level: NsfwLevel::Default,
max_video_channel_users: None,
max_presences: None,
max_members: None,
widget_enabled: Some(false),
widget_channel_id: None,
stage_instances: vec![],
threads: vec![],
},
}
};
assert!(cache.update(&mut guild_create).await.is_none());
assert!(cache.update(&mut event).await.is_none());
let mut guild_delete = GuildDeleteEvent {
guild: GuildUnavailable {
id: GuildId(1),
unavailable: false,
},
};
// The guild existed in the cache, so the cache's guild is returned by the
// update.
assert!(cache.update(&mut guild_delete).await.is_some());
// Assert that the channel's message cache no longer exists.
assert!(!cache.messages.read().await.contains_key(&ChannelId(2)));
}
}