* Mark guild as optional for invite * Mark partial InviteMetadata members as Optional<T> * Some of them aren't sent when requesting through the general GET invite endpoint * Remove GetInviteParams * It was kinda stupid in the first place, might as well always get the count instead of having to ask the user whether they want the two fields filled or not. * Add ChannelType property * Add vanity invite support
95 lines
5.4 KiB
C#
95 lines
5.4 KiB
C#
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Threading.Tasks;
|
|
using Discord.API;
|
|
using Discord.Rest;
|
|
|
|
namespace Discord.WebSocket
|
|
{
|
|
public abstract partial class BaseSocketClient : BaseDiscordClient, IDiscordClient
|
|
{
|
|
protected readonly DiscordSocketConfig _baseconfig;
|
|
|
|
/// <summary> Gets the estimated round-trip latency, in milliseconds, to the gateway server. </summary>
|
|
public abstract int Latency { get; protected set; }
|
|
public abstract UserStatus Status { get; protected set; }
|
|
public abstract IActivity Activity { get; protected set; }
|
|
|
|
internal new DiscordSocketApiClient ApiClient => base.ApiClient as DiscordSocketApiClient;
|
|
|
|
public new SocketSelfUser CurrentUser { get => base.CurrentUser as SocketSelfUser; protected set => base.CurrentUser = value; }
|
|
public abstract IReadOnlyCollection<SocketGuild> Guilds { get; }
|
|
public abstract IReadOnlyCollection<ISocketPrivateChannel> PrivateChannels { get; }
|
|
public abstract IReadOnlyCollection<RestVoiceRegion> VoiceRegions { get; }
|
|
|
|
internal BaseSocketClient(DiscordSocketConfig config, DiscordRestApiClient client)
|
|
: base(config, client) => _baseconfig = config;
|
|
private static DiscordSocketApiClient CreateApiClient(DiscordSocketConfig config)
|
|
=> new DiscordSocketApiClient(config.RestClientProvider, config.WebSocketProvider, DiscordRestConfig.UserAgent);
|
|
|
|
/// <inheritdoc />
|
|
public abstract Task<RestApplication> GetApplicationInfoAsync(RequestOptions options = null);
|
|
/// <inheritdoc />
|
|
public abstract SocketUser GetUser(ulong id);
|
|
/// <inheritdoc />
|
|
public abstract SocketUser GetUser(string username, string discriminator);
|
|
/// <inheritdoc />
|
|
public abstract SocketChannel GetChannel(ulong id);
|
|
/// <inheritdoc />
|
|
public abstract SocketGuild GetGuild(ulong id);
|
|
/// <inheritdoc />
|
|
public abstract RestVoiceRegion GetVoiceRegion(string id);
|
|
/// <inheritdoc />
|
|
public abstract Task StartAsync();
|
|
/// <inheritdoc />
|
|
public abstract Task StopAsync();
|
|
public abstract Task SetStatusAsync(UserStatus status);
|
|
public abstract Task SetGameAsync(string name, string streamUrl = null, ActivityType type = ActivityType.Playing);
|
|
public abstract Task SetActivityAsync(IActivity activity);
|
|
public abstract Task DownloadUsersAsync(IEnumerable<IGuild> guilds);
|
|
|
|
/// <inheritdoc />
|
|
public Task<RestGuild> CreateGuildAsync(string name, IVoiceRegion region, Stream jpegIcon = null, RequestOptions options = null)
|
|
=> ClientHelper.CreateGuildAsync(this, name, region, jpegIcon, options ?? RequestOptions.Default);
|
|
/// <inheritdoc />
|
|
public Task<IReadOnlyCollection<RestConnection>> GetConnectionsAsync(RequestOptions options = null)
|
|
=> ClientHelper.GetConnectionsAsync(this, options ?? RequestOptions.Default);
|
|
/// <inheritdoc />
|
|
public Task<RestInviteMetadata> GetInviteAsync(string inviteId, bool withCount = false, RequestOptions options = null)
|
|
=> ClientHelper.GetInviteAsync(this, inviteId, options ?? RequestOptions.Default);
|
|
|
|
// IDiscordClient
|
|
async Task<IApplication> IDiscordClient.GetApplicationInfoAsync(RequestOptions options)
|
|
=> await GetApplicationInfoAsync(options).ConfigureAwait(false);
|
|
|
|
Task<IChannel> IDiscordClient.GetChannelAsync(ulong id, CacheMode mode, RequestOptions options)
|
|
=> Task.FromResult<IChannel>(GetChannel(id));
|
|
Task<IReadOnlyCollection<IPrivateChannel>> IDiscordClient.GetPrivateChannelsAsync(CacheMode mode, RequestOptions options)
|
|
=> Task.FromResult<IReadOnlyCollection<IPrivateChannel>>(PrivateChannels);
|
|
|
|
async Task<IReadOnlyCollection<IConnection>> IDiscordClient.GetConnectionsAsync(RequestOptions options)
|
|
=> await GetConnectionsAsync(options).ConfigureAwait(false);
|
|
|
|
async Task<IInvite> IDiscordClient.GetInviteAsync(string inviteId, bool withCount, RequestOptions options)
|
|
=> await GetInviteAsync(inviteId, withCount, options).ConfigureAwait(false);
|
|
|
|
Task<IGuild> IDiscordClient.GetGuildAsync(ulong id, CacheMode mode, RequestOptions options)
|
|
=> Task.FromResult<IGuild>(GetGuild(id));
|
|
Task<IReadOnlyCollection<IGuild>> IDiscordClient.GetGuildsAsync(CacheMode mode, RequestOptions options)
|
|
=> Task.FromResult<IReadOnlyCollection<IGuild>>(Guilds);
|
|
|
|
async Task<IGuild> IDiscordClient.CreateGuildAsync(string name, IVoiceRegion region, Stream jpegIcon, RequestOptions options)
|
|
=> await CreateGuildAsync(name, region, jpegIcon, options).ConfigureAwait(false);
|
|
|
|
Task<IUser> IDiscordClient.GetUserAsync(ulong id, CacheMode mode, RequestOptions options)
|
|
=> Task.FromResult<IUser>(GetUser(id));
|
|
Task<IUser> IDiscordClient.GetUserAsync(string username, string discriminator, RequestOptions options)
|
|
=> Task.FromResult<IUser>(GetUser(username, discriminator));
|
|
|
|
Task<IVoiceRegion> IDiscordClient.GetVoiceRegionAsync(string id, RequestOptions options)
|
|
=> Task.FromResult<IVoiceRegion>(GetVoiceRegion(id));
|
|
Task<IReadOnlyCollection<IVoiceRegion>> IDiscordClient.GetVoiceRegionsAsync(RequestOptions options)
|
|
=> Task.FromResult<IReadOnlyCollection<IVoiceRegion>>(VoiceRegions);
|
|
}
|
|
}
|