2017-02-07 04:59:30 +00:00
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-08-31 10:49:34 +00:00
|
|
|
|
|
|
|
using System;
|
2017-04-19 08:39:57 +00:00
|
|
|
using System.ComponentModel;
|
2016-08-31 10:49:34 +00:00
|
|
|
using Newtonsoft.Json;
|
2017-03-27 15:04:07 +00:00
|
|
|
using osu.Game.Users;
|
2016-08-31 10:49:34 +00:00
|
|
|
|
|
|
|
namespace osu.Game.Online.Chat
|
|
|
|
{
|
2017-05-17 10:02:17 +00:00
|
|
|
public class Message : IComparable<Message>, IEquatable<Message>
|
2016-08-31 10:49:34 +00:00
|
|
|
{
|
|
|
|
[JsonProperty(@"message_id")]
|
2017-04-19 09:46:26 +00:00
|
|
|
public readonly long Id;
|
2016-08-31 10:49:34 +00:00
|
|
|
|
2017-02-20 12:09:56 +00:00
|
|
|
//todo: this should be inside sender.
|
2017-04-19 10:07:38 +00:00
|
|
|
[JsonProperty(@"sender_id")]
|
2016-10-07 13:51:10 +00:00
|
|
|
public int UserId;
|
2016-08-31 10:49:34 +00:00
|
|
|
|
2017-04-19 08:39:57 +00:00
|
|
|
[JsonProperty(@"target_type")]
|
|
|
|
public TargetType TargetType;
|
|
|
|
|
|
|
|
[JsonProperty(@"target_id")]
|
|
|
|
public int TargetId;
|
2016-08-31 10:49:34 +00:00
|
|
|
|
|
|
|
[JsonProperty(@"timestamp")]
|
2016-10-13 13:42:51 +00:00
|
|
|
public DateTimeOffset Timestamp;
|
2016-08-31 10:49:34 +00:00
|
|
|
|
|
|
|
[JsonProperty(@"content")]
|
2016-09-27 10:22:22 +00:00
|
|
|
public string Content;
|
2016-08-31 10:49:34 +00:00
|
|
|
|
|
|
|
[JsonProperty(@"sender")]
|
2017-04-19 10:07:38 +00:00
|
|
|
public User Sender;
|
2016-08-31 10:49:34 +00:00
|
|
|
|
|
|
|
[JsonConstructor]
|
|
|
|
public Message()
|
|
|
|
{
|
|
|
|
}
|
2017-04-19 09:46:26 +00:00
|
|
|
|
2017-05-15 04:26:35 +00:00
|
|
|
public Message(long id)
|
|
|
|
{
|
|
|
|
Id = id;
|
|
|
|
}
|
|
|
|
|
2017-05-17 10:02:17 +00:00
|
|
|
public int CompareTo(Message other) => Id.CompareTo(other.Id);
|
2017-05-17 04:44:43 +00:00
|
|
|
|
2017-05-17 10:11:38 +00:00
|
|
|
public bool Equals(Message other) => Id == other?.Id;
|
2017-05-17 21:27:20 +00:00
|
|
|
|
|
|
|
public override int GetHashCode() => Id.GetHashCode();
|
2016-08-31 10:49:34 +00:00
|
|
|
}
|
2017-04-19 08:39:57 +00:00
|
|
|
|
|
|
|
public enum TargetType
|
|
|
|
{
|
|
|
|
[Description(@"channel")]
|
|
|
|
Channel,
|
|
|
|
[Description(@"user")]
|
|
|
|
User
|
|
|
|
}
|
2016-08-31 10:49:34 +00:00
|
|
|
}
|