Adds the portal pair (shadowverse-portal.com deck-builder endpoints) as anonymous routes on the app server. The translation middleware learns a new [NoWireEncryption] attribute that skips both AES calls but keeps the rest of the msgpack + base64 + envelope pipeline intact, matching prod's portal wire profile observed in data_dumps/traffic_prod_deckcode.ndjson. Storage is a 3-minute IMemoryCache — codes are anonymous-global, 4-char lowercase alphanumeric (matches the shortest prod sample). Foil bit is stripped on mint to match prod's normalize-on-encode behaviour. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
22 lines
551 B
C#
22 lines
551 B
C#
using MessagePack;
|
|
using SVSim.EmulatedEntrypoint.Models.Dtos.Common;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Responses.DeckBuilder;
|
|
|
|
[MessagePackObject]
|
|
public class GenerateDeckCodeResponse
|
|
{
|
|
[JsonPropertyName("text")]
|
|
[Key("text")]
|
|
public string Text { get; set; } = "OK";
|
|
|
|
[JsonPropertyName("deck_code")]
|
|
[Key("deck_code")]
|
|
public string DeckCode { get; set; } = "";
|
|
|
|
[JsonPropertyName("errors")]
|
|
[Key("errors")]
|
|
public PortalErrors Errors { get; set; } = new();
|
|
}
|