79 lines
No EOL
2.4 KiB
C#
79 lines
No EOL
2.4 KiB
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
|
|
namespace Iceshrimp.Backend.Core.Database.Tables;
|
|
|
|
[Table("registry_item")]
|
|
[Index(nameof(Domain))]
|
|
[Index(nameof(Scope))]
|
|
[Index(nameof(UserId))]
|
|
public class RegistryItem
|
|
{
|
|
[Key]
|
|
[Column("id")]
|
|
[StringLength(32)]
|
|
public string Id { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// The created date of the RegistryItem.
|
|
/// </summary>
|
|
[Column("createdAt")]
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
/// <summary>
|
|
/// The updated date of the RegistryItem.
|
|
/// </summary>
|
|
[Column("updatedAt")]
|
|
public DateTime UpdatedAt { get; set; }
|
|
|
|
/// <summary>
|
|
/// The owner ID.
|
|
/// </summary>
|
|
[Column("userId")]
|
|
[StringLength(32)]
|
|
public string UserId { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// The key of the RegistryItem.
|
|
/// </summary>
|
|
[Column("key")]
|
|
[StringLength(1024)]
|
|
public string Key { get; set; } = null!;
|
|
|
|
[Column("scope", TypeName = "character varying(1024)[]")]
|
|
public List<string> Scope { get; set; } = null!;
|
|
|
|
[Column("domain")] [StringLength(512)] public string? Domain { get; set; }
|
|
|
|
/// <summary>
|
|
/// The value of the RegistryItem.
|
|
/// </summary>
|
|
//TODO: refactor this column (it's currently a Nullable<any>, which is terrible)
|
|
[Column("value", TypeName = "jsonb")]
|
|
public string? Value { get; set; }
|
|
|
|
[ForeignKey(nameof(UserId))]
|
|
[InverseProperty(nameof(Tables.User.RegistryItems))]
|
|
public virtual User User { get; set; } = null!;
|
|
|
|
private class EntityTypeConfiguration : IEntityTypeConfiguration<RegistryItem>
|
|
{
|
|
public void Configure(EntityTypeBuilder<RegistryItem> entity)
|
|
{
|
|
entity.Property(e => e.CreatedAt).HasComment("The created date of the RegistryItem.");
|
|
entity.Property(e => e.Key).HasComment("The key of the RegistryItem.");
|
|
entity.Property(e => e.Scope).HasDefaultValueSql("'{}'::character varying[]");
|
|
entity.Property(e => e.UpdatedAt).HasComment("The updated date of the RegistryItem.");
|
|
entity.Property(e => e.UserId).HasComment("The owner ID.");
|
|
entity.Property(e => e.Value)
|
|
.HasDefaultValueSql("'{}'::jsonb")
|
|
.HasComment("The value of the RegistryItem.");
|
|
|
|
entity.HasOne(d => d.User)
|
|
.WithMany(p => p.RegistryItems)
|
|
.OnDelete(DeleteBehavior.Cascade);
|
|
}
|
|
}
|
|
} |