2021-08-27 15:03:47 +00:00
|
|
|
#nullable enable
|
2021-09-22 01:42:41 +00:00
|
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
|
2021-09-30 01:51:38 +00:00
|
|
|
using SqlKata;
|
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
namespace PluralKit.Core;
|
|
|
|
|
|
|
|
public class GroupPatch: PatchObject
|
2020-06-29 21:51:12 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +00:00
|
|
|
public Partial<string> Name { get; set; }
|
|
|
|
public Partial<string> Hid { get; set; }
|
|
|
|
public Partial<string?> DisplayName { get; set; }
|
|
|
|
public Partial<string?> Description { get; set; }
|
|
|
|
public Partial<string?> Icon { get; set; }
|
|
|
|
public Partial<string?> BannerImage { get; set; }
|
|
|
|
public Partial<string?> Color { get; set; }
|
|
|
|
|
2022-01-15 03:30:02 +00:00
|
|
|
public Partial<PrivacyLevel> NamePrivacy { get; set; }
|
2021-11-27 02:10:56 +00:00
|
|
|
public Partial<PrivacyLevel> DescriptionPrivacy { get; set; }
|
|
|
|
public Partial<PrivacyLevel> IconPrivacy { get; set; }
|
|
|
|
public Partial<PrivacyLevel> ListPrivacy { get; set; }
|
2022-01-15 03:30:02 +00:00
|
|
|
public Partial<PrivacyLevel> MetadataPrivacy { get; set; }
|
2021-11-27 02:10:56 +00:00
|
|
|
public Partial<PrivacyLevel> Visibility { get; set; }
|
|
|
|
|
|
|
|
public override Query Apply(Query q) => q.ApplyPatch(wrapper => wrapper
|
|
|
|
.With("name", Name)
|
|
|
|
.With("hid", Hid)
|
|
|
|
.With("display_name", DisplayName)
|
|
|
|
.With("description", Description)
|
|
|
|
.With("icon", Icon)
|
|
|
|
.With("banner_image", BannerImage)
|
|
|
|
.With("color", Color)
|
2022-01-15 03:30:02 +00:00
|
|
|
.With("name_privacy", NamePrivacy)
|
2021-11-27 02:10:56 +00:00
|
|
|
.With("description_privacy", DescriptionPrivacy)
|
|
|
|
.With("icon_privacy", IconPrivacy)
|
|
|
|
.With("list_privacy", ListPrivacy)
|
2022-01-15 03:30:02 +00:00
|
|
|
.With("metadata_privacy", MetadataPrivacy)
|
2021-11-27 02:10:56 +00:00
|
|
|
.With("visibility", Visibility)
|
|
|
|
);
|
|
|
|
|
|
|
|
public new void AssertIsValid()
|
2020-06-29 21:51:12 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +00:00
|
|
|
if (Name.Value != null)
|
|
|
|
AssertValid(Name.Value, "name", Limits.MaxGroupNameLength);
|
|
|
|
if (DisplayName.Value != null)
|
|
|
|
AssertValid(DisplayName.Value, "display_name", Limits.MaxGroupNameLength);
|
|
|
|
if (Description.Value != null)
|
|
|
|
AssertValid(Description.Value, "description", Limits.MaxDescriptionLength);
|
|
|
|
if (Icon.Value != null)
|
|
|
|
AssertValid(Icon.Value, "icon", 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}$");
|
|
|
|
}
|
|
|
|
#nullable disable
|
|
|
|
|
|
|
|
public static GroupPatch FromJson(JObject o)
|
|
|
|
{
|
|
|
|
var patch = new GroupPatch();
|
|
|
|
|
|
|
|
if (o.ContainsKey("name"))
|
2021-04-21 21:57:19 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +00:00
|
|
|
patch.Name = o.Value<string>("name").NullIfEmpty();
|
|
|
|
if (patch.Name.Value == null)
|
|
|
|
patch.Errors.Add(new ValidationError("name", "Group name can not be set to null."));
|
2021-04-21 21:57:19 +00:00
|
|
|
}
|
2021-09-22 01:42:41 +00:00
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
if (o.ContainsKey("display_name")) patch.DisplayName = o.Value<string>("display_name").NullIfEmpty();
|
|
|
|
if (o.ContainsKey("description")) patch.Description = o.Value<string>("description").NullIfEmpty();
|
|
|
|
if (o.ContainsKey("icon")) patch.Icon = o.Value<string>("icon").NullIfEmpty();
|
|
|
|
if (o.ContainsKey("banner")) patch.BannerImage = o.Value<string>("banner").NullIfEmpty();
|
|
|
|
if (o.ContainsKey("color")) patch.Color = o.Value<string>("color").NullIfEmpty()?.ToLower();
|
|
|
|
|
|
|
|
if (o.ContainsKey("privacy") && o["privacy"].Type != JTokenType.Null)
|
2021-09-22 01:42:41 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +00:00
|
|
|
var privacy = o.Value<JObject>("privacy");
|
2021-09-22 01:42:41 +00:00
|
|
|
|
2022-01-15 03:30:02 +00:00
|
|
|
if (privacy.ContainsKey("name_privacy"))
|
|
|
|
patch.NamePrivacy = patch.ParsePrivacy(privacy, "name_privacy");
|
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
if (privacy.ContainsKey("description_privacy"))
|
|
|
|
patch.DescriptionPrivacy = patch.ParsePrivacy(privacy, "description_privacy");
|
2021-09-22 01:42:41 +00:00
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
if (privacy.ContainsKey("icon_privacy"))
|
|
|
|
patch.IconPrivacy = patch.ParsePrivacy(privacy, "icon_privacy");
|
2021-09-22 01:42:41 +00:00
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
if (privacy.ContainsKey("list_privacy"))
|
|
|
|
patch.ListPrivacy = patch.ParsePrivacy(privacy, "list_privacy");
|
2021-04-21 21:57:19 +00:00
|
|
|
|
2022-01-15 03:30:02 +00:00
|
|
|
if (privacy.ContainsKey("metadata_privacy"))
|
|
|
|
patch.MetadataPrivacy = patch.ParsePrivacy(privacy, "metadata_privacy");
|
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
if (privacy.ContainsKey("visibility"))
|
|
|
|
patch.Visibility = patch.ParsePrivacy(privacy, "visibility");
|
|
|
|
}
|
2021-09-22 01:42:41 +00:00
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
return patch;
|
|
|
|
}
|
2021-09-22 01:42:41 +00:00
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
public JObject ToJson()
|
|
|
|
{
|
|
|
|
var o = new JObject();
|
|
|
|
|
|
|
|
if (Name.IsPresent)
|
|
|
|
o.Add("name", Name.Value);
|
|
|
|
if (Hid.IsPresent)
|
|
|
|
o.Add("id", Hid.Value);
|
|
|
|
if (DisplayName.IsPresent)
|
|
|
|
o.Add("display_name", DisplayName.Value);
|
|
|
|
if (Description.IsPresent)
|
|
|
|
o.Add("description", Description.Value);
|
|
|
|
if (Icon.IsPresent)
|
|
|
|
o.Add("icon", Icon.Value);
|
|
|
|
if (BannerImage.IsPresent)
|
|
|
|
o.Add("banner", BannerImage.Value);
|
|
|
|
if (Color.IsPresent)
|
|
|
|
o.Add("color", Color.Value);
|
|
|
|
|
|
|
|
if (
|
2022-01-15 03:30:02 +00:00
|
|
|
NamePrivacy.IsPresent
|
|
|
|
|| DescriptionPrivacy.IsPresent
|
2021-11-27 02:10:56 +00:00
|
|
|
|| IconPrivacy.IsPresent
|
|
|
|
|| ListPrivacy.IsPresent
|
2022-01-15 03:30:02 +00:00
|
|
|
|| MetadataPrivacy.IsPresent
|
2021-11-27 02:10:56 +00:00
|
|
|
|| Visibility.IsPresent
|
|
|
|
)
|
|
|
|
{
|
|
|
|
var p = new JObject();
|
2021-09-22 01:42:41 +00:00
|
|
|
|
2022-01-15 03:30:02 +00:00
|
|
|
if (NamePrivacy.IsPresent)
|
|
|
|
p.Add("name_privacy", NamePrivacy.Value.ToJsonString());
|
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
if (DescriptionPrivacy.IsPresent)
|
|
|
|
p.Add("description_privacy", DescriptionPrivacy.Value.ToJsonString());
|
2021-09-22 01:42:41 +00:00
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
if (IconPrivacy.IsPresent)
|
|
|
|
p.Add("icon_privacy", IconPrivacy.Value.ToJsonString());
|
2021-11-02 10:08:17 +00:00
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
if (ListPrivacy.IsPresent)
|
|
|
|
p.Add("list_privacy", ListPrivacy.Value.ToJsonString());
|
|
|
|
|
2022-01-15 03:30:02 +00:00
|
|
|
if (MetadataPrivacy.IsPresent)
|
|
|
|
p.Add("metadata_privacy", MetadataPrivacy.Value.ToJsonString());
|
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
if (Visibility.IsPresent)
|
|
|
|
p.Add("visibility", Visibility.Value.ToJsonString());
|
|
|
|
|
|
|
|
o.Add("privacy", p);
|
2021-11-02 10:08:17 +00:00
|
|
|
}
|
2021-11-27 02:10:56 +00:00
|
|
|
|
|
|
|
return o;
|
2020-06-29 21:51:12 +00:00
|
|
|
}
|
|
|
|
}
|