forked from dotnet/Kerberos.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKerberosHelpCommand.cs
More file actions
134 lines (106 loc) · 4.19 KB
/
KerberosHelpCommand.cs
File metadata and controls
134 lines (106 loc) · 4.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
// -----------------------------------------------------------------------
// Licensed to The .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// -----------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using Kerberos.NET.Configuration;
namespace Kerberos.NET.CommandLine
{
[CommandLineCommand("help", Description = "KerberosHelp")]
public class KerberosHelpCommand : BaseCommand
{
public KerberosHelpCommand(CommandLineParameters parameters)
: base(parameters)
{
}
public static string Version
{
get
{
return Assembly.GetEntryAssembly()
.GetCustomAttribute<AssemblyInformationalVersionAttribute>()
.InformationalVersion
.ToString();
}
}
[CommandLineParameter("command", Description = "HelpCommand", EnforceCasing = false, FormalParameter = true)]
public string Command { get; set; }
public override Task<bool> Execute()
{
var comm = CommandLoader.CreateCommandExecutor(this.Command, this.Parameters.WithCommand(this.Command), ((ICommand)this).IO);
if (comm == null)
{
if (!string.IsNullOrWhiteSpace(this.Command))
{
this.WriteLine();
this.WriteLine(SR.Resource("CommandLine_UnknownCommand", this.Command));
}
this.DisplayUserDefaults();
this.ListCommands();
}
else
{
this.WriteLine();
this.WriteCommandLabel(comm.GetType());
this.DisplayUserDefaults();
comm.DisplayHelp();
}
return Task.FromResult(true);
}
private void DisplayUserDefaults()
{
this.WriteLine();
this.WriteHeader(SR.Resource("CommandLine_Defaults"));
this.WriteLine();
var props = new List<(string, object)>()
{
(SR.Resource("CommandLine_Version"), Version),
(SR.Resource("CommandLine_ConfigPath"), Krb5Config.DefaultUserConfigurationPath),
(SR.Resource("CommandLine_CachePath"), Krb5Config.DefaultUserCredentialCachePath),
};
this.WriteProperties(props);
}
private void ListCommands()
{
var types = CommandLoader.LoadTypes().OrderBy(t => t.GetCustomAttribute<CommandLineCommandAttribute>().Command);
this.WriteLine();
this.WriteHeader(SR.Resource("CommandLine_Commands"));
this.WriteLine();
var max = types.Max(t => t.GetCustomAttribute<CommandLineCommandAttribute>().Command.Split('|').OrderByDescending(s => s.Length).First().Length) + 10;
foreach (var type in types)
{
this.WriteCommandLabel(type, max);
}
}
private void WriteCommandLabel(Type type, int max = 0)
{
var attr = type.GetCustomAttribute<CommandLineCommandAttribute>();
var commands = attr.Command.Split('|');
var command = commands.First();
if (max <= 0)
{
max = command.Length + 4;
}
var label = command.PadLeft(command.Length + 3).PadRight(max);
var descName = "CommandLine_" + attr.Description;
var desc = SR.Resource(descName);
var format = "{0}{{Desc}}";
if (commands.Length > 1)
{
format += " (Aliases: {{Aliases}})";
}
if (string.Equals(descName, desc, StringComparison.OrdinalIgnoreCase))
{
this.WriteLine(string.Format(format, label), attr.Description, string.Join(", ", commands.Skip(1)));
}
else
{
this.WriteLine(string.Format(format, label), desc, string.Join(", ", commands.Skip(1)));
}
}
}
}