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
use crate::{config::ResourceType, model::CachedPresence, InMemoryCache, UpdateCache};
use twilight_model::{gateway::payload::incoming::PresenceUpdate, id::GuildId};
impl InMemoryCache {
pub(crate) fn cache_presences(
&self,
guild_id: GuildId,
presences: impl IntoIterator<Item = CachedPresence>,
) {
for presence in presences {
self.cache_presence(guild_id, presence);
}
}
fn cache_presence(&self, guild_id: GuildId, presence: CachedPresence) {
self.presences
.insert((guild_id, presence.user_id()), presence);
}
}
impl UpdateCache for PresenceUpdate {
fn update(&self, cache: &InMemoryCache) {
if !cache.wants(ResourceType::PRESENCE) {
return;
}
let presence = CachedPresence {
activities: self.activities.clone(),
client_status: self.client_status.clone(),
guild_id: self.guild_id,
status: self.status,
user_id: self.user.id(),
};
cache.cache_presence(self.guild_id, presence);
}
}