1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 12:07:27 +08:00
osu-lazer/osu.Game/Online/Chat/Message.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

76 lines
2.1 KiB
C#
Raw Normal View History

// 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
2016-08-31 18:49:34 +08:00
using System;
using System.Collections.Generic;
2016-08-31 18:49:34 +08:00
using Newtonsoft.Json;
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
{
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")]
public long ChannelId;
2018-04-13 17:19:50 +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")]
public DateTimeOffset Timestamp;
2018-04-13 17:19:50 +08:00
2016-08-31 18:49:34 +08:00
[JsonProperty(@"content")]
public string Content;
2018-04-13 17:19:50 +08:00
2016-08-31 18:49:34 +08:00
[JsonProperty(@"sender")]
public APIUser Sender;
2018-04-13 17:19:50 +08:00
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>
public List<Link> Links;
2018-04-13 17:19:50 +08:00
2017-08-21 16:43:26 +08:00
public Message(long? id)
{
Id = id;
}
2018-04-13 17:19:50 +08:00
2017-08-21 16:43:26 +08:00
public int CompareTo(Message other)
{
if (!Id.HasValue)
return other.Id.HasValue ? 1 : Timestamp.CompareTo(other.Timestamp);
if (!other.Id.HasValue)
return -1;
2018-04-13 17:19:50 +08:00
2017-08-21 16:43:26 +08:00
return Id.Value.CompareTo(other.Id.Value);
}
2018-04-13 17:19:50 +08:00
public virtual bool Equals(Message other)
{
if (ReferenceEquals(null, other)) return false;
if (ReferenceEquals(this, other)) return true;
return Id.HasValue && Id == other.Id;
}
2018-04-13 17:19:50 +08:00
// ReSharper disable once ImpureMethodCallOnReadonlyValueField
2017-05-18 05:27:20 +08:00
public override int GetHashCode() => Id.GetHashCode();
public override string ToString() => $"[{ChannelId}] ({Id}) {Sender}: {Content}";
2016-08-31 18:49:34 +08:00
}
}