2021-08-27 15:03:47 +00:00
|
|
|
using Dapper.Contrib.Extensions;
|
2020-02-12 14:16:19 +00:00
|
|
|
|
|
|
|
using Newtonsoft.Json;
|
2021-08-07 22:13:46 +00:00
|
|
|
using Newtonsoft.Json.Linq;
|
2020-02-12 14:16:19 +00:00
|
|
|
|
|
|
|
using NodaTime;
|
|
|
|
|
2021-08-27 15:03:47 +00:00
|
|
|
namespace PluralKit.Core
|
|
|
|
{
|
2021-08-07 20:39:32 +00:00
|
|
|
|
|
|
|
public readonly struct SystemId: INumericId<SystemId, int>
|
|
|
|
{
|
|
|
|
public int Value { get; }
|
|
|
|
|
|
|
|
public SystemId(int value)
|
|
|
|
{
|
|
|
|
Value = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool Equals(SystemId other) => Value == other.Value;
|
|
|
|
|
|
|
|
public override bool Equals(object obj) => obj is SystemId other && Equals(other);
|
|
|
|
|
|
|
|
public override int GetHashCode() => Value;
|
|
|
|
|
|
|
|
public static bool operator ==(SystemId left, SystemId right) => left.Equals(right);
|
|
|
|
|
|
|
|
public static bool operator !=(SystemId left, SystemId right) => !left.Equals(right);
|
|
|
|
|
|
|
|
public int CompareTo(SystemId other) => Value.CompareTo(other.Value);
|
|
|
|
|
|
|
|
public override string ToString() => $"System #{Value}";
|
|
|
|
}
|
|
|
|
|
2020-02-12 14:16:19 +00:00
|
|
|
public class PKSystem
|
|
|
|
{
|
2020-06-14 19:37:04 +00:00
|
|
|
[Key] public SystemId Id { get; }
|
2020-06-13 11:11:08 +00:00
|
|
|
public string Hid { get; }
|
2020-06-29 12:39:19 +00:00
|
|
|
public string Name { get; }
|
|
|
|
public string Description { get; }
|
|
|
|
public string Tag { get; }
|
|
|
|
public string AvatarUrl { get; }
|
2021-08-02 17:46:12 +00:00
|
|
|
public string BannerImage { get; }
|
2021-03-28 10:02:41 +00:00
|
|
|
public string Color { get; }
|
2020-06-29 12:39:19 +00:00
|
|
|
public string Token { get; }
|
2020-06-13 11:11:08 +00:00
|
|
|
public Instant Created { get; }
|
2020-06-13 11:06:41 +00:00
|
|
|
public string UiTz { get; set; }
|
2020-06-29 12:39:19 +00:00
|
|
|
public bool PingsEnabled { get; }
|
2020-12-08 11:57:17 +00:00
|
|
|
public int? LatchTimeout { get; }
|
2021-08-27 15:03:47 +00:00
|
|
|
public PrivacyLevel DescriptionPrivacy { get; }
|
|
|
|
public PrivacyLevel MemberListPrivacy { get; }
|
2020-06-29 12:39:19 +00:00
|
|
|
public PrivacyLevel FrontPrivacy { get; }
|
|
|
|
public PrivacyLevel FrontHistoryPrivacy { get; }
|
2020-08-20 19:43:17 +00:00
|
|
|
public PrivacyLevel GroupListPrivacy { get; }
|
2020-10-09 10:18:29 +00:00
|
|
|
public int? MemberLimitOverride { get; }
|
|
|
|
public int? GroupLimitOverride { get; }
|
2021-08-27 15:03:47 +00:00
|
|
|
|
2020-02-12 14:16:19 +00:00
|
|
|
[JsonIgnore] public DateTimeZone Zone => DateTimeZoneProviders.Tzdb.GetZoneOrNull(UiTz);
|
|
|
|
}
|
2020-08-05 18:24:51 +00:00
|
|
|
|
|
|
|
public static class PKSystemExt
|
|
|
|
{
|
|
|
|
public static string DescriptionFor(this PKSystem system, LookupContext ctx) =>
|
|
|
|
system.DescriptionPrivacy.Get(ctx, system.Description);
|
2021-08-07 22:13:46 +00:00
|
|
|
|
|
|
|
public static JObject ToJson(this PKSystem system, LookupContext ctx)
|
|
|
|
{
|
|
|
|
var o = new JObject();
|
|
|
|
o.Add("id", system.Hid);
|
|
|
|
o.Add("name", system.Name);
|
|
|
|
o.Add("description", system.DescriptionFor(ctx));
|
|
|
|
o.Add("tag", system.Tag);
|
|
|
|
o.Add("avatar_url", system.AvatarUrl.TryGetCleanCdnUrl());
|
|
|
|
o.Add("banner", system.DescriptionPrivacy.Get(ctx, system.BannerImage).TryGetCleanCdnUrl());
|
2021-09-25 19:05:42 +00:00
|
|
|
o.Add("color", system.Color);
|
2021-08-07 22:13:46 +00:00
|
|
|
o.Add("created", system.Created.FormatExport());
|
|
|
|
// todo: change this to "timezone"
|
|
|
|
o.Add("tz", system.UiTz);
|
|
|
|
// todo: just don't include these if not ByOwner
|
|
|
|
o.Add("description_privacy", ctx == LookupContext.ByOwner ? system.DescriptionPrivacy.ToJsonString() : null);
|
|
|
|
o.Add("member_list_privacy", ctx == LookupContext.ByOwner ? system.MemberListPrivacy.ToJsonString() : null);
|
|
|
|
o.Add("front_privacy", ctx == LookupContext.ByOwner ? system.FrontPrivacy.ToJsonString() : null);
|
|
|
|
o.Add("front_history_privacy", ctx == LookupContext.ByOwner ? system.FrontHistoryPrivacy.ToJsonString() : null);
|
|
|
|
return o;
|
|
|
|
}
|
2020-08-05 18:24:51 +00:00
|
|
|
}
|
2021-08-27 15:03:47 +00:00
|
|
|
}
|