Fix runtime
This commit is contained in:
@@ -1,10 +1,13 @@
|
|||||||
namespace Hutopy.Web.Common.BlobStorage;
|
using System.Text;
|
||||||
|
|
||||||
|
namespace Hutopy.Web.Common.BlobStorage;
|
||||||
|
|
||||||
public static class ContentTypes
|
public static class ContentTypes
|
||||||
{
|
{
|
||||||
private const string ImagePng = "image/png";
|
private const string ImagePng = "image/png";
|
||||||
private const string ImageJpeg = "image/jpeg";
|
private const string ImageJpeg = "image/jpeg";
|
||||||
private const string ImageJpg = "image/jpg";
|
private const string ImageJpg = "image/jpg";
|
||||||
|
private static string TextHtml = "text/html";
|
||||||
|
|
||||||
private static readonly HashSet<string> AllowedContentTypes = [ImagePng, ImageJpeg, ImageJpg];
|
private static readonly HashSet<string> AllowedContentTypes = [ImagePng, ImageJpeg, ImageJpg];
|
||||||
|
|
||||||
@@ -18,8 +21,8 @@ public static class ContentTypes
|
|||||||
private static bool IsValidFileType(
|
private static bool IsValidFileType(
|
||||||
Stream fileStream)
|
Stream fileStream)
|
||||||
{
|
{
|
||||||
byte[] buffer = new byte[4];
|
byte[] buffer = new byte[512];
|
||||||
fileStream.Read(buffer, 0, buffer.Length);
|
_ = fileStream.Read(buffer, 0, buffer.Length);
|
||||||
fileStream.Position = 0;
|
fileStream.Position = 0;
|
||||||
|
|
||||||
// PNG file signature: 89 50 4E 47 (in hex)
|
// PNG file signature: 89 50 4E 47 (in hex)
|
||||||
@@ -33,6 +36,13 @@ public static class ContentTypes
|
|||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Check for HTML content by looking for "<!DOCTYPE html>" or "<html>" tags
|
||||||
|
string content = Encoding.UTF8.GetString(buffer);
|
||||||
|
if (content.Contains("<!DOCTYPE html>"))
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ public class Content
|
|||||||
public DateTimeOffset? DeletedAt { get; set; }
|
public DateTimeOffset? DeletedAt { get; set; }
|
||||||
[MaxLength(128)] public required string Title { get; set; }
|
[MaxLength(128)] public required string Title { get; set; }
|
||||||
[MaxLength(2048)] public string Description { get; set; } = "";
|
[MaxLength(2048)] public string Description { get; set; } = "";
|
||||||
public string? HtmlFileUrl { get; set; } = "";
|
[MaxLength(2048)] public string? HtmlFileUrl { get; set; } = "";
|
||||||
public IList<ContentReaction> Reactions { get; set; } = new List<ContentReaction>();
|
public IList<ContentReaction> Reactions { get; set; } = new List<ContentReaction>();
|
||||||
public string[]? Urls { get; init; }
|
public string[]? Urls { get; init; }
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,7 +8,6 @@ public class ContentDbContext(
|
|||||||
|
|
||||||
public DbSet<Content> Contents => Set<Content>();
|
public DbSet<Content> Contents => Set<Content>();
|
||||||
public DbSet<Creator> Creators => Set<Creator>();
|
public DbSet<Creator> Creators => Set<Creator>();
|
||||||
public DbSet<Follower> Followers => Set<Follower>();
|
|
||||||
|
|
||||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||||
{
|
{
|
||||||
@@ -31,16 +30,6 @@ public class ContentDbContext(
|
|||||||
.OwnsMany(c => c.Reactions)
|
.OwnsMany(c => c.Reactions)
|
||||||
.ToTable("Reactions");
|
.ToTable("Reactions");
|
||||||
|
|
||||||
modelBuilder
|
|
||||||
.Entity<Follower>()
|
|
||||||
.HasOne(c => c.Creator)
|
|
||||||
.WithMany()
|
|
||||||
.HasForeignKey(c => c.CreatorId);
|
|
||||||
|
|
||||||
modelBuilder
|
|
||||||
.Entity<Follower>()
|
|
||||||
.HasKey(s => new { s.CreatedBy, s.CreatorId });
|
|
||||||
|
|
||||||
modelBuilder
|
modelBuilder
|
||||||
.Entity<Creator>()
|
.Entity<Creator>()
|
||||||
.OwnsOne<Socials>(x => x.Socials)
|
.OwnsOne<Socials>(x => x.Socials)
|
||||||
|
|||||||
@@ -1,9 +0,0 @@
|
|||||||
namespace Hutopy.Web.Features.Contents.Data;
|
|
||||||
|
|
||||||
public class Follower
|
|
||||||
{
|
|
||||||
public Guid CreatedBy { get; init; }
|
|
||||||
public DateTimeOffset CreatedAt { get; init; }
|
|
||||||
public Guid CreatorId { get; init; }
|
|
||||||
public Creator? Creator { get; set; }
|
|
||||||
}
|
|
||||||
@@ -1,258 +0,0 @@
|
|||||||
// <auto-generated />
|
|
||||||
using System;
|
|
||||||
using Hutopy.Web.Features.Contents.Data;
|
|
||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
||||||
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
||||||
|
|
||||||
#nullable disable
|
|
||||||
|
|
||||||
namespace Hutopy.Web.Features.Contents.Migrations
|
|
||||||
{
|
|
||||||
[DbContext(typeof(ContentDbContext))]
|
|
||||||
[Migration("20240806065219_Initial")]
|
|
||||||
partial class Initial
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
||||||
{
|
|
||||||
#pragma warning disable 612, 618
|
|
||||||
modelBuilder
|
|
||||||
.HasDefaultSchema("Content")
|
|
||||||
.HasAnnotation("ProductVersion", "8.0.4")
|
|
||||||
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
|
||||||
|
|
||||||
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Content", b =>
|
|
||||||
{
|
|
||||||
b.Property<Guid>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<DateTimeOffset>("CreatedAt")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("timestamp with time zone")
|
|
||||||
.HasDefaultValueSql("CURRENT_TIMESTAMP");
|
|
||||||
|
|
||||||
b.Property<Guid>("CreatedBy")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<string>("Description")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(2048)
|
|
||||||
.HasColumnType("character varying(2048)");
|
|
||||||
|
|
||||||
b.Property<string>("Title")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(128)
|
|
||||||
.HasColumnType("character varying(128)");
|
|
||||||
|
|
||||||
b.Property<string[]>("Urls")
|
|
||||||
.HasColumnType("text[]");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.HasIndex("CreatedBy");
|
|
||||||
|
|
||||||
b.ToTable("Contents", "Content");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Creator", b =>
|
|
||||||
{
|
|
||||||
b.Property<Guid>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<DateTimeOffset>("CreatedAt")
|
|
||||||
.HasColumnType("timestamp with time zone");
|
|
||||||
|
|
||||||
b.Property<Guid>("CreatedBy")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<string>("Name")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Creators", "Content");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Subscription", b =>
|
|
||||||
{
|
|
||||||
b.Property<Guid>("CreatedBy")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<DateTimeOffset>("CreatedAt")
|
|
||||||
.HasColumnType("timestamp with time zone");
|
|
||||||
|
|
||||||
b.HasKey("CreatedBy", "CreatorId");
|
|
||||||
|
|
||||||
b.HasIndex("CreatorId");
|
|
||||||
|
|
||||||
b.ToTable("Subscriptions", "Content");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Content", b =>
|
|
||||||
{
|
|
||||||
b.HasOne("Hutopy.Web.Features.Contents.Data.Creator", "Creator")
|
|
||||||
.WithMany()
|
|
||||||
.HasForeignKey("CreatedBy")
|
|
||||||
.OnDelete(DeleteBehavior.Cascade)
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.Navigation("Creator");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Creator", b =>
|
|
||||||
{
|
|
||||||
b.OwnsOne("Hutopy.Web.Features.Contents.Data.About", "About", b1 =>
|
|
||||||
{
|
|
||||||
b1.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<string>("Description")
|
|
||||||
.HasMaxLength(2048)
|
|
||||||
.HasColumnType("character varying(2048)");
|
|
||||||
|
|
||||||
b1.Property<string>("Title")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.HasKey("CreatorId");
|
|
||||||
|
|
||||||
b1.ToTable("Creators", "Content");
|
|
||||||
|
|
||||||
b1.WithOwner()
|
|
||||||
.HasForeignKey("CreatorId");
|
|
||||||
});
|
|
||||||
|
|
||||||
b.OwnsOne("Hutopy.Web.Features.Contents.Data.Colors", "Colors", b1 =>
|
|
||||||
{
|
|
||||||
b1.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<string>("Accent")
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("BannerBottom")
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("BannerTop")
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("Menu")
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.HasKey("CreatorId");
|
|
||||||
|
|
||||||
b1.ToTable("Colors", "Content");
|
|
||||||
|
|
||||||
b1.WithOwner()
|
|
||||||
.HasForeignKey("CreatorId");
|
|
||||||
});
|
|
||||||
|
|
||||||
b.OwnsOne("Hutopy.Web.Features.Contents.Data.Images", "Images", b1 =>
|
|
||||||
{
|
|
||||||
b1.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<string>("Banner")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("Logo")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.HasKey("CreatorId");
|
|
||||||
|
|
||||||
b1.ToTable("Images", "Content");
|
|
||||||
|
|
||||||
b1.WithOwner()
|
|
||||||
.HasForeignKey("CreatorId");
|
|
||||||
});
|
|
||||||
|
|
||||||
b.OwnsOne("Hutopy.Web.Features.Contents.Data.Socials", "Socials", b1 =>
|
|
||||||
{
|
|
||||||
b1.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<string>("FacebookUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("InstagramUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("LinkedInUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("RedditUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("TikTokUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("WebsiteUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("XUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("YoutubeUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.HasKey("CreatorId");
|
|
||||||
|
|
||||||
b1.ToTable("Socials", "Content");
|
|
||||||
|
|
||||||
b1.WithOwner()
|
|
||||||
.HasForeignKey("CreatorId");
|
|
||||||
});
|
|
||||||
|
|
||||||
b.Navigation("About")
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.Navigation("Colors")
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.Navigation("Images")
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.Navigation("Socials")
|
|
||||||
.IsRequired();
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Subscription", b =>
|
|
||||||
{
|
|
||||||
b.HasOne("Hutopy.Web.Features.Contents.Data.Creator", "Creator")
|
|
||||||
.WithMany()
|
|
||||||
.HasForeignKey("CreatorId")
|
|
||||||
.OnDelete(DeleteBehavior.Cascade)
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.Navigation("Creator");
|
|
||||||
});
|
|
||||||
#pragma warning restore 612, 618
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,264 +0,0 @@
|
|||||||
// <auto-generated />
|
|
||||||
using System;
|
|
||||||
using Hutopy.Web.Features.Contents.Data;
|
|
||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
||||||
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
||||||
|
|
||||||
#nullable disable
|
|
||||||
|
|
||||||
namespace Hutopy.Web.Features.Contents.Migrations
|
|
||||||
{
|
|
||||||
[DbContext(typeof(ContentDbContext))]
|
|
||||||
[Migration("20240816212531_AddsSoftDelete")]
|
|
||||||
partial class AddsSoftDelete
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
||||||
{
|
|
||||||
#pragma warning disable 612, 618
|
|
||||||
modelBuilder
|
|
||||||
.HasDefaultSchema("Content")
|
|
||||||
.HasAnnotation("ProductVersion", "8.0.4")
|
|
||||||
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
|
||||||
|
|
||||||
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Content", b =>
|
|
||||||
{
|
|
||||||
b.Property<Guid>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<DateTimeOffset>("CreatedAt")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("timestamp with time zone")
|
|
||||||
.HasDefaultValueSql("CURRENT_TIMESTAMP");
|
|
||||||
|
|
||||||
b.Property<Guid>("CreatedBy")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<Guid?>("DeletedBy")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<DateTimeOffset?>("DeletedAt")
|
|
||||||
.HasColumnType("timestamp with time zone");
|
|
||||||
|
|
||||||
b.Property<string>("Description")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(2048)
|
|
||||||
.HasColumnType("character varying(2048)");
|
|
||||||
|
|
||||||
b.Property<string>("Title")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(128)
|
|
||||||
.HasColumnType("character varying(128)");
|
|
||||||
|
|
||||||
b.Property<string[]>("Urls")
|
|
||||||
.HasColumnType("text[]");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.HasIndex("CreatedBy");
|
|
||||||
|
|
||||||
b.ToTable("Contents", "Content");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Creator", b =>
|
|
||||||
{
|
|
||||||
b.Property<Guid>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<DateTimeOffset>("CreatedAt")
|
|
||||||
.HasColumnType("timestamp with time zone");
|
|
||||||
|
|
||||||
b.Property<Guid>("CreatedBy")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<string>("Name")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Creators", "Content");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Subscription", b =>
|
|
||||||
{
|
|
||||||
b.Property<Guid>("CreatedBy")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<DateTimeOffset>("CreatedAt")
|
|
||||||
.HasColumnType("timestamp with time zone");
|
|
||||||
|
|
||||||
b.HasKey("CreatedBy", "CreatorId");
|
|
||||||
|
|
||||||
b.HasIndex("CreatorId");
|
|
||||||
|
|
||||||
b.ToTable("Subscriptions", "Content");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Content", b =>
|
|
||||||
{
|
|
||||||
b.HasOne("Hutopy.Web.Features.Contents.Data.Creator", "Creator")
|
|
||||||
.WithMany()
|
|
||||||
.HasForeignKey("CreatedBy")
|
|
||||||
.OnDelete(DeleteBehavior.Cascade)
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.Navigation("Creator");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Creator", b =>
|
|
||||||
{
|
|
||||||
b.OwnsOne("Hutopy.Web.Features.Contents.Data.About", "About", b1 =>
|
|
||||||
{
|
|
||||||
b1.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<string>("Description")
|
|
||||||
.HasMaxLength(2048)
|
|
||||||
.HasColumnType("character varying(2048)");
|
|
||||||
|
|
||||||
b1.Property<string>("Title")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.HasKey("CreatorId");
|
|
||||||
|
|
||||||
b1.ToTable("Creators", "Content");
|
|
||||||
|
|
||||||
b1.WithOwner()
|
|
||||||
.HasForeignKey("CreatorId");
|
|
||||||
});
|
|
||||||
|
|
||||||
b.OwnsOne("Hutopy.Web.Features.Contents.Data.Colors", "Colors", b1 =>
|
|
||||||
{
|
|
||||||
b1.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<string>("Accent")
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("BannerBottom")
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("BannerTop")
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("Menu")
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.HasKey("CreatorId");
|
|
||||||
|
|
||||||
b1.ToTable("Colors", "Content");
|
|
||||||
|
|
||||||
b1.WithOwner()
|
|
||||||
.HasForeignKey("CreatorId");
|
|
||||||
});
|
|
||||||
|
|
||||||
b.OwnsOne("Hutopy.Web.Features.Contents.Data.Images", "Images", b1 =>
|
|
||||||
{
|
|
||||||
b1.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<string>("Banner")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("Logo")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.HasKey("CreatorId");
|
|
||||||
|
|
||||||
b1.ToTable("Images", "Content");
|
|
||||||
|
|
||||||
b1.WithOwner()
|
|
||||||
.HasForeignKey("CreatorId");
|
|
||||||
});
|
|
||||||
|
|
||||||
b.OwnsOne("Hutopy.Web.Features.Contents.Data.Socials", "Socials", b1 =>
|
|
||||||
{
|
|
||||||
b1.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<string>("FacebookUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("InstagramUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("LinkedInUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("RedditUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("TikTokUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("WebsiteUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("XUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("YoutubeUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.HasKey("CreatorId");
|
|
||||||
|
|
||||||
b1.ToTable("Socials", "Content");
|
|
||||||
|
|
||||||
b1.WithOwner()
|
|
||||||
.HasForeignKey("CreatorId");
|
|
||||||
});
|
|
||||||
|
|
||||||
b.Navigation("About")
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.Navigation("Colors")
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.Navigation("Images")
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.Navigation("Socials")
|
|
||||||
.IsRequired();
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Subscription", b =>
|
|
||||||
{
|
|
||||||
b.HasOne("Hutopy.Web.Features.Contents.Data.Creator", "Creator")
|
|
||||||
.WithMany()
|
|
||||||
.HasForeignKey("CreatorId")
|
|
||||||
.OnDelete(DeleteBehavior.Cascade)
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.Navigation("Creator");
|
|
||||||
});
|
|
||||||
#pragma warning restore 612, 618
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,43 +0,0 @@
|
|||||||
using System;
|
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
|
|
||||||
#nullable disable
|
|
||||||
|
|
||||||
namespace Hutopy.Web.Features.Contents.Migrations
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
public partial class AddsSoftDelete : Migration
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
protected override void Up(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.AddColumn<Guid>(
|
|
||||||
name: "DeletedBy",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Contents",
|
|
||||||
type: "uuid",
|
|
||||||
nullable: true);
|
|
||||||
|
|
||||||
migrationBuilder.AddColumn<DateTimeOffset>(
|
|
||||||
name: "DeletedAt",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Contents",
|
|
||||||
type: "timestamp with time zone",
|
|
||||||
nullable: true);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
protected override void Down(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.DropColumn(
|
|
||||||
name: "DeletedBy",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Contents");
|
|
||||||
|
|
||||||
migrationBuilder.DropColumn(
|
|
||||||
name: "DeletedAt",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Contents");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,296 +0,0 @@
|
|||||||
// <auto-generated />
|
|
||||||
using System;
|
|
||||||
using Hutopy.Web.Features.Contents.Data;
|
|
||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
||||||
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
||||||
|
|
||||||
#nullable disable
|
|
||||||
|
|
||||||
namespace Hutopy.Web.Features.Contents.Migrations
|
|
||||||
{
|
|
||||||
[DbContext(typeof(ContentDbContext))]
|
|
||||||
[Migration("20240824185551_AddReactionToContent")]
|
|
||||||
partial class AddReactionToContent
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
||||||
{
|
|
||||||
#pragma warning disable 612, 618
|
|
||||||
modelBuilder
|
|
||||||
.HasDefaultSchema("Content")
|
|
||||||
.HasAnnotation("ProductVersion", "8.0.4")
|
|
||||||
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
|
||||||
|
|
||||||
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Content", b =>
|
|
||||||
{
|
|
||||||
b.Property<Guid>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<DateTimeOffset>("CreatedAt")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("timestamp with time zone")
|
|
||||||
.HasDefaultValueSql("CURRENT_TIMESTAMP");
|
|
||||||
|
|
||||||
b.Property<Guid>("CreatedBy")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<DateTimeOffset?>("DeletedAt")
|
|
||||||
.HasColumnType("timestamp with time zone");
|
|
||||||
|
|
||||||
b.Property<Guid?>("DeletedBy")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<string>("Description")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(2048)
|
|
||||||
.HasColumnType("character varying(2048)");
|
|
||||||
|
|
||||||
b.Property<string>("Title")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(128)
|
|
||||||
.HasColumnType("character varying(128)");
|
|
||||||
|
|
||||||
b.Property<string[]>("Urls")
|
|
||||||
.HasColumnType("text[]");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.HasIndex("CreatedBy");
|
|
||||||
|
|
||||||
b.ToTable("Contents", "Content");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Creator", b =>
|
|
||||||
{
|
|
||||||
b.Property<Guid>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<DateTimeOffset>("CreatedAt")
|
|
||||||
.HasColumnType("timestamp with time zone");
|
|
||||||
|
|
||||||
b.Property<Guid>("CreatedBy")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<string>("Name")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Creators", "Content");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Subscription", b =>
|
|
||||||
{
|
|
||||||
b.Property<Guid>("CreatedBy")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<DateTimeOffset>("CreatedAt")
|
|
||||||
.HasColumnType("timestamp with time zone");
|
|
||||||
|
|
||||||
b.HasKey("CreatedBy", "CreatorId");
|
|
||||||
|
|
||||||
b.HasIndex("CreatorId");
|
|
||||||
|
|
||||||
b.ToTable("Subscriptions", "Content");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Content", b =>
|
|
||||||
{
|
|
||||||
b.HasOne("Hutopy.Web.Features.Contents.Data.Creator", "Creator")
|
|
||||||
.WithMany()
|
|
||||||
.HasForeignKey("CreatedBy")
|
|
||||||
.OnDelete(DeleteBehavior.Cascade)
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.OwnsMany("Hutopy.Web.Features.Contents.Data.ContentReaction", "Reactions", b1 =>
|
|
||||||
{
|
|
||||||
b1.Property<Guid>("ContentId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<int>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("integer");
|
|
||||||
|
|
||||||
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b1.Property<int>("Id"));
|
|
||||||
|
|
||||||
b1.Property<int>("Reaction")
|
|
||||||
.HasColumnType("integer");
|
|
||||||
|
|
||||||
b1.Property<Guid>("UserId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<string>("UserName")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(128)
|
|
||||||
.HasColumnType("character varying(128)");
|
|
||||||
|
|
||||||
b1.HasKey("ContentId", "Id");
|
|
||||||
|
|
||||||
b1.ToTable("ContentReactions", "Content");
|
|
||||||
|
|
||||||
b1.WithOwner()
|
|
||||||
.HasForeignKey("ContentId");
|
|
||||||
});
|
|
||||||
|
|
||||||
b.Navigation("Creator");
|
|
||||||
|
|
||||||
b.Navigation("Reactions");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Creator", b =>
|
|
||||||
{
|
|
||||||
b.OwnsOne("Hutopy.Web.Features.Contents.Data.About", "About", b1 =>
|
|
||||||
{
|
|
||||||
b1.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<string>("Description")
|
|
||||||
.HasMaxLength(2048)
|
|
||||||
.HasColumnType("character varying(2048)");
|
|
||||||
|
|
||||||
b1.Property<string>("Title")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.HasKey("CreatorId");
|
|
||||||
|
|
||||||
b1.ToTable("Creators", "Content");
|
|
||||||
|
|
||||||
b1.WithOwner()
|
|
||||||
.HasForeignKey("CreatorId");
|
|
||||||
});
|
|
||||||
|
|
||||||
b.OwnsOne("Hutopy.Web.Features.Contents.Data.Colors", "Colors", b1 =>
|
|
||||||
{
|
|
||||||
b1.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<string>("Accent")
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("BannerBottom")
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("BannerTop")
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("Menu")
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.HasKey("CreatorId");
|
|
||||||
|
|
||||||
b1.ToTable("Colors", "Content");
|
|
||||||
|
|
||||||
b1.WithOwner()
|
|
||||||
.HasForeignKey("CreatorId");
|
|
||||||
});
|
|
||||||
|
|
||||||
b.OwnsOne("Hutopy.Web.Features.Contents.Data.Images", "Images", b1 =>
|
|
||||||
{
|
|
||||||
b1.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<string>("Banner")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("Logo")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.HasKey("CreatorId");
|
|
||||||
|
|
||||||
b1.ToTable("Images", "Content");
|
|
||||||
|
|
||||||
b1.WithOwner()
|
|
||||||
.HasForeignKey("CreatorId");
|
|
||||||
});
|
|
||||||
|
|
||||||
b.OwnsOne("Hutopy.Web.Features.Contents.Data.Socials", "Socials", b1 =>
|
|
||||||
{
|
|
||||||
b1.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<string>("FacebookUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("InstagramUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("LinkedInUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("RedditUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("TikTokUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("WebsiteUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("XUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("YoutubeUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.HasKey("CreatorId");
|
|
||||||
|
|
||||||
b1.ToTable("Socials", "Content");
|
|
||||||
|
|
||||||
b1.WithOwner()
|
|
||||||
.HasForeignKey("CreatorId");
|
|
||||||
});
|
|
||||||
|
|
||||||
b.Navigation("About")
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.Navigation("Colors")
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.Navigation("Images")
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.Navigation("Socials")
|
|
||||||
.IsRequired();
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Subscription", b =>
|
|
||||||
{
|
|
||||||
b.HasOne("Hutopy.Web.Features.Contents.Data.Creator", "Creator")
|
|
||||||
.WithMany()
|
|
||||||
.HasForeignKey("CreatorId")
|
|
||||||
.OnDelete(DeleteBehavior.Cascade)
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.Navigation("Creator");
|
|
||||||
});
|
|
||||||
#pragma warning restore 612, 618
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,48 +0,0 @@
|
|||||||
using System;
|
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
||||||
|
|
||||||
#nullable disable
|
|
||||||
|
|
||||||
namespace Hutopy.Web.Features.Contents.Migrations
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
public partial class AddReactionToContent : Migration
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
protected override void Up(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.CreateTable(
|
|
||||||
name: "ContentReactions",
|
|
||||||
schema: "Content",
|
|
||||||
columns: table => new
|
|
||||||
{
|
|
||||||
ContentId = table.Column<Guid>(type: "uuid", nullable: false),
|
|
||||||
Id = table.Column<int>(type: "integer", nullable: false)
|
|
||||||
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
||||||
Reaction = table.Column<int>(type: "integer", nullable: false),
|
|
||||||
UserId = table.Column<Guid>(type: "uuid", nullable: false),
|
|
||||||
UserName = table.Column<string>(type: "character varying(128)", maxLength: 128, nullable: false)
|
|
||||||
},
|
|
||||||
constraints: table =>
|
|
||||||
{
|
|
||||||
table.PrimaryKey("PK_ContentReactions", x => new { x.ContentId, x.Id });
|
|
||||||
table.ForeignKey(
|
|
||||||
name: "FK_ContentReactions_Contents_ContentId",
|
|
||||||
column: x => x.ContentId,
|
|
||||||
principalSchema: "Content",
|
|
||||||
principalTable: "Contents",
|
|
||||||
principalColumn: "Id",
|
|
||||||
onDelete: ReferentialAction.Cascade);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
protected override void Down(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.DropTable(
|
|
||||||
name: "ContentReactions",
|
|
||||||
schema: "Content");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,320 +0,0 @@
|
|||||||
// <auto-generated />
|
|
||||||
using System;
|
|
||||||
using Hutopy.Web.Features.Contents.Data;
|
|
||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
||||||
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
||||||
|
|
||||||
#nullable disable
|
|
||||||
|
|
||||||
namespace Hutopy.Web.Features.Contents.Migrations
|
|
||||||
{
|
|
||||||
[DbContext(typeof(ContentDbContext))]
|
|
||||||
[Migration("20240919045548_UseMeterialColorSchema")]
|
|
||||||
partial class UseMeterialColorSchema
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
||||||
{
|
|
||||||
#pragma warning disable 612, 618
|
|
||||||
modelBuilder
|
|
||||||
.HasDefaultSchema("Content")
|
|
||||||
.HasAnnotation("ProductVersion", "8.0.4")
|
|
||||||
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
|
||||||
|
|
||||||
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Content", b =>
|
|
||||||
{
|
|
||||||
b.Property<Guid>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<DateTimeOffset>("CreatedAt")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("timestamp with time zone")
|
|
||||||
.HasDefaultValueSql("CURRENT_TIMESTAMP");
|
|
||||||
|
|
||||||
b.Property<Guid>("CreatedBy")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<DateTimeOffset?>("DeletedAt")
|
|
||||||
.HasColumnType("timestamp with time zone");
|
|
||||||
|
|
||||||
b.Property<Guid?>("DeletedBy")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<string>("Description")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(2048)
|
|
||||||
.HasColumnType("character varying(2048)");
|
|
||||||
|
|
||||||
b.Property<string>("Title")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(128)
|
|
||||||
.HasColumnType("character varying(128)");
|
|
||||||
|
|
||||||
b.Property<string[]>("Urls")
|
|
||||||
.HasColumnType("text[]");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.HasIndex("CreatedBy");
|
|
||||||
|
|
||||||
b.ToTable("Contents", "Content");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Creator", b =>
|
|
||||||
{
|
|
||||||
b.Property<Guid>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<DateTimeOffset>("CreatedAt")
|
|
||||||
.HasColumnType("timestamp with time zone");
|
|
||||||
|
|
||||||
b.Property<Guid>("CreatedBy")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<string>("Name")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Creators", "Content");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Subscription", b =>
|
|
||||||
{
|
|
||||||
b.Property<Guid>("CreatedBy")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<DateTimeOffset>("CreatedAt")
|
|
||||||
.HasColumnType("timestamp with time zone");
|
|
||||||
|
|
||||||
b.HasKey("CreatedBy", "CreatorId");
|
|
||||||
|
|
||||||
b.HasIndex("CreatorId");
|
|
||||||
|
|
||||||
b.ToTable("Subscriptions", "Content");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Content", b =>
|
|
||||||
{
|
|
||||||
b.HasOne("Hutopy.Web.Features.Contents.Data.Creator", "Creator")
|
|
||||||
.WithMany()
|
|
||||||
.HasForeignKey("CreatedBy")
|
|
||||||
.OnDelete(DeleteBehavior.Cascade)
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.OwnsMany("Hutopy.Web.Features.Contents.Data.ContentReaction", "Reactions", b1 =>
|
|
||||||
{
|
|
||||||
b1.Property<Guid>("ContentId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<int>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("integer");
|
|
||||||
|
|
||||||
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b1.Property<int>("Id"));
|
|
||||||
|
|
||||||
b1.Property<int>("Reaction")
|
|
||||||
.HasColumnType("integer");
|
|
||||||
|
|
||||||
b1.Property<Guid>("UserId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<string>("UserName")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(128)
|
|
||||||
.HasColumnType("character varying(128)");
|
|
||||||
|
|
||||||
b1.HasKey("ContentId", "Id");
|
|
||||||
|
|
||||||
b1.ToTable("ContentReactions", "Content");
|
|
||||||
|
|
||||||
b1.WithOwner()
|
|
||||||
.HasForeignKey("ContentId");
|
|
||||||
});
|
|
||||||
|
|
||||||
b.Navigation("Creator");
|
|
||||||
|
|
||||||
b.Navigation("Reactions");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Creator", b =>
|
|
||||||
{
|
|
||||||
b.OwnsOne("Hutopy.Web.Features.Contents.Data.About", "About", b1 =>
|
|
||||||
{
|
|
||||||
b1.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<string>("Description")
|
|
||||||
.HasMaxLength(2048)
|
|
||||||
.HasColumnType("character varying(2048)");
|
|
||||||
|
|
||||||
b1.Property<string>("Title")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.HasKey("CreatorId");
|
|
||||||
|
|
||||||
b1.ToTable("Creators", "Content");
|
|
||||||
|
|
||||||
b1.WithOwner()
|
|
||||||
.HasForeignKey("CreatorId");
|
|
||||||
});
|
|
||||||
|
|
||||||
b.OwnsOne("Hutopy.Web.Features.Contents.Data.Colors", "Colors", b1 =>
|
|
||||||
{
|
|
||||||
b1.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<string>("Background")
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("Error")
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("OnBackground")
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("OnError")
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("OnPrimary")
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("OnSecondary")
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("OnSurface")
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("Primary")
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("Secondary")
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("Surface")
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.HasKey("CreatorId");
|
|
||||||
|
|
||||||
b1.ToTable("Colors", "Content");
|
|
||||||
|
|
||||||
b1.WithOwner()
|
|
||||||
.HasForeignKey("CreatorId");
|
|
||||||
});
|
|
||||||
|
|
||||||
b.OwnsOne("Hutopy.Web.Features.Contents.Data.Images", "Images", b1 =>
|
|
||||||
{
|
|
||||||
b1.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<string>("Banner")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("Logo")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.HasKey("CreatorId");
|
|
||||||
|
|
||||||
b1.ToTable("Images", "Content");
|
|
||||||
|
|
||||||
b1.WithOwner()
|
|
||||||
.HasForeignKey("CreatorId");
|
|
||||||
});
|
|
||||||
|
|
||||||
b.OwnsOne("Hutopy.Web.Features.Contents.Data.Socials", "Socials", b1 =>
|
|
||||||
{
|
|
||||||
b1.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<string>("FacebookUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("InstagramUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("LinkedInUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("RedditUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("TikTokUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("WebsiteUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("XUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("YoutubeUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.HasKey("CreatorId");
|
|
||||||
|
|
||||||
b1.ToTable("Socials", "Content");
|
|
||||||
|
|
||||||
b1.WithOwner()
|
|
||||||
.HasForeignKey("CreatorId");
|
|
||||||
});
|
|
||||||
|
|
||||||
b.Navigation("About")
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.Navigation("Colors")
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.Navigation("Images")
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.Navigation("Socials")
|
|
||||||
.IsRequired();
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Subscription", b =>
|
|
||||||
{
|
|
||||||
b.HasOne("Hutopy.Web.Features.Contents.Data.Creator", "Creator")
|
|
||||||
.WithMany()
|
|
||||||
.HasForeignKey("CreatorId")
|
|
||||||
.OnDelete(DeleteBehavior.Cascade)
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.Navigation("Creator");
|
|
||||||
});
|
|
||||||
#pragma warning restore 612, 618
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,144 +0,0 @@
|
|||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
|
|
||||||
#nullable disable
|
|
||||||
|
|
||||||
namespace Hutopy.Web.Features.Contents.Migrations
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
public partial class UseMeterialColorSchema : Migration
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
protected override void Up(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.RenameColumn(
|
|
||||||
name: "Menu",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
newName: "Surface");
|
|
||||||
|
|
||||||
migrationBuilder.RenameColumn(
|
|
||||||
name: "BannerTop",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
newName: "Secondary");
|
|
||||||
|
|
||||||
migrationBuilder.RenameColumn(
|
|
||||||
name: "BannerBottom",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
newName: "Primary");
|
|
||||||
|
|
||||||
migrationBuilder.RenameColumn(
|
|
||||||
name: "Accent",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
newName: "OnSurface");
|
|
||||||
|
|
||||||
migrationBuilder.AddColumn<string>(
|
|
||||||
name: "Background",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
type: "character varying(9)",
|
|
||||||
maxLength: 9,
|
|
||||||
nullable: true);
|
|
||||||
|
|
||||||
migrationBuilder.AddColumn<string>(
|
|
||||||
name: "Error",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
type: "character varying(9)",
|
|
||||||
maxLength: 9,
|
|
||||||
nullable: true);
|
|
||||||
|
|
||||||
migrationBuilder.AddColumn<string>(
|
|
||||||
name: "OnBackground",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
type: "character varying(9)",
|
|
||||||
maxLength: 9,
|
|
||||||
nullable: true);
|
|
||||||
|
|
||||||
migrationBuilder.AddColumn<string>(
|
|
||||||
name: "OnError",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
type: "character varying(9)",
|
|
||||||
maxLength: 9,
|
|
||||||
nullable: true);
|
|
||||||
|
|
||||||
migrationBuilder.AddColumn<string>(
|
|
||||||
name: "OnPrimary",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
type: "character varying(9)",
|
|
||||||
maxLength: 9,
|
|
||||||
nullable: true);
|
|
||||||
|
|
||||||
migrationBuilder.AddColumn<string>(
|
|
||||||
name: "OnSecondary",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
type: "character varying(9)",
|
|
||||||
maxLength: 9,
|
|
||||||
nullable: true);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
protected override void Down(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.DropColumn(
|
|
||||||
name: "Background",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors");
|
|
||||||
|
|
||||||
migrationBuilder.DropColumn(
|
|
||||||
name: "Error",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors");
|
|
||||||
|
|
||||||
migrationBuilder.DropColumn(
|
|
||||||
name: "OnBackground",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors");
|
|
||||||
|
|
||||||
migrationBuilder.DropColumn(
|
|
||||||
name: "OnError",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors");
|
|
||||||
|
|
||||||
migrationBuilder.DropColumn(
|
|
||||||
name: "OnPrimary",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors");
|
|
||||||
|
|
||||||
migrationBuilder.DropColumn(
|
|
||||||
name: "OnSecondary",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors");
|
|
||||||
|
|
||||||
migrationBuilder.RenameColumn(
|
|
||||||
name: "Surface",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
newName: "Menu");
|
|
||||||
|
|
||||||
migrationBuilder.RenameColumn(
|
|
||||||
name: "Secondary",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
newName: "BannerTop");
|
|
||||||
|
|
||||||
migrationBuilder.RenameColumn(
|
|
||||||
name: "Primary",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
newName: "BannerBottom");
|
|
||||||
|
|
||||||
migrationBuilder.RenameColumn(
|
|
||||||
name: "OnSurface",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
newName: "Accent");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,330 +0,0 @@
|
|||||||
// <auto-generated />
|
|
||||||
using System;
|
|
||||||
using Hutopy.Web.Features.Contents.Data;
|
|
||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
||||||
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
||||||
|
|
||||||
#nullable disable
|
|
||||||
|
|
||||||
namespace Hutopy.Web.Features.Contents.Migrations
|
|
||||||
{
|
|
||||||
[DbContext(typeof(ContentDbContext))]
|
|
||||||
[Migration("20240919051151_NoMoreOptionalColors")]
|
|
||||||
partial class NoMoreOptionalColors
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
||||||
{
|
|
||||||
#pragma warning disable 612, 618
|
|
||||||
modelBuilder
|
|
||||||
.HasDefaultSchema("Content")
|
|
||||||
.HasAnnotation("ProductVersion", "8.0.4")
|
|
||||||
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
|
||||||
|
|
||||||
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Content", b =>
|
|
||||||
{
|
|
||||||
b.Property<Guid>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<DateTimeOffset>("CreatedAt")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("timestamp with time zone")
|
|
||||||
.HasDefaultValueSql("CURRENT_TIMESTAMP");
|
|
||||||
|
|
||||||
b.Property<Guid>("CreatedBy")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<DateTimeOffset?>("DeletedAt")
|
|
||||||
.HasColumnType("timestamp with time zone");
|
|
||||||
|
|
||||||
b.Property<Guid?>("DeletedBy")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<string>("Description")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(2048)
|
|
||||||
.HasColumnType("character varying(2048)");
|
|
||||||
|
|
||||||
b.Property<string>("Title")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(128)
|
|
||||||
.HasColumnType("character varying(128)");
|
|
||||||
|
|
||||||
b.Property<string[]>("Urls")
|
|
||||||
.HasColumnType("text[]");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.HasIndex("CreatedBy");
|
|
||||||
|
|
||||||
b.ToTable("Contents", "Content");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Creator", b =>
|
|
||||||
{
|
|
||||||
b.Property<Guid>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<DateTimeOffset>("CreatedAt")
|
|
||||||
.HasColumnType("timestamp with time zone");
|
|
||||||
|
|
||||||
b.Property<Guid>("CreatedBy")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<string>("Name")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Creators", "Content");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Subscription", b =>
|
|
||||||
{
|
|
||||||
b.Property<Guid>("CreatedBy")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<DateTimeOffset>("CreatedAt")
|
|
||||||
.HasColumnType("timestamp with time zone");
|
|
||||||
|
|
||||||
b.HasKey("CreatedBy", "CreatorId");
|
|
||||||
|
|
||||||
b.HasIndex("CreatorId");
|
|
||||||
|
|
||||||
b.ToTable("Subscriptions", "Content");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Content", b =>
|
|
||||||
{
|
|
||||||
b.HasOne("Hutopy.Web.Features.Contents.Data.Creator", "Creator")
|
|
||||||
.WithMany()
|
|
||||||
.HasForeignKey("CreatedBy")
|
|
||||||
.OnDelete(DeleteBehavior.Cascade)
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.OwnsMany("Hutopy.Web.Features.Contents.Data.ContentReaction", "Reactions", b1 =>
|
|
||||||
{
|
|
||||||
b1.Property<Guid>("ContentId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<int>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("integer");
|
|
||||||
|
|
||||||
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b1.Property<int>("Id"));
|
|
||||||
|
|
||||||
b1.Property<int>("Reaction")
|
|
||||||
.HasColumnType("integer");
|
|
||||||
|
|
||||||
b1.Property<Guid>("UserId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<string>("UserName")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(128)
|
|
||||||
.HasColumnType("character varying(128)");
|
|
||||||
|
|
||||||
b1.HasKey("ContentId", "Id");
|
|
||||||
|
|
||||||
b1.ToTable("ContentReactions", "Content");
|
|
||||||
|
|
||||||
b1.WithOwner()
|
|
||||||
.HasForeignKey("ContentId");
|
|
||||||
});
|
|
||||||
|
|
||||||
b.Navigation("Creator");
|
|
||||||
|
|
||||||
b.Navigation("Reactions");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Creator", b =>
|
|
||||||
{
|
|
||||||
b.OwnsOne("Hutopy.Web.Features.Contents.Data.About", "About", b1 =>
|
|
||||||
{
|
|
||||||
b1.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<string>("Description")
|
|
||||||
.HasMaxLength(2048)
|
|
||||||
.HasColumnType("character varying(2048)");
|
|
||||||
|
|
||||||
b1.Property<string>("Title")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.HasKey("CreatorId");
|
|
||||||
|
|
||||||
b1.ToTable("Creators", "Content");
|
|
||||||
|
|
||||||
b1.WithOwner()
|
|
||||||
.HasForeignKey("CreatorId");
|
|
||||||
});
|
|
||||||
|
|
||||||
b.OwnsOne("Hutopy.Web.Features.Contents.Data.Colors", "Colors", b1 =>
|
|
||||||
{
|
|
||||||
b1.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<string>("Background")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("Error")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("OnBackground")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("OnError")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("OnPrimary")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("OnSecondary")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("OnSurface")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("Primary")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("Secondary")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("Surface")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.HasKey("CreatorId");
|
|
||||||
|
|
||||||
b1.ToTable("Colors", "Content");
|
|
||||||
|
|
||||||
b1.WithOwner()
|
|
||||||
.HasForeignKey("CreatorId");
|
|
||||||
});
|
|
||||||
|
|
||||||
b.OwnsOne("Hutopy.Web.Features.Contents.Data.Images", "Images", b1 =>
|
|
||||||
{
|
|
||||||
b1.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<string>("Banner")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("Logo")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.HasKey("CreatorId");
|
|
||||||
|
|
||||||
b1.ToTable("Images", "Content");
|
|
||||||
|
|
||||||
b1.WithOwner()
|
|
||||||
.HasForeignKey("CreatorId");
|
|
||||||
});
|
|
||||||
|
|
||||||
b.OwnsOne("Hutopy.Web.Features.Contents.Data.Socials", "Socials", b1 =>
|
|
||||||
{
|
|
||||||
b1.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<string>("FacebookUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("InstagramUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("LinkedInUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("RedditUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("TikTokUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("WebsiteUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("XUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("YoutubeUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.HasKey("CreatorId");
|
|
||||||
|
|
||||||
b1.ToTable("Socials", "Content");
|
|
||||||
|
|
||||||
b1.WithOwner()
|
|
||||||
.HasForeignKey("CreatorId");
|
|
||||||
});
|
|
||||||
|
|
||||||
b.Navigation("About")
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.Navigation("Colors")
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.Navigation("Images")
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.Navigation("Socials")
|
|
||||||
.IsRequired();
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Subscription", b =>
|
|
||||||
{
|
|
||||||
b.HasOne("Hutopy.Web.Features.Contents.Data.Creator", "Creator")
|
|
||||||
.WithMany()
|
|
||||||
.HasForeignKey("CreatorId")
|
|
||||||
.OnDelete(DeleteBehavior.Cascade)
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.Navigation("Creator");
|
|
||||||
});
|
|
||||||
#pragma warning restore 612, 618
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,258 +0,0 @@
|
|||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
|
|
||||||
#nullable disable
|
|
||||||
|
|
||||||
namespace Hutopy.Web.Features.Contents.Migrations
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
public partial class NoMoreOptionalColors : Migration
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
protected override void Up(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.AlterColumn<string>(
|
|
||||||
name: "Surface",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
type: "character varying(9)",
|
|
||||||
maxLength: 9,
|
|
||||||
nullable: false,
|
|
||||||
defaultValue: "",
|
|
||||||
oldClrType: typeof(string),
|
|
||||||
oldType: "character varying(9)",
|
|
||||||
oldMaxLength: 9,
|
|
||||||
oldNullable: true);
|
|
||||||
|
|
||||||
migrationBuilder.AlterColumn<string>(
|
|
||||||
name: "Secondary",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
type: "character varying(9)",
|
|
||||||
maxLength: 9,
|
|
||||||
nullable: false,
|
|
||||||
defaultValue: "",
|
|
||||||
oldClrType: typeof(string),
|
|
||||||
oldType: "character varying(9)",
|
|
||||||
oldMaxLength: 9,
|
|
||||||
oldNullable: true);
|
|
||||||
|
|
||||||
migrationBuilder.AlterColumn<string>(
|
|
||||||
name: "Primary",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
type: "character varying(9)",
|
|
||||||
maxLength: 9,
|
|
||||||
nullable: false,
|
|
||||||
defaultValue: "",
|
|
||||||
oldClrType: typeof(string),
|
|
||||||
oldType: "character varying(9)",
|
|
||||||
oldMaxLength: 9,
|
|
||||||
oldNullable: true);
|
|
||||||
|
|
||||||
migrationBuilder.AlterColumn<string>(
|
|
||||||
name: "OnSurface",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
type: "character varying(9)",
|
|
||||||
maxLength: 9,
|
|
||||||
nullable: false,
|
|
||||||
defaultValue: "",
|
|
||||||
oldClrType: typeof(string),
|
|
||||||
oldType: "character varying(9)",
|
|
||||||
oldMaxLength: 9,
|
|
||||||
oldNullable: true);
|
|
||||||
|
|
||||||
migrationBuilder.AlterColumn<string>(
|
|
||||||
name: "OnSecondary",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
type: "character varying(9)",
|
|
||||||
maxLength: 9,
|
|
||||||
nullable: false,
|
|
||||||
defaultValue: "",
|
|
||||||
oldClrType: typeof(string),
|
|
||||||
oldType: "character varying(9)",
|
|
||||||
oldMaxLength: 9,
|
|
||||||
oldNullable: true);
|
|
||||||
|
|
||||||
migrationBuilder.AlterColumn<string>(
|
|
||||||
name: "OnPrimary",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
type: "character varying(9)",
|
|
||||||
maxLength: 9,
|
|
||||||
nullable: false,
|
|
||||||
defaultValue: "",
|
|
||||||
oldClrType: typeof(string),
|
|
||||||
oldType: "character varying(9)",
|
|
||||||
oldMaxLength: 9,
|
|
||||||
oldNullable: true);
|
|
||||||
|
|
||||||
migrationBuilder.AlterColumn<string>(
|
|
||||||
name: "OnError",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
type: "character varying(9)",
|
|
||||||
maxLength: 9,
|
|
||||||
nullable: false,
|
|
||||||
defaultValue: "",
|
|
||||||
oldClrType: typeof(string),
|
|
||||||
oldType: "character varying(9)",
|
|
||||||
oldMaxLength: 9,
|
|
||||||
oldNullable: true);
|
|
||||||
|
|
||||||
migrationBuilder.AlterColumn<string>(
|
|
||||||
name: "OnBackground",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
type: "character varying(9)",
|
|
||||||
maxLength: 9,
|
|
||||||
nullable: false,
|
|
||||||
defaultValue: "",
|
|
||||||
oldClrType: typeof(string),
|
|
||||||
oldType: "character varying(9)",
|
|
||||||
oldMaxLength: 9,
|
|
||||||
oldNullable: true);
|
|
||||||
|
|
||||||
migrationBuilder.AlterColumn<string>(
|
|
||||||
name: "Error",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
type: "character varying(9)",
|
|
||||||
maxLength: 9,
|
|
||||||
nullable: false,
|
|
||||||
defaultValue: "",
|
|
||||||
oldClrType: typeof(string),
|
|
||||||
oldType: "character varying(9)",
|
|
||||||
oldMaxLength: 9,
|
|
||||||
oldNullable: true);
|
|
||||||
|
|
||||||
migrationBuilder.AlterColumn<string>(
|
|
||||||
name: "Background",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
type: "character varying(9)",
|
|
||||||
maxLength: 9,
|
|
||||||
nullable: false,
|
|
||||||
defaultValue: "",
|
|
||||||
oldClrType: typeof(string),
|
|
||||||
oldType: "character varying(9)",
|
|
||||||
oldMaxLength: 9,
|
|
||||||
oldNullable: true);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
protected override void Down(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.AlterColumn<string>(
|
|
||||||
name: "Surface",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
type: "character varying(9)",
|
|
||||||
maxLength: 9,
|
|
||||||
nullable: true,
|
|
||||||
oldClrType: typeof(string),
|
|
||||||
oldType: "character varying(9)",
|
|
||||||
oldMaxLength: 9);
|
|
||||||
|
|
||||||
migrationBuilder.AlterColumn<string>(
|
|
||||||
name: "Secondary",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
type: "character varying(9)",
|
|
||||||
maxLength: 9,
|
|
||||||
nullable: true,
|
|
||||||
oldClrType: typeof(string),
|
|
||||||
oldType: "character varying(9)",
|
|
||||||
oldMaxLength: 9);
|
|
||||||
|
|
||||||
migrationBuilder.AlterColumn<string>(
|
|
||||||
name: "Primary",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
type: "character varying(9)",
|
|
||||||
maxLength: 9,
|
|
||||||
nullable: true,
|
|
||||||
oldClrType: typeof(string),
|
|
||||||
oldType: "character varying(9)",
|
|
||||||
oldMaxLength: 9);
|
|
||||||
|
|
||||||
migrationBuilder.AlterColumn<string>(
|
|
||||||
name: "OnSurface",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
type: "character varying(9)",
|
|
||||||
maxLength: 9,
|
|
||||||
nullable: true,
|
|
||||||
oldClrType: typeof(string),
|
|
||||||
oldType: "character varying(9)",
|
|
||||||
oldMaxLength: 9);
|
|
||||||
|
|
||||||
migrationBuilder.AlterColumn<string>(
|
|
||||||
name: "OnSecondary",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
type: "character varying(9)",
|
|
||||||
maxLength: 9,
|
|
||||||
nullable: true,
|
|
||||||
oldClrType: typeof(string),
|
|
||||||
oldType: "character varying(9)",
|
|
||||||
oldMaxLength: 9);
|
|
||||||
|
|
||||||
migrationBuilder.AlterColumn<string>(
|
|
||||||
name: "OnPrimary",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
type: "character varying(9)",
|
|
||||||
maxLength: 9,
|
|
||||||
nullable: true,
|
|
||||||
oldClrType: typeof(string),
|
|
||||||
oldType: "character varying(9)",
|
|
||||||
oldMaxLength: 9);
|
|
||||||
|
|
||||||
migrationBuilder.AlterColumn<string>(
|
|
||||||
name: "OnError",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
type: "character varying(9)",
|
|
||||||
maxLength: 9,
|
|
||||||
nullable: true,
|
|
||||||
oldClrType: typeof(string),
|
|
||||||
oldType: "character varying(9)",
|
|
||||||
oldMaxLength: 9);
|
|
||||||
|
|
||||||
migrationBuilder.AlterColumn<string>(
|
|
||||||
name: "OnBackground",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
type: "character varying(9)",
|
|
||||||
maxLength: 9,
|
|
||||||
nullable: true,
|
|
||||||
oldClrType: typeof(string),
|
|
||||||
oldType: "character varying(9)",
|
|
||||||
oldMaxLength: 9);
|
|
||||||
|
|
||||||
migrationBuilder.AlterColumn<string>(
|
|
||||||
name: "Error",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
type: "character varying(9)",
|
|
||||||
maxLength: 9,
|
|
||||||
nullable: true,
|
|
||||||
oldClrType: typeof(string),
|
|
||||||
oldType: "character varying(9)",
|
|
||||||
oldMaxLength: 9);
|
|
||||||
|
|
||||||
migrationBuilder.AlterColumn<string>(
|
|
||||||
name: "Background",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Colors",
|
|
||||||
type: "character varying(9)",
|
|
||||||
maxLength: 9,
|
|
||||||
nullable: true,
|
|
||||||
oldClrType: typeof(string),
|
|
||||||
oldType: "character varying(9)",
|
|
||||||
oldMaxLength: 9);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,310 +0,0 @@
|
|||||||
// <auto-generated />
|
|
||||||
using System;
|
|
||||||
using Hutopy.Web.Features.Contents.Data;
|
|
||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
||||||
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
||||||
|
|
||||||
#nullable disable
|
|
||||||
|
|
||||||
namespace Hutopy.Web.Features.Contents.Migrations
|
|
||||||
{
|
|
||||||
[DbContext(typeof(ContentDbContext))]
|
|
||||||
[Migration("20240922064815_RemovesAboutAddsTitle")]
|
|
||||||
partial class RemovesAboutAddsTitle
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
||||||
{
|
|
||||||
#pragma warning disable 612, 618
|
|
||||||
modelBuilder
|
|
||||||
.HasDefaultSchema("Content")
|
|
||||||
.HasAnnotation("ProductVersion", "8.0.4")
|
|
||||||
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
|
||||||
|
|
||||||
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Content", b =>
|
|
||||||
{
|
|
||||||
b.Property<Guid>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<DateTimeOffset>("CreatedAt")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("timestamp with time zone")
|
|
||||||
.HasDefaultValueSql("CURRENT_TIMESTAMP");
|
|
||||||
|
|
||||||
b.Property<Guid>("CreatedBy")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<DateTimeOffset?>("DeletedAt")
|
|
||||||
.HasColumnType("timestamp with time zone");
|
|
||||||
|
|
||||||
b.Property<Guid?>("DeletedBy")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<string>("Description")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(2048)
|
|
||||||
.HasColumnType("character varying(2048)");
|
|
||||||
|
|
||||||
b.Property<string>("Title")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(128)
|
|
||||||
.HasColumnType("character varying(128)");
|
|
||||||
|
|
||||||
b.Property<string[]>("Urls")
|
|
||||||
.HasColumnType("text[]");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.HasIndex("CreatedBy");
|
|
||||||
|
|
||||||
b.ToTable("Contents", "Content");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Creator", b =>
|
|
||||||
{
|
|
||||||
b.Property<Guid>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<DateTimeOffset>("CreatedAt")
|
|
||||||
.HasColumnType("timestamp with time zone");
|
|
||||||
|
|
||||||
b.Property<Guid>("CreatedBy")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<string>("Name")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b.Property<string>("Title")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Creators", "Content");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Subscription", b =>
|
|
||||||
{
|
|
||||||
b.Property<Guid>("CreatedBy")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<DateTimeOffset>("CreatedAt")
|
|
||||||
.HasColumnType("timestamp with time zone");
|
|
||||||
|
|
||||||
b.HasKey("CreatedBy", "CreatorId");
|
|
||||||
|
|
||||||
b.HasIndex("CreatorId");
|
|
||||||
|
|
||||||
b.ToTable("Subscriptions", "Content");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Content", b =>
|
|
||||||
{
|
|
||||||
b.HasOne("Hutopy.Web.Features.Contents.Data.Creator", "Creator")
|
|
||||||
.WithMany()
|
|
||||||
.HasForeignKey("CreatedBy")
|
|
||||||
.OnDelete(DeleteBehavior.Cascade)
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.OwnsMany("Hutopy.Web.Features.Contents.Data.ContentReaction", "Reactions", b1 =>
|
|
||||||
{
|
|
||||||
b1.Property<Guid>("ContentId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<int>("Id")
|
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("integer");
|
|
||||||
|
|
||||||
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b1.Property<int>("Id"));
|
|
||||||
|
|
||||||
b1.Property<int>("Reaction")
|
|
||||||
.HasColumnType("integer");
|
|
||||||
|
|
||||||
b1.Property<Guid>("UserId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<string>("UserName")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(128)
|
|
||||||
.HasColumnType("character varying(128)");
|
|
||||||
|
|
||||||
b1.HasKey("ContentId", "Id");
|
|
||||||
|
|
||||||
b1.ToTable("ContentReactions", "Content");
|
|
||||||
|
|
||||||
b1.WithOwner()
|
|
||||||
.HasForeignKey("ContentId");
|
|
||||||
});
|
|
||||||
|
|
||||||
b.Navigation("Creator");
|
|
||||||
|
|
||||||
b.Navigation("Reactions");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Creator", b =>
|
|
||||||
{
|
|
||||||
b.OwnsOne("Hutopy.Web.Features.Contents.Data.Colors", "Colors", b1 =>
|
|
||||||
{
|
|
||||||
b1.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<string>("Background")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("Error")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("OnBackground")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("OnError")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("OnPrimary")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("OnSecondary")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("OnSurface")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("Primary")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("Secondary")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.Property<string>("Surface")
|
|
||||||
.IsRequired()
|
|
||||||
.HasMaxLength(9)
|
|
||||||
.HasColumnType("character varying(9)");
|
|
||||||
|
|
||||||
b1.HasKey("CreatorId");
|
|
||||||
|
|
||||||
b1.ToTable("Colors", "Content");
|
|
||||||
|
|
||||||
b1.WithOwner()
|
|
||||||
.HasForeignKey("CreatorId");
|
|
||||||
});
|
|
||||||
|
|
||||||
b.OwnsOne("Hutopy.Web.Features.Contents.Data.Images", "Images", b1 =>
|
|
||||||
{
|
|
||||||
b1.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<string>("Banner")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("Logo")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.HasKey("CreatorId");
|
|
||||||
|
|
||||||
b1.ToTable("Images", "Content");
|
|
||||||
|
|
||||||
b1.WithOwner()
|
|
||||||
.HasForeignKey("CreatorId");
|
|
||||||
});
|
|
||||||
|
|
||||||
b.OwnsOne("Hutopy.Web.Features.Contents.Data.Socials", "Socials", b1 =>
|
|
||||||
{
|
|
||||||
b1.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b1.Property<string>("FacebookUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("InstagramUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("LinkedInUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("RedditUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("TikTokUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("WebsiteUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("XUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.Property<string>("YoutubeUrl")
|
|
||||||
.HasMaxLength(255)
|
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b1.HasKey("CreatorId");
|
|
||||||
|
|
||||||
b1.ToTable("Socials", "Content");
|
|
||||||
|
|
||||||
b1.WithOwner()
|
|
||||||
.HasForeignKey("CreatorId");
|
|
||||||
});
|
|
||||||
|
|
||||||
b.Navigation("Colors")
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.Navigation("Images")
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.Navigation("Socials")
|
|
||||||
.IsRequired();
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Subscription", b =>
|
|
||||||
{
|
|
||||||
b.HasOne("Hutopy.Web.Features.Contents.Data.Creator", "Creator")
|
|
||||||
.WithMany()
|
|
||||||
.HasForeignKey("CreatorId")
|
|
||||||
.OnDelete(DeleteBehavior.Cascade)
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.Navigation("Creator");
|
|
||||||
});
|
|
||||||
#pragma warning restore 612, 618
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,43 +0,0 @@
|
|||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
|
|
||||||
#nullable disable
|
|
||||||
|
|
||||||
namespace Hutopy.Web.Features.Contents.Migrations
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
public partial class RemovesAboutAddsTitle : Migration
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
protected override void Up(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.DropColumn(
|
|
||||||
name: "About_Description",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Creators");
|
|
||||||
|
|
||||||
migrationBuilder.RenameColumn(
|
|
||||||
name: "About_Title",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Creators",
|
|
||||||
newName: "Title");
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
protected override void Down(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.RenameColumn(
|
|
||||||
name: "Title",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Creators",
|
|
||||||
newName: "About_Title");
|
|
||||||
|
|
||||||
migrationBuilder.AddColumn<string>(
|
|
||||||
name: "About_Description",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Creators",
|
|
||||||
type: "character varying(2048)",
|
|
||||||
maxLength: 2048,
|
|
||||||
nullable: true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,81 +0,0 @@
|
|||||||
using System;
|
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
|
|
||||||
#nullable disable
|
|
||||||
|
|
||||||
namespace Hutopy.Web.Features.Contents.Migrations
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
public partial class FromSubscribersToFollowers : Migration
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
protected override void Up(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.DropTable(
|
|
||||||
name: "Subscriptions",
|
|
||||||
schema: "Content");
|
|
||||||
|
|
||||||
migrationBuilder.CreateTable(
|
|
||||||
name: "Followers",
|
|
||||||
schema: "Content",
|
|
||||||
columns: table => new
|
|
||||||
{
|
|
||||||
CreatedBy = table.Column<Guid>(type: "uuid", nullable: false),
|
|
||||||
CreatorId = table.Column<Guid>(type: "uuid", nullable: false),
|
|
||||||
CreatedAt = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: false)
|
|
||||||
},
|
|
||||||
constraints: table =>
|
|
||||||
{
|
|
||||||
table.PrimaryKey("PK_Followers", x => new { x.CreatedBy, x.CreatorId });
|
|
||||||
table.ForeignKey(
|
|
||||||
name: "FK_Followers_Creators_CreatorId",
|
|
||||||
column: x => x.CreatorId,
|
|
||||||
principalSchema: "Content",
|
|
||||||
principalTable: "Creators",
|
|
||||||
principalColumn: "Id",
|
|
||||||
onDelete: ReferentialAction.Cascade);
|
|
||||||
});
|
|
||||||
|
|
||||||
migrationBuilder.CreateIndex(
|
|
||||||
name: "IX_Followers_CreatorId",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Followers",
|
|
||||||
column: "CreatorId");
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
protected override void Down(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.DropTable(
|
|
||||||
name: "Followers",
|
|
||||||
schema: "Content");
|
|
||||||
|
|
||||||
migrationBuilder.CreateTable(
|
|
||||||
name: "Subscriptions",
|
|
||||||
schema: "Content",
|
|
||||||
columns: table => new
|
|
||||||
{
|
|
||||||
CreatedBy = table.Column<Guid>(type: "uuid", nullable: false),
|
|
||||||
CreatorId = table.Column<Guid>(type: "uuid", nullable: false),
|
|
||||||
CreatedAt = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: false)
|
|
||||||
},
|
|
||||||
constraints: table =>
|
|
||||||
{
|
|
||||||
table.PrimaryKey("PK_Subscriptions", x => new { x.CreatedBy, x.CreatorId });
|
|
||||||
table.ForeignKey(
|
|
||||||
name: "FK_Subscriptions_Creators_CreatorId",
|
|
||||||
column: x => x.CreatorId,
|
|
||||||
principalSchema: "Content",
|
|
||||||
principalTable: "Creators",
|
|
||||||
principalColumn: "Id",
|
|
||||||
onDelete: ReferentialAction.Cascade);
|
|
||||||
});
|
|
||||||
|
|
||||||
migrationBuilder.CreateIndex(
|
|
||||||
name: "IX_Subscriptions_CreatorId",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Subscriptions",
|
|
||||||
column: "CreatorId");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -9,11 +9,11 @@ using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|||||||
|
|
||||||
#nullable disable
|
#nullable disable
|
||||||
|
|
||||||
namespace Hutopy.Web.Features.Contents.Migrations
|
namespace Hutopy.Web.Features.Contents.Data.Migrations
|
||||||
{
|
{
|
||||||
[DbContext(typeof(ContentDbContext))]
|
[DbContext(typeof(ContentDbContext))]
|
||||||
[Migration("20241011103653_FromSubscribersToFollowers")]
|
[Migration("20241020202641_Initial")]
|
||||||
partial class FromSubscribersToFollowers
|
partial class Initial
|
||||||
{
|
{
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
||||||
@@ -21,7 +21,7 @@ namespace Hutopy.Web.Features.Contents.Migrations
|
|||||||
#pragma warning disable 612, 618
|
#pragma warning disable 612, 618
|
||||||
modelBuilder
|
modelBuilder
|
||||||
.HasDefaultSchema("Content")
|
.HasDefaultSchema("Content")
|
||||||
.HasAnnotation("ProductVersion", "8.0.4")
|
.HasAnnotation("ProductVersion", "8.0.10")
|
||||||
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
||||||
|
|
||||||
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
||||||
@@ -51,6 +51,10 @@ namespace Hutopy.Web.Features.Contents.Migrations
|
|||||||
.HasMaxLength(2048)
|
.HasMaxLength(2048)
|
||||||
.HasColumnType("character varying(2048)");
|
.HasColumnType("character varying(2048)");
|
||||||
|
|
||||||
|
b.Property<string>("HtmlFileUrl")
|
||||||
|
.HasMaxLength(2048)
|
||||||
|
.HasColumnType("character varying(2048)");
|
||||||
|
|
||||||
b.Property<string>("Title")
|
b.Property<string>("Title")
|
||||||
.IsRequired()
|
.IsRequired()
|
||||||
.HasMaxLength(128)
|
.HasMaxLength(128)
|
||||||
@@ -92,24 +96,6 @@ namespace Hutopy.Web.Features.Contents.Migrations
|
|||||||
b.ToTable("Creators", "Content");
|
b.ToTable("Creators", "Content");
|
||||||
});
|
});
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Follower", b =>
|
|
||||||
{
|
|
||||||
b.Property<Guid>("CreatedBy")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<DateTimeOffset>("CreatedAt")
|
|
||||||
.HasColumnType("timestamp with time zone");
|
|
||||||
|
|
||||||
b.HasKey("CreatedBy", "CreatorId");
|
|
||||||
|
|
||||||
b.HasIndex("CreatorId");
|
|
||||||
|
|
||||||
b.ToTable("Followers", "Content");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Content", b =>
|
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Content", b =>
|
||||||
{
|
{
|
||||||
b.HasOne("Hutopy.Web.Features.Contents.Data.Creator", "Creator")
|
b.HasOne("Hutopy.Web.Features.Contents.Data.Creator", "Creator")
|
||||||
@@ -142,7 +128,7 @@ namespace Hutopy.Web.Features.Contents.Migrations
|
|||||||
|
|
||||||
b1.HasKey("ContentId", "Id");
|
b1.HasKey("ContentId", "Id");
|
||||||
|
|
||||||
b1.ToTable("ContentReactions", "Content");
|
b1.ToTable("Reactions", "Content");
|
||||||
|
|
||||||
b1.WithOwner()
|
b1.WithOwner()
|
||||||
.HasForeignKey("ContentId");
|
.HasForeignKey("ContentId");
|
||||||
@@ -293,17 +279,6 @@ namespace Hutopy.Web.Features.Contents.Migrations
|
|||||||
b.Navigation("Socials")
|
b.Navigation("Socials")
|
||||||
.IsRequired();
|
.IsRequired();
|
||||||
});
|
});
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Follower", b =>
|
|
||||||
{
|
|
||||||
b.HasOne("Hutopy.Web.Features.Contents.Data.Creator", "Creator")
|
|
||||||
.WithMany()
|
|
||||||
.HasForeignKey("CreatorId")
|
|
||||||
.OnDelete(DeleteBehavior.Cascade)
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.Navigation("Creator");
|
|
||||||
});
|
|
||||||
#pragma warning restore 612, 618
|
#pragma warning restore 612, 618
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,9 +1,10 @@
|
|||||||
using System;
|
using System;
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
||||||
|
|
||||||
#nullable disable
|
#nullable disable
|
||||||
|
|
||||||
namespace Hutopy.Web.Features.Contents.Migrations
|
namespace Hutopy.Web.Features.Contents.Data.Migrations
|
||||||
{
|
{
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public partial class Initial : Migration
|
public partial class Initial : Migration
|
||||||
@@ -23,8 +24,7 @@ namespace Hutopy.Web.Features.Contents.Migrations
|
|||||||
CreatedBy = table.Column<Guid>(type: "uuid", nullable: false),
|
CreatedBy = table.Column<Guid>(type: "uuid", nullable: false),
|
||||||
CreatedAt = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: false),
|
CreatedAt = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: false),
|
||||||
Name = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: false),
|
Name = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: false),
|
||||||
About_Title = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true),
|
Title = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true)
|
||||||
About_Description = table.Column<string>(type: "character varying(2048)", maxLength: 2048, nullable: true)
|
|
||||||
},
|
},
|
||||||
constraints: table =>
|
constraints: table =>
|
||||||
{
|
{
|
||||||
@@ -37,10 +37,16 @@ namespace Hutopy.Web.Features.Contents.Migrations
|
|||||||
columns: table => new
|
columns: table => new
|
||||||
{
|
{
|
||||||
CreatorId = table.Column<Guid>(type: "uuid", nullable: false),
|
CreatorId = table.Column<Guid>(type: "uuid", nullable: false),
|
||||||
BannerTop = table.Column<string>(type: "character varying(9)", maxLength: 9, nullable: true),
|
Primary = table.Column<string>(type: "character varying(9)", maxLength: 9, nullable: false),
|
||||||
BannerBottom = table.Column<string>(type: "character varying(9)", maxLength: 9, nullable: true),
|
Secondary = table.Column<string>(type: "character varying(9)", maxLength: 9, nullable: false),
|
||||||
Accent = table.Column<string>(type: "character varying(9)", maxLength: 9, nullable: true),
|
Background = table.Column<string>(type: "character varying(9)", maxLength: 9, nullable: false),
|
||||||
Menu = table.Column<string>(type: "character varying(9)", maxLength: 9, nullable: true)
|
Surface = table.Column<string>(type: "character varying(9)", maxLength: 9, nullable: false),
|
||||||
|
Error = table.Column<string>(type: "character varying(9)", maxLength: 9, nullable: false),
|
||||||
|
OnPrimary = table.Column<string>(type: "character varying(9)", maxLength: 9, nullable: false),
|
||||||
|
OnSecondary = table.Column<string>(type: "character varying(9)", maxLength: 9, nullable: false),
|
||||||
|
OnBackground = table.Column<string>(type: "character varying(9)", maxLength: 9, nullable: false),
|
||||||
|
OnSurface = table.Column<string>(type: "character varying(9)", maxLength: 9, nullable: false),
|
||||||
|
OnError = table.Column<string>(type: "character varying(9)", maxLength: 9, nullable: false)
|
||||||
},
|
},
|
||||||
constraints: table =>
|
constraints: table =>
|
||||||
{
|
{
|
||||||
@@ -62,8 +68,11 @@ namespace Hutopy.Web.Features.Contents.Migrations
|
|||||||
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
||||||
CreatedBy = table.Column<Guid>(type: "uuid", nullable: false),
|
CreatedBy = table.Column<Guid>(type: "uuid", nullable: false),
|
||||||
CreatedAt = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: false, defaultValueSql: "CURRENT_TIMESTAMP"),
|
CreatedAt = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: false, defaultValueSql: "CURRENT_TIMESTAMP"),
|
||||||
|
DeletedBy = table.Column<Guid>(type: "uuid", nullable: true),
|
||||||
|
DeletedAt = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: true),
|
||||||
Title = table.Column<string>(type: "character varying(128)", maxLength: 128, nullable: false),
|
Title = table.Column<string>(type: "character varying(128)", maxLength: 128, nullable: false),
|
||||||
Description = table.Column<string>(type: "character varying(2048)", maxLength: 2048, nullable: false),
|
Description = table.Column<string>(type: "character varying(2048)", maxLength: 2048, nullable: false),
|
||||||
|
HtmlFileUrl = table.Column<string>(type: "character varying(2048)", maxLength: 2048, nullable: true),
|
||||||
Urls = table.Column<string[]>(type: "text[]", nullable: true)
|
Urls = table.Column<string[]>(type: "text[]", nullable: true)
|
||||||
},
|
},
|
||||||
constraints: table =>
|
constraints: table =>
|
||||||
@@ -127,22 +136,25 @@ namespace Hutopy.Web.Features.Contents.Migrations
|
|||||||
});
|
});
|
||||||
|
|
||||||
migrationBuilder.CreateTable(
|
migrationBuilder.CreateTable(
|
||||||
name: "Subscriptions",
|
name: "Reactions",
|
||||||
schema: "Content",
|
schema: "Content",
|
||||||
columns: table => new
|
columns: table => new
|
||||||
{
|
{
|
||||||
CreatedBy = table.Column<Guid>(type: "uuid", nullable: false),
|
ContentId = table.Column<Guid>(type: "uuid", nullable: false),
|
||||||
CreatorId = table.Column<Guid>(type: "uuid", nullable: false),
|
Id = table.Column<int>(type: "integer", nullable: false)
|
||||||
CreatedAt = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: false)
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
||||||
|
Reaction = table.Column<int>(type: "integer", nullable: false),
|
||||||
|
UserId = table.Column<Guid>(type: "uuid", nullable: false),
|
||||||
|
UserName = table.Column<string>(type: "character varying(128)", maxLength: 128, nullable: false)
|
||||||
},
|
},
|
||||||
constraints: table =>
|
constraints: table =>
|
||||||
{
|
{
|
||||||
table.PrimaryKey("PK_Subscriptions", x => new { x.CreatedBy, x.CreatorId });
|
table.PrimaryKey("PK_Reactions", x => new { x.ContentId, x.Id });
|
||||||
table.ForeignKey(
|
table.ForeignKey(
|
||||||
name: "FK_Subscriptions_Creators_CreatorId",
|
name: "FK_Reactions_Contents_ContentId",
|
||||||
column: x => x.CreatorId,
|
column: x => x.ContentId,
|
||||||
principalSchema: "Content",
|
principalSchema: "Content",
|
||||||
principalTable: "Creators",
|
principalTable: "Contents",
|
||||||
principalColumn: "Id",
|
principalColumn: "Id",
|
||||||
onDelete: ReferentialAction.Cascade);
|
onDelete: ReferentialAction.Cascade);
|
||||||
});
|
});
|
||||||
@@ -152,12 +164,6 @@ namespace Hutopy.Web.Features.Contents.Migrations
|
|||||||
schema: "Content",
|
schema: "Content",
|
||||||
table: "Contents",
|
table: "Contents",
|
||||||
column: "CreatedBy");
|
column: "CreatedBy");
|
||||||
|
|
||||||
migrationBuilder.CreateIndex(
|
|
||||||
name: "IX_Subscriptions_CreatorId",
|
|
||||||
schema: "Content",
|
|
||||||
table: "Subscriptions",
|
|
||||||
column: "CreatorId");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
@@ -168,11 +174,11 @@ namespace Hutopy.Web.Features.Contents.Migrations
|
|||||||
schema: "Content");
|
schema: "Content");
|
||||||
|
|
||||||
migrationBuilder.DropTable(
|
migrationBuilder.DropTable(
|
||||||
name: "Contents",
|
name: "Images",
|
||||||
schema: "Content");
|
schema: "Content");
|
||||||
|
|
||||||
migrationBuilder.DropTable(
|
migrationBuilder.DropTable(
|
||||||
name: "Images",
|
name: "Reactions",
|
||||||
schema: "Content");
|
schema: "Content");
|
||||||
|
|
||||||
migrationBuilder.DropTable(
|
migrationBuilder.DropTable(
|
||||||
@@ -180,7 +186,7 @@ namespace Hutopy.Web.Features.Contents.Migrations
|
|||||||
schema: "Content");
|
schema: "Content");
|
||||||
|
|
||||||
migrationBuilder.DropTable(
|
migrationBuilder.DropTable(
|
||||||
name: "Subscriptions",
|
name: "Contents",
|
||||||
schema: "Content");
|
schema: "Content");
|
||||||
|
|
||||||
migrationBuilder.DropTable(
|
migrationBuilder.DropTable(
|
||||||
@@ -8,7 +8,7 @@ using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|||||||
|
|
||||||
#nullable disable
|
#nullable disable
|
||||||
|
|
||||||
namespace Hutopy.Web.Features.Contents.Migrations
|
namespace Hutopy.Web.Features.Contents.Data.Migrations
|
||||||
{
|
{
|
||||||
[DbContext(typeof(ContentDbContext))]
|
[DbContext(typeof(ContentDbContext))]
|
||||||
partial class ContentDbContextModelSnapshot : ModelSnapshot
|
partial class ContentDbContextModelSnapshot : ModelSnapshot
|
||||||
@@ -18,7 +18,7 @@ namespace Hutopy.Web.Features.Contents.Migrations
|
|||||||
#pragma warning disable 612, 618
|
#pragma warning disable 612, 618
|
||||||
modelBuilder
|
modelBuilder
|
||||||
.HasDefaultSchema("Content")
|
.HasDefaultSchema("Content")
|
||||||
.HasAnnotation("ProductVersion", "8.0.4")
|
.HasAnnotation("ProductVersion", "8.0.10")
|
||||||
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
||||||
|
|
||||||
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
||||||
@@ -49,7 +49,8 @@ namespace Hutopy.Web.Features.Contents.Migrations
|
|||||||
.HasColumnType("character varying(2048)");
|
.HasColumnType("character varying(2048)");
|
||||||
|
|
||||||
b.Property<string>("HtmlFileUrl")
|
b.Property<string>("HtmlFileUrl")
|
||||||
.HasColumnType("text");
|
.HasMaxLength(2048)
|
||||||
|
.HasColumnType("character varying(2048)");
|
||||||
|
|
||||||
b.Property<string>("Title")
|
b.Property<string>("Title")
|
||||||
.IsRequired()
|
.IsRequired()
|
||||||
@@ -92,24 +93,6 @@ namespace Hutopy.Web.Features.Contents.Migrations
|
|||||||
b.ToTable("Creators", "Content");
|
b.ToTable("Creators", "Content");
|
||||||
});
|
});
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Follower", b =>
|
|
||||||
{
|
|
||||||
b.Property<Guid>("CreatedBy")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<Guid>("CreatorId")
|
|
||||||
.HasColumnType("uuid");
|
|
||||||
|
|
||||||
b.Property<DateTimeOffset>("CreatedAt")
|
|
||||||
.HasColumnType("timestamp with time zone");
|
|
||||||
|
|
||||||
b.HasKey("CreatedBy", "CreatorId");
|
|
||||||
|
|
||||||
b.HasIndex("CreatorId");
|
|
||||||
|
|
||||||
b.ToTable("Followers", "Content");
|
|
||||||
});
|
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Content", b =>
|
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Content", b =>
|
||||||
{
|
{
|
||||||
b.HasOne("Hutopy.Web.Features.Contents.Data.Creator", "Creator")
|
b.HasOne("Hutopy.Web.Features.Contents.Data.Creator", "Creator")
|
||||||
@@ -142,7 +125,7 @@ namespace Hutopy.Web.Features.Contents.Migrations
|
|||||||
|
|
||||||
b1.HasKey("ContentId", "Id");
|
b1.HasKey("ContentId", "Id");
|
||||||
|
|
||||||
b1.ToTable("ContentReactions", "Content");
|
b1.ToTable("Reactions", "Content");
|
||||||
|
|
||||||
b1.WithOwner()
|
b1.WithOwner()
|
||||||
.HasForeignKey("ContentId");
|
.HasForeignKey("ContentId");
|
||||||
@@ -293,17 +276,6 @@ namespace Hutopy.Web.Features.Contents.Migrations
|
|||||||
b.Navigation("Socials")
|
b.Navigation("Socials")
|
||||||
.IsRequired();
|
.IsRequired();
|
||||||
});
|
});
|
||||||
|
|
||||||
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Follower", b =>
|
|
||||||
{
|
|
||||||
b.HasOne("Hutopy.Web.Features.Contents.Data.Creator", "Creator")
|
|
||||||
.WithMany()
|
|
||||||
.HasForeignKey("CreatorId")
|
|
||||||
.OnDelete(DeleteBehavior.Cascade)
|
|
||||||
.IsRequired();
|
|
||||||
|
|
||||||
b.Navigation("Creator");
|
|
||||||
});
|
|
||||||
#pragma warning restore 612, 618
|
#pragma warning restore 612, 618
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
using System.Text;
|
using System.Text;
|
||||||
using Hutopy.Application.AzureBlobStorage.Constants;
|
using Hutopy.Web.Common.BlobStorage;
|
||||||
using Hutopy.Application.Common.Interfaces;
|
using Hutopy.Web.Common.Security;
|
||||||
using Hutopy.Web.Common;
|
|
||||||
using Hutopy.Web.Features.Contents.Data;
|
using Hutopy.Web.Features.Contents.Data;
|
||||||
using Hutopy.Web.Features.Contents.Handlers.Models;
|
using Hutopy.Web.Features.Contents.Handlers.Models;
|
||||||
|
|
||||||
@@ -13,7 +12,7 @@ public record PostContentFromHtmlRequest(
|
|||||||
Guid CreatorId,
|
Guid CreatorId,
|
||||||
string Title,
|
string Title,
|
||||||
string HtmlContent
|
string HtmlContent
|
||||||
);
|
);
|
||||||
|
|
||||||
[PublicAPI]
|
[PublicAPI]
|
||||||
public sealed class PostContentFromHtmlRequestValidator : Validator<PostContentFromHtmlRequest>
|
public sealed class PostContentFromHtmlRequestValidator : Validator<PostContentFromHtmlRequest>
|
||||||
@@ -35,7 +34,7 @@ public sealed class PostContentFromHtmlRequestValidator : Validator<PostContentF
|
|||||||
}
|
}
|
||||||
|
|
||||||
public sealed class PostContentHtml(
|
public sealed class PostContentHtml(
|
||||||
IBlobStorage blobStorage,
|
AzureBlobStorage blobStorage,
|
||||||
ContentDbContext context)
|
ContentDbContext context)
|
||||||
: Endpoint<PostContentFromHtmlRequest>
|
: Endpoint<PostContentFromHtmlRequest>
|
||||||
{
|
{
|
||||||
@@ -51,19 +50,13 @@ public sealed class PostContentHtml(
|
|||||||
CancellationToken ct)
|
CancellationToken ct)
|
||||||
{
|
{
|
||||||
var htmlFileUrl = await SaveHtmlContentAsHtmlFileAsync(
|
var htmlFileUrl = await SaveHtmlContentAsHtmlFileAsync(
|
||||||
req.CreatorId,
|
req.CreatorId,
|
||||||
req.Id,
|
req.Id,
|
||||||
req.HtmlContent,
|
req.HtmlContent,
|
||||||
ct);
|
ct);
|
||||||
|
|
||||||
await context.Contents.AddAsync(
|
await context.Contents.AddAsync(
|
||||||
new Content
|
new Content { Id = req.Id, CreatedBy = User.GetUserId(), Title = req.Title, HtmlFileUrl = htmlFileUrl },
|
||||||
{
|
|
||||||
Id = req.Id,
|
|
||||||
CreatedBy = User.GetUserId(),
|
|
||||||
Title = req.Title,
|
|
||||||
HtmlFileUrl = htmlFileUrl
|
|
||||||
},
|
|
||||||
ct);
|
ct);
|
||||||
|
|
||||||
await context.SaveChangesAsync(ct);
|
await context.SaveChangesAsync(ct);
|
||||||
|
|||||||
@@ -1,55 +0,0 @@
|
|||||||
using Hutopy.Web.Common;
|
|
||||||
using Hutopy.Web.Common.Security;
|
|
||||||
using Hutopy.Web.Features.Contents.Data;
|
|
||||||
using Hutopy.Web.Features.Contents.Handlers.Models;
|
|
||||||
|
|
||||||
namespace Hutopy.Web.Features.Contents.Handlers;
|
|
||||||
|
|
||||||
[PublicAPI]
|
|
||||||
public sealed class FollowCreatorRequest
|
|
||||||
{
|
|
||||||
public Guid CreatorId { get; set; }
|
|
||||||
}
|
|
||||||
|
|
||||||
[PublicAPI]
|
|
||||||
public sealed class FollowCreatorHandler(
|
|
||||||
ContentDbContext context)
|
|
||||||
: Endpoint<FollowCreatorRequest, FollowModel>
|
|
||||||
{
|
|
||||||
public override void Configure()
|
|
||||||
{
|
|
||||||
Post("/api/creators/{CreatorId}/follow");
|
|
||||||
Options((o => o.WithTags("creators")));
|
|
||||||
Description(x => x.Accepts<string>("*/*"));
|
|
||||||
}
|
|
||||||
|
|
||||||
public override async Task HandleAsync(
|
|
||||||
FollowCreatorRequest req,
|
|
||||||
CancellationToken ct)
|
|
||||||
{
|
|
||||||
await context.Followers.AddAsync(
|
|
||||||
new Follower { CreatedBy = User.GetUserId(), CreatorId = req.CreatorId },
|
|
||||||
ct);
|
|
||||||
|
|
||||||
await context.SaveChangesAsync(ct);
|
|
||||||
|
|
||||||
var creator = await context
|
|
||||||
.Creators
|
|
||||||
.Where(creator => creator.Id == req.CreatorId)
|
|
||||||
.Select(creator => new FollowModel(
|
|
||||||
req.CreatorId,
|
|
||||||
creator.Name,
|
|
||||||
creator.Images.Logo
|
|
||||||
))
|
|
||||||
.FirstOrDefaultAsync(cancellationToken: ct);
|
|
||||||
|
|
||||||
if (creator is null)
|
|
||||||
{
|
|
||||||
await SendNotFoundAsync(ct);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
await SendOkAsync(creator, ct);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -50,10 +50,6 @@ public class GetCreatorByAliasHandler(
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
var followerCount = await context.Followers.CountAsync(
|
|
||||||
s => s.CreatorId == creator.Id,
|
|
||||||
cancellationToken: ct);
|
|
||||||
|
|
||||||
var model = new CreatorModel(
|
var model = new CreatorModel(
|
||||||
creator.Id,
|
creator.Id,
|
||||||
creator.CreatedBy,
|
creator.CreatedBy,
|
||||||
@@ -62,8 +58,7 @@ public class GetCreatorByAliasHandler(
|
|||||||
creator.Title,
|
creator.Title,
|
||||||
creator.Socials,
|
creator.Socials,
|
||||||
creator.Colors,
|
creator.Colors,
|
||||||
creator.Images,
|
creator.Images);
|
||||||
followerCount);
|
|
||||||
|
|
||||||
await SendAsync(model, cancellation: ct);
|
await SendAsync(model, cancellation: ct);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,35 +0,0 @@
|
|||||||
using Hutopy.Web.Common;
|
|
||||||
using Hutopy.Web.Common.Security;
|
|
||||||
using Hutopy.Web.Features.Contents.Data;
|
|
||||||
using Hutopy.Web.Features.Contents.Handlers.Models;
|
|
||||||
|
|
||||||
namespace Hutopy.Web.Features.Contents.Handlers;
|
|
||||||
|
|
||||||
[PublicAPI]
|
|
||||||
public class GetFollowedCreatorsHandler(
|
|
||||||
ContentDbContext context)
|
|
||||||
: EndpointWithoutRequest<List<FollowModel>>
|
|
||||||
{
|
|
||||||
public override void Configure()
|
|
||||||
{
|
|
||||||
Get("/api/creators/followed");
|
|
||||||
Options((o => o.WithTags("Creators")));
|
|
||||||
}
|
|
||||||
|
|
||||||
public override async Task HandleAsync(
|
|
||||||
CancellationToken ct)
|
|
||||||
{
|
|
||||||
var userId = HttpContext.User.GetUserId();
|
|
||||||
|
|
||||||
var subscriptions = await context
|
|
||||||
.Followers
|
|
||||||
.Where(s => s.CreatedBy == userId)
|
|
||||||
.Select(s => new FollowModel(
|
|
||||||
s.CreatorId,
|
|
||||||
s.Creator!.Name,
|
|
||||||
s.Creator.Images.Logo))
|
|
||||||
.ToListAsync(cancellationToken: ct);
|
|
||||||
|
|
||||||
await SendOkAsync(subscriptions, ct);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
using Hutopy.Application.AzureBlobStorage.Constants;
|
using Hutopy.Web.Common.BlobStorage;
|
||||||
using Hutopy.Application.Common.Interfaces;
|
|
||||||
|
|
||||||
namespace Hutopy.Web.Features.Contents.Handlers;
|
namespace Hutopy.Web.Features.Contents.Handlers;
|
||||||
|
|
||||||
@@ -8,7 +7,7 @@ public record InsertImagesRequest(
|
|||||||
Guid Id,
|
Guid Id,
|
||||||
Guid CreatorId,
|
Guid CreatorId,
|
||||||
IFormFileCollection? Files
|
IFormFileCollection? Files
|
||||||
);
|
);
|
||||||
|
|
||||||
[PublicAPI]
|
[PublicAPI]
|
||||||
public sealed class InsertImagesRequestValidator : Validator<InsertImagesRequest>
|
public sealed class InsertImagesRequestValidator : Validator<InsertImagesRequest>
|
||||||
@@ -25,7 +24,9 @@ public sealed class InsertImagesRequestValidator : Validator<InsertImagesRequest
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public sealed class InsertImages(IBlobStorage blobStorage) : Endpoint<InsertImagesRequest>
|
public sealed class InsertImages(
|
||||||
|
AzureBlobStorage blobStorage)
|
||||||
|
: Endpoint<InsertImagesRequest>
|
||||||
{
|
{
|
||||||
public override void Configure()
|
public override void Configure()
|
||||||
{
|
{
|
||||||
@@ -63,6 +64,7 @@ public sealed class InsertImages(IBlobStorage blobStorage) : Endpoint<InsertImag
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
await SendOkAsync(urls, ct);
|
await SendOkAsync(urls, ct);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -11,5 +11,4 @@ public record struct CreatorModel(
|
|||||||
string? Title,
|
string? Title,
|
||||||
Socials Socials,
|
Socials Socials,
|
||||||
Colors Colors,
|
Colors Colors,
|
||||||
Images Images,
|
Images Images);
|
||||||
int FollowerCount);
|
|
||||||
|
|||||||
@@ -1,45 +0,0 @@
|
|||||||
using Hutopy.Web.Common;
|
|
||||||
using Hutopy.Web.Common.Security;
|
|
||||||
using Hutopy.Web.Features.Contents.Data;
|
|
||||||
|
|
||||||
namespace Hutopy.Web.Features.Contents.Handlers;
|
|
||||||
|
|
||||||
[PublicAPI]
|
|
||||||
public sealed class UnsubscribeFromCreatorRequest
|
|
||||||
{
|
|
||||||
public Guid CreatorId { get; set; }
|
|
||||||
}
|
|
||||||
|
|
||||||
[PublicAPI]
|
|
||||||
public class UnsubscribeFromCreatorHandler(
|
|
||||||
ContentDbContext context)
|
|
||||||
: Endpoint<UnsubscribeFromCreatorRequest>
|
|
||||||
{
|
|
||||||
public override void Configure()
|
|
||||||
{
|
|
||||||
Post("/api/creators/{CreatorId}/unfollow");
|
|
||||||
Options((o => o.WithTags("Creators")));
|
|
||||||
Description(x => x.Accepts<string>("*/*"));
|
|
||||||
}
|
|
||||||
|
|
||||||
public override async Task HandleAsync(
|
|
||||||
UnsubscribeFromCreatorRequest req,
|
|
||||||
CancellationToken ct)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
var subscription = new Follower { CreatorId = req.CreatorId, CreatedBy = HttpContext.User.GetUserId() };
|
|
||||||
|
|
||||||
context.Followers.Attach(subscription);
|
|
||||||
context.Followers.Remove(subscription);
|
|
||||||
|
|
||||||
await context.SaveChangesAsync(ct);
|
|
||||||
|
|
||||||
await SendOkAsync(ct);
|
|
||||||
}
|
|
||||||
catch (Exception)
|
|
||||||
{
|
|
||||||
await SendNotFoundAsync(ct);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,52 @@
|
|||||||
|
using Hutopy.Web.Common.Security;
|
||||||
|
using Hutopy.Web.Features.Memberships.Data;
|
||||||
|
using Hutopy.Web.Features.Memberships.Services;
|
||||||
|
|
||||||
|
namespace Hutopy.Web.Features.Memberships.Handlers;
|
||||||
|
|
||||||
|
[PublicAPI]
|
||||||
|
public record struct ConfigureStripeAccountRequest(
|
||||||
|
Guid SubscriptionId,
|
||||||
|
string StripeAccountId);
|
||||||
|
|
||||||
|
public class ConfigureStripeAccountHandler(
|
||||||
|
MembershipDbContext dbContext,
|
||||||
|
StripeService stripeService)
|
||||||
|
: Endpoint<ConfigureStripeAccountRequest>
|
||||||
|
{
|
||||||
|
public override void Configure()
|
||||||
|
{
|
||||||
|
Post("/api/membership/stripe-account");
|
||||||
|
Options(o => o.WithTags("Memberships"));
|
||||||
|
}
|
||||||
|
|
||||||
|
public override async Task HandleAsync(
|
||||||
|
ConfigureStripeAccountRequest req,
|
||||||
|
CancellationToken ct)
|
||||||
|
{
|
||||||
|
var creatorId = HttpContext.User.GetUserId();
|
||||||
|
|
||||||
|
var creator = await dbContext
|
||||||
|
.Creators
|
||||||
|
.FindAsync(
|
||||||
|
[creatorId],
|
||||||
|
cancellationToken: ct);
|
||||||
|
|
||||||
|
if (creator is null)
|
||||||
|
{
|
||||||
|
creator = new Creator
|
||||||
|
{
|
||||||
|
Id = creatorId,
|
||||||
|
Name = HttpContext.User.GetAlias() ?? creatorId.ToString()
|
||||||
|
};
|
||||||
|
|
||||||
|
await dbContext.AddAsync(creator, ct);
|
||||||
|
}
|
||||||
|
|
||||||
|
creator.StripeAccountId = req.StripeAccountId;
|
||||||
|
|
||||||
|
await dbContext.SaveChangesAsync(ct);
|
||||||
|
|
||||||
|
await SendOkAsync(creator.Id, ct);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -48,10 +48,6 @@ internal class TestDataSeeder(
|
|||||||
creator.Id = creatorUser.Id;
|
creator.Id = creatorUser.Id;
|
||||||
creator.CreatedBy = creator.Id;
|
creator.CreatedBy = creator.Id;
|
||||||
|
|
||||||
await contentContext.Followers.AddAsync(new Follower
|
|
||||||
{
|
|
||||||
CreatedBy = userA.Id, CreatorId = creator.Id
|
|
||||||
});
|
|
||||||
await contentContext.Creators.AddAsync(creator);
|
await contentContext.Creators.AddAsync(creator);
|
||||||
|
|
||||||
var contents = GenerateContent(creator, 10);
|
var contents = GenerateContent(creator, 10);
|
||||||
|
|||||||
@@ -30,7 +30,13 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<Folder Include="Features\Contents\Data\Migrations\" />
|
||||||
<Folder Include="Features\Users\Data\Migrations\" />
|
<Folder Include="Features\Users\Data\Migrations\" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Remove="Features\Contents\Data\Migrations\20241020195452_AddHtmlFileUrl.cs" />
|
||||||
|
<Compile Remove="Features\Contents\Data\Migrations\20241020195452_AddHtmlFileUrl.Designer.cs" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
Reference in New Issue
Block a user