2021-08-27 15:03:47 +00:00
|
|
|
#nullable enable
|
2021-08-26 01:43:31 +00:00
|
|
|
using System;
|
2021-04-21 21:57:19 +00:00
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
|
2021-08-07 22:13:46 +00:00
|
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
|
2021-08-26 01:43:31 +00:00
|
|
|
using NodaTime;
|
|
|
|
|
2021-09-30 01:51:38 +00:00
|
|
|
using SqlKata;
|
|
|
|
|
2020-06-29 12:39:19 +00:00
|
|
|
namespace PluralKit.Core
|
|
|
|
{
|
|
|
|
public class SystemPatch: PatchObject
|
|
|
|
{
|
|
|
|
public Partial<string?> Name { get; set; }
|
2021-06-08 17:37:44 +00:00
|
|
|
public Partial<string?> Hid { get; set; }
|
2020-06-29 12:39:19 +00:00
|
|
|
public Partial<string?> Description { get; set; }
|
|
|
|
public Partial<string?> Tag { get; set; }
|
|
|
|
public Partial<string?> AvatarUrl { get; set; }
|
2021-08-02 17:46:12 +00:00
|
|
|
public Partial<string?> BannerImage { get; set; }
|
2021-03-28 10:02:41 +00:00
|
|
|
public Partial<string?> Color { get; set; }
|
2020-06-29 12:39:19 +00:00
|
|
|
public Partial<string?> Token { get; set; }
|
|
|
|
public Partial<string> UiTz { get; set; }
|
|
|
|
public Partial<PrivacyLevel> DescriptionPrivacy { get; set; }
|
|
|
|
public Partial<PrivacyLevel> MemberListPrivacy { get; set; }
|
2020-08-20 19:43:17 +00:00
|
|
|
public Partial<PrivacyLevel> GroupListPrivacy { get; set; }
|
2020-06-29 12:39:19 +00:00
|
|
|
public Partial<PrivacyLevel> FrontPrivacy { get; set; }
|
|
|
|
public Partial<PrivacyLevel> FrontHistoryPrivacy { get; set; }
|
|
|
|
public Partial<bool> PingsEnabled { get; set; }
|
2020-12-08 11:57:17 +00:00
|
|
|
public Partial<int?> LatchTimeout { get; set; }
|
2021-06-08 17:37:44 +00:00
|
|
|
public Partial<int?> MemberLimitOverride { get; set; }
|
|
|
|
public Partial<int?> GroupLimitOverride { get; set; }
|
2020-06-29 12:39:19 +00:00
|
|
|
|
2021-09-30 01:51:38 +00:00
|
|
|
public override Query Apply(Query q) => q.ApplyPatch(wrapper => wrapper
|
2020-06-29 12:39:19 +00:00
|
|
|
.With("name", Name)
|
2021-06-08 17:37:44 +00:00
|
|
|
.With("hid", Hid)
|
2020-06-29 12:39:19 +00:00
|
|
|
.With("description", Description)
|
|
|
|
.With("tag", Tag)
|
|
|
|
.With("avatar_url", AvatarUrl)
|
2021-08-02 17:46:12 +00:00
|
|
|
.With("banner_image", BannerImage)
|
2021-03-28 10:02:41 +00:00
|
|
|
.With("color", Color)
|
2020-06-29 12:39:19 +00:00
|
|
|
.With("token", Token)
|
|
|
|
.With("ui_tz", UiTz)
|
|
|
|
.With("description_privacy", DescriptionPrivacy)
|
|
|
|
.With("member_list_privacy", MemberListPrivacy)
|
2020-08-20 19:43:17 +00:00
|
|
|
.With("group_list_privacy", GroupListPrivacy)
|
2020-06-29 12:39:19 +00:00
|
|
|
.With("front_privacy", FrontPrivacy)
|
|
|
|
.With("front_history_privacy", FrontHistoryPrivacy)
|
2020-11-21 00:44:15 +00:00
|
|
|
.With("pings_enabled", PingsEnabled)
|
2021-06-08 17:37:44 +00:00
|
|
|
.With("latch_timeout", LatchTimeout)
|
|
|
|
.With("member_limit_override", MemberLimitOverride)
|
2021-09-30 01:51:38 +00:00
|
|
|
.With("group_limit_override", GroupLimitOverride)
|
|
|
|
);
|
2021-04-21 21:57:19 +00:00
|
|
|
|
2021-08-26 01:43:31 +00:00
|
|
|
public new void AssertIsValid()
|
2021-04-21 21:57:19 +00:00
|
|
|
{
|
2021-08-26 01:43:31 +00:00
|
|
|
if (Name.Value != null)
|
|
|
|
AssertValid(Name.Value, "name", Limits.MaxSystemNameLength);
|
|
|
|
if (Description.Value != null)
|
|
|
|
AssertValid(Description.Value, "description", Limits.MaxDescriptionLength);
|
|
|
|
if (Tag.Value != null)
|
|
|
|
AssertValid(Tag.Value, "tag", Limits.MaxSystemTagLength);
|
|
|
|
if (AvatarUrl.Value != null)
|
|
|
|
AssertValid(AvatarUrl.Value, "avatar_url", Limits.MaxUriLength,
|
|
|
|
s => MiscUtils.TryMatchUri(s, out var avatarUri));
|
|
|
|
if (BannerImage.Value != null)
|
|
|
|
AssertValid(BannerImage.Value, "banner", Limits.MaxUriLength,
|
|
|
|
s => MiscUtils.TryMatchUri(s, out var bannerUri));
|
|
|
|
if (Color.Value != null)
|
|
|
|
AssertValid(Color.Value, "color", "^[0-9a-fA-F]{6}$");
|
|
|
|
if (UiTz.IsPresent && DateTimeZoneProviders.Tzdb.GetZoneOrNull(UiTz.Value) == null)
|
|
|
|
throw new ValidationError("avatar_url");
|
2021-04-21 21:57:19 +00:00
|
|
|
}
|
|
|
|
|
2021-08-07 22:13:46 +00:00
|
|
|
public static SystemPatch FromJSON(JObject o)
|
|
|
|
{
|
|
|
|
var patch = new SystemPatch();
|
2021-08-26 01:43:31 +00:00
|
|
|
if (o.ContainsKey("name")) patch.Name = o.Value<string>("name").NullIfEmpty();
|
|
|
|
if (o.ContainsKey("description")) patch.Description = o.Value<string>("description").NullIfEmpty();
|
|
|
|
if (o.ContainsKey("tag")) patch.Tag = o.Value<string>("tag").NullIfEmpty();
|
|
|
|
if (o.ContainsKey("avatar_url")) patch.AvatarUrl = o.Value<string>("avatar_url").NullIfEmpty();
|
|
|
|
if (o.ContainsKey("banner")) patch.BannerImage = o.Value<string>("banner").NullIfEmpty();
|
2021-09-25 19:05:42 +00:00
|
|
|
if (o.ContainsKey("color")) patch.Color = o.Value<string>("color").NullIfEmpty();
|
2021-08-07 22:13:46 +00:00
|
|
|
if (o.ContainsKey("timezone")) patch.UiTz = o.Value<string>("tz") ?? "UTC";
|
|
|
|
|
|
|
|
// legacy: APIv1 uses "tz" instead of "timezone"
|
|
|
|
// todo: remove in APIv2
|
|
|
|
if (o.ContainsKey("tz")) patch.UiTz = o.Value<string>("tz") ?? "UTC";
|
2021-08-27 15:03:47 +00:00
|
|
|
|
2021-08-26 01:43:31 +00:00
|
|
|
if (o.ContainsKey("description_privacy")) patch.DescriptionPrivacy = o.ParsePrivacy("description_privacy");
|
|
|
|
if (o.ContainsKey("member_list_privacy")) patch.MemberListPrivacy = o.ParsePrivacy("member_list_privacy");
|
|
|
|
if (o.ContainsKey("front_privacy")) patch.FrontPrivacy = o.ParsePrivacy("front_privacy");
|
|
|
|
if (o.ContainsKey("front_history_privacy")) patch.FrontHistoryPrivacy = o.ParsePrivacy("front_history_privacy");
|
2021-08-07 22:13:46 +00:00
|
|
|
return patch;
|
|
|
|
}
|
2020-06-29 12:39:19 +00:00
|
|
|
}
|
|
|
|
}
|