Closes 5 of arena-colosseum's 16 spec shapes (1/16 → 6/16). Lobby reads
(/top, /get_fee_info, /event_info) render an empty "no event scheduled"
payload by default; /entry + /register_deck activate via admin-flipped
ColosseumSeason + ColosseumRounds config sections.
* Schema: ViewerArenaColosseumRun standalone table (unique on ViewerId)
with jsonb run-state columns mirroring ViewerArenaTwoPickRun.
* Config sections: ColosseumSeasonConfig (event-level), ColosseumRoundsConfig
(the 3-round bracket). Empty defaults — IsColosseumPeriod=false.
* Migration AddArenaColosseumRun (DDL only; seed rows come from the section
ShippedDefaults via EnsureSeedDataAsync).
* DTOs: ColosseumLobbyInfo (round-level, /top + /get_fee_info), ColosseumEventInfo
(event-level, /event_info), ColosseumOwnStatus (shared status block),
ColosseumEntryRef, ColosseumFeeList, ColosseumUserDeck, ColosseumBattleResults,
ColosseumRoundDetail + ColosseumGroupRow. EventInfoResponse uses explicit
[JsonPropertyName("1"|"2"|"3")] for the string-keyed rounds shape per spec.
* Controller: ArenaColosseumController replaces the 1-action stub with
the five lifecycle endpoints. /top emits leader_skin_id even when 0
(project_wire_null_policy override).
* Tests: 11 controller-level tests + 6 config round-trip tests covering
empty-season payloads, run-seeded /top round-trip, crystal/rupy entry
debits, now_round_id mismatch rejection, deck_no_list round-trip + reject.
47 lines
1.9 KiB
C#
47 lines
1.9 KiB
C#
using System.Text.Json.Serialization;
|
|
using MessagePack;
|
|
using SVSim.EmulatedEntrypoint.Models.Dtos.ArenaColosseum;
|
|
|
|
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Responses.ArenaColosseum;
|
|
|
|
/// <summary>
|
|
/// <c>POST /arena_colosseum/get_fee_info</c> — pre-entry oracle. Most fields are optional;
|
|
/// presence drives the lobby state machine on the client side
|
|
/// (<c>Wizard/ColosseumEntryInfoTask.cs</c>). When no season is active, only
|
|
/// <see cref="ColosseumInfo"/> + <see cref="ColosseumStatus"/> are emitted (the former with
|
|
/// <c>is_colosseum_period:false</c>, the latter as <c>{}</c> via WhenWritingNull stripping).
|
|
/// </summary>
|
|
[MessagePackObject]
|
|
public class GetFeeInfoResponseDto
|
|
{
|
|
[JsonPropertyName("colosseum_info")] [Key("colosseum_info")]
|
|
public ColosseumLobbyInfo ColosseumInfo { get; set; } = new();
|
|
|
|
[JsonPropertyName("colosseum_status")] [Key("colosseum_status")]
|
|
public ColosseumOwnStatus ColosseumStatus { get; set; } = new();
|
|
|
|
[JsonPropertyName("is_unfinished_entry_exists")] [Key("is_unfinished_entry_exists")]
|
|
public bool? IsUnfinishedEntryExists { get; set; }
|
|
|
|
[JsonPropertyName("is_allowed_free_entry")] [Key("is_allowed_free_entry")]
|
|
public bool? IsAllowedFreeEntry { get; set; }
|
|
|
|
[JsonPropertyName("fee_list")] [Key("fee_list")]
|
|
public ColosseumFeeList? FeeList { get; set; }
|
|
|
|
[JsonPropertyName("deck_format")] [Key("deck_format")]
|
|
public int? DeckFormat { get; set; }
|
|
|
|
[JsonPropertyName("is_able_to_join_round_3")] [Key("is_able_to_join_round_3")]
|
|
public bool? IsAbleToJoinRound3 { get; set; }
|
|
|
|
[JsonPropertyName("is_already_entry_final_round")] [Key("is_already_entry_final_round")]
|
|
public bool? IsAlreadyEntryFinalRound { get; set; }
|
|
|
|
[JsonPropertyName("is_deck_deleted")] [Key("is_deck_deleted")]
|
|
public bool? IsDeckDeleted { get; set; }
|
|
|
|
[JsonPropertyName("two_pick_status")] [Key("two_pick_status")]
|
|
public int? TwoPickStatus { get; set; }
|
|
}
|