forked from anthonyreilly/NetCoreForce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
619 lines (504 loc) · 23.2 KB
/
Program.cs
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
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Dynamic;
using System.Reflection;
using System.IO;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
using McMaster.Extensions.CommandLineUtils;
using NetCoreForce.Client;
using NetCoreForce.Client.Models;
using Newtonsoft.Json;
namespace NetCoreForce.ModelGenerator
{
class Program
{
const string defaultConfigFilename = "modelgenerator_config.json";
static void Main(string[] args)
{
var app = new CommandLineApplication();
app.Name = "modelgenerator";
app.HelpOption("-?|-h|--help");
app.OnExecute(() =>
{
app.ShowHint();
return 0;
});
app.VersionOption("-v|--version", () =>
{
return string.Format("Version {0}", Assembly.GetEntryAssembly().GetCustomAttribute<AssemblyInformationalVersionAttribute>().InformationalVersion);
});
app.Command("generate", (command) =>
{
command.Description = "Generate SObject models.";
command.HelpOption("-?|-h|--help");
command.ExtendedHelpText = Environment.NewLine +
"You can supply the API credentials either in the config file, the command parameters, or wait to be prompted for that information." + Environment.NewLine +
"If you choose to save the config file, be careful with it as it may contain your API credentials.";
//Authentication
var clientIdOption = command.Option("--client-id",
"API Client ID, a.k.a. Consumer Key",
CommandOptionType.SingleValue);
var clientSecretOption = command.Option("--client-secret",
"API Client Secret, a.k.a. Consumer Secret",
CommandOptionType.SingleValue);
var usernameOption = command.Option("--username",
"API Username",
CommandOptionType.SingleValue);
var passwordOption = command.Option("--password",
"API Password",
CommandOptionType.SingleValue);
var configFileOption = command.Option("--config-file",
"Config file path",
CommandOptionType.SingleValue);
var saveConfigOption = command.Option("--save-config",
"Save options to config file, uses filename from --config-file option",
CommandOptionType.NoValue);
//generation options
var includeOption = command.Option("-o|--objects <objects>",
"Object models to generate, if omitted all objects will be generated",
CommandOptionType.MultipleValue);
var outputDirectory = command.Option("-d|--output-directory <directory>",
"Destination directory for generated file(s)",
CommandOptionType.SingleValue);
var suffixOption = command.Option("-s|--suffix <suffix>",
"Suffix to append to object names, e.g. 'Sf' for 'AccountSf'",
CommandOptionType.SingleValue);
var prefixOption = command.Option("-p|--prefix <prefix>",
"Prefix to for object names, e.g. 'Sf' for 'SfAccount'",
CommandOptionType.SingleValue);
var namespaceName = command.Option("-n|--namespace <namespace>",
"Namespace to use for generated classes",
CommandOptionType.SingleValue);
var customOption = command.Option("-c|--include-custom",
"Include custom objects and fields",
CommandOptionType.NoValue);
var includeReferences = command.Option("-r|--include-references",
"Include referenced objects as properties",
CommandOptionType.NoValue);
command.OnExecute(() =>
{
//load config file, if available
GenConfig config = LoadConfig(configFileOption.Value());
if (config == null)
{
config = new GenConfig();
}
//only override config file option if option is manually specified
if (clientIdOption.HasValue())
{
config.AuthInfo.ClientId = clientIdOption.Value();
}
if (clientSecretOption.HasValue())
{
config.AuthInfo.ClientSecret = clientSecretOption.Value();
}
if (usernameOption.HasValue())
{
config.AuthInfo.Username = usernameOption.Value();
}
if (passwordOption.HasValue())
{
config.AuthInfo.Password = passwordOption.Value();
}
if (customOption.HasValue())
{
config.IncludeCustom = customOption.HasValue();
}
if (includeOption.HasValue())
{
config.Objects = includeOption.Values;
}
if (prefixOption.HasValue())
{
config.ClassPrefix = prefixOption.Value();
}
if (suffixOption.HasValue())
{
config.ClassSuffix = suffixOption.Value();
}
if (suffixOption.HasValue())
{
config.ClassNamespace = namespaceName.Value();
}
if (outputDirectory.HasValue())
{
config.OutputDirectory = outputDirectory.Value();
}
if (includeReferences.HasValue())
{
config.IncludeReferences = includeReferences.HasValue();
}
//check for minimum needed options and prompt if necessary
config = CheckOptions(config);
if (saveConfigOption.HasValue())
{
SaveConfig(config, configFileOption.Value());
}
Console.Write("Generate models for " + string.Join(", ", config.Objects));
if (customOption.HasValue())
{
Console.Write(" including custom objects and fields");
}
Console.WriteLine();
GenModels(config).Wait();
Console.WriteLine("Done.");
return 0;
});
});
try
{
app.Execute(args);
}
catch (CommandParsingException ex)
{
Console.WriteLine(ex.Message);
}
catch (Exception ex)
{
Console.WriteLine("Unable to execute application: {0}", ex.Message);
}
}
/// <summary>
/// Checks that the minimum required options are supplied, otherwise prompts user to enter them immediately
/// </summary>
private static GenConfig CheckOptions(GenConfig config)
{
//check required auth options
while (string.IsNullOrEmpty(config.AuthInfo.ClientId))
{
Console.WriteLine("Enter API Client ID:");
config.AuthInfo.ClientId = Console.ReadLine();
Console.WriteLine();
}
while (string.IsNullOrEmpty(config.AuthInfo.ClientSecret))
{
Console.WriteLine("Enter API Client Secret:");
config.AuthInfo.ClientSecret = Console.ReadLine();
Console.WriteLine();
}
while (string.IsNullOrEmpty(config.AuthInfo.Username))
{
Console.WriteLine("Enter API username:");
config.AuthInfo.Username = Console.ReadLine();
Console.WriteLine();
}
while (string.IsNullOrEmpty(config.AuthInfo.Password))
{
Console.WriteLine("Enter API password:");
config.AuthInfo.Password = Console.ReadLine();
Console.WriteLine();
}
//object to generate
if (config.Objects == null)
{
config.Objects = new List<string>();
}
while (config.Objects.Count == 0)
{
Console.WriteLine("Enter an object name to generate, or enter \"all\" to generate all objects");
string objectName = Console.ReadLine();
if (!string.IsNullOrEmpty(objectName))
{
config.Objects.Add(objectName);
Console.WriteLine();
}
}
while (string.IsNullOrEmpty(config.ClassNamespace))
{
Console.WriteLine("Enter namespace for generated class(es):");
config.ClassNamespace = Console.ReadLine();
Console.WriteLine();
}
return config;
}
private static bool SaveConfig(GenConfig config, string filePath = null)
{
try
{
if (string.IsNullOrEmpty(filePath))
{
filePath = defaultConfigFilename;
}
//if using the default filename, or just a filename was given, set the path to the current directory
if (System.IO.Path.IsPathRooted(filePath))
{
string executabledirectory = Path.GetDirectoryName(System.Reflection.Assembly.GetEntryAssembly().Location);
filePath = Path.Combine(executabledirectory, filePath);
}
Console.WriteLine($"Saving config file to {filePath}");
string contents = JsonConvert.SerializeObject(config, Formatting.Indented);
File.WriteAllText(filePath, contents, Encoding.Unicode);
return true;
}
catch (Exception ex)
{
Console.WriteLine("Error saving config file: " + ex.Message);
return false;
}
}
private static GenConfig LoadConfig(string filePath = null)
{
try
{
if (string.IsNullOrEmpty(filePath))
{
filePath = defaultConfigFilename;
}
//if using the default filename, or just a filename was given, set the path to the current directory
if (System.IO.Path.IsPathRooted(filePath))
{
string executabledirectory = Path.GetDirectoryName(System.Reflection.Assembly.GetEntryAssembly().Location);
filePath = Path.Combine(executabledirectory, filePath);
}
if (!File.Exists(filePath))
{
Console.WriteLine($"No config file found at {filePath}");
return null;
}
Console.WriteLine($"Loading config file {filePath}");
string contents = File.ReadAllText(filePath);
GenConfig config = JsonConvert.DeserializeObject<GenConfig>(contents);
return config;
}
catch (Exception ex)
{
Console.WriteLine("Error loading config file: " + ex.Message);
return null;
}
}
private static async Task<ForceClient> Login(GenConfig config)
{
AuthenticationClient auth = new AuthenticationClient();
try
{
await auth.UsernamePasswordAsync(config.AuthInfo.ClientId, config.AuthInfo.ClientSecret,
config.AuthInfo.Username, config.AuthInfo.Password, config.AuthInfo.TokenRequestEndpoint);
Console.WriteLine("Connected to Salesforce");
}
catch (ForceAuthException ex)
{
Console.WriteLine("Error authenticating: " + ex.Message);
throw ex;
}
ForceClient client = new ForceClient(auth.AccessInfo.InstanceUrl, auth.ApiVersion, auth.AccessInfo.AccessToken);
return client;
}
private static async Task GenModels(GenConfig config)
{
ForceClient client = await Login(config);
if (config.Objects == null || config.Objects.Count == 0)
{
Console.WriteLine("Configured list of objects to generate is empty, nothing will be generated");
return;
}
if(string.IsNullOrEmpty(config.AuthInfo.ApiVersion))
{
config.AuthInfo.ApiVersion = client.ApiVersion;
}
var global = await client.DescribeGlobal();
if (string.IsNullOrEmpty(config.OutputDirectory))
{
config.OutputDirectory = Directory.GetCurrentDirectory();
}
Console.WriteLine("Output directory: " + config.OutputDirectory);
bool generateAll = false;
if (config.Objects != null && config.Objects.Count > 0)
{
if (config.Objects[0].ToLower() == "all")
{
generateAll = true;
Console.WriteLine("Including all objects");
}
else
{
Console.WriteLine("Included: " + string.Join(", ", config.Objects));
}
}
foreach (var obj in global.SObjects)
{
//TODO: verify if we should skip all non queryable?
if (!obj.Queryable)
{
#if DEBUG
Console.WriteLine("Skipping non-queryable object " + obj.Name);
#endif
continue;
}
if (!generateAll)
{
if (config.Objects != null && config.Objects.Count > 0)
{
bool incl = config.Objects.Where(o => o.ToLowerInvariant() == obj.Name.ToLowerInvariant()).Count() > 0;
if (!incl)
{
#if DEBUG
Console.WriteLine("Skipping " + obj.Name);
#endif
continue;
}
}
}
//TODO: verify Name and Domain non-queryable objects cause compiler errors due to name/member dupe
Console.Write("Generating model for {0} - ", obj.Name);
string className = obj.Name;
className = string.Format("{0}{1}{2}", config.ClassPrefix ?? string.Empty, className, config.ClassSuffix ?? string.Empty);
await CreateModel(client, obj.Name, className, config);
}
}
public static async Task CreateModel(ForceClient client, string objectName, string className, GenConfig config)
{
string model = await GenClass(client, objectName, className, config);
string fileName = fileName = string.Format("{0}.cs", className);
string filePath = Path.Combine(config.OutputDirectory, fileName);
Console.WriteLine("Writing: " + filePath);
File.WriteAllText(filePath, model);
return;
}
public static async Task<string> GenClass(ForceClient client, string objectName, string className, GenConfig config)
{
SObjectDescribeFull data = await client.GetObjectDescribe(objectName);
StringBuilder gen = new StringBuilder();
//gen.AppendLine("// Model generated on " + DateTime.Now.ToString("yyyy-MM-dd"));
gen.AppendLine("// SF API version " + config.AuthInfo.ApiVersion);
gen.AppendLine("// Custom fields included: " + config.IncludeCustom.ToString());
gen.AppendLine("// Relationship objects included: " + config.IncludeReferences.ToString());
gen.AppendLine();
//need rename of Task to Task_sf, Domain => Domain_sf, Name => Name_sf
string newline = Environment.NewLine;
gen.AppendLine("using System;");
gen.AppendLine("using NetCoreForce.Client.Models;");
gen.AppendLine("using NetCoreForce.Client.Attributes;");
gen.AppendLine("using Newtonsoft.Json;");
gen.AppendLine();
if (!string.IsNullOrEmpty(config.ClassNamespace))
{
gen.AppendLine("namespace " + config.ClassNamespace);
gen.AppendLine("{");
}
gen.AppendLine("\t///<summary>");
gen.AppendLine($"\t/// {WebUtility.HtmlEncode(data.Label)}");
gen.AppendLine($"\t///<para>SObject Name: {data.Name}</para>");
gen.AppendLine($"\t///<para>Custom Object: {data.Custom.ToString()}</para>");
gen.AppendLine("\t///</summary>");
gen.AppendLine($"\tpublic class {className} : SObject");
gen.AppendLine("\t{");
gen.AppendLine("\t\t[JsonIgnore]");
gen.AppendLine("\t\tpublic static string SObjectTypeName");
gen.AppendLine("\t\t{");
// gen.AppendLine("\t\t\tget { return \"" + data.Name + "\"; }");
gen.AppendLine($"\t\t\tget {{ return \"{data.Name}\"; }}");
gen.AppendLine("\t\t}");
gen.AppendLine();
// gen.AppendLine("\t\tpublic " + className + "() : base (\"" + objectName + "\")");
// gen.AppendLine("\t\t{}");
// gen.AppendLine();
foreach (var field in data.Fields)
{
try
{
if (field.Custom && !config.IncludeCustom)
{
continue;
}
gen.AppendLine("\t\t///<summary>");
gen.AppendLine("\t\t/// " + WebUtility.HtmlEncode(field.Label));
gen.AppendLine("\t\t/// <para>Name: " + field.Name + "</para>");
gen.AppendLine("\t\t/// <para>SF Type: " + field.Type + "</para>");
if (field.AutoNumber)
{
gen.AppendLine("\t\t/// <para>AutoNumber field</para>");
}
//gen.AppendLine("\t\t/// <para>Custom: " + field.Custom.ToString() + "</para>");
if (field.Custom)
{
gen.AppendLine("\t\t/// <para>Custom field</para>");
}
gen.AppendLine("\t\t/// <para>Nillable: " + field.Nillable.ToString() + "</para>");
gen.AppendLine("\t\t///</summary>");
gen.AppendLine(string.Format("\t\t[JsonProperty(PropertyName = \"{0}\")]", JsonName(field.Name)));
if (!field.Creatable || !field.Updateable)
{
gen.AppendLine(string.Format("\t\t[Updateable({0}), Createable({1})]", field.Updateable.ToString().ToLower(), field.Creatable.ToString().ToLower()));
}
string csTypeName = SfTypeConverter.GetTypeName(field.Type);
switch (csTypeName)
{
case "Boolean":
csTypeName = "bool";
break;
case "String":
csTypeName = "string";
break;
case "Double":
csTypeName = "double";
break;
case "Int32":
csTypeName = "int";
break;
case "Decimal":
csTypeName = "decimal";
break;
default:
break;
}
//we want all nullable types in the model, so that they are not serialized/initialized with default values
if (csTypeName == "bool" || csTypeName == "DateTimeOffset" || csTypeName == "DateTime" || csTypeName == "int" || csTypeName == "double" || csTypeName == "decimal")
{
csTypeName += "?";
}
gen.AppendLine(string.Format("\t\tpublic {0} {1} {{ get; set; }}", csTypeName, field.Name));
gen.AppendLine();
if (field.Type == "reference" && config.IncludeReferences)
{
if (string.IsNullOrEmpty(field.RelationshipName) || field.ReferenceTo.Count > 1)
{
//only do single-object relationships
continue;
}
if(field.RelationshipName == "ContentBody")
{
//exception for non-serializable type
continue;
}
gen.AppendLine("\t\t///<summary>");
gen.AppendLine("\t\t/// ReferenceTo: " + field.ReferenceTo[0]);
gen.AppendLine("\t\t/// <para>RelationshipName: " + field.RelationshipName + "</para>");
gen.AppendLine("\t\t///</summary>");
gen.AppendLine(string.Format("\t\t[JsonProperty(PropertyName = \"{0}\")]", JsonName(field.RelationshipName)));
gen.AppendLine("\t\t[Updateable(false), Createable(false)]");
string referenceClass = GetPrefixedSuffixed(config, field.ReferenceTo[0]);
gen.AppendLine(string.Format("\t\tpublic {0} {1} {{ get; set; }}", referenceClass, field.RelationshipName));
gen.AppendLine();
}
}
catch (Exception ex)
{
Console.WriteLine("Exception generating models: " + ex.Message);
throw ex;
}
}
gen.AppendLine("\t}");
if (!string.IsNullOrEmpty(config.ClassNamespace))
{
gen.AppendLine("}");
}
string result = gen.ToString();
return result;
}
private static string GetPrefixedSuffixed(GenConfig config, string name)
{
return string.Format("{0}{1}{2}", config.ClassPrefix ?? string.Empty, name, config.ClassSuffix ?? string.Empty);
}
private static string JsonName(string fieldName)
{
string jsonName = fieldName;
string first = jsonName.Substring(0, 1).ToLower();
jsonName = first + jsonName.Substring(1, jsonName.Length - 1);
return jsonName;
}
}
}