♻️ Moved the site to the Zone project

This commit is contained in:
2025-11-19 22:28:52 +08:00
parent 9b4cbade5c
commit 1b774c1de6
16 changed files with 2537 additions and 151 deletions

View File

@@ -1,8 +1,10 @@
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text.Json.Serialization;
using DysonNetwork.Shared.Proto;
using Microsoft.EntityFrameworkCore;
using NodaTime;
using NodaTime.Extensions;
using NodaTime.Serialization.Protobuf;
namespace DysonNetwork.Shared.Models;
@@ -148,23 +150,42 @@ public class SnPublisherMember : ModelBase
public Instant? JoinedAt { get; set; }
public Proto.PublisherMember ToProto()
public PublisherMember ToProto()
{
return new Proto.PublisherMember()
return new PublisherMember
{
PublisherId = PublisherId.ToString(),
AccountId = AccountId.ToString(),
Role = Role switch
{
PublisherMemberRole.Owner => Shared.Proto.PublisherMemberRole.Owner,
PublisherMemberRole.Manager => Shared.Proto.PublisherMemberRole.Manager,
PublisherMemberRole.Editor => Shared.Proto.PublisherMemberRole.Editor,
PublisherMemberRole.Viewer => Shared.Proto.PublisherMemberRole.Viewer,
PublisherMemberRole.Owner => Proto.PublisherMemberRole.Owner,
PublisherMemberRole.Manager => Proto.PublisherMemberRole.Manager,
PublisherMemberRole.Editor => Proto.PublisherMemberRole.Editor,
PublisherMemberRole.Viewer => Proto.PublisherMemberRole.Viewer,
_ => throw new ArgumentOutOfRangeException(nameof(Role), Role, null)
},
JoinedAt = JoinedAt?.ToTimestamp()
};
}
public static SnPublisherMember FromProtoValue(PublisherMember proto)
{
return new SnPublisherMember
{
PublisherId = Guid.Parse(proto.PublisherId),
AccountId = Guid.Parse(proto.AccountId),
Role = proto.Role switch
{
Proto.PublisherMemberRole.Owner => PublisherMemberRole.Owner,
Proto.PublisherMemberRole.Manager => PublisherMemberRole.Manager,
Proto.PublisherMemberRole.Editor => PublisherMemberRole.Editor,
_ => PublisherMemberRole.Viewer
},
JoinedAt = proto.JoinedAt?.ToDateTimeOffset().ToInstant(),
CreatedAt = proto.CreatedAt.ToDateTimeOffset().ToInstant(),
UpdatedAt = proto.UpdatedAt.ToDateTimeOffset().ToInstant()
};
}
}
public enum PublisherSubscriptionStatus
@@ -200,4 +221,4 @@ public abstract class PublisherFeatureFlag
{
public static List<string> AllFlags => [Develop];
public static string Develop = "develop";
}
}