Skip to content

Commit

Permalink
Update content package for Secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
Morb0 committed Nov 9, 2023
1 parent 00cfed5 commit 949df85
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 1 deletion.
27 changes: 26 additions & 1 deletion Content.Packaging/ClientPackaging.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ namespace Content.Packaging;

public static class ClientPackaging
{
private static readonly bool UseSecrets = Directory.Exists(Path.Combine("Secrets")); // Corvax-Secrets
/// <summary>
/// Be advised this can be called from server packaging during a HybridACZ build.
/// </summary>
Expand All @@ -34,6 +35,24 @@ await ProcessHelpers.RunCheck(new ProcessStartInfo
"/m"
}
});
if (UseSecrets)
{
await ProcessHelpers.RunCheck(new ProcessStartInfo
{
FileName = "dotnet",
ArgumentList =
{
"build",
Path.Combine("Secrets","Content.Corvax.Client", "Content.Corvax.Client.csproj"),
"-c", "Release",
"--nologo",
"/v:m",
"/t:Rebuild",
"/p:FullRelease=true",
"/m"
}
});
}
}

logger.Info("Packaging client...");
Expand Down Expand Up @@ -65,11 +84,17 @@ public static async Task WriteResources(

var inputPass = graph.Input;

// Corvax-Secrets-Start: Add Corvax interfaces to Magic ACZ
var assemblies = new List<string> { "Content.Client", "Content.Shared", "Content.Shared.Database", "Content.Corvax.Interfaces.Client", "Content.Corvax.Interfaces.Shared" };
if (UseSecrets)
assemblies.AddRange(new[] { "Content.Corvax.Shared", "Content.Corvax.Client" });
// Corvax-Secrets-End

await RobustSharedPackaging.WriteContentAssemblies(
inputPass,
contentDir,
"Content.Client",
new[] { "Content.Client", "Content.Shared", "Content.Shared.Database", "Content.Corvax.Interfaces.Client", "Content.Corvax.Interfaces.Shared" }, // Corvax-Secrets: Add Corvax interfaces to Magic ACZ
assemblies, // Corvax-Secrets
cancel: cancel);

await RobustClientPackaging.WriteClientResources(contentDir, pass, cancel);
Expand Down
32 changes: 32 additions & 0 deletions Content.Packaging/ServerPackaging.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ public static class ServerPackaging

private static readonly List<string> ServerContentAssemblies = new()
{
// Corvax-Secrets-Start
"Content.Corvax.Interfaces.Shared",
"Content.Corvax.Interfaces.Server",
// Corvax-Secrets-End
"Content.Server.Database",
"Content.Server",
"Content.Shared",
Expand Down Expand Up @@ -74,6 +78,8 @@ public static class ServerPackaging
"zh-Hant"
};

private static readonly bool UseSecrets = Directory.Exists(Path.Combine("Secrets")); // Corvax-Secrets

public static async Task PackageServer(bool skipBuild, bool hybridAcz, IPackageLogger logger, List<string>? platforms = null)
{
if (platforms == null)
Expand Down Expand Up @@ -122,6 +128,28 @@ await ProcessHelpers.RunCheck(new ProcessStartInfo
"/m"
}
});
// Corvax-Secrets-Start
if (UseSecrets)
{
logger.Info($"Secrets found. Building secret project for {platform}...");
await ProcessHelpers.RunCheck(new ProcessStartInfo
{
FileName = "dotnet",
ArgumentList =
{
"build",
Path.Combine("Secrets","Content.Corvax.Server", "Content.Corvax.Server.csproj"),
"-c", "Release",
"--nologo",
"/v:m",
$"/p:TargetOs={platform.TargetOs}",
"/t:Rebuild",
"/p:FullRelease=true",
"/m"
}
});
}
// Corvax-Secrets-End

await PublishClientServer(platform.Rid, platform.TargetOs);
}
Expand Down Expand Up @@ -179,6 +207,10 @@ private static async Task WriteServerResources(

var inputPass = graph.Input;
var contentAssemblies = new List<string>(ServerContentAssemblies);
// Corvax-Secrets-Start
if (UseSecrets)
contentAssemblies.AddRange(new[] { "Content.Corvax.Shared", "Content.Corvax.Server" });
// Corvax-Secrets-End

// Additional assemblies that need to be copied such as EFCore.
var sourcePath = Path.Combine(contentDir, "bin", "Content.Server");
Expand Down

0 comments on commit 949df85

Please sign in to comment.