eabf270d71
Resolve all 622 issues flagged by the enhanced CommentChecker: add missing <returns> tags (incl. the standard phrasing on non-generic Task methods), add missing <summary> tags, and replace misused/redundant <inheritdoc/> on members that override or implement nothing with real documentation. Documentation-only — no behavior change; solution builds clean.
83 lines
4.0 KiB
C#
83 lines
4.0 KiB
C#
using System.CommandLine;
|
|
using System.CommandLine.Parsing;
|
|
using ZB.MOM.WW.ScadaBridge.Commons.Messages.Management;
|
|
|
|
namespace ZB.MOM.WW.ScadaBridge.CLI.Commands;
|
|
|
|
public static class DeployCommands
|
|
{
|
|
/// <summary>
|
|
/// Builds the <c>deploy</c> command group with all sub-commands.
|
|
/// </summary>
|
|
/// <param name="urlOption">Global management URL option.</param>
|
|
/// <param name="formatOption">Global output format option.</param>
|
|
/// <param name="usernameOption">Global username option.</param>
|
|
/// <param name="passwordOption">Global password option.</param>
|
|
/// <returns>The configured <c>deploy</c> <see cref="Command"/> with all sub-commands attached.</returns>
|
|
public static Command Build(Option<string> urlOption, Option<string> formatOption, Option<string> usernameOption, Option<string> passwordOption)
|
|
{
|
|
var command = new Command("deploy") { Description = "Deployment operations" };
|
|
|
|
command.Add(BuildInstance(urlOption, formatOption, usernameOption, passwordOption));
|
|
command.Add(BuildArtifacts(urlOption, formatOption, usernameOption, passwordOption));
|
|
command.Add(BuildStatus(urlOption, formatOption, usernameOption, passwordOption));
|
|
|
|
return command;
|
|
}
|
|
|
|
private static Command BuildInstance(Option<string> urlOption, Option<string> formatOption, Option<string> usernameOption, Option<string> passwordOption)
|
|
{
|
|
var idOption = new Option<int>("--id") { Description = "Instance ID", Required = true };
|
|
var cmd = new Command("instance") { Description = "Deploy a single instance" };
|
|
cmd.Add(idOption);
|
|
cmd.SetAction(async (ParseResult result) =>
|
|
{
|
|
var id = result.GetValue(idOption);
|
|
return await CommandHelpers.ExecuteCommandAsync(
|
|
result, urlOption, formatOption, usernameOption, passwordOption, new MgmtDeployInstanceCommand(id));
|
|
});
|
|
return cmd;
|
|
}
|
|
|
|
private static Command BuildArtifacts(Option<string> urlOption, Option<string> formatOption, Option<string> usernameOption, Option<string> passwordOption)
|
|
{
|
|
var siteIdOption = new Option<int?>("--site-id") { Description = "Target site ID (all sites if omitted)" };
|
|
var cmd = new Command("artifacts") { Description = "Deploy artifacts to site(s)" };
|
|
cmd.Add(siteIdOption);
|
|
cmd.SetAction(async (ParseResult result) =>
|
|
{
|
|
var siteId = result.GetValue(siteIdOption);
|
|
return await CommandHelpers.ExecuteCommandAsync(
|
|
result, urlOption, formatOption, usernameOption, passwordOption, new MgmtDeployArtifactsCommand(siteId));
|
|
});
|
|
return cmd;
|
|
}
|
|
|
|
private static Command BuildStatus(Option<string> urlOption, Option<string> formatOption, Option<string> usernameOption, Option<string> passwordOption)
|
|
{
|
|
var instanceIdOption = new Option<int?>("--instance-id") { Description = "Filter by instance ID" };
|
|
var statusOption = new Option<string?>("--status") { Description = "Filter by status" };
|
|
var pageOption = new Option<int>("--page") { Description = "Page number" };
|
|
pageOption.DefaultValueFactory = _ => 1;
|
|
var pageSizeOption = new Option<int>("--page-size") { Description = "Page size" };
|
|
pageSizeOption.DefaultValueFactory = _ => 50;
|
|
|
|
var cmd = new Command("status") { Description = "Query deployment status" };
|
|
cmd.Add(instanceIdOption);
|
|
cmd.Add(statusOption);
|
|
cmd.Add(pageOption);
|
|
cmd.Add(pageSizeOption);
|
|
cmd.SetAction(async (ParseResult result) =>
|
|
{
|
|
var instanceId = result.GetValue(instanceIdOption);
|
|
var status = result.GetValue(statusOption);
|
|
var page = result.GetValue(pageOption);
|
|
var pageSize = result.GetValue(pageSizeOption);
|
|
return await CommandHelpers.ExecuteCommandAsync(
|
|
result, urlOption, formatOption, usernameOption, passwordOption,
|
|
new QueryDeploymentsCommand(instanceId, status, page, pageSize));
|
|
});
|
|
return cmd;
|
|
}
|
|
}
|