2020-02-12 14:16:19 +00:00
|
|
|
|
using Dapper.Contrib.Extensions;
|
|
|
|
|
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
|
|
using NodaTime;
|
|
|
|
|
|
2021-08-07 20:39:32 +00:00
|
|
|
|
|
|
|
|
|
|
2020-02-12 14:16:19 +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
|
|
|
|
|
{
|
|
|
|
|
// Additions here should be mirrored in SystemStore::Save
|
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; }
|
2020-06-29 12:39:19 +00:00
|
|
|
|
public PrivacyLevel DescriptionPrivacy { get; }
|
|
|
|
|
public PrivacyLevel MemberListPrivacy { get;}
|
|
|
|
|
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; }
|
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);
|
|
|
|
|
}
|
2020-03-21 13:04:41 +00:00
|
|
|
|
}
|