-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
266 lines (236 loc) · 10.9 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
using System;
using System.Collections.Generic;
using System.Linq;
namespace Billbee.MinimalOrderApi
{
internal class Program
{
public static void Main(string[] args)
{
IOrderAPI api = null; // Your implementation
string accessToken = null; // Your access token
if (api == null || string.IsNullOrWhiteSpace(accessToken))
{
Console.WriteLine("You need to set the api and the accessToken.");
return;
}
var orders = new List<Order>();
var startDate = DateTime.Now.AddDays(-30);
if (api != null)
{
api.DeserializeAccessToken(accessToken);
int numberOfPages;
var currentPage = 1;
const int pageSize = 50;
do
{
try
{
orders.AddRange(api.GetOrderList(
startDate,
19,
7,
out _,
out numberOfPages,
currentPage,
pageSize
));
}
catch (Exception e)
{
Console.WriteLine(
$"Execption while querying page {currentPage} with pageSize {pageSize} and startDate {startDate}");
Console.WriteLine(e);
throw;
}
} while (++currentPage <= numberOfPages);
if (api.SerializeAccessToken() != accessToken)
{
Console.WriteLine("The access token was modified.");
}
}
Console.WriteLine($"Loaded {orders.Count} order(s).");
foreach (var order in orders)
{
var isValid = true;
var uniqueIdentifier = string.IsNullOrWhiteSpace(order.Id) ? order.OrderNumber : order.Id;
if (string.IsNullOrWhiteSpace(order.Id))
{
isValid = false;
Console.WriteLine($"Order {uniqueIdentifier}: Missing {nameof(order.Id)}");
}
if (string.IsNullOrWhiteSpace(order.OrderNumber))
{
isValid = false;
Console.WriteLine($"Order {uniqueIdentifier}: Missing {nameof(order.OrderNumber)}");
}
if (order.CreatedAt == default)
{
isValid = false;
Console.WriteLine($"Order {uniqueIdentifier}: {nameof(order.CreatedAt)} was not set.");
}
if (string.IsNullOrWhiteSpace(order.Currency))
{
isValid = false;
Console.WriteLine($"Order {uniqueIdentifier}: Missing {nameof(order.Currency)}");
}
else if (order.Currency.Trim().Length != 3)
{
isValid = false;
Console.WriteLine(
$"Order {uniqueIdentifier}: {nameof(order.Currency)} must be a valid 3 letter currency code.");
}
if (order.InvoiceAddress == null)
{
isValid = false;
Console.WriteLine($"Order {uniqueIdentifier}: Missing {nameof(order.InvoiceAddress)}");
}
else
isValid &= _validateAddress($"{uniqueIdentifier}.{nameof(order.InvoiceAddress)}",
order.InvoiceAddress);
if (order.ShippingAddress == null)
{
isValid = false;
Console.WriteLine($"Order {uniqueIdentifier}: Missing {nameof(order.ShippingAddress)}");
}
else
isValid &= _validateAddress($"{uniqueIdentifier}.{nameof(order.ShippingAddress)}",
order.ShippingAddress);
if (isValid && string.IsNullOrWhiteSpace(order.ShippingAddress.Email)
&& string.IsNullOrWhiteSpace(order.InvoiceAddress.Email))
{
isValid = false;
Console.WriteLine(
$"Order {uniqueIdentifier}: Missing a Email in {nameof(order.InvoiceAddress)} or {nameof(order.ShippingAddress)}");
}
if (!string.IsNullOrWhiteSpace(order.IsCancellationFor) && !order.IsCanceled)
{
isValid = false;
Console.WriteLine(
$"Order {uniqueIdentifier}: {nameof(order.IsCancellationFor)} is set but {nameof(order.IsCanceled)} is false.");
}
if (order.OrderItems == null)
{
isValid = false;
Console.WriteLine($"Order {uniqueIdentifier}: Missing {nameof(order.OrderItems)}");
}
else if (!order.OrderItems.Any())
{
isValid = false;
Console.WriteLine($"Order {uniqueIdentifier}: The order has no OrderItems and should be excluded.");
}
else _validateOrderItems(uniqueIdentifier, order);
if (orders.Any(o => o.Id == order.Id && o.GetHashCode() != order.GetHashCode()))
{
isValid = false;
Console.WriteLine($"Order {uniqueIdentifier}: There is more than one order with the same id.");
}
Console.WriteLine($"Order {uniqueIdentifier} is {(isValid ? "valid" : "invalid")}.");
Console.WriteLine();
}
}
private static void _validateOrderItems(string uniqueIdentifier, Order order)
{
var calculatedTotal = order.OrderItems.Sum(i => i.DiscountedPrice) + order.ShippingCost;
if (order.TotalCost != calculatedTotal)
{
Console.WriteLine(
$"Order {uniqueIdentifier}: The TotalCost of {order.TotalCost} doesn't match the calculated total of {calculatedTotal}");
}
for (var index = 0; index < order.OrderItems.Count; index++)
{
var item = order.OrderItems[index];
var identifier = $"{uniqueIdentifier}.{nameof(order.OrderItems)}[{index}]";
if (item.Quantity == 0)
{
Console.WriteLine($"Order {identifier}: {nameof(item.Quantity)} == 0");
}
if (item.TaxAmount != 0 && (item.TaxIndex == null || item.TaxIndex == 0))
{
Console.WriteLine(
$"Order {identifier}: {nameof(item.TaxAmount)} != 0 but the {nameof(item.TaxIndex)} is not set.");
}
else if (item.TaxAmount == 0 && item.TaxIndex != null && item.TaxIndex != 0)
{
Console.WriteLine(
$"Order {identifier}: {nameof(item.TaxAmount)} == 0 but the {nameof(item.TaxIndex)} is set to {item.TaxIndex}.");
}
else if (item.TaxAmount != 0)
{
var vatRate = item.TaxIndex == 1 ? order.TaxRateRegular : order.TaxRateReduced;
var netPrice = (item.DiscountedPrice / (1 + (vatRate / 100))) ?? 0;
var calculatedTaxAmount =
Math.Round(item.DiscountedPrice - netPrice, 4, MidpointRounding.AwayFromZero);
if (item.TaxAmount != calculatedTaxAmount)
{
Console.WriteLine(
$"Order {identifier}: The {nameof(item.TaxAmount)} of {item.TaxAmount} doesn't match the calculated of {calculatedTaxAmount}.");
}
}
if (item.Product == null)
{
Console.WriteLine($"Order {identifier}: Missing {nameof(item.Product)}");
}
else
{
if (string.IsNullOrWhiteSpace(item.Product.Title))
{
Console.WriteLine($"Order {identifier}.Product: Missing {nameof(item.Product.Title)}");
}
if (string.IsNullOrWhiteSpace(item.Product.SKU))
{
Console.WriteLine($"Order {identifier}.Product: Missing {nameof(item.Product.SKU)}");
}
if (string.IsNullOrWhiteSpace(item.Product.SKU))
{
Console.WriteLine($"Order {identifier}.Product: Missing {nameof(item.Product.SKU)}");
}
}
}
}
private static bool _validateAddress(string identifier, Address address)
{
var isValid = true;
if (string.IsNullOrWhiteSpace(address.Company) &&
(string.IsNullOrWhiteSpace(address.FirstName) || string.IsNullOrWhiteSpace(address.LastName))
)
{
isValid = false;
Console.WriteLine(
$"Order {identifier}: Missing {nameof(address.Company)} or {nameof(address.FirstName)} and {nameof(address.LastName)}");
}
if (string.IsNullOrWhiteSpace(address.Line2)
&& (string.IsNullOrWhiteSpace(address.Street) || string.IsNullOrWhiteSpace(address.HouseNumber))
)
{
isValid = false;
Console.WriteLine(
$"Order {identifier}: Missing {nameof(address.Street)} and {nameof(address.HouseNumber)} or {nameof(address.Line2)}"
);
}
if (string.IsNullOrWhiteSpace(address.Zip))
{
isValid = false;
Console.WriteLine($"Order {identifier}: Missing {nameof(address.Zip)}");
}
if (string.IsNullOrWhiteSpace(address.City))
{
isValid = false;
Console.WriteLine($"Order {identifier}: Missing {nameof(address.City)}");
}
if (string.IsNullOrWhiteSpace(address.Country) && string.IsNullOrWhiteSpace(address.CountryISO2))
{
isValid = false;
Console.WriteLine(
$"Order {identifier}: Missing {nameof(address.Country)} and {nameof(address.CountryISO2)}");
}
else if (!string.IsNullOrWhiteSpace(address.CountryISO2) && address.CountryISO2.Trim().Length != 2)
{
isValid = false;
Console.WriteLine(
$"Order {identifier}: {nameof(address.CountryISO2)} must be a valid 2 letter country code");
}
return isValid;
}
}
}