Adds subscriptions
This commit is contained in:
@@ -28,6 +28,16 @@ public class ContentDbContext(
|
|||||||
.WithMany()
|
.WithMany()
|
||||||
.HasForeignKey(c => c.CreatedBy);
|
.HasForeignKey(c => c.CreatedBy);
|
||||||
|
|
||||||
|
modelBuilder
|
||||||
|
.Entity<Subscription>()
|
||||||
|
.HasOne(c => c.Creator)
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey(c => c.CreatorId);
|
||||||
|
|
||||||
|
modelBuilder
|
||||||
|
.Entity<Subscription>()
|
||||||
|
.HasKey(s => new { s.CreatedBy, s.CreatorId });
|
||||||
|
|
||||||
modelBuilder
|
modelBuilder
|
||||||
.Entity<Creator>()
|
.Entity<Creator>()
|
||||||
.OwnsOne<About>(x => x.About);
|
.OwnsOne<About>(x => x.About);
|
||||||
|
|||||||
@@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
public class Subscription
|
public class Subscription
|
||||||
{
|
{
|
||||||
public Guid Id { get; init; }
|
|
||||||
public Guid CreatorId { get; init; }
|
|
||||||
public Guid CreatedBy { get; init; }
|
public Guid CreatedBy { get; init; }
|
||||||
public DateTimeOffset CreatedAt { get; init; }
|
public DateTimeOffset CreatedAt { get; init; }
|
||||||
|
public Guid CreatorId { get; init; }
|
||||||
|
public Creator? Creator { get; set; }
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,13 +1,14 @@
|
|||||||
using FastEndpoints;
|
using FastEndpoints;
|
||||||
using Hutopy.Web.Common;
|
using Hutopy.Web.Common;
|
||||||
using Hutopy.Web.Features.Contents.Data;
|
using Hutopy.Web.Features.Contents.Data;
|
||||||
|
using Hutopy.Web.Features.Contents.Handlers.Models;
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
|
||||||
namespace Hutopy.Web.Features.Contents.Handlers;
|
namespace Hutopy.Web.Features.Contents.Handlers;
|
||||||
|
|
||||||
public class GetSubscriptionsHandler(
|
public class GetSubscriptionsHandler(
|
||||||
ContentDbContext context)
|
ContentDbContext context)
|
||||||
: EndpointWithoutRequest
|
: EndpointWithoutRequest<List<SubscriptionModel>>
|
||||||
{
|
{
|
||||||
public override void Configure()
|
public override void Configure()
|
||||||
{
|
{
|
||||||
@@ -20,12 +21,15 @@ public class GetSubscriptionsHandler(
|
|||||||
{
|
{
|
||||||
var userId = HttpContext.User.GetUserId();
|
var userId = HttpContext.User.GetUserId();
|
||||||
|
|
||||||
await context
|
var subscriptions = await context
|
||||||
.Subscriptions
|
.Subscriptions
|
||||||
.Where(s => s.CreatedBy == userId)
|
.Where(s => s.CreatedBy == userId)
|
||||||
.Include(s => s.Creator)
|
.Select(s => new SubscriptionModel(
|
||||||
|
s.CreatorId,
|
||||||
|
s.Creator!.Name,
|
||||||
|
s.Creator.StoredDataUrls.ProfilePictureUrl))
|
||||||
.ToListAsync(cancellationToken: ct);
|
.ToListAsync(cancellationToken: ct);
|
||||||
|
|
||||||
await SendOkAsync(ct);
|
await SendOkAsync(subscriptions, ct);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,6 @@
|
|||||||
|
namespace Hutopy.Web.Features.Contents.Handlers.Models;
|
||||||
|
|
||||||
|
public record SubscriptionModel(
|
||||||
|
Guid CreatorId,
|
||||||
|
string CreatorName,
|
||||||
|
string? CreatorPortraitUrl);
|
||||||
54
src/Web/Features/Contents/Handlers/SubscribeToCreator.cs
Normal file
54
src/Web/Features/Contents/Handlers/SubscribeToCreator.cs
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
using FastEndpoints;
|
||||||
|
using Hutopy.Web.Common;
|
||||||
|
using Hutopy.Web.Features.Contents.Data;
|
||||||
|
using Hutopy.Web.Features.Contents.Handlers.Models;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
|
||||||
|
namespace Hutopy.Web.Features.Contents.Handlers;
|
||||||
|
|
||||||
|
public sealed class SubscribeToCreatorRequest
|
||||||
|
{
|
||||||
|
public Guid CreatorId { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public sealed class SubscribeToCreatorHandler(
|
||||||
|
ContentDbContext context)
|
||||||
|
: Endpoint<SubscribeToCreatorRequest, SubscriptionModel>
|
||||||
|
{
|
||||||
|
public override void Configure()
|
||||||
|
{
|
||||||
|
Post("/api/creators/{CreatorId}/subscribe");
|
||||||
|
Options((o => o.WithTags("Creators")));
|
||||||
|
Description(x => x.Accepts<string>("*/*"));
|
||||||
|
}
|
||||||
|
|
||||||
|
public override async Task HandleAsync(
|
||||||
|
SubscribeToCreatorRequest req,
|
||||||
|
CancellationToken ct)
|
||||||
|
{
|
||||||
|
await context.Subscriptions.AddAsync(
|
||||||
|
new() { CreatedBy = HttpContext.User.GetUserId(), CreatorId = req.CreatorId },
|
||||||
|
ct);
|
||||||
|
|
||||||
|
await context.SaveChangesAsync(ct);
|
||||||
|
|
||||||
|
var creator = await context
|
||||||
|
.Creators
|
||||||
|
.Where(c => c.Id == req.CreatorId)
|
||||||
|
.Select(c => new SubscriptionModel(
|
||||||
|
req.CreatorId,
|
||||||
|
c.Name,
|
||||||
|
c.StoredDataUrls.ProfilePictureUrl
|
||||||
|
))
|
||||||
|
.FirstOrDefaultAsync(cancellationToken: ct);
|
||||||
|
|
||||||
|
if (creator is null)
|
||||||
|
{
|
||||||
|
await SendNotFoundAsync(ct);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
await SendOkAsync(creator, ct);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
using FastEndpoints;
|
|
||||||
|
|
||||||
namespace Hutopy.Web.Features.Contents.Handlers;
|
|
||||||
|
|
||||||
public record UnsubscribeFromCreatorRequest(
|
|
||||||
Guid CreatorId);
|
|
||||||
|
|
||||||
public class UnsubscribeFromCreatorHandler
|
|
||||||
: Endpoint<UnsubscribeFromCreatorRequest>
|
|
||||||
{ public override void Configure()
|
|
||||||
{
|
|
||||||
Post("");
|
|
||||||
}
|
|
||||||
|
|
||||||
public override async Task HandleAsync(
|
|
||||||
UnsubscribeFromCreatorRequest req,
|
|
||||||
CancellationToken ct)
|
|
||||||
{
|
|
||||||
return base.HandleAsync(req, ct);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
using FastEndpoints;
|
|
||||||
using Hutopy.Web.Common;
|
|
||||||
using Hutopy.Web.Features.Contents.Data;
|
|
||||||
|
|
||||||
namespace Hutopy.Web.Features.Contents.Handlers;
|
|
||||||
|
|
||||||
public record SubscribeToCreatorRequest(
|
|
||||||
Guid CreatorId);
|
|
||||||
|
|
||||||
public sealed class SubscribeToCreatorHandler(
|
|
||||||
ContentDbContext context)
|
|
||||||
: Endpoint<UnsubscribeFromCreatorRequest>
|
|
||||||
{
|
|
||||||
public override void Configure()
|
|
||||||
{
|
|
||||||
Post("/api/creators/{CreatorId}/subscribe");
|
|
||||||
Options((o => o.WithTags("Creators")));
|
|
||||||
}
|
|
||||||
|
|
||||||
public override async Task HandleAsync(
|
|
||||||
UnsubscribeFromCreatorRequest req,
|
|
||||||
CancellationToken ct)
|
|
||||||
{
|
|
||||||
await context.Subscriptions.AddAsync(
|
|
||||||
new() { CreatedBy = HttpContext.User.GetUserId(), CreatorId = req.CreatorId },
|
|
||||||
ct);
|
|
||||||
|
|
||||||
await SendOkAsync(ct);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
42
src/Web/Features/Contents/Handlers/UnsubscribeFromCreator.cs
Normal file
42
src/Web/Features/Contents/Handlers/UnsubscribeFromCreator.cs
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
using FastEndpoints;
|
||||||
|
using Hutopy.Web.Common;
|
||||||
|
using Hutopy.Web.Features.Contents.Data;
|
||||||
|
|
||||||
|
namespace Hutopy.Web.Features.Contents.Handlers;
|
||||||
|
|
||||||
|
public sealed class UnsubscribeFromCreatorRequest
|
||||||
|
{
|
||||||
|
public Guid CreatorId { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class UnsubscribeFromCreatorHandler(
|
||||||
|
ContentDbContext context)
|
||||||
|
: Endpoint<UnsubscribeFromCreatorRequest>
|
||||||
|
{
|
||||||
|
public override void Configure()
|
||||||
|
{
|
||||||
|
Post("/api/creators/{CreatorId}/unsubscribe");
|
||||||
|
Options((o => o.WithTags("Creators")));
|
||||||
|
Description(x => x.Accepts<string>("*/*"));
|
||||||
|
}
|
||||||
|
|
||||||
|
public override async Task HandleAsync(
|
||||||
|
UnsubscribeFromCreatorRequest req,
|
||||||
|
CancellationToken ct)
|
||||||
|
{
|
||||||
|
var subscription = new Subscription { CreatorId = req.CreatorId, CreatedBy = HttpContext.User.GetUserId() };
|
||||||
|
|
||||||
|
context.Subscriptions.Attach(subscription);
|
||||||
|
context.Subscriptions.Remove(subscription);
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
await context.SaveChangesAsync(ct);
|
||||||
|
await SendOkAsync(ct);
|
||||||
|
}
|
||||||
|
catch (Exception)
|
||||||
|
{
|
||||||
|
await SendNotFoundAsync(ct);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,78 +0,0 @@
|
|||||||
using System;
|
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
|
|
||||||
#nullable disable
|
|
||||||
|
|
||||||
namespace Hutopy.Web.Features.Contents.Migrations
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
public partial class Initial : Migration
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
protected override void Up(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.EnsureSchema(
|
|
||||||
name: "Content");
|
|
||||||
|
|
||||||
migrationBuilder.CreateTable(
|
|
||||||
name: "Contents",
|
|
||||||
schema: "Content",
|
|
||||||
columns: table => new
|
|
||||||
{
|
|
||||||
Id = 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"),
|
|
||||||
Title = table.Column<string>(type: "text", nullable: false),
|
|
||||||
Description = table.Column<string>(type: "text", nullable: false),
|
|
||||||
Urls = table.Column<string[]>(type: "text[]", nullable: true)
|
|
||||||
},
|
|
||||||
constraints: table =>
|
|
||||||
{
|
|
||||||
table.PrimaryKey("PK_Contents", x => x.Id);
|
|
||||||
});
|
|
||||||
|
|
||||||
migrationBuilder.CreateTable(
|
|
||||||
name: "Creators",
|
|
||||||
schema: "Content",
|
|
||||||
columns: table => new
|
|
||||||
{
|
|
||||||
Id = 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),
|
|
||||||
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),
|
|
||||||
About_Description = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true),
|
|
||||||
SocialNetworks_FacebookUrl = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true),
|
|
||||||
SocialNetworks_InstagramUrl = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true),
|
|
||||||
SocialNetworks_XUrl = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true),
|
|
||||||
SocialNetworks_LinkedInUrl = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true),
|
|
||||||
SocialNetworks_TikTokUrl = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true),
|
|
||||||
SocialNetworks_YoutubeUrl = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true),
|
|
||||||
SocialNetworks_RedditUrl = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true),
|
|
||||||
SocialNetworks_WebsiteUrl = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true),
|
|
||||||
ProfileColors_BannerTop = table.Column<string>(type: "character varying(9)", maxLength: 9, nullable: true),
|
|
||||||
ProfileColors_BannerBottom = table.Column<string>(type: "character varying(9)", maxLength: 9, nullable: true),
|
|
||||||
ProfileColors_Accent = table.Column<string>(type: "character varying(9)", maxLength: 9, nullable: true),
|
|
||||||
ProfileColors_Menu = table.Column<string>(type: "character varying(9)", maxLength: 9, nullable: true),
|
|
||||||
StoredDataUrls_BannerPictureUrl = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true),
|
|
||||||
StoredDataUrls_ProfilePictureUrl = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true)
|
|
||||||
},
|
|
||||||
constraints: table =>
|
|
||||||
{
|
|
||||||
table.PrimaryKey("PK_Creators", x => x.Id);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
protected override void Down(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.DropTable(
|
|
||||||
name: "Contents",
|
|
||||||
schema: "Content");
|
|
||||||
|
|
||||||
migrationBuilder.DropTable(
|
|
||||||
name: "Creators",
|
|
||||||
schema: "Content");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -12,7 +12,7 @@ using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|||||||
namespace Hutopy.Web.Features.Contents.Migrations
|
namespace Hutopy.Web.Features.Contents.Migrations
|
||||||
{
|
{
|
||||||
[DbContext(typeof(ContentDbContext))]
|
[DbContext(typeof(ContentDbContext))]
|
||||||
[Migration("20240802044656_Initial")]
|
[Migration("20240804071117_Initial")]
|
||||||
partial class Initial
|
partial class Initial
|
||||||
{
|
{
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
@@ -42,17 +42,21 @@ namespace Hutopy.Web.Features.Contents.Migrations
|
|||||||
|
|
||||||
b.Property<string>("Description")
|
b.Property<string>("Description")
|
||||||
.IsRequired()
|
.IsRequired()
|
||||||
.HasColumnType("text");
|
.HasMaxLength(2048)
|
||||||
|
.HasColumnType("character varying(2048)");
|
||||||
|
|
||||||
b.Property<string>("Title")
|
b.Property<string>("Title")
|
||||||
.IsRequired()
|
.IsRequired()
|
||||||
.HasColumnType("text");
|
.HasMaxLength(128)
|
||||||
|
.HasColumnType("character varying(128)");
|
||||||
|
|
||||||
b.Property<string[]>("Urls")
|
b.Property<string[]>("Urls")
|
||||||
.HasColumnType("text[]");
|
.HasColumnType("text[]");
|
||||||
|
|
||||||
b.HasKey("Id");
|
b.HasKey("Id");
|
||||||
|
|
||||||
|
b.HasIndex("CreatedBy");
|
||||||
|
|
||||||
b.ToTable("Contents", "Content");
|
b.ToTable("Contents", "Content");
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -78,6 +82,35 @@ namespace Hutopy.Web.Features.Contents.Migrations
|
|||||||
b.ToTable("Creators", "Content");
|
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 =>
|
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Creator", b =>
|
||||||
{
|
{
|
||||||
b.OwnsOne("Hutopy.Web.Features.Contents.Data.About", "About", b1 =>
|
b.OwnsOne("Hutopy.Web.Features.Contents.Data.About", "About", b1 =>
|
||||||
@@ -124,7 +157,7 @@ namespace Hutopy.Web.Features.Contents.Migrations
|
|||||||
|
|
||||||
b1.HasKey("CreatorId");
|
b1.HasKey("CreatorId");
|
||||||
|
|
||||||
b1.ToTable("Creators", "Content");
|
b1.ToTable("ProfileColors", "Content");
|
||||||
|
|
||||||
b1.WithOwner()
|
b1.WithOwner()
|
||||||
.HasForeignKey("CreatorId");
|
.HasForeignKey("CreatorId");
|
||||||
@@ -169,7 +202,7 @@ namespace Hutopy.Web.Features.Contents.Migrations
|
|||||||
|
|
||||||
b1.HasKey("CreatorId");
|
b1.HasKey("CreatorId");
|
||||||
|
|
||||||
b1.ToTable("Creators", "Content");
|
b1.ToTable("SocialNetworks", "Content");
|
||||||
|
|
||||||
b1.WithOwner()
|
b1.WithOwner()
|
||||||
.HasForeignKey("CreatorId");
|
.HasForeignKey("CreatorId");
|
||||||
@@ -190,7 +223,7 @@ namespace Hutopy.Web.Features.Contents.Migrations
|
|||||||
|
|
||||||
b1.HasKey("CreatorId");
|
b1.HasKey("CreatorId");
|
||||||
|
|
||||||
b1.ToTable("Creators", "Content");
|
b1.ToTable("StoredDataUrls", "Content");
|
||||||
|
|
||||||
b1.WithOwner()
|
b1.WithOwner()
|
||||||
.HasForeignKey("CreatorId");
|
.HasForeignKey("CreatorId");
|
||||||
@@ -208,6 +241,17 @@ namespace Hutopy.Web.Features.Contents.Migrations
|
|||||||
b.Navigation("StoredDataUrls")
|
b.Navigation("StoredDataUrls")
|
||||||
.IsRequired();
|
.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
|
#pragma warning restore 612, 618
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
191
src/Web/Features/Contents/Migrations/20240804071117_Initial.cs
Normal file
191
src/Web/Features/Contents/Migrations/20240804071117_Initial.cs
Normal file
@@ -0,0 +1,191 @@
|
|||||||
|
using System;
|
||||||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
|
#nullable disable
|
||||||
|
|
||||||
|
namespace Hutopy.Web.Features.Contents.Migrations
|
||||||
|
{
|
||||||
|
/// <inheritdoc />
|
||||||
|
public partial class Initial : Migration
|
||||||
|
{
|
||||||
|
/// <inheritdoc />
|
||||||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
migrationBuilder.EnsureSchema(
|
||||||
|
name: "Content");
|
||||||
|
|
||||||
|
migrationBuilder.CreateTable(
|
||||||
|
name: "Creators",
|
||||||
|
schema: "Content",
|
||||||
|
columns: table => new
|
||||||
|
{
|
||||||
|
Id = 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),
|
||||||
|
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),
|
||||||
|
About_Description = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true)
|
||||||
|
},
|
||||||
|
constraints: table =>
|
||||||
|
{
|
||||||
|
table.PrimaryKey("PK_Creators", x => x.Id);
|
||||||
|
});
|
||||||
|
|
||||||
|
migrationBuilder.CreateTable(
|
||||||
|
name: "Contents",
|
||||||
|
schema: "Content",
|
||||||
|
columns: table => new
|
||||||
|
{
|
||||||
|
Id = 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"),
|
||||||
|
Title = table.Column<string>(type: "character varying(128)", maxLength: 128, nullable: false),
|
||||||
|
Description = table.Column<string>(type: "character varying(2048)", maxLength: 2048, nullable: false),
|
||||||
|
Urls = table.Column<string[]>(type: "text[]", nullable: true)
|
||||||
|
},
|
||||||
|
constraints: table =>
|
||||||
|
{
|
||||||
|
table.PrimaryKey("PK_Contents", x => x.Id);
|
||||||
|
table.ForeignKey(
|
||||||
|
name: "FK_Contents_Creators_CreatedBy",
|
||||||
|
column: x => x.CreatedBy,
|
||||||
|
principalSchema: "Content",
|
||||||
|
principalTable: "Creators",
|
||||||
|
principalColumn: "Id",
|
||||||
|
onDelete: ReferentialAction.Cascade);
|
||||||
|
});
|
||||||
|
|
||||||
|
migrationBuilder.CreateTable(
|
||||||
|
name: "ProfileColors",
|
||||||
|
schema: "Content",
|
||||||
|
columns: table => new
|
||||||
|
{
|
||||||
|
CreatorId = table.Column<Guid>(type: "uuid", nullable: false),
|
||||||
|
BannerTop = table.Column<string>(type: "character varying(9)", maxLength: 9, nullable: true),
|
||||||
|
BannerBottom = table.Column<string>(type: "character varying(9)", maxLength: 9, nullable: true),
|
||||||
|
Accent = table.Column<string>(type: "character varying(9)", maxLength: 9, nullable: true),
|
||||||
|
Menu = table.Column<string>(type: "character varying(9)", maxLength: 9, nullable: true)
|
||||||
|
},
|
||||||
|
constraints: table =>
|
||||||
|
{
|
||||||
|
table.PrimaryKey("PK_ProfileColors", x => x.CreatorId);
|
||||||
|
table.ForeignKey(
|
||||||
|
name: "FK_ProfileColors_Creators_CreatorId",
|
||||||
|
column: x => x.CreatorId,
|
||||||
|
principalSchema: "Content",
|
||||||
|
principalTable: "Creators",
|
||||||
|
principalColumn: "Id",
|
||||||
|
onDelete: ReferentialAction.Cascade);
|
||||||
|
});
|
||||||
|
|
||||||
|
migrationBuilder.CreateTable(
|
||||||
|
name: "SocialNetworks",
|
||||||
|
schema: "Content",
|
||||||
|
columns: table => new
|
||||||
|
{
|
||||||
|
CreatorId = table.Column<Guid>(type: "uuid", nullable: false),
|
||||||
|
FacebookUrl = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true),
|
||||||
|
InstagramUrl = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true),
|
||||||
|
XUrl = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true),
|
||||||
|
LinkedInUrl = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true),
|
||||||
|
TikTokUrl = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true),
|
||||||
|
YoutubeUrl = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true),
|
||||||
|
RedditUrl = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true),
|
||||||
|
WebsiteUrl = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true)
|
||||||
|
},
|
||||||
|
constraints: table =>
|
||||||
|
{
|
||||||
|
table.PrimaryKey("PK_SocialNetworks", x => x.CreatorId);
|
||||||
|
table.ForeignKey(
|
||||||
|
name: "FK_SocialNetworks_Creators_CreatorId",
|
||||||
|
column: x => x.CreatorId,
|
||||||
|
principalSchema: "Content",
|
||||||
|
principalTable: "Creators",
|
||||||
|
principalColumn: "Id",
|
||||||
|
onDelete: ReferentialAction.Cascade);
|
||||||
|
});
|
||||||
|
|
||||||
|
migrationBuilder.CreateTable(
|
||||||
|
name: "StoredDataUrls",
|
||||||
|
schema: "Content",
|
||||||
|
columns: table => new
|
||||||
|
{
|
||||||
|
CreatorId = table.Column<Guid>(type: "uuid", nullable: false),
|
||||||
|
BannerPictureUrl = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true),
|
||||||
|
ProfilePictureUrl = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true)
|
||||||
|
},
|
||||||
|
constraints: table =>
|
||||||
|
{
|
||||||
|
table.PrimaryKey("PK_StoredDataUrls", x => x.CreatorId);
|
||||||
|
table.ForeignKey(
|
||||||
|
name: "FK_StoredDataUrls_Creators_CreatorId",
|
||||||
|
column: x => x.CreatorId,
|
||||||
|
principalSchema: "Content",
|
||||||
|
principalTable: "Creators",
|
||||||
|
principalColumn: "Id",
|
||||||
|
onDelete: ReferentialAction.Cascade);
|
||||||
|
});
|
||||||
|
|
||||||
|
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_Contents_CreatedBy",
|
||||||
|
schema: "Content",
|
||||||
|
table: "Contents",
|
||||||
|
column: "CreatedBy");
|
||||||
|
|
||||||
|
migrationBuilder.CreateIndex(
|
||||||
|
name: "IX_Subscriptions_CreatorId",
|
||||||
|
schema: "Content",
|
||||||
|
table: "Subscriptions",
|
||||||
|
column: "CreatorId");
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
migrationBuilder.DropTable(
|
||||||
|
name: "Contents",
|
||||||
|
schema: "Content");
|
||||||
|
|
||||||
|
migrationBuilder.DropTable(
|
||||||
|
name: "ProfileColors",
|
||||||
|
schema: "Content");
|
||||||
|
|
||||||
|
migrationBuilder.DropTable(
|
||||||
|
name: "SocialNetworks",
|
||||||
|
schema: "Content");
|
||||||
|
|
||||||
|
migrationBuilder.DropTable(
|
||||||
|
name: "StoredDataUrls",
|
||||||
|
schema: "Content");
|
||||||
|
|
||||||
|
migrationBuilder.DropTable(
|
||||||
|
name: "Subscriptions",
|
||||||
|
schema: "Content");
|
||||||
|
|
||||||
|
migrationBuilder.DropTable(
|
||||||
|
name: "Creators",
|
||||||
|
schema: "Content");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -39,17 +39,21 @@ namespace Hutopy.Web.Features.Contents.Migrations
|
|||||||
|
|
||||||
b.Property<string>("Description")
|
b.Property<string>("Description")
|
||||||
.IsRequired()
|
.IsRequired()
|
||||||
.HasColumnType("text");
|
.HasMaxLength(2048)
|
||||||
|
.HasColumnType("character varying(2048)");
|
||||||
|
|
||||||
b.Property<string>("Title")
|
b.Property<string>("Title")
|
||||||
.IsRequired()
|
.IsRequired()
|
||||||
.HasColumnType("text");
|
.HasMaxLength(128)
|
||||||
|
.HasColumnType("character varying(128)");
|
||||||
|
|
||||||
b.Property<string[]>("Urls")
|
b.Property<string[]>("Urls")
|
||||||
.HasColumnType("text[]");
|
.HasColumnType("text[]");
|
||||||
|
|
||||||
b.HasKey("Id");
|
b.HasKey("Id");
|
||||||
|
|
||||||
|
b.HasIndex("CreatedBy");
|
||||||
|
|
||||||
b.ToTable("Contents", "Content");
|
b.ToTable("Contents", "Content");
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -75,6 +79,35 @@ namespace Hutopy.Web.Features.Contents.Migrations
|
|||||||
b.ToTable("Creators", "Content");
|
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 =>
|
modelBuilder.Entity("Hutopy.Web.Features.Contents.Data.Creator", b =>
|
||||||
{
|
{
|
||||||
b.OwnsOne("Hutopy.Web.Features.Contents.Data.About", "About", b1 =>
|
b.OwnsOne("Hutopy.Web.Features.Contents.Data.About", "About", b1 =>
|
||||||
@@ -121,7 +154,7 @@ namespace Hutopy.Web.Features.Contents.Migrations
|
|||||||
|
|
||||||
b1.HasKey("CreatorId");
|
b1.HasKey("CreatorId");
|
||||||
|
|
||||||
b1.ToTable("Creators", "Content");
|
b1.ToTable("ProfileColors", "Content");
|
||||||
|
|
||||||
b1.WithOwner()
|
b1.WithOwner()
|
||||||
.HasForeignKey("CreatorId");
|
.HasForeignKey("CreatorId");
|
||||||
@@ -166,7 +199,7 @@ namespace Hutopy.Web.Features.Contents.Migrations
|
|||||||
|
|
||||||
b1.HasKey("CreatorId");
|
b1.HasKey("CreatorId");
|
||||||
|
|
||||||
b1.ToTable("Creators", "Content");
|
b1.ToTable("SocialNetworks", "Content");
|
||||||
|
|
||||||
b1.WithOwner()
|
b1.WithOwner()
|
||||||
.HasForeignKey("CreatorId");
|
.HasForeignKey("CreatorId");
|
||||||
@@ -187,7 +220,7 @@ namespace Hutopy.Web.Features.Contents.Migrations
|
|||||||
|
|
||||||
b1.HasKey("CreatorId");
|
b1.HasKey("CreatorId");
|
||||||
|
|
||||||
b1.ToTable("Creators", "Content");
|
b1.ToTable("StoredDataUrls", "Content");
|
||||||
|
|
||||||
b1.WithOwner()
|
b1.WithOwner()
|
||||||
.HasForeignKey("CreatorId");
|
.HasForeignKey("CreatorId");
|
||||||
@@ -205,6 +238,17 @@ namespace Hutopy.Web.Features.Contents.Migrations
|
|||||||
b.Navigation("StoredDataUrls")
|
b.Navigation("StoredDataUrls")
|
||||||
.IsRequired();
|
.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
|
#pragma warning restore 612, 618
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user