-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPluginSettings.cs
296 lines (248 loc) · 10.7 KB
/
PluginSettings.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
using NopPluginTemplater.Generators;
namespace NopPluginTemplater;
public static class PluginSettings
{
public static string DevName { get; set; } = string.Empty;
public static string Name { get; set; } = string.Empty;
public static string NameCamel => string.Concat(Name[0].ToString().ToLower(), Name.AsSpan(1));
public static PluginType PType { get; set; }
public static NopVersions NopVersion { get; set; }
public static bool IsAdminMenu { get; set; } = false;
public static bool ContainsWidget { get; set; } = false;
public static string FullPluginNamespace => $"{DevName}.Plugin.{NamespaceGroup}.{Name}";
public static string Interfaces => Interface + (ContainsWidget ? ", IWidgetPlugin" : string.Empty) + (IsAdminMenu ? ", IAdminMenuPlugin" : string.Empty);
public static string SystemName => $"{NamespaceGroup}.{Name}";
public static bool HasServices => !string.IsNullOrWhiteSpace(PluginFields);
public static List<string> AdditionalProjectFiles = [];
public static string Usings
{
get
{
var additionalUsings = new List<string>();
if (ContainsWidget)
{
additionalUsings.Add("Nop.Services.Cms");
additionalUsings.Add("Nop.Web.Framework.Infrastructure");
additionalUsings.Add($"{FullPluginNamespace}.Components");
}
if (IsAdminMenu)
additionalUsings.Add("Nop.Web.Framework.Menu");
additionalUsings.AddRange(TypeSpecificUsing);
return string.Join(Environment.NewLine, additionalUsings.Distinct().Select(x => $"using {x};"));
}
}
public static string PluginFields
{
get
{
return string.Join(Environment.NewLine, (PType switch
{
PluginType.DiscountRule => new() { { $"{Name}DiscountService", $"_{NameCamel}DiscountService" } },
PluginType.ExternalAuthenticationMethod => [],
PluginType.Misc => [],
PluginType.MultiFactorAuthentication => [],
PluginType.Payment => new() { { $"{Name}PaymentService", $"_{NameCamel}PaymentService" } },
PluginType.PickupProvider => [],
PluginType.ShippingRateComputationMethod => [],
PluginType.TaxProvider => [],
_ => new Dictionary<string, string>()
}).Select(x => $"private readonly {x.Key} {x.Value};"));
}
}
public static string PluginDI
{
get
{
return string.Join($",{Environment.NewLine}", (PType switch
{
PluginType.DiscountRule => new() { { $"{Name}DiscountService", $"{NameCamel}DiscountService" } },
PluginType.ExternalAuthenticationMethod => [],
PluginType.Misc => [],
PluginType.MultiFactorAuthentication => [],
PluginType.Payment => new() { { $"{Name}PaymentService", $"{NameCamel}PaymentService" } },
PluginType.PickupProvider => [],
PluginType.ShippingRateComputationMethod => [],
PluginType.TaxProvider => [],
_ => new Dictionary<string, string>()
}).Select(x => $"{x.Key} {x.Value}"));
}
}
public static string PluginServiceRegistation
{
get
{
return string.Join(Environment.NewLine, (PType switch
{
PluginType.DiscountRule => new() { { $"_{NameCamel}DiscountService", $"{NameCamel}DiscountService" } },
PluginType.ExternalAuthenticationMethod => [],
PluginType.Misc => [],
PluginType.MultiFactorAuthentication => [],
PluginType.Payment => new() { { $"_{NameCamel}PaymentService", $"{NameCamel}PaymentService" } },
PluginType.PickupProvider => [],
PluginType.ShippingRateComputationMethod => [],
PluginType.TaxProvider => [],
_ => new Dictionary<string, string>()
}).Select(x => $"{x.Key} = {x.Value};"));
}
}
private static IEnumerable<string> TypeSpecificUsing
{
get
{
return PType switch
{
PluginType.DiscountRule => ["Nop.Services.Discounts", $"{FullPluginNamespace}.Services"],
PluginType.ExternalAuthenticationMethod => ["Nop.Services.Authentication.External", $"{FullPluginNamespace}.Components"],
PluginType.Misc => ["Nop.Services.Common"],
PluginType.MultiFactorAuthentication => ["Nop.Services.Authentication.MultiFactor", $"{FullPluginNamespace}.Components"],
PluginType.Payment => ["Nop.Services.Payments", "Nop.Core.Domain.Orders", "Microsoft.AspNetCore.Http", $"{FullPluginNamespace}.Components", $"{FullPluginNamespace}.Services"],
PluginType.PickupProvider => ["Nop.Services.Shipping.Pickup", "Nop.Core.Domain.Orders", "Nop.Core.Domain.Common", "Nop.Services.Shipping.Tracking"],
PluginType.ShippingRateComputationMethod => ["Nop.Services.Shipping", "Nop.Services.Shipping.Tracking"],
PluginType.TaxProvider => ["Nop.Services.Tax"],
_ => []
};
}
}
private static string NamespaceGroup
{
get
{
if (PType == PluginType.Misc && ContainsWidget)
return "Widgets";
return PType switch
{
PluginType.Misc => "Misc",
PluginType.Payment => "Payments",
PluginType.DiscountRule => "DiscountRule",
PluginType.ShippingRateComputationMethod => "Shipping",
PluginType.PickupProvider => "Pickup",
PluginType.TaxProvider => "Tax",
PluginType.ExternalAuthenticationMethod => "ExternalAuthenticationMethod",
PluginType.MultiFactorAuthentication => "MultiFactorAuthentication",
_ => string.Empty
};
}
}
public static string Group
{
get
{
if (PType == PluginType.Misc && ContainsWidget)
return "Widgets";
return PType switch
{
PluginType.Misc => "Misc",
PluginType.Payment => "Payments",
PluginType.DiscountRule => "Discount Requirement",
PluginType.ShippingRateComputationMethod => "Shipping",
PluginType.PickupProvider => "Pickup",
PluginType.TaxProvider => "Tax",
PluginType.ExternalAuthenticationMethod => "ExternalAuthenticationMethod",
PluginType.MultiFactorAuthentication => "MultiFactorAuthentication",
_ => string.Empty
};
}
}
public static string Interface
{
get
{
return PType switch
{
PluginType.Misc => "IMiscPlugin",
PluginType.Payment => "IPaymentMethod",
PluginType.DiscountRule => "IDiscountRequirementRule",
PluginType.ShippingRateComputationMethod => "IShippingRateComputationMethod",
PluginType.PickupProvider => "IPickupPointProvider",
PluginType.TaxProvider => "ITaxProvider",
PluginType.ExternalAuthenticationMethod => "IExternalAuthenticationMethod",
PluginType.MultiFactorAuthentication => "IMultiFactorAuthenticationMethod",
_ => string.Empty
};
}
}
public static string DotNetVersion
{
get
{
return NopVersion switch
{
NopVersions.nop450 => "net6.0",
NopVersions.nop460 => "net7.0",
NopVersions.nop470 => "net8.0",
NopVersions.nop480 => "net9.0",
NopVersions.nop490 => string.Empty, //todo: update on nop 4.9 release
_ => string.Empty
};
}
}
public static string NopRawVersion
{
get
{
return NopVersion switch
{
NopVersions.nop450 => "4.50",
NopVersions.nop460 => "4.60",
NopVersions.nop470 => "4.70",
NopVersions.nop480 => "4.80",
NopVersions.nop490 => "4.90",
_ => string.Empty
};
}
}
public static async Task BuildViewComponentsAsync()
{
if (ContainsWidget)
{
await new Generate("Components", "TWidgetViewComponent").BuildGenericFileAsync();
await new Generate("Models", "TWidgetViewModel").BuildGenericFileAsync();
await new Generate("Views/Components", "TWidget").BuildGenericFileAsync(".cshtml");
}
if (PType == PluginType.Payment)
{
await new Generate("Components", "PaymentInfoViewComponent").BuildGenericFileAsync();
await new Generate("Models", "PaymentInfoModel").BuildGenericFileAsync();
await new Generate("Views/Components", "PaymentInfo").BuildGenericFileAsync(".cshtml");
await new Generate("Services", "TPaymentService").BuildGenericFileAsync();
}
else if (PType == PluginType.ExternalAuthenticationMethod)
{
await new Generate("Components", "ExternalAuthenticationViewComponent").BuildGenericFileAsync();
await new Generate("Models", "ExternalAuthenticationModel").BuildGenericFileAsync();
await new Generate("Views/Components", "ExternalAuthentication").BuildGenericFileAsync(".cshtml");
}
else if (PType == PluginType.MultiFactorAuthentication)
{
await new Generate("Components", "MultiFactorPublicViewComponent").BuildGenericFileAsync();
await new Generate("Models", "MultiFactorPublicModel").BuildGenericFileAsync();
await new Generate("Views/Components", "MultiFactorPublic").BuildGenericFileAsync(".cshtml");
await new Generate("Components", "MultiFactorVerificationViewComponent").BuildGenericFileAsync();
await new Generate("Models", "MultiFactorVerificationModel").BuildGenericFileAsync();
await new Generate("Views/Components", "MultiFactorVerification").BuildGenericFileAsync(".cshtml");
}
else if (PType == PluginType.DiscountRule)
{
await new Generate("Services", "TDiscountService").BuildGenericFileAsync();
}
}
}
public enum NopVersions
{
nop450,
nop460,
nop470,
nop480,
nop490,
}
public enum PluginType
{
Misc,
Payment,
DiscountRule,
ShippingRateComputationMethod,
PickupProvider,
TaxProvider,
ExternalAuthenticationMethod,
MultiFactorAuthentication
}