// Copyright (c) 2007-2018 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using osu.Framework.Configuration; using osu.Framework.Extensions.IEnumerableExtensions; using osu.Framework.Logging; using osu.Framework.Threading; using osu.Game.Online.API; using osu.Game.Online.API.Requests; namespace osu.Game.Online.Chat { /// /// Manages everything chat related /// public sealed class ChatManager : IOnlineComponent { /// /// The channels the player joins on startup /// private readonly string[] defaultChannels = { @"#lazer", @"#osu", @"#lobby" }; /// /// The currently opened chat /// public Bindable CurrentChat { get; } = new Bindable(); /// /// The Channels the player has joined /// public ObservableCollection JoinedChannels { get; } = new ObservableCollection(); /// /// The channels available for the player to join /// public ObservableCollection AvailableChannels { get; } = new ObservableCollection(); private APIAccess api; private readonly Scheduler scheduler; private ScheduledDelegate fetchMessagesScheduleder; private GetChannelMessagesRequest fetchChannelMsgReq; private long? lastChannelMsgId; public ChatManager(Scheduler scheduler) { this.scheduler = scheduler ?? throw new ArgumentNullException(nameof(scheduler)); CurrentChat.ValueChanged += currentChatChanged; } private void currentChatChanged(ChatBase chatBase) { if (chatBase is ChannelChat channel && !JoinedChannels.Contains(channel)) JoinedChannels.Add(channel); } /// /// Posts a message to the currently opened chat. /// /// The message text that is going to be posted /// Is true if the message is an action, e.g.: user is currently eating public void PostMessage(string text, bool isAction = false) { if (CurrentChat.Value == null) return; if (!api.IsLoggedIn) { CurrentChat.Value.AddNewMessages(new ErrorMessage("Please sign in to participate in chat!")); return; } var message = new LocalEchoMessage { Sender = api.LocalUser.Value, Timestamp = DateTimeOffset.Now, TargetType = CurrentChat.Value.Target, TargetId = CurrentChat.Value.ChatID, IsAction = isAction, Content = text }; CurrentChat.Value.AddLocalEcho(message); var req = new PostMessageRequest(message); req.Failure += e => CurrentChat.Value?.ReplaceMessage(message, null); req.Success += m => CurrentChat.Value?.ReplaceMessage(message, m); api.Queue(req); } public void PostCommand(string text) { if (CurrentChat.Value == null) return; var parameters = text.Split(new[] { ' ' }, 2); string command = parameters[0]; string content = parameters.Length == 2 ? parameters[1] : string.Empty; switch (command) { case "me": if (string.IsNullOrWhiteSpace(content)) { CurrentChat.Value.AddNewMessages(new ErrorMessage("Usage: /me [action]")); break; } PostMessage(content, true); break; case "help": CurrentChat.Value.AddNewMessages(new InfoMessage("Supported commands: /help, /me [action]")); break; default: CurrentChat.Value.AddNewMessages(new ErrorMessage($@"""/{command}"" is not supported! For a list of supported commands see /help")); break; } } private void fetchNewMessages() { if (fetchChannelMsgReq == null) fetchNewChannelMessages(); } private void fetchNewChannelMessages() { fetchChannelMsgReq = new GetChannelMessagesRequest(JoinedChannels, lastChannelMsgId); fetchChannelMsgReq.Success += messages => { handleChannelMessages(messages); lastChannelMsgId = messages.LastOrDefault()?.Id ?? lastChannelMsgId; fetchChannelMsgReq = null; }; fetchChannelMsgReq.Failure += exception => Logger.Error(exception, "Fetching channel messages failed."); api.Queue(fetchChannelMsgReq); } private void handleChannelMessages(IEnumerable messages) { var channels = JoinedChannels.ToList(); foreach (var group in messages.GroupBy(m => m.TargetId)) channels.Find(c => c.Id == group.Key)?.AddNewMessages(group.ToArray()); } private void initializeDefaultChannels() { var req = new ListChannelsRequest(); req.Success += channels => { channels.Where(channel => AvailableChannels.All(c => c.ChatID != channel.ChatID)) .ForEach(channel => AvailableChannels.Add(channel)); channels.Where(channel => defaultChannels.Contains(channel.Name)) .Where(channel => JoinedChannels.All(c => c.ChatID != channel.ChatID)) .ForEach(channel => JoinedChannels.Add(channel)); fetchNewMessages(); }; req.Failure += error => Logger.Error(error, "Fetching channels failed"); api.Queue(req); } public void APIStateChanged(APIAccess api, APIState state) { this.api = api ?? throw new ArgumentNullException(nameof(api)); switch (state) { case APIState.Online: if (JoinedChannels.Count == 0) initializeDefaultChannels(); fetchMessagesScheduleder = scheduler.AddDelayed(fetchNewMessages, 1000, true); break; default: fetchChannelMsgReq?.Cancel(); fetchMessagesScheduleder?.Cancel(); break; } } } }