mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 13:48:00 -05:00
* Feature: Add ResolvedExternalIPAddress to API and Master Communication This commit introduces the `ResolvedExternalIPAddress` property to enhance IP address reporting. 1. **Server API (`WebfrontCore/Controllers/API/Server.cs`):** The `ResolvedExternalIPAddress` property has been added to the JSON responses for the `/api/server` endpoints. This property is nullable and contains the IPv4 string value of the manager's external IP address if the server's resolved IP endpoint is an internal address. Otherwise, it is null. 2. **Master Server Communication (`MasterCommunication.cs` and `ApiServer.cs`):** - The `ApiServer` DTO (in `Application/API/Master/ApiServer.cs`) now includes the `ResolvedExternalIPAddress` property (serialized as `resolved_external_ip_address`). - The `UploadStatus` method in `Application/Misc/MasterCommunication.cs` now populates this property for each server being reported to the master server, using the same logic (external IP if server's own resolved IP is internal). This provides more comprehensive IP address information both through the web API and to the master server. --------- Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
31 lines
1.0 KiB
C#
31 lines
1.0 KiB
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace IW4MAdmin.Application.API.Master
|
|
{
|
|
public class ApiServer
|
|
{
|
|
[JsonPropertyName("id")]
|
|
public long Id { get; set; }
|
|
[JsonPropertyName("ip")]
|
|
public string IPAddress { get; set; }
|
|
[JsonPropertyName("port")]
|
|
public short Port { get; set; }
|
|
[JsonPropertyName("version")]
|
|
public string Version { get; set; }
|
|
[JsonPropertyName("gametype")]
|
|
public string Gametype { get; set; }
|
|
[JsonPropertyName("map")]
|
|
public string Map { get; set; }
|
|
[JsonPropertyName("game")]
|
|
public string Game { get; set; }
|
|
[JsonPropertyName("hostname")]
|
|
public string Hostname { get; set; }
|
|
[JsonPropertyName("clientnum")]
|
|
public int ClientNum { get; set; }
|
|
[JsonPropertyName("maxclientnum")]
|
|
public int MaxClientNum { get; set; }
|
|
[JsonPropertyName("resolved_external_ip_address")]
|
|
public string? ResolvedExternalIPAddress { get; set; }
|
|
}
|
|
}
|