Tracking Used Invites
Using a simple cache to track invites and know which invite was used when a new member joins a guild.
A relatively frequent thing people would love to know, is "what invite someone used to join". Unfortunately, the Discord API does not provide the information about the invite used to join a server.
To get around this, we need to do two separate steps. The first one is to fetch all of the invites for each guild and store it in a temporary Map. The second is to fetch a guild's invite whenever someone joins, and find which one has a new use on it. Thankfully, that's actually pretty simple!
While the below is a fair approximation of invite tracking, it's still not perfect. There are 2 things it doesn't track:
Temporary one-use invites (when right-clicking someone, and doing Invite To => Server). Those exist only for a few moments and cannot be tracked at all.
Caching Invites
The first part is to fetch all the invites and keep them cached in an Map. This is done in the ready
event. First, however, we must ensure that the cache is initialized outside of the ready event.
Moving on to the second part, we need to listen to the inviteCreate
and inviteDelete
event provided by the API, and update our cache accordingly.
Caching Guilds that have been added/removed
Since we already have the Guilds and their Invites cached, we need to check if we've been added or removed from any of the Guilds. If we're added, we need to fetch and cache all invites. If we're removed, we can just delete the data from our cache. It is as simple as this
Catching New Members
So now that we have our invites
object, we're ready to listen to the guildMemberAdd
event. When a new member joins, we need to fetch all of the guild's invites once again. Then, we look through our cached invites and see which one has been used, by comparing the current invite's use with the cached ones.
And... well, that's pretty much it. But....
There's a Catch
So here's the problem. Each time you fetch invites, you're hitting the Discord API with a request for information. While that's not an issue for small bots, it might as the bot grows. I'm not saying that using this code would get you banned from the API - there is no inherent problem with querying the API if it's not abuse. However, there are a few technical issues with performance especially.
The more guilds you have, the more invites are in each guild, the more data you're receiving from the API. Remember, because of the way the ready
event works, you need to wait a bit before running the fetch method, and the more guilds you have, the more time you need to wait. During this time, member joins won't correctly register because the cache doesn't exist.
Furthermore, the cache itself grows in size, so you're using more memory. On top of which, it takes more time to sort through the invites the more invites exist. It might make the bot appear as being slower to respond to members joining.
So to conclude, the above code works perfectly well and it should not get you in trouble with Discord, but I wouldn't recommend implementing this on larger bots, especially if you're worried about memory and performance.
Last updated