diff --git a/src/Discord.Net.Core/Entities/Invites/IInvite.cs b/src/Discord.Net.Core/Entities/Invites/IInvite.cs
index 73555e453..42141cd1e 100644
--- a/src/Discord.Net.Core/Entities/Invites/IInvite.cs
+++ b/src/Discord.Net.Core/Entities/Invites/IInvite.cs
@@ -1,4 +1,4 @@
-using System.Threading.Tasks;
+using System.Threading.Tasks;
namespace Discord
{
@@ -22,6 +22,10 @@ namespace Discord
ulong GuildId { get; }
/// Gets the name of the guild this invite is linked to.
string GuildName { get; }
+ /// Gets the approximated count of online members in the guild.
+ int? PresenceCount { get; }
+ /// Gets the approximated count of total members in the guild.
+ int? MemberCount { get; }
/// Accepts this invite and joins the target guild. This will fail on bot accounts.
Task AcceptAsync(RequestOptions options = null);
diff --git a/src/Discord.Net.Core/IDiscordClient.cs b/src/Discord.Net.Core/IDiscordClient.cs
index a383c37da..083c0b512 100644
--- a/src/Discord.Net.Core/IDiscordClient.cs
+++ b/src/Discord.Net.Core/IDiscordClient.cs
@@ -27,7 +27,7 @@ namespace Discord
Task> GetGuildsAsync(CacheMode mode = CacheMode.AllowDownload, RequestOptions options = null);
Task CreateGuildAsync(string name, IVoiceRegion region, Stream jpegIcon = null, RequestOptions options = null);
- Task GetInviteAsync(string inviteId, RequestOptions options = null);
+ Task GetInviteAsync(string inviteId, bool withCount = false, RequestOptions options = null);
Task GetUserAsync(ulong id, CacheMode mode = CacheMode.AllowDownload, RequestOptions options = null);
Task GetUserAsync(string username, string discriminator, RequestOptions options = null);
diff --git a/src/Discord.Net.Rest/API/Common/Invite.cs b/src/Discord.Net.Rest/API/Common/Invite.cs
index 67a318c5a..1b35da870 100644
--- a/src/Discord.Net.Rest/API/Common/Invite.cs
+++ b/src/Discord.Net.Rest/API/Common/Invite.cs
@@ -1,4 +1,4 @@
-#pragma warning disable CS1591
+#pragma warning disable CS1591
using Newtonsoft.Json;
namespace Discord.API
@@ -11,5 +11,9 @@ namespace Discord.API
public InviteGuild Guild { get; set; }
[JsonProperty("channel")]
public InviteChannel Channel { get; set; }
+ [JsonProperty("approximate_presence_count")]
+ public Optional PresenceCount { get; set; }
+ [JsonProperty("approximate_member_count")]
+ public Optional MemberCount { get; set; }
}
}
diff --git a/src/Discord.Net.Rest/API/Rest/GetInviteParams.cs b/src/Discord.Net.Rest/API/Rest/GetInviteParams.cs
new file mode 100644
index 000000000..2d7401870
--- /dev/null
+++ b/src/Discord.Net.Rest/API/Rest/GetInviteParams.cs
@@ -0,0 +1,10 @@
+using Newtonsoft.Json;
+
+namespace Discord.API.Rest
+{
+ internal class GetInviteParams
+ {
+ [JsonProperty("with_counts")]
+ public Optional WithCounts { get; set; }
+ }
+}
diff --git a/src/Discord.Net.Rest/BaseDiscordClient.cs b/src/Discord.Net.Rest/BaseDiscordClient.cs
index f8642b96c..db8e2e691 100644
--- a/src/Discord.Net.Rest/BaseDiscordClient.cs
+++ b/src/Discord.Net.Rest/BaseDiscordClient.cs
@@ -148,7 +148,7 @@ namespace Discord.Rest
Task> IDiscordClient.GetConnectionsAsync(RequestOptions options)
=> Task.FromResult>(ImmutableArray.Create());
- Task IDiscordClient.GetInviteAsync(string inviteId, RequestOptions options)
+ Task IDiscordClient.GetInviteAsync(string inviteId, bool withCount, RequestOptions options)
=> Task.FromResult(null);
Task IDiscordClient.GetGuildAsync(ulong id, CacheMode mode, RequestOptions options)
diff --git a/src/Discord.Net.Rest/ClientHelper.cs b/src/Discord.Net.Rest/ClientHelper.cs
index 08305f857..e6a603d95 100644
--- a/src/Discord.Net.Rest/ClientHelper.cs
+++ b/src/Discord.Net.Rest/ClientHelper.cs
@@ -51,9 +51,13 @@ namespace Discord.Rest
}
public static async Task GetInviteAsync(BaseDiscordClient client,
- string inviteId, RequestOptions options)
+ string inviteId, bool withCount, RequestOptions options)
{
- var model = await client.ApiClient.GetInviteAsync(inviteId, options).ConfigureAwait(false);
+ var args = new GetInviteParams
+ {
+ WithCounts = withCount
+ };
+ var model = await client.ApiClient.GetInviteAsync(inviteId, args, options).ConfigureAwait(false);
if (model != null)
return RestInvite.Create(client, null, null, model);
return null;
diff --git a/src/Discord.Net.Rest/DiscordRestApiClient.cs b/src/Discord.Net.Rest/DiscordRestApiClient.cs
index f0c4358ad..92d70f934 100644
--- a/src/Discord.Net.Rest/DiscordRestApiClient.cs
+++ b/src/Discord.Net.Rest/DiscordRestApiClient.cs
@@ -897,7 +897,7 @@ namespace Discord.API
}
//Guild Invites
- public async Task GetInviteAsync(string inviteId, RequestOptions options = null)
+ public async Task GetInviteAsync(string inviteId, GetInviteParams args, RequestOptions options = null)
{
Preconditions.NotNullOrEmpty(inviteId, nameof(inviteId));
options = RequestOptions.CreateOrClone(options);
@@ -912,7 +912,7 @@ namespace Discord.API
try
{
- return await SendAsync("GET", () => $"invites/{inviteId}", new BucketIds(), options: options).ConfigureAwait(false);
+ return await SendJsonAsync("GET", () => $"invites/{inviteId}", args, new BucketIds(), options: options).ConfigureAwait(false);
}
catch (HttpException ex) when (ex.HttpCode == HttpStatusCode.NotFound) { return null; }
}
diff --git a/src/Discord.Net.Rest/DiscordRestClient.cs b/src/Discord.Net.Rest/DiscordRestClient.cs
index 8850da3a5..abf7749e6 100644
--- a/src/Discord.Net.Rest/DiscordRestClient.cs
+++ b/src/Discord.Net.Rest/DiscordRestClient.cs
@@ -56,8 +56,8 @@ namespace Discord.Rest
=> ClientHelper.GetConnectionsAsync(this, options);
///
- public Task GetInviteAsync(string inviteId, RequestOptions options = null)
- => ClientHelper.GetInviteAsync(this, inviteId, options);
+ public Task GetInviteAsync(string inviteId, bool withCount = false, RequestOptions options = null)
+ => ClientHelper.GetInviteAsync(this, inviteId, withCount, options);
///
public Task GetGuildAsync(ulong id, RequestOptions options = null)
@@ -131,8 +131,8 @@ namespace Discord.Rest
async Task> IDiscordClient.GetConnectionsAsync(RequestOptions options)
=> await GetConnectionsAsync(options).ConfigureAwait(false);
- async Task IDiscordClient.GetInviteAsync(string inviteId, RequestOptions options)
- => await GetInviteAsync(inviteId, options).ConfigureAwait(false);
+ async Task IDiscordClient.GetInviteAsync(string inviteId, bool withCount, RequestOptions options)
+ => await GetInviteAsync(inviteId, withCount, options).ConfigureAwait(false);
async Task IDiscordClient.GetGuildAsync(ulong id, CacheMode mode, RequestOptions options)
{
diff --git a/src/Discord.Net.Rest/Entities/Invites/RestInvite.cs b/src/Discord.Net.Rest/Entities/Invites/RestInvite.cs
index 900d1f0ac..acb999df8 100644
--- a/src/Discord.Net.Rest/Entities/Invites/RestInvite.cs
+++ b/src/Discord.Net.Rest/Entities/Invites/RestInvite.cs
@@ -1,6 +1,7 @@
-using System;
+using System;
using System.Diagnostics;
using System.Threading.Tasks;
+using Discord.API.Rest;
using Model = Discord.API.Invite;
namespace Discord.Rest
@@ -10,6 +11,8 @@ namespace Discord.Rest
{
public string ChannelName { get; private set; }
public string GuildName { get; private set; }
+ public int? PresenceCount { get; private set; }
+ public int? MemberCount { get; private set; }
public ulong ChannelId { get; private set; }
public ulong GuildId { get; private set; }
internal IChannel Channel { get; private set; }
@@ -36,11 +39,16 @@ namespace Discord.Rest
ChannelId = model.Channel.Id;
GuildName = model.Guild.Name;
ChannelName = model.Channel.Name;
+ MemberCount = model.MemberCount.IsSpecified ? model.MemberCount.Value : null;
+ PresenceCount = model.PresenceCount.IsSpecified ? model.PresenceCount.Value : null;
}
public async Task UpdateAsync(RequestOptions options = null)
{
- var model = await Discord.ApiClient.GetInviteAsync(Code, options).ConfigureAwait(false);
+ var args = new GetInviteParams();
+ if (MemberCount != null || PresenceCount != null)
+ args.WithCounts = true;
+ var model = await Discord.ApiClient.GetInviteAsync(Code, args, options).ConfigureAwait(false);
Update(model);
}
public Task DeleteAsync(RequestOptions options = null)