2019-12-17 14:04:55 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
2019-12-17 13:59:27 +08:00
|
|
|
|
using System.Collections.Generic;
|
2021-05-26 14:59:29 +08:00
|
|
|
|
using System.Collections.Specialized;
|
2019-12-17 13:59:27 +08:00
|
|
|
|
using System.Linq;
|
2021-12-07 06:32:21 +08:00
|
|
|
|
using System.Text.RegularExpressions;
|
2019-12-17 13:59:27 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Bindables;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Game.Configuration;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Online.API;
|
2021-11-04 17:02:44 +08:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2019-12-17 13:59:27 +08:00
|
|
|
|
using osu.Game.Overlays;
|
|
|
|
|
using osu.Game.Overlays.Notifications;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Online.Chat
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Component that handles creating and posting notifications for incoming messages.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class MessageNotifier : Component
|
|
|
|
|
{
|
2021-06-11 15:28:53 +08:00
|
|
|
|
[Resolved]
|
|
|
|
|
private NotificationOverlay notifications { get; set; }
|
2019-12-17 13:59:27 +08:00
|
|
|
|
|
2021-06-11 15:28:53 +08:00
|
|
|
|
[Resolved]
|
2019-12-17 13:59:27 +08:00
|
|
|
|
private ChatOverlay chatOverlay { get; set; }
|
|
|
|
|
|
2021-06-11 15:28:53 +08:00
|
|
|
|
[Resolved]
|
2019-12-17 13:59:27 +08:00
|
|
|
|
private ChannelManager channelManager { get; set; }
|
|
|
|
|
|
2021-06-11 15:37:31 +08:00
|
|
|
|
private Bindable<bool> notifyOnUsername;
|
|
|
|
|
private Bindable<bool> notifyOnPrivateMessage;
|
|
|
|
|
|
2021-11-04 17:02:44 +08:00
|
|
|
|
private readonly IBindable<APIUser> localUser = new Bindable<APIUser>();
|
2021-06-05 17:03:49 +08:00
|
|
|
|
private readonly IBindableList<Channel> joinedChannels = new BindableList<Channel>();
|
2019-12-17 13:59:27 +08:00
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2019-12-26 10:32:40 +08:00
|
|
|
|
private void load(OsuConfigManager config, IAPIProvider api)
|
2019-12-17 13:59:27 +08:00
|
|
|
|
{
|
2021-06-11 15:37:31 +08:00
|
|
|
|
notifyOnUsername = config.GetBindable<bool>(OsuSetting.NotifyOnUsernameMentioned);
|
|
|
|
|
notifyOnPrivateMessage = config.GetBindable<bool>(OsuSetting.NotifyOnPrivateMessage);
|
|
|
|
|
|
2021-06-05 17:03:49 +08:00
|
|
|
|
localUser.BindTo(api.LocalUser);
|
|
|
|
|
joinedChannels.BindTo(channelManager.JoinedChannels);
|
2021-05-26 14:59:29 +08:00
|
|
|
|
}
|
2019-12-26 10:32:40 +08:00
|
|
|
|
|
2021-06-11 16:51:58 +08:00
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
joinedChannels.BindCollectionChanged(channelsChanged, true);
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-26 14:59:29 +08:00
|
|
|
|
private void channelsChanged(object sender, NotifyCollectionChangedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
switch (e.Action)
|
2019-12-26 10:32:40 +08:00
|
|
|
|
{
|
2021-05-26 14:59:29 +08:00
|
|
|
|
case NotifyCollectionChangedAction.Add:
|
|
|
|
|
foreach (var channel in e.NewItems.Cast<Channel>())
|
2021-06-11 15:37:31 +08:00
|
|
|
|
channel.NewMessagesArrived += checkNewMessages;
|
2021-05-26 14:59:29 +08:00
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case NotifyCollectionChangedAction.Remove:
|
|
|
|
|
foreach (var channel in e.OldItems.Cast<Channel>())
|
2021-06-11 15:37:31 +08:00
|
|
|
|
channel.NewMessagesArrived -= checkNewMessages;
|
2021-05-26 14:59:29 +08:00
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
2019-12-26 10:32:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-11 15:37:31 +08:00
|
|
|
|
private void checkNewMessages(IEnumerable<Message> messages)
|
2019-12-26 10:32:40 +08:00
|
|
|
|
{
|
2021-06-11 15:27:31 +08:00
|
|
|
|
if (!messages.Any())
|
2019-12-26 10:32:40 +08:00
|
|
|
|
return;
|
|
|
|
|
|
2021-06-11 15:27:31 +08:00
|
|
|
|
var channel = channelManager.JoinedChannels.SingleOrDefault(c => c.Id == messages.First().ChannelId);
|
2019-12-26 10:32:40 +08:00
|
|
|
|
|
|
|
|
|
if (channel == null)
|
|
|
|
|
return;
|
|
|
|
|
|
2020-01-22 07:13:07 +08:00
|
|
|
|
// Only send notifications, if ChatOverlay and the target channel aren't visible.
|
2021-06-11 15:28:53 +08:00
|
|
|
|
if (chatOverlay.IsPresent && channelManager.CurrentChannel.Value == channel)
|
2019-12-17 13:59:27 +08:00
|
|
|
|
return;
|
|
|
|
|
|
2020-01-22 07:27:46 +08:00
|
|
|
|
foreach (var message in messages.OrderByDescending(m => m.Id))
|
2019-12-17 13:59:27 +08:00
|
|
|
|
{
|
2020-01-17 07:00:10 +08:00
|
|
|
|
// ignore messages that already have been read
|
2020-01-22 07:28:08 +08:00
|
|
|
|
if (message.Id <= channel.LastReadId)
|
2020-01-17 07:00:10 +08:00
|
|
|
|
return;
|
|
|
|
|
|
2020-01-22 06:42:15 +08:00
|
|
|
|
if (message.Sender.Id == localUser.Value.Id)
|
2019-12-17 13:59:27 +08:00
|
|
|
|
continue;
|
|
|
|
|
|
2021-06-11 15:37:31 +08:00
|
|
|
|
// check for private messages first to avoid both posting two notifications about the same message
|
2020-01-20 00:55:17 +08:00
|
|
|
|
if (checkForPMs(channel, message))
|
|
|
|
|
continue;
|
2019-12-17 13:59:27 +08:00
|
|
|
|
|
2021-06-11 15:37:31 +08:00
|
|
|
|
checkForMentions(channel, message);
|
2020-01-20 00:55:17 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-01-18 21:17:26 +08:00
|
|
|
|
|
2021-06-05 21:57:14 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Checks whether the user enabled private message notifications and whether specified <paramref name="message"/> is a direct message.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="channel">The channel associated to the <paramref name="message"/></param>
|
|
|
|
|
/// <param name="message">The message to be checked</param>
|
2021-06-11 15:37:31 +08:00
|
|
|
|
/// <returns>Whether a notification was fired.</returns>
|
2020-01-20 00:55:17 +08:00
|
|
|
|
private bool checkForPMs(Channel channel, Message message)
|
|
|
|
|
{
|
2021-06-11 15:37:31 +08:00
|
|
|
|
if (!notifyOnPrivateMessage.Value || channel.Type != ChannelType.PM)
|
2020-01-20 00:55:17 +08:00
|
|
|
|
return false;
|
2020-01-17 06:15:30 +08:00
|
|
|
|
|
2021-06-11 15:28:53 +08:00
|
|
|
|
notifications.Post(new PrivateMessageNotification(message.Sender.Username, channel));
|
2020-01-20 00:55:17 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-11 15:37:31 +08:00
|
|
|
|
private void checkForMentions(Channel channel, Message message)
|
2020-01-20 00:55:17 +08:00
|
|
|
|
{
|
2021-12-14 23:23:51 +08:00
|
|
|
|
if (!notifyOnUsername.Value || !CheckContainsUsername(message.Content, localUser.Value.Username)) return;
|
2020-01-20 00:55:17 +08:00
|
|
|
|
|
2021-06-11 15:28:53 +08:00
|
|
|
|
notifications.Post(new MentionNotification(message.Sender.Username, channel));
|
2019-12-17 13:59:27 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2021-12-07 06:32:21 +08:00
|
|
|
|
/// Checks if <paramref name="message"/> mentions <paramref name="username"/>.
|
2021-06-11 15:37:31 +08:00
|
|
|
|
/// This will match against the case where underscores are used instead of spaces (which is how osu-stable handles usernames with spaces).
|
2019-12-17 13:59:27 +08:00
|
|
|
|
/// </summary>
|
2021-12-14 23:23:51 +08:00
|
|
|
|
public static bool CheckContainsUsername(string message, string username)
|
2021-12-07 08:38:37 +08:00
|
|
|
|
{
|
2021-12-07 06:32:21 +08:00
|
|
|
|
string fullName = Regex.Escape(username);
|
|
|
|
|
string underscoreName = Regex.Escape(username.Replace(' ', '_'));
|
2021-12-07 09:38:10 +08:00
|
|
|
|
return Regex.IsMatch(message, $@"(^|\W)({fullName}|{underscoreName})($|\W)", RegexOptions.IgnoreCase);
|
2021-12-07 06:32:21 +08:00
|
|
|
|
}
|
2021-06-11 15:37:31 +08:00
|
|
|
|
|
|
|
|
|
public class PrivateMessageNotification : OpenChannelNotification
|
|
|
|
|
{
|
|
|
|
|
public PrivateMessageNotification(string username, Channel channel)
|
|
|
|
|
: base(channel)
|
|
|
|
|
{
|
|
|
|
|
Icon = FontAwesome.Solid.Envelope;
|
|
|
|
|
Text = $"You received a private message from '{username}'. Click to read it!";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class MentionNotification : OpenChannelNotification
|
|
|
|
|
{
|
|
|
|
|
public MentionNotification(string username, Channel channel)
|
|
|
|
|
: base(channel)
|
|
|
|
|
{
|
|
|
|
|
Icon = FontAwesome.Solid.At;
|
|
|
|
|
Text = $"Your name was mentioned in chat by '{username}'. Click to find out why!";
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-12-17 13:59:27 +08:00
|
|
|
|
|
2021-06-11 15:37:31 +08:00
|
|
|
|
public abstract class OpenChannelNotification : SimpleNotification
|
2019-12-17 13:59:27 +08:00
|
|
|
|
{
|
2021-06-11 15:37:31 +08:00
|
|
|
|
protected OpenChannelNotification(Channel channel)
|
2019-12-17 13:59:27 +08:00
|
|
|
|
{
|
2020-02-04 06:03:27 +08:00
|
|
|
|
this.channel = channel;
|
2019-12-17 13:59:27 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-04 06:03:27 +08:00
|
|
|
|
private readonly Channel channel;
|
2020-01-22 07:28:59 +08:00
|
|
|
|
|
2019-12-17 13:59:27 +08:00
|
|
|
|
public override bool IsImportant => false;
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2020-01-22 07:28:59 +08:00
|
|
|
|
private void load(OsuColour colours, ChatOverlay chatOverlay, NotificationOverlay notificationOverlay, ChannelManager channelManager)
|
2019-12-17 13:59:27 +08:00
|
|
|
|
{
|
2021-12-10 13:04:31 +08:00
|
|
|
|
IconBackground.Colour = colours.PurpleDark;
|
2020-01-22 07:28:59 +08:00
|
|
|
|
|
2019-12-17 13:59:27 +08:00
|
|
|
|
Activated = delegate
|
|
|
|
|
{
|
2020-01-20 00:55:17 +08:00
|
|
|
|
notificationOverlay.Hide();
|
|
|
|
|
chatOverlay.Show();
|
2020-02-04 06:03:27 +08:00
|
|
|
|
channelManager.CurrentChannel.Value = channel;
|
2020-01-17 07:00:10 +08:00
|
|
|
|
|
2019-12-17 13:59:27 +08:00
|
|
|
|
return true;
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|