feat(bp-monthly): BattlePassMonthlyMissionImporter, idempotent by (Y, M, order)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
gamer147
2026-05-27 10:18:03 -04:00
parent 6db800f286
commit 90cc5a9f5d
3 changed files with 165 additions and 0 deletions

View File

@@ -0,0 +1,61 @@
using Microsoft.EntityFrameworkCore;
using SVSim.Bootstrap.Models.Seed;
using SVSim.Database;
using SVSim.Database.Models;
namespace SVSim.Bootstrap.Importers;
/// <summary>
/// Idempotent upsert of BP monthly mission rows from <c>seeds/bp-monthly-missions.json</c>.
/// Keyed by (Year, Month, OrderNum). Rows missing from the seed are LEFT INTACT.
/// </summary>
public class BattlePassMonthlyMissionImporter
{
public async Task<int> ImportAsync(SVSimDbContext context, string seedDir)
{
var seed = SeedLoader.LoadList<BattlePassMonthlyMissionSeed>(
Path.Combine(seedDir, "bp-monthly-missions.json"));
if (seed.Count == 0)
{
Console.WriteLine("[BattlePassMonthlyMissionImporter] No seed rows; skipping.");
return 0;
}
var existing = await context.BattlePassMonthlyMissions
.ToDictionaryAsync(e => (e.Year, e.Month, e.OrderNum));
int created = 0, updated = 0;
var unmapped = new List<string>();
foreach (var s in seed)
{
if (s.Year == 0 || s.Month == 0) continue;
var key = (s.Year, s.Month, s.OrderNum);
var entry = existing.TryGetValue(key, out var ex)
? ex
: new BattlePassMonthlyMissionEntry
{
Year = s.Year, Month = s.Month, OrderNum = s.OrderNum,
};
entry.Name = s.Name;
entry.RequireNumber = s.RequireNumber;
entry.BattlePassPoint = s.BattlePassPoint;
entry.RewardType = s.RewardType;
entry.RewardDetailId = s.RewardDetailId;
entry.RewardNumber = s.RewardNumber;
entry.EventType = s.EventType;
entry.EventArg = s.EventArg;
if (ex is null) { context.BattlePassMonthlyMissions.Add(entry); existing[key] = entry; created++; }
else updated++;
if (s.EventType is null) unmapped.Add($"{s.Year}-{s.Month:00}/{s.OrderNum}");
}
await context.SaveChangesAsync();
Console.WriteLine($"[BattlePassMonthlyMissionImporter] +{created}/~{updated}");
if (unmapped.Count > 0)
{
Console.WriteLine($"[BattlePassMonthlyMissionImporter] WARN: {unmapped.Count} rows " +
$"with no event_type: [{string.Join(", ", unmapped)}] — add name to " +
"BP_MONTHLY_EVENT_MAP in data_dumps/extract/extract-bp-monthly-missions.py");
}
return created + updated;
}
}

View File

@@ -0,0 +1,18 @@
using System.Text.Json.Serialization;
namespace SVSim.Bootstrap.Models.Seed;
public sealed class BattlePassMonthlyMissionSeed
{
[JsonPropertyName("year")] public int Year { get; set; }
[JsonPropertyName("month")] public int Month { get; set; }
[JsonPropertyName("order_num")] public int OrderNum { get; set; }
[JsonPropertyName("name")] public string Name { get; set; } = "";
[JsonPropertyName("require_number")] public int RequireNumber { get; set; }
[JsonPropertyName("battle_pass_point")] public int BattlePassPoint { get; set; }
[JsonPropertyName("reward_type")] public int? RewardType { get; set; }
[JsonPropertyName("reward_detail_id")] public long? RewardDetailId { get; set; }
[JsonPropertyName("reward_number")] public int? RewardNumber { get; set; }
[JsonPropertyName("event_type")] public string? EventType { get; set; }
[JsonPropertyName("event_arg")] public int? EventArg { get; set; }
}