Files
RobustToolbox/Robust.Shared/Network/NetUserData.cs
T
Pieter-Jan BriersandGitHub f40ccb7558 New HWID system prep (#5446)
* New HWID system prep

* Allow HWID to be disabled.

Both client and server can now request HWID to be disabled.

On the server via CVar, if disabled the client won't send it.

On the client via env var, if disabled it won't be sent to the client.

This involved moving legacy HWID to be sent in MsgEncryptionResponse instead of MsgLoginStart. This means the legacy HWID won't be available anymore if the connection isn't authenticated.

* Fix tests

* Fix another test

* Review

* Thanks Rider
2024-09-29 00:29:02 +02:00

60 lines
1.8 KiB
C#

using System.Collections.Immutable;
using System.Text;
using Robust.Shared.ViewVariables;
namespace Robust.Shared.Network
{
/// <summary>
/// Contains data about players returned from auth server.
/// </summary>
public sealed record NetUserData
{
[ViewVariables]
public NetUserId UserId { get; }
[ViewVariables]
public string UserName { get; }
[ViewVariables]
public string? PatronTier { get; init; }
public ImmutableArray<byte> HWId { get; init; }
/// <summary>
/// Unique identifiers for a client's computer, account and connection.
/// </summary>
/// <remarks>
/// If any of these values match between two connections,
/// it means the auth server believes them to be the same user.
/// </remarks>
public ImmutableArray<ImmutableArray<byte>> ModernHWIds { get; init; }
/// <summary>
/// A trust value that reports the auth server's estimate of how likely this user is to be a malicious/suspicious account.
/// </summary>
/// <remarks>
/// A value of 0.5 can be considered "neutral", 1 being "fully trusted".
/// </remarks>
public float Trust { get; init; }
public NetUserData(NetUserId userId, string userName)
{
UserId = userId;
UserName = userName;
}
public sealed override string ToString()
{
var stringBuilder = new StringBuilder();
stringBuilder.Append("NetUserData"); // type name
stringBuilder.Append(" { ");
if ((this with { HWId = default }).PrintMembers(stringBuilder))
{
stringBuilder.Append(' ');
}
stringBuilder.Append('}');
return stringBuilder.ToString();
}
}
}