#nullable enable using System.Text.RegularExpressions; namespace PluralKit.Core { public class GroupPatch: PatchObject { public Partial Name { get; set; } public Partial Hid { get; set; } public Partial DisplayName { get; set; } public Partial Description { get; set; } public Partial Icon { get; set; } public Partial BannerImage { get; set; } public Partial Color { get; set; } public Partial DescriptionPrivacy { get; set; } public Partial IconPrivacy { get; set; } public Partial ListPrivacy { get; set; } public Partial Visibility { get; set; } public override UpdateQueryBuilder Apply(UpdateQueryBuilder b) => b .With("name", Name) .With("hid", Hid) .With("display_name", DisplayName) .With("description", Description) .With("icon", Icon) .With("banner_image", BannerImage) .With("color", Color) .With("description_privacy", DescriptionPrivacy) .With("icon_privacy", IconPrivacy) .With("list_privacy", ListPrivacy) .With("visibility", Visibility); public new void AssertIsValid() { if (Icon.Value != null && !MiscUtils.TryMatchUri(Icon.Value, out var avatarUri)) throw new ValidationError("icon"); if (BannerImage.Value != null && !MiscUtils.TryMatchUri(BannerImage.Value, out var bannerImage)) throw new ValidationError("banner"); if (Color.Value != null && (!Regex.IsMatch(Color.Value, "^[0-9a-fA-F]{6}$"))) throw new ValidationError("color"); } } }