|
- using Discord.Audio;
- using System;
- using System.Collections.Generic;
- using System.Diagnostics;
- using System.Linq;
- using System.Threading.Tasks;
- using Model = Discord.API.Channel;
-
- namespace Discord.Rest
- {
- [DebuggerDisplay(@"{DebuggerDisplay,nq}")]
- public class RestVoiceChannel : RestGuildChannel, IVoiceChannel, IRestAudioChannel
- {
- public int Bitrate { get; private set; }
- public int? UserLimit { get; private set; }
-
- internal RestVoiceChannel(BaseDiscordClient discord, IGuild guild, ulong id)
- : base(discord, guild, id)
- {
- }
- internal new static RestVoiceChannel Create(BaseDiscordClient discord, IGuild guild, Model model)
- {
- var entity = new RestVoiceChannel(discord, guild, model.Id);
- entity.Update(model);
- return entity;
- }
- internal override void Update(Model model)
- {
- base.Update(model);
-
- Bitrate = model.Bitrate.Value;
- UserLimit = model.UserLimit.Value != 0 ? model.UserLimit.Value : (int?)null;
- }
-
- public async Task ModifyAsync(Action<VoiceChannelProperties> func, RequestOptions options = null)
- {
- var model = await ChannelHelper.ModifyAsync(this, Discord, func, options).ConfigureAwait(false);
- Update(model);
- }
-
- private string DebuggerDisplay => $"{Name} ({Id}, Voice)";
-
- //IAudioChannel
- /// <inheritdoc />
- /// <exception cref="NotSupportedException">Connecting to a REST-based channel is not supported.</exception>
- Task<IAudioClient> IAudioChannel.ConnectAsync(Action<IAudioClient> configAction) => throw new NotSupportedException();
-
- //IGuildChannel
- Task<IGuildUser> IGuildChannel.GetUserAsync(ulong id, CacheMode mode, RequestOptions options)
- => Task.FromResult<IGuildUser>(null);
- IAsyncEnumerable<IReadOnlyCollection<IGuildUser>> IGuildChannel.GetUsersAsync(CacheMode mode, RequestOptions options)
- => AsyncEnumerable.Empty<IReadOnlyCollection<IGuildUser>>();
- }
- }
|