-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathServiceControlAddViewModel.cs
More file actions
440 lines (348 loc) · 15.5 KB
/
ServiceControlAddViewModel.cs
File metadata and controls
440 lines (348 loc) · 15.5 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
namespace ServiceControl.Config.UI.InstanceAdd
{
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.ServiceProcess;
using System.Windows.Input;
using PropertyChanged;
using ServiceControl.Config.Extensions;
using Validar;
using Xaml.Controls;
[InjectValidation]
public class ServiceControlAddViewModel : ServiceControlEditorViewModel
{
public ServiceControlAddViewModel()
{
DisplayName = "ADD SERVICECONTROL";
GetWindowsServiceNames = () => ServiceController.GetServices().Select(windowsService => windowsService.ServiceName).ToArray();
ConventionName = "Particular.ServiceControl";
OnConventionNameChanged();
var i = 0;
while (ConventionName != ErrorInstanceName)
{
ConventionName = $"Particular.ServiceControl.{++i}";
// ErrorInstanceName updated via OnConventionNameChanged added by Fody
}
ServiceControl.PropertyChanged += ServiceControl_PropertyChanged;
ServiceControlAudit.PropertyChanged += ServiceControl_PropertyChanged;
}
void ServiceControl_PropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
{
if (sender == ServiceControl)
{
NotifyOfPropertyChange($"Error{e.PropertyName}");
}
if (sender == ServiceControlAudit)
{
NotifyOfPropertyChange($"Audit{e.PropertyName}");
}
}
public Func<string[]> GetWindowsServiceNames { get; set; }
public string ConventionName { get; set; }
public void OnConventionNameChanged()
{
ApplyConventionalServiceNameToErrorInstance(ConventionName);
ApplyConventionalServiceNameToAuditInstance(ConventionName);
}
public override void OnSelectedTransportChanged()
{
base.OnSelectedTransportChanged();
ServiceControl?.SelectedTransportChanged();
ServiceControlAudit?.SelectedTransportChanged();
NotifyOfPropertyChange(nameof(ConnectionString));
}
public string ErrorInstanceName
{
get => ServiceControl.InstanceName;
set => ServiceControl.InstanceName = value.SanitizeInstanceName();
}
protected void OnErrorInstanceNameChanged()
{
ErrorDestinationPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ProgramFilesX86),
"Particular Software", ErrorInstanceName);
ErrorDatabasePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData),
"Particular", "ServiceControl", ErrorInstanceName, "DB");
ErrorLogPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData),
"Particular", "ServiceControl", ErrorInstanceName, "Logs");
}
[AlsoNotifyFor(nameof(ErrorPasswordEnabled),
nameof(ErrorServiceAccount),
nameof(ErrorPassword))]
public bool ErrorUseSystemAccount
{
get => ServiceControl.UseSystemAccount;
set => ServiceControl.UseSystemAccount = value;
}
[AlsoNotifyFor(nameof(ErrorPasswordEnabled),
nameof(ErrorServiceAccount),
nameof(ErrorPassword))]
public bool ErrorUseServiceAccount
{
get => ServiceControl.UseServiceAccount;
set => ServiceControl.UseServiceAccount = value;
}
[AlsoNotifyFor(nameof(ErrorPasswordEnabled),
nameof(ErrorServiceAccount),
nameof(ErrorPassword))]
public bool ErrorUseProvidedAccount
{
get => ServiceControl.UseProvidedAccount;
set => ServiceControl.UseProvidedAccount = value;
}
public string ErrorServiceAccount
{
get => ServiceControl.ServiceAccount;
set => ServiceControl.ServiceAccount = value;
}
public string ErrorPassword
{
get => ServiceControl.Password;
set => ServiceControl.Password = value;
}
public bool ErrorPasswordEnabled => ServiceControl.PasswordEnabled;
public bool ErrorManagedAccount => ServiceControl.ManagedAccount;
[AlsoNotifyFor(nameof(ErrorHostNameWarning))]
public string ErrorHostName
{
get => ServiceControl.HostName;
set => ServiceControl.HostName = value;
}
public string ErrorHostNameWarning
{
get => ServiceControl.HostNameWarning;
set => ServiceControl.HostNameWarning = value;
}
public string ErrorPortNumber
{
get => ServiceControl.PortNumber;
set => ServiceControl.PortNumber = value;
}
public string ErrorDatabaseMaintenancePortNumber
{
get => ServiceControl.DatabaseMaintenancePortNumber;
set => ServiceControl.DatabaseMaintenancePortNumber = value;
}
public ICommand ErrorSelectDestinationPath => ServiceControl.SelectDestinationPath;
public string ErrorDestinationPath
{
get => ServiceControl.DestinationPath;
set => ServiceControl.DestinationPath = value;
}
public ICommand ErrorSelectLogPath => ServiceControl.SelectLogPath;
public string ErrorLogPath
{
get => ServiceControl.LogPath;
set => ServiceControl.LogPath = value.SanitizeFilePath();
}
public ICommand ErrorSelectDatabasePath => ServiceControl.SelectDatabasePath;
public string ErrorDatabasePath
{
get => ServiceControl.DatabasePath;
set => ServiceControl.DatabasePath = value.SanitizeFilePath();
}
public int MinimumErrorRetentionPeriod => ServiceControl.MinimumErrorRetentionPeriod;
public int MaximumErrorRetentionPeriod => ServiceControl.MaximumErrorRetentionPeriod;
public TimeSpanUnits ErrorRetentionUnits => ServiceControl.ErrorRetentionUnits;
public double ErrorRetention
{
get => ServiceControl.ErrorRetention;
set => ServiceControl.ErrorRetention = value;
}
public string ErrorQueueName
{
get => ServiceControl.ErrorQueueName;
set => ServiceControl.ErrorQueueName = value;
}
public IEnumerable<ForwardingOption> ErrorForwardingOptions => ServiceControl.ErrorForwardingOptions;
[AlsoNotifyFor(nameof(ErrorForwardingQueueName), nameof(ErrorForwardingWarning))]
public ForwardingOption ErrorForwarding
{
get => ServiceControl.ErrorForwarding;
set => ServiceControl.ErrorForwarding = value;
}
public string ErrorForwardingQueueName
{
get => ServiceControl.ErrorForwardingQueueName;
set => ServiceControl.ErrorForwardingQueueName = value;
}
public bool ShowErrorForwardingQueue => ErrorForwarding?.Value ?? false;
[AlsoNotifyFor(nameof(ErrorForwarding))]
public string ErrorForwardingWarning => ServiceControl.ErrorForwardingWarning;
public IEnumerable<EnableFullTextSearchOnBodiesOption> ErrorEnableFullTextSearchOnBodiesOptions =>
ServiceControl.EnableFullTextSearchOnBodiesOptions;
public EnableFullTextSearchOnBodiesOption ErrorEnableFullTextSearchOnBodies
{
get => ServiceControl.EnableFullTextSearchOnBodies;
set => ServiceControl.EnableFullTextSearchOnBodies = value;
}
public IEnumerable<EnableEmbeddedServicePulseOption> ErrorEnableEmbeddedServicePulseOptions =>
ServiceControl.EnableEmbeddedServicePulseOptions;
public EnableEmbeddedServicePulseOption ErrorEnableEmbeddedServicePulse
{
get => ServiceControl.EnableEmbeddedServicePulse;
set => ServiceControl.EnableEmbeddedServicePulse = value;
}
/* Add Audit Instance */
public string AuditInstanceName
{
get => ServiceControlAudit.InstanceName;
set => ServiceControlAudit.InstanceName = value.SanitizeInstanceName();
}
protected void OnAuditInstanceNameChanged()
{
AuditDestinationPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ProgramFilesX86),
"Particular Software", AuditInstanceName);
AuditDatabasePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData),
"Particular", "ServiceControl", AuditInstanceName, "DB");
AuditLogPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData),
"Particular", "ServiceControl", AuditInstanceName, "Logs");
}
[AlsoNotifyFor(nameof(AuditPasswordEnabled),
nameof(AuditServiceAccount),
nameof(ErrorPassword))]
public bool AuditUseSystemAccount
{
get => ServiceControlAudit.UseSystemAccount;
set => ServiceControlAudit.UseSystemAccount = value;
}
[AlsoNotifyFor(nameof(AuditPasswordEnabled),
nameof(AuditServiceAccount),
nameof(ErrorPassword))]
public bool AuditUseServiceAccount
{
get => ServiceControlAudit.UseServiceAccount;
set => ServiceControlAudit.UseServiceAccount = value;
}
[AlsoNotifyFor(nameof(AuditPasswordEnabled),
nameof(AuditServiceAccount),
nameof(ErrorPassword))]
public bool AuditUseProvidedAccount
{
get => ServiceControlAudit.UseProvidedAccount;
set => ServiceControlAudit.UseProvidedAccount = value;
}
public string AuditServiceAccount
{
get => ServiceControlAudit.ServiceAccount;
set => ServiceControlAudit.ServiceAccount = value;
}
public string AuditPassword
{
get => ServiceControlAudit.Password;
set => ServiceControlAudit.Password = value;
}
public bool AuditPasswordEnabled => ServiceControlAudit.PasswordEnabled;
public bool AuditManagedAccount => ServiceControlAudit.ManagedAccount;
[AlsoNotifyFor(nameof(AuditHostNameWarning))]
public string AuditHostName
{
get => ServiceControlAudit.HostName;
set => ServiceControlAudit.HostName = value;
}
public string AuditHostNameWarning
{
get => ServiceControlAudit.HostNameWarning;
set => ServiceControlAudit.HostNameWarning = value;
}
public string AuditPortNumber
{
get => ServiceControlAudit.PortNumber;
set => ServiceControlAudit.PortNumber = value;
}
public string AuditDatabaseMaintenancePortNumber
{
get => ServiceControlAudit.DatabaseMaintenancePortNumber;
set => ServiceControlAudit.DatabaseMaintenancePortNumber = value;
}
public ICommand AuditSelectDestinationPath => ServiceControlAudit.SelectDestinationPath;
public string AuditDestinationPath
{
get => ServiceControlAudit.DestinationPath;
set => ServiceControlAudit.DestinationPath = value.SanitizeFilePath();
}
public ICommand AuditSelectLogPath => ServiceControlAudit.SelectLogPath;
public string AuditLogPath
{
get => ServiceControlAudit.LogPath;
set => ServiceControlAudit.LogPath = value.SanitizeFilePath();
}
public ICommand AuditSelectDatabasePath => ServiceControlAudit.SelectDatabasePath;
public string AuditDatabasePath
{
get => ServiceControlAudit.DatabasePath;
set => ServiceControlAudit.DatabasePath = value.SanitizeFilePath();
}
public int MaximumAuditRetentionPeriod => ServiceControlAudit.MaximumAuditRetentionPeriod;
public int MinimumAuditRetentionPeriod => ServiceControlAudit.MinimumAuditRetentionPeriod;
public TimeSpanUnits AuditRetentionUnits => ServiceControlAudit.AuditRetentionUnits;
public bool IsServiceControlExpanded { get; set; }
public bool IsServiceControlAuditExpanded { get; set; }
public double AuditRetention
{
get => ServiceControlAudit.AuditRetention;
set => ServiceControlAudit.AuditRetention = value;
}
public string AuditQueueName
{
get => ServiceControlAudit.AuditQueueName;
set => ServiceControlAudit.AuditQueueName = value;
}
public IEnumerable<ForwardingOption> AuditForwardingOptions => ServiceControlAudit.AuditForwardingOptions;
[AlsoNotifyFor(nameof(AuditForwardingQueueName), nameof(AuditForwardingWarning))]
public ForwardingOption AuditForwarding
{
get => ServiceControlAudit.AuditForwarding;
set => ServiceControlAudit.AuditForwarding = value;
}
public string AuditForwardingQueueName
{
get => ServiceControlAudit.AuditForwardingQueueName;
set => ServiceControlAudit.AuditForwardingQueueName = value;
}
public bool ShowAuditForwardingQueue => AuditForwarding?.Value ?? false;
public string AuditForwardingWarning => ServiceControlAudit.AuditForwardingWarning;
public IEnumerable<EnableFullTextSearchOnBodiesOption> AuditEnableFullTextSearchOnBodiesOptions =>
ServiceControlAudit.EnableFullTextSearchOnBodiesOptions;
public EnableFullTextSearchOnBodiesOption AuditEnableFullTextSearchOnBodies
{
get => ServiceControlAudit.EnableFullTextSearchOnBodies;
set => ServiceControlAudit.EnableFullTextSearchOnBodies = value;
}
public bool SubmitAttempted { get; set; }
string GetConventionalServiceName(string conventionName)
{
var instanceName = string.Empty;
var validServiceName = conventionName.SanitizeInstanceName();
if (!conventionName.StartsWith("Particular.", StringComparison.InvariantCultureIgnoreCase))
{
instanceName += "Particular.";
}
instanceName += string.IsNullOrEmpty(conventionName) ? "ServiceControl" : validServiceName;
var windowsServiceNames = GetWindowsServiceNames();
instanceName = CreateUniqueInstanceName(instanceName, windowsServiceNames);
return instanceName;
}
public void ApplyConventionalServiceNameToErrorInstance(string conventionName) =>
ErrorInstanceName = GetConventionalServiceName(conventionName);
public void ApplyConventionalServiceNameToAuditInstance(string conventionName)
{
var uniqueServiceName = GetConventionalServiceName(conventionName);
if (!uniqueServiceName.EndsWith(".Audit", StringComparison.InvariantCultureIgnoreCase))
{
uniqueServiceName += ".Audit";
}
AuditInstanceName = uniqueServiceName;
}
public string CreateUniqueInstanceName(string instanceName, string[] windowsServiceNames)
{
int i = 1;
while (windowsServiceNames.Any(p => instanceName.Equals(p, StringComparison.InvariantCultureIgnoreCase)))
{
instanceName = $"{instanceName}-{i++}";
}
return instanceName;
}
}
}