Files
SVSimServer/SVSim.EmulatedEntrypoint/Models/Dtos/Requests/Admin/ImportViewerRequest.cs
gamer147 71b3c3e19f feat(import): import owned card collection with unknown-card skip
Extends POST /admin/import_viewer to accept owned_cards (snapshot full-replace).
Unknown card_ids are skipped, counted in skipped_card_count on the response, and
logged server-side. Count is clamped to OwnedCardEntry.MaxCopies (3). Also injects
ILogger into AdminController and adds Cards/Items/Decks to the viewer reload graph.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-29 18:22:44 -04:00

53 lines
2.2 KiB
C#

using System.Text.Json.Serialization;
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Requests.Admin;
/// <summary>
/// Snake-case JSON. Only used by the import endpoint (plain JSON over HTTP, not the
/// Unity msgpack path) so no MessagePack attributes are needed.
/// </summary>
public class ImportViewerRequest
{
[JsonPropertyName("steam_id")] public ulong SteamId { get; set; }
[JsonPropertyName("display_name")] public string? DisplayName { get; set; }
[JsonPropertyName("country_code")] public string? CountryCode { get; set; }
[JsonPropertyName("tutorial_state")] public int? TutorialState { get; set; }
[JsonPropertyName("selected_emblem_id")] public int? SelectedEmblemId { get; set; }
[JsonPropertyName("selected_degree_id")] public int? SelectedDegreeId { get; set; }
[JsonPropertyName("currency")] public ImportCurrency? Currency { get; set; }
[JsonPropertyName("owned_sleeve_ids")] public List<int>? OwnedSleeveIds { get; set; }
[JsonPropertyName("owned_emblem_ids")] public List<int>? OwnedEmblemIds { get; set; }
[JsonPropertyName("owned_degree_ids")] public List<int>? OwnedDegreeIds { get; set; }
[JsonPropertyName("owned_leader_skin_ids")] public List<int>? OwnedLeaderSkinIds { get; set; }
[JsonPropertyName("owned_mypage_background_ids")] public List<int>? OwnedMyPageBackgroundIds { get; set; }
[JsonPropertyName("classes")] public List<ImportClassData>? Classes { get; set; }
[JsonPropertyName("owned_cards")] public List<ImportCard>? OwnedCards { get; set; }
}
public class ImportCurrency
{
[JsonPropertyName("crystals")] public ulong? Crystals { get; set; }
[JsonPropertyName("rupees")] public ulong? Rupees { get; set; }
[JsonPropertyName("red_ether")] public ulong? RedEther { get; set; }
}
public class ImportClassData
{
[JsonPropertyName("class_id")] public int ClassId { get; set; }
[JsonPropertyName("level")] public int Level { get; set; }
[JsonPropertyName("exp")] public int Exp { get; set; }
}
public class ImportCard
{
[JsonPropertyName("card_id")] public long CardId { get; set; }
[JsonPropertyName("count")] public int Count { get; set; }
[JsonPropertyName("is_protected")] public bool IsProtected { get; set; }
}