2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2016-08-31 18:49:34 +08:00
|
|
|
using System;
|
2017-12-02 03:25:02 +08:00
|
|
|
using System.Collections.Generic;
|
2022-11-30 15:55:39 +08:00
|
|
|
using System.Threading;
|
2016-08-31 18:49:34 +08:00
|
|
|
using Newtonsoft.Json;
|
2021-11-04 17:02:44 +08:00
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2016-08-31 18:49:34 +08:00
|
|
|
namespace osu.Game.Online.Chat
|
|
|
|
{
|
2017-05-17 18:02:17 +08:00
|
|
|
public class Message : IComparable<Message>, IEquatable<Message>
|
2016-08-31 18:49:34 +08:00
|
|
|
{
|
|
|
|
[JsonProperty(@"message_id")]
|
2017-08-21 16:43:26 +08:00
|
|
|
public readonly long? Id;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2018-09-28 18:33:19 +08:00
|
|
|
[JsonProperty(@"channel_id")]
|
2018-11-12 19:41:10 +08:00
|
|
|
public long ChannelId;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-09-22 07:47:24 +08:00
|
|
|
[JsonProperty(@"is_action")]
|
|
|
|
public bool IsAction;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2016-08-31 18:49:34 +08:00
|
|
|
[JsonProperty(@"timestamp")]
|
2016-10-13 21:42:51 +08:00
|
|
|
public DateTimeOffset Timestamp;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2016-08-31 18:49:34 +08:00
|
|
|
[JsonProperty(@"content")]
|
2016-09-27 18:22:22 +08:00
|
|
|
public string Content;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2016-08-31 18:49:34 +08:00
|
|
|
[JsonProperty(@"sender")]
|
2021-11-04 17:02:44 +08:00
|
|
|
public APIUser Sender;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2022-10-28 15:19:15 +08:00
|
|
|
[JsonProperty(@"sender_id")]
|
|
|
|
public int SenderId
|
|
|
|
{
|
|
|
|
get => Sender?.Id ?? 0;
|
|
|
|
set => Sender = new APIUser { Id = value };
|
|
|
|
}
|
|
|
|
|
2022-11-04 15:42:59 +08:00
|
|
|
/// <summary>
|
|
|
|
/// A unique identifier for this message. Sent to and from osu!web to use for deduplication.
|
|
|
|
/// </summary>
|
|
|
|
[JsonProperty(@"uuid")]
|
|
|
|
public string Uuid { get; set; } = string.Empty;
|
|
|
|
|
2016-08-31 18:49:34 +08:00
|
|
|
[JsonConstructor]
|
|
|
|
public Message()
|
|
|
|
{
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2018-01-09 23:11:45 +08:00
|
|
|
/// <summary>
|
|
|
|
/// The text that is displayed in chat.
|
|
|
|
/// </summary>
|
|
|
|
public string DisplayContent { get; set; }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2018-01-09 23:11:45 +08:00
|
|
|
/// <summary>
|
|
|
|
/// The links found in this message.
|
|
|
|
/// </summary>
|
2018-01-17 18:44:15 +08:00
|
|
|
/// <remarks>The <see cref="Link"/>s' <see cref="Link.Index"/> and <see cref="Link.Length"/>s are according to <see cref="DisplayContent"/></remarks>
|
2017-12-31 07:51:47 +08:00
|
|
|
public List<Link> Links;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2022-11-30 15:55:39 +08:00
|
|
|
private static long constructionOrderStatic;
|
|
|
|
private readonly long constructionOrder;
|
|
|
|
|
2017-08-21 16:43:26 +08:00
|
|
|
public Message(long? id)
|
2017-05-15 12:26:35 +08:00
|
|
|
{
|
|
|
|
Id = id;
|
2022-11-30 15:55:39 +08:00
|
|
|
|
|
|
|
constructionOrder = Interlocked.Increment(ref constructionOrderStatic);
|
2017-05-15 12:26:35 +08:00
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-08-21 16:43:26 +08:00
|
|
|
public int CompareTo(Message other)
|
|
|
|
{
|
2022-11-30 14:46:58 +08:00
|
|
|
if (Id.HasValue && other.Id.HasValue)
|
|
|
|
return Id.Value.CompareTo(other.Id.Value);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2022-11-30 15:55:39 +08:00
|
|
|
int timestampComparison = Timestamp.CompareTo(other.Timestamp);
|
|
|
|
|
|
|
|
if (timestampComparison != 0)
|
|
|
|
return timestampComparison;
|
|
|
|
|
|
|
|
// Timestamp might not be accurate enough to make a stable sorting decision.
|
|
|
|
return constructionOrder.CompareTo(other.constructionOrder);
|
2017-08-21 16:43:26 +08:00
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2022-03-08 08:20:20 +08:00
|
|
|
public virtual bool Equals(Message other)
|
|
|
|
{
|
|
|
|
if (ReferenceEquals(null, other)) return false;
|
|
|
|
if (ReferenceEquals(this, other)) return true;
|
|
|
|
|
2022-03-08 22:25:51 +08:00
|
|
|
return Id.HasValue && Id == other.Id;
|
2022-03-08 08:20:20 +08:00
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-11-20 17:55:48 +08:00
|
|
|
// ReSharper disable once ImpureMethodCallOnReadonlyValueField
|
2017-05-18 05:27:20 +08:00
|
|
|
public override int GetHashCode() => Id.GetHashCode();
|
2019-12-16 07:45:55 +08:00
|
|
|
|
2022-11-30 14:36:22 +08:00
|
|
|
public override string ToString() => $"({(Id?.ToString() ?? "null")}) {Timestamp} {Sender}: {Content}";
|
2016-08-31 18:49:34 +08:00
|
|
|
}
|
|
|
|
}
|