mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-10-01 21:59:40 +00:00
tweaks
This commit is contained in:
parent
b1665cdb75
commit
4eb7b536f0
3 changed files with 6 additions and 5 deletions
|
@ -130,7 +130,7 @@ public class LoginController : ControllerBase
|
||||||
new LoginResult
|
new LoginResult
|
||||||
{
|
{
|
||||||
AuthTicket = "MM_AUTH=" + token.UserToken,
|
AuthTicket = "MM_AUTH=" + token.UserToken,
|
||||||
ServerBrand = VersionHelper.FullVersion,
|
ServerBrand = VersionHelper.EnvVer,
|
||||||
}.Serialize()
|
}.Serialize()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,7 +26,7 @@ public class AuthenticationTests : LighthouseServerTest
|
||||||
Assert.True(response.IsSuccessStatusCode);
|
Assert.True(response.IsSuccessStatusCode);
|
||||||
string responseContent = await response.Content.ReadAsStringAsync();
|
string responseContent = await response.Content.ReadAsStringAsync();
|
||||||
Assert.Contains("MM_AUTH=", responseContent);
|
Assert.Contains("MM_AUTH=", responseContent);
|
||||||
Assert.Contains(VersionHelper.FullVersion, responseContent);
|
Assert.Contains(VersionHelper.EnvVer, responseContent);
|
||||||
}
|
}
|
||||||
|
|
||||||
[DatabaseFact]
|
[DatabaseFact]
|
||||||
|
@ -39,7 +39,7 @@ public class AuthenticationTests : LighthouseServerTest
|
||||||
Assert.NotNull(loginResult.ServerBrand);
|
Assert.NotNull(loginResult.ServerBrand);
|
||||||
|
|
||||||
Assert.Contains("MM_AUTH=", loginResult.AuthTicket);
|
Assert.Contains("MM_AUTH=", loginResult.AuthTicket);
|
||||||
Assert.Equal(VersionHelper.FullVersion, loginResult.ServerBrand);
|
Assert.Equal(VersionHelper.EnvVer, loginResult.ServerBrand);
|
||||||
}
|
}
|
||||||
|
|
||||||
[DatabaseFact]
|
[DatabaseFact]
|
||||||
|
|
|
@ -11,7 +11,7 @@ public static class VersionHelper
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
CommitHash = ResourceHelper.ReadManifestFile("gitVersion.txt");
|
CommitHash = ResourceHelper.ReadManifestFile("gitVersion.txt");
|
||||||
Branch = ResourceHelper.ReadManifestFile("gitBranch.txt");
|
Branch = $"{ResourceHelper.ReadManifestFile("gitBranch.txt")}{((IsDirty) ? "-dirty" : "")}";
|
||||||
string rawRevision = ResourceHelper.ReadManifestFile("gitRevCount.txt");
|
string rawRevision = ResourceHelper.ReadManifestFile("gitRevCount.txt");
|
||||||
Revision = (Branch == "main") ? $"r{rawRevision}" : $"{Branch}_r{rawRevision}";
|
Revision = (Branch == "main") ? $"r{rawRevision}" : $"{Branch}_r{rawRevision}";
|
||||||
|
|
||||||
|
@ -57,7 +57,8 @@ public static class VersionHelper
|
||||||
public static string CommitHash { get; set; }
|
public static string CommitHash { get; set; }
|
||||||
public static string Branch { get; set; }
|
public static string Branch { get; set; }
|
||||||
public static string Revision { get; set; }
|
public static string Revision { get; set; }
|
||||||
public static string FullVersion => $"{ServerConfiguration.Instance.Customization.ServerName} {Revision}";//$"Project Lighthouse {Branch}@{CommitHash} {Build} ({ServerConfiguration.Instance.Customization.ServerName})";
|
public static string FullVersion => $"Project Lighthouse {Branch}@{CommitHash} {Build} ({ServerConfiguration.Instance.Customization.ServerName} {Revision})";
|
||||||
|
public static string EnvVer => $"{ServerConfiguration.Instance.Customization.ServerName} {Revision}";
|
||||||
public static bool IsDirty => CommitHash.EndsWith("-dirty") || CommitsOutOfDate != 1 || CommitHash == "invalid" || Branch == "invalid";
|
public static bool IsDirty => CommitHash.EndsWith("-dirty") || CommitsOutOfDate != 1 || CommitHash == "invalid" || Branch == "invalid";
|
||||||
public static int CommitsOutOfDate { get; set; }
|
public static int CommitsOutOfDate { get; set; }
|
||||||
public static bool CanCheckForUpdates { get; set; }
|
public static bool CanCheckForUpdates { get; set; }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue