// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; using osu.Game.Online.API; using osu.Game.Online.API.Requests; using osu.Game.Online.Chat; namespace osu.Game.Online.Notifications { /// /// An abstract client which receives notification-related events (chat/notifications). /// public abstract class NotificationsClient : PersistentEndpointClient { public Action? ChannelJoined; public Action? ChannelParted; public Action>? NewMessages; public Action? PresenceReceived; protected readonly IAPIProvider API; private long lastMessageId; protected NotificationsClient(IAPIProvider api) { API = api; } public override Task ConnectAsync(CancellationToken cancellationToken) { API.Queue(CreateFetchMessagesRequest(0)); return Task.CompletedTask; } protected APIRequest CreateFetchMessagesRequest(long? lastMessageId = null) { var fetchReq = new GetUpdatesRequest(lastMessageId ?? this.lastMessageId); fetchReq.Success += updates => { if (updates?.Presence != null) { foreach (var channel in updates.Presence) { channel.Joined.Value = true; HandleJoinedChannel(channel); } //todo: handle left channels HandleMessages(updates.Messages); } PresenceReceived?.Invoke(); }; return fetchReq; } protected void HandleJoinedChannel(Channel channel) => ChannelJoined?.Invoke(channel); protected void HandleChannelParted(Channel channel) => ChannelParted?.Invoke(channel); protected void HandleMessages(List messages) { NewMessages?.Invoke(messages); lastMessageId = Math.Max(lastMessageId, messages.LastOrDefault()?.Id ?? 0); } } }