Stage 9B of the bootstrap-seed-refactor: add per-domain importer classes that consume the load-index seed split produced in Stage 9A. New importers (each in its own file under SVSim.Bootstrap/Importers/): - RotationConfigImporter: writes Rotation/Challenge/MyRotationSchedule GameConfig sections (atomic UpsertSection<T> pattern, copied private-static from GlobalsImporter so this importer stands alone post-9C). - MyRotationImporter: settings + abilities (extractor pre-joins on rotation_id). - AvatarAbilityImporter: per-leader_skin_id ability rows. - ArenaSeasonImporter: singleton (Id=1) Take Two arena season. - BattlePassImporter: per-level reward blobs. - DailyLoginBonusImporter: per-bonus-id campaign blobs. - PreReleaseInfoImporter: singleton (Id=1) pre-release window. Seed DTOs under SVSim.Bootstrap/Models/Seed/ mirror the seed JSON via [JsonPropertyName] snake_case. Raw-JSON columns (reward_data, format_info, etc.) use JsonElement on the seed and JsonSerializer.Serialize in the importer. Tests: 7 new happy-path tests in LoadIndexImporterTests.cs (idempotency covered by BattlePass spot-check). Full suite: 382/382 passing (375 + 7). NOT modifying in this stage: GlobalsImporter.cs (Stage 9C strips the old methods), Program.cs (Stage 9C wires up all 9 importers), SVSimTestFactory (Stage 9C). Double-writing on bootstrap is expected and OK during 9B.
26 lines
1.6 KiB
C#
26 lines
1.6 KiB
C#
using System.Text.Json;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace SVSim.Bootstrap.Models.Seed;
|
|
|
|
/// <summary>
|
|
/// Mirrors <c>seeds/pre-release-info.json</c>. Singleton (id=1). Card-id lists are kept as raw
|
|
/// JSON elements so they round-trip verbatim into the entity's jsonb columns.
|
|
/// </summary>
|
|
public sealed class PreReleaseInfoSeed
|
|
{
|
|
[JsonPropertyName("pre_release_id")] public string PreReleaseId { get; set; } = "";
|
|
[JsonPropertyName("next_card_set_id")] public string NextCardSetId { get; set; } = "";
|
|
[JsonPropertyName("start_time")] public string StartTime { get; set; } = "";
|
|
[JsonPropertyName("end_time")] public string EndTime { get; set; } = "";
|
|
[JsonPropertyName("display_end_time")] public string DisplayEndTime { get; set; } = "";
|
|
[JsonPropertyName("free_match_start_time")] public string FreeMatchStartTime { get; set; } = "";
|
|
[JsonPropertyName("card_master_id")] public int CardMasterId { get; set; }
|
|
[JsonPropertyName("default_card_master_id")] public string DefaultCardMasterId { get; set; } = "";
|
|
[JsonPropertyName("pre_release_card_master_id")] public string PreReleaseCardMasterId { get; set; } = "";
|
|
[JsonPropertyName("is_pre_rotation_free_match_term")] public bool IsPreRotationFreeMatchTerm { get; set; }
|
|
[JsonPropertyName("rotation_card_set_id_list")] public JsonElement RotationCardSetIdList { get; set; }
|
|
[JsonPropertyName("reprinted_base_card_ids")] public JsonElement ReprintedBaseCardIds { get; set; }
|
|
[JsonPropertyName("latest_reprinted_base_card_ids")] public JsonElement LatestReprintedBaseCardIds { get; set; }
|
|
}
|