using Newtonsoft.Json; namespace CodexPlugin { public class CodexDebugResponse { public string id { get; set; } = string.Empty; public string[] addrs { get; set; } = new string[0]; public string repo { get; set; } = string.Empty; public string spr { get; set; } = string.Empty; public EnginePeerResponse[] enginePeers { get; set; } = Array.Empty(); public SwitchPeerResponse[] switchPeers { get; set; } = Array.Empty(); public CodexDebugVersionResponse codex { get; set; } = new(); public CodexDebugTableResponse table { get; set; } = new(); } public class CodexDebugFutures { public int futures { get; set; } } public class CodexDebugTableResponse { public CodexDebugTableNodeResponse localNode { get; set; } = new(); public CodexDebugTableNodeResponse[] nodes { get; set; } = Array.Empty(); } public class CodexDebugTableNodeResponse { public string nodeId { get; set; } = string.Empty; public string peerId { get; set; } = string.Empty; public string record { get; set; } = string.Empty; public string address { get; set; } = string.Empty; public bool seen { get; set; } } public class EnginePeerResponse { public string peerId { get; set; } = string.Empty; public EnginePeerContextResponse context { get; set; } = new(); } public class EnginePeerContextResponse { public int blocks { get; set; } = 0; public int peerWants { get; set; } = 0; public int exchanged { get; set; } = 0; public string lastExchange { get; set; } = string.Empty; } public class SwitchPeerResponse { public string peerId { get; set; } = string.Empty; public string key { get; set; } = string.Empty; } public class CodexDebugVersionResponse { public string version { get; set; } = string.Empty; public string revision { get; set; } = string.Empty; public bool IsValid() { return !string.IsNullOrEmpty(version) && !string.IsNullOrEmpty(revision); } public override string ToString() { return JsonConvert.SerializeObject(this); } } public class CodexDebugPeerResponse { public bool IsPeerFound { get; set; } public string peerId { get; set; } = string.Empty; public long seqNo { get; set; } public CodexDebugPeerAddressResponse[] addresses { get; set; } = Array.Empty(); } public class CodexDebugPeerAddressResponse { public string address { get; set; } = string.Empty; } public class CodexDebugThresholdBreaches { public string[] breaches { get; set; } = Array.Empty(); } public class CodexSalesAvailabilityRequest { public string size { get; set; } = string.Empty; public string duration { get; set; } = string.Empty; public string minPrice { get; set; } = string.Empty; public string maxCollateral { get; set; } = string.Empty; } public class CodexSalesAvailabilityResponse { public string id { get; set; } = string.Empty; public string size { get; set; } = string.Empty; public string duration { get; set; } = string.Empty; public string minPrice { get; set; } = string.Empty; public string maxCollateral { get; set; } = string.Empty; } public class CodexSalesRequestStorageRequest { public string duration { get; set; } = string.Empty; public string proofProbability { get; set; } = string.Empty; public string reward { get; set; } = string.Empty; public string collateral { get; set; } = string.Empty; public string? expiry { get; set; } public uint? nodes { get; set; } public uint? tolerance { get; set; } } public class CodexStoragePurchase { public string state { get; set; } = string.Empty; public string error { get; set; } = string.Empty; } public class CodexDebugBlockExchangeResponse { public CodexDebugBlockExchangeResponsePeer[] peers { get; set; } = Array.Empty(); public int taskQueue { get; set; } public int pendingBlocks { get; set; } public override string ToString() { if (peers.Length == 0 && taskQueue == 0 && pendingBlocks == 0) return "all-empty"; return $"taskqueue: {taskQueue} pendingblocks: {pendingBlocks} peers: {string.Join(",", peers.Select(p => p.ToString()))}"; } } public class CodexDebugBlockExchangeResponsePeer { public string peerid { get; set; } = string.Empty; public CodexDebugBlockExchangeResponsePeerHasBlock[] hasBlocks { get; set; } = Array.Empty(); public CodexDebugBlockExchangeResponsePeerWant[] wants { get; set; } = Array.Empty(); public int exchanged { get; set; } public override string ToString() { return $"(blocks:{hasBlocks.Length} wants:{wants.Length})"; } } public class CodexDebugBlockExchangeResponsePeerHasBlock { public string cid { get; set; } = string.Empty; public bool have { get; set; } public string price { get; set; } = string.Empty; } public class CodexDebugBlockExchangeResponsePeerWant { public string block { get; set; } = string.Empty; public int priority { get; set; } public bool cancel { get; set; } public string wantType { get; set; } = string.Empty; public bool sendDontHave { get; set; } } public class CodexDebugRepoStoreResponse { public string cid { get; set; } = string.Empty; } }