-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathHostArguments.cs
More file actions
455 lines (413 loc) · 16.6 KB
/
HostArguments.cs
File metadata and controls
455 lines (413 loc) · 16.6 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
namespace ServicePulse.Host.Hosting
{
using System;
using System.Collections.Generic;
#if DEBUG
using System.Diagnostics;
#endif
using System.IO;
using System.Linq;
using System.Reflection;
using System.ServiceProcess;
using System.Text;
using Commands;
class HostArguments
{
public ExecutionMode executionMode = ExecutionMode.Run;
public HostArguments(string[] args)
{
Commands = new List<Type> { typeof(RemoveDeprecatedOveridesCommand), typeof(RunCommand) };
StartMode = StartMode.Automatic;
Url = "http://localhost:8081";
ServiceName = "Particular.ServicePulse";
DisplayName = "Particular ServicePulse";
Description = "An Operations Manager's Best Friend in Particular.";
ServiceAccount = ServiceAccount.LocalService;
Username = string.Empty;
Password = string.Empty;
OutputPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "app");
var runOptions = new CaseLessOptionSet
{
{
"?|h|help", "Help about the command line options.", key => { Help = true; }
},
{
"url=",
@"Configures ServicePulse to listen on the specified url.",
s => { Url = s; }
},
{
"forwardedheadersenabled=",
@"Enable processing of forwarded headers (default: true).",
s => { ForwardedHeadersEnabled = ParseBool(s, true); }
},
{
"forwardedheaderstrustallproxies=",
@"Trust all proxies for forwarded headers (default: true).",
s => { ForwardedHeadersTrustAllProxies = ParseBool(s, true); }
},
{
"forwardedheadersknownproxies=",
@"Comma-separated list of trusted proxy IP addresses.",
s => { ForwardedHeadersKnownProxies = ParseList(s); }
},
{
"forwardedheadersknownnetworks=",
@"Comma-separated list of trusted proxy networks in CIDR notation.",
s => { ForwardedHeadersKnownNetworks = ParseList(s); }
},
{
"httpsenabled=",
@"Enable HTTPS features (default: false). Note: SSL certificate must be bound at OS level using netsh.",
s => { HttpsEnabled = ParseBool(s, false); }
},
{
"httpsredirecthttptohttps=",
@"Redirect HTTP requests to HTTPS (default: false).",
s => { HttpsRedirectHttpToHttps = ParseBool(s, false); }
},
{
"httpsport=",
@"HTTPS port for redirect (required for reverse proxy scenarios).",
s => { HttpsPort = ParseNullableInt(s); }
},
{
"httpsenablehsts=",
@"Enable HTTP Strict Transport Security (default: false).",
s => { HttpsEnableHsts = ParseBool(s, false); }
},
{
"httpshstsmaxageseconds=",
@"HSTS max age in seconds (default: 31536000 = 1 year).",
s => { HttpsHstsMaxAgeSeconds = ParseInt(s, 31536000); }
},
{
"httpshstsincludesubdomains=",
@"Include subdomains in HSTS policy (default: false).",
s => { HttpsHstsIncludeSubDomains = ParseBool(s, false); }
}
};
extractOptions = new CaseLessOptionSet
{
{
"?|h|help", "Help about the command line options.", key => { Help = true; }
},
{
"e|extract",
@"Extract files to be installed in a Web Server.",
s =>
{
Commands = new List<Type> { typeof(ExtractCommand), typeof(ExtractAndUpdateConstantsCommand) };
executionMode = ExecutionMode.Extract;
}
},
{
"servicecontrolurl=",
@"Configures the service control url.",
s => { ServiceControlUrl = s; }
},
{
"servicecontrolmonitoringurl=",
@"Configures the service control monitoring url.",
s => { ServiceControlMonitoringUrl = s; }
},
{
"outpath=",
@"The output path to extract files to. By default it extracts to the current directory.",
s => { OutputPath = s; }
}
};
uninstallOptions = new CaseLessOptionSet
{
{
"?|h|help", "Help about the command line options.", key => { Help = true; }
},
{
"u|uninstall",
@"Uninstall the endpoint as a Windows service.",
s =>
{
Commands = new List<Type> {typeof(UninstallCommand)};
executionMode = ExecutionMode.Uninstall;
}
},
{
"servicename=",
@"Specify the service name for the installed service.",
s => { ServiceName = s; }
}
};
installOptions = new CaseLessOptionSet
{
{
"?|h|help",
"Help about the command line options.",
key => { Help = true; }
},
{
"i|install",
@"Install the endpoint as a Windows service.",
s =>
{
Commands = new List<Type> { typeof(RemoveDeprecatedOveridesCommand), typeof(ExtractAndUpdateConstantsCommand), typeof(InstallCommand) };
executionMode = ExecutionMode.Install;
}
},
{
"servicename=",
@"Specify the service name for the installed service.",
s => { ServiceName = s; }
},
{
"displayname=",
@"Friendly name for the installed service.",
s => { DisplayName = s; }
},
{
"description=",
@"Description for the service.",
s => { Description = s; }
},
{
"username=",
@"Username for the account the service should run under.",
s => { Username = s; }
},
{
"password=",
@"Password for the service account.",
s => { Password = s; }
},
{
"localservice",
@"Run the service with the local service account.",
s => { ServiceAccount = ServiceAccount.LocalService; }
},
{
"networkservice",
@"Run the service with the network service permission.",
s => { ServiceAccount = ServiceAccount.NetworkService; }
},
{
"user",
@"Run the service with the specified username and password. Alternative the system will prompt for a valid username and password if values for both the username and password are not specified.",
s => { ServiceAccount = ServiceAccount.User; }
},
{
"delayed",
@"The service should start automatically (delayed).",
s => { StartMode = StartMode.Delay; }
},
{
"autostart",
@"The service should start automatically (default).",
s => { StartMode = StartMode.Automatic; }
},
{
"disabled",
@"The service should be set to disabled.",
s => { StartMode = StartMode.Disabled; }
},
{
"manual",
@"The service should be started manually.",
s => { StartMode = StartMode.Manual; }
},
{
"servicecontrolurl=",
@"Configures the service control url.",
s => { ServiceControlUrl = s; }
},
{
"servicecontrolmonitoringurl=",
@"Configures the service control monitoring url.",
s => { ServiceControlMonitoringUrl = s; }
},
{
"url=",
@"Configures ServicePulse to listen on the specified url.",
s => { Url = s; }
}
};
try
{
List<string> unknownArgsList;
unknownArgsList = installOptions.Parse(args);
if (executionMode == ExecutionMode.Install)
{
ThrowIfUnknownArgs(unknownArgsList);
ValidateArgs();
return;
}
unknownArgsList = uninstallOptions.Parse(args);
if (executionMode == ExecutionMode.Uninstall)
{
ThrowIfUnknownArgs(unknownArgsList);
return;
}
unknownArgsList = extractOptions.Parse(args);
if (executionMode == ExecutionMode.Extract)
{
ThrowIfUnknownArgs(unknownArgsList);
ValidateArgs();
return;
}
unknownArgsList = runOptions.Parse(args);
ThrowIfUnknownArgs(unknownArgsList);
ValidateArgs();
}
catch (Exception e)
{
Console.WriteLine(e.Message);
Help = true;
}
}
void ThrowIfUnknownArgs(List<string> unknownArgsList)
{
if (unknownArgsList.Count > 0)
{
throw new ApplicationException(string.Format("Unknown command line argument(s) : {0} ", string.Join(" ", unknownArgsList)));
}
}
static bool ParseBool(string value, bool defaultValue)
{
if (bool.TryParse(value, out var result))
{
return result;
}
return defaultValue;
}
static int ParseInt(string value, int defaultValue)
{
if (int.TryParse(value, out var result))
{
return result;
}
return defaultValue;
}
static int? ParseNullableInt(string value)
{
if (int.TryParse(value, out var result))
{
return result;
}
return null;
}
static List<string> ParseList(string value)
{
if (string.IsNullOrWhiteSpace(value))
{
return new List<string>();
}
return value.Split(new[] { ',', ';' }, StringSplitOptions.RemoveEmptyEntries)
.Select(s => s.Trim())
.Where(s => !string.IsNullOrEmpty(s))
.ToList();
}
void ValidateArgs()
{
var validProtocols = new[]
{
"http",
"https"
};
switch (executionMode)
{
case ExecutionMode.Extract:
case ExecutionMode.Install:
// param for sc url is optional.
if (!string.IsNullOrEmpty(ServiceControlUrl))
{
if ((!Uri.TryCreate(ServiceControlUrl, UriKind.Absolute, out Uri scUri)) || (!validProtocols.Contains(scUri.Scheme, StringComparer.OrdinalIgnoreCase)))
{
throw new Exception("The value specified for 'serviceControlUrl' is not a valid URL");
}
}
// param for sc url is optional.
if (!string.IsNullOrEmpty(ServiceControlMonitoringUrl))
{
if ((!Uri.TryCreate(ServiceControlMonitoringUrl, UriKind.Absolute, out Uri scUri)) || (!validProtocols.Contains(scUri.Scheme, StringComparer.OrdinalIgnoreCase)))
{
throw new Exception("The value specified for 'serviceControlMonitoringUrl' is not a valid URL");
}
}
goto case ExecutionMode.Run;
case ExecutionMode.Run:
if (!Uri.TryCreate(Url, UriKind.Absolute, out Uri spUri) || (!validProtocols.Contains(spUri.Scheme, StringComparer.OrdinalIgnoreCase)))
{
throw new Exception("The value specified for 'url' is not a valid URL");
}
break;
case ExecutionMode.Uninstall:
default:
break;
}
}
public List<Type> Commands { get; private set; }
public bool Help { get; set; }
public string ServiceName { get; set; }
public string Url { get; private set; }
public string ServiceControlUrl { get; set; }
public string ServiceControlMonitoringUrl { get; set; }
// Forwarded Headers settings
public bool ForwardedHeadersEnabled { get; set; } = true;
public bool ForwardedHeadersTrustAllProxies { get; set; } = true;
public List<string> ForwardedHeadersKnownProxies { get; set; } = new List<string>();
public List<string> ForwardedHeadersKnownNetworks { get; set; } = new List<string>();
// HTTPS settings (certificate is bound at OS level via netsh, not in app)
public bool HttpsEnabled { get; set; } = false;
public bool HttpsRedirectHttpToHttps { get; set; } = false;
public int? HttpsPort { get; set; } = null;
public bool HttpsEnableHsts { get; set; } = false;
public int HttpsHstsMaxAgeSeconds { get; set; } = 31536000;
public bool HttpsHstsIncludeSubDomains { get; set; } = false;
public string DisplayName { get; set; }
public string Description { get; set; }
public StartMode StartMode { get; private set; }
public string OutputPath { get; set; }
public string Username { get; set; }
public string Password { get; set; }
public ServiceAccount ServiceAccount { get; set; }
public void PrintUsage()
{
var sb = new StringBuilder();
var helpText = string.Empty;
using (var stream = Assembly.GetCallingAssembly().GetManifestResourceStream("ServicePulse.Host.Hosting.Help.txt"))
{
if (stream != null)
{
using (var streamReader = new StreamReader(stream))
{
helpText = streamReader.ReadToEnd();
}
}
}
installOptions.WriteOptionDescriptions(new StringWriter(sb));
var installOptionsHelp = sb.ToString();
sb.Clear();
uninstallOptions.WriteOptionDescriptions(new StringWriter(sb));
var uninstallOptionsHelp = sb.ToString();
sb.Clear();
extractOptions.WriteOptionDescriptions(new StringWriter(sb));
var extractOptionsHelp = sb.ToString();
Console.Out.WriteLine(helpText, installOptionsHelp, uninstallOptionsHelp, extractOptionsHelp);
}
readonly OptionSet extractOptions;
readonly OptionSet installOptions;
readonly OptionSet uninstallOptions;
}
enum ExecutionMode
{
Install,
Uninstall,
Extract,
Run
}
enum StartMode
{
Manual,
Automatic,
Delay,
Disabled
}
}