forked from PartnerCenterSamples/Commerce-API-DotNet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOrder.cs
582 lines (504 loc) · 20 KB
/
Order.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
/********************************************************
* *
* Copyright (C) Microsoft. All rights reserved. *
* *
*********************************************************/
namespace Microsoft.Partner.CSP.Api.V1.Samples
{
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Web.Helpers;
public static class Order
{
/// <summary>
/// This method returns an order object populated from the console for a given customer
/// </summary>
/// <param name="customerCid">cid of the customer</param>
/// <returns>order object</returns>
public static dynamic PopulateOrderFromConsole(string customerCid)
{
var offerTypes = Enum.GetValues(typeof(OfferType));
bool InvalidInput = false;
Console.Clear();
do
{
Console.WriteLine("Select Offer Group");
Console.WriteLine("1.Azure");
Console.WriteLine("2.IntuneAndOffice");
Console.Write("Enter index [1...{0}]:", offerTypes.Length);
string input = Console.ReadLine().Trim();
switch (input)
{
case "1":
return PopulateOrderFromConsoleForOfferType(OfferType.Azure, customerCid);
case "2":
return PopulateOrderFromConsoleForOfferType(OfferType.IntuneAndOffice, customerCid);
default:
Console.WriteLine("Invalid Input, Try Again");
InvalidInput = true;
break;
}
}
while (InvalidInput);
return null;
}
/// <summary>
/// This method populates Order info by offer type from the console
/// </summary>
/// <param name="offerType">Offer type: Azure or IntuneAndOffice</param>
/// <param name="customerCid">cid of the customer</param>
/// <returns>order object</returns>
private static dynamic PopulateOrderFromConsoleForOfferType(OfferType offerType, string customerCid)
{
GroupedOffers selectedGroupedOffers = OfferCatalog.Instance.GroupedOffersCollection.First(groupedOffers => groupedOffers.OfferType == offerType);
dynamic order = new
{
line_items = new List<dynamic>(),
recipient_customer_id = customerCid
};
int nrOfLineItems = 0;
bool done = false;
Console.Clear();
do
{
Console.WriteLine("OfferType: {0}", offerType);
foreach (var item in selectedGroupedOffers.Offers.Select((offer, index) => new { Offer = offer, Index = index }))
{
Console.WriteLine("{0}. {1}", item.Index + 1, item.Offer.Name);
}
Console.Write("\nSelect Offer (by index): ");
string input = Console.ReadLine().Trim();
int selectedIndex = -1;
if (!int.TryParse(input, out selectedIndex))
{
done = false;
}
var selectedOffer = selectedGroupedOffers.Offers.ElementAt(selectedIndex - 1);
bool validQuantity = false;
do
{
Console.Write("\nQuantity {0} to {1}: ", selectedOffer.MinimumQuantity, selectedOffer.MaximumQuantity);
input = Console.ReadLine().Trim();
int quantity = 1;
if (!int.TryParse(input, out quantity))
{
done = false;
}
if (quantity >= selectedOffer.MinimumQuantity && quantity <= selectedOffer.MaximumQuantity)
{
validQuantity = true;
}
Console.Write("\nFriendly Name (or hit Enter for none): ");
input = Console.ReadLine().Trim();
if (!string.IsNullOrWhiteSpace(input))
{
order.line_items.Add(new
{
//// has to be a unique number for each line item
//// recommendation is to start with 0
line_item_number = nrOfLineItems,
//// this is the offer uri for the offer that is being purchased, refer to the excel sheet for this
offer_uri = selectedOffer.Uri,
//// This is the quantity for this offer
quantity = quantity,
//// This is friendly name
friendlyname = input
});
}
else
{
order.line_items.Add(new
{
//// has to be a unique number for each line item
//// recommendation is to start with 0
line_item_number = nrOfLineItems,
//// this is the offer uri for the offer that is being purchased, refer to the excel sheet for this
offer_uri = selectedOffer.Uri,
//// This is the quantity for this offer
quantity = quantity,
});
}
}
while (!validQuantity);
Console.Write("\nDo you want to add another line item (y/n)? ");
input = Console.ReadLine().Trim();
switch (input)
{
case "y":
case "Y":
nrOfLineItems++;
done = false;
break;
default:
done = true;
break;
}
}
while (!done);
return order;
}
/// <summary>
/// Populates an order with multiple line items
/// </summary>
/// <param name="customerCid">cid of the customer</param>
/// <returns>multiple line items order</returns>
public static dynamic PopulateOrderWithMultipleLineItems(string customerCid)
{
//// This is the offer Uri of Lync Online (Plan 1) from the excel sheet shared to partners
const string lyncOnlinePlan1OfferUri = "/3c95518e-8c37-41e3-9627-0ca339200f53/offers/ACA0C06C-890D-4ABB-83CF-BC519A2565E5";
//// This is the offer Uri of Exchange Online (Plan 1) from the excel sheet shared to partners
const string exchangeOnlinePlan1OfferUri = "/3c95518e-8c37-41e3-9627-0ca339200f53/offers/195416C1-3447-423A-B37B-EE59A99A19C4";
return new
{
line_items = new List<dynamic>()
{
new
{
//// has to be a unique number for each line item
//// recommendation is to start with 0
line_item_number = 0,
//// this is the offer uri for the offer that is being purchased, refer to the excel sheet for this
offer_uri = lyncOnlinePlan1OfferUri,
//// This is the quantity for this offer
quantity = 1,
},
new
{
//// has to be a unique number for each line item
//// recommendation is to start with 0
line_item_number = 1,
//// this is the offer uri for the offer that is being purchased, refer to the excel sheet for this
offer_uri = exchangeOnlinePlan1OfferUri,
//// This is the quantity for this offer
quantity = 1,
}
},
//// customer cid for who the order is being placed
recipient_customer_id = customerCid
};
}
/// <summary>
/// Sample for how to populate an order with Lync Online Plan 1
/// </summary>
/// <param name="customerCid">cid of the customer</param>
/// <returns>order object</returns>
public static dynamic PopulateLyncOnlinePlan1(string customerCid)
{
//// This is the offer Uri of Lync Online (Plan 1) from the excel sheet shared to partners
const string lyncOnlinePlan1OfferUri = "/3c95518e-8c37-41e3-9627-0ca339200f53/offers/ACA0C06C-890D-4ABB-83CF-BC519A2565E5";
return new
{
line_items = new List<dynamic>()
{
new
{
//// has to be a unique number for each line item
//// recommendation is to start with 0
line_item_number = 0,
//// this is the offer uri for the offer that is being purchased, refer to the excel sheet for this
offer_uri = lyncOnlinePlan1OfferUri,
//// This is the quantity for this offer
quantity = 1,
}
},
//// customer cid for who the order is being placed
recipient_customer_id = customerCid
};
}
/// <summary>
/// Sample for populating an azure order
/// </summary>
/// <param name="customerCid">cid of the customer</param>
/// <returns>order object</returns>
public static dynamic PopulateAzureOrder(string customerCid)
{
//// This is the offer Uri of Azure Cloud Solution Provider from the excel sheet shared to partners
//// If you are using a tip tenant, placing this order will fail as it is not supported currently
const string azureOfferUri = "/fbf178a5-144e-46d1-aa81-612c2d3f97f4/offers/MS-AZR-0145P";
return new
{
line_items = new List<dynamic>()
{
new
{
//// has to be a unique number for each line item
//// recommendation is to start with 0
line_item_number = 0,
//// this is the offer uri for the offer that is being purchased, refer to the excel sheet for this
offer_uri = azureOfferUri,
//// Max quantity for azure subscription is only 1
quantity = 1,
//// since a customer can have multiple azure subscriptions, one can use this friendly name to distinguish the subscriptions
//// when queried for subscription of this order line item, one would get this back in the friendlyname
friendlyname = "CSP-Sample Azure Subscription"
}
},
//// customer cid for who the order is being placed
recipient_customer_id = customerCid
};
}
/// <summary>
/// Sample for populating an azure order in TIP or Integration Sandbox
/// </summary>
/// <param name="customerCid">cid of the customer</param>
/// <returns>order object</returns>
public static dynamic PopulateAzureOrderInTIP(string customerCid)
{
//// This is the offer Uri of Azure Cloud Solution Provider from the excel sheet shared to partners
//// If you are using a tip tenant, placing this order will fail as it is not supported currently
const string azureOfferUri = "/fbf178a5-144e-46d1-aa81-612c2d3f97f4/offers/MS-AZR-0146P";
return new
{
line_items = new List<dynamic>()
{
new
{
//// has to be a unique number for each line item
//// recommendation is to start with 0
line_item_number = 0,
//// this is the offer uri for the offer that is being purchased, refer to the excel sheet for this
offer_uri = azureOfferUri,
//// Max quantity for azure subscription is only 1
quantity = 1,
//// since a customer can have multiple azure subscriptions, one can use this friendly name to distinguish the subscriptions
//// when queried for subscription of this order line item, one would get this back in the friendlyname
friendlyname = "CSP-Sample Azure Subscription"
}
},
//// customer cid for who the order is being placed
recipient_customer_id = customerCid
};
}
/// <summary>
/// Sample for populating an order from the given offer uri
/// </summary>
/// <param name="customerCid">cid of the customer</param>
/// <param name="offerUri">The offer Uri</param>
/// <param name="friendlyName">Friendly Name</param>
/// <returns>order object</returns>
public static dynamic PopulateOrderFromOfferUri(string customerCid, string offerUri, string friendlyName)
{
return new
{
line_items = new List<dynamic>()
{
new
{
//// has to be a unique number for each line item
//// recommendation is to start with 0
line_item_number = 0,
//// this is the offer uri for the offer that is being purchased, refer to the excel sheet for this
offer_uri = offerUri,
//// Max quantity for azure subscription is only 1
quantity = 1,
//// since a customer can have multiple azure subscriptions, one can use this friendly name to distinguish the subscriptions
//// when queried for subscription of this order line item, one would get this back in the friendlyname
friendlyname = friendlyName
}
},
//// customer cid for who the order is being placed
recipient_customer_id = customerCid
};
}
/// <summary>
/// This method retrieves all the orders placed for a customer by a reseller
/// </summary>
/// <param name="customerCid">cid of the customer</param>
/// <param name="resellerCid">cid of the reseller</param>
/// <param name="sa_Token">sales agent token</param>
/// <returns>object that contains orders</returns>
public static dynamic GetOrders(string customerCid, string resellerCid, string sa_Token)
{
var request = (HttpWebRequest)HttpWebRequest.Create(string.Format("https://api.cp.microsoft.com/{0}/orders?recipient_customer_id={1}", resellerCid, customerCid));
request.Method = "GET";
request.Accept = "application/json";
request.Headers.Add("api-version", "2015-03-31");
request.Headers.Add("x-ms-correlation-id", Guid.NewGuid().ToString());
request.Headers.Add("x-ms-tracking-id", Guid.NewGuid().ToString());
request.Headers.Add("Authorization", "Bearer " + sa_Token);
try
{
Utilities.PrintWebRequest(request, string.Empty);
var response = request.GetResponse();
using (var reader = new StreamReader(response.GetResponseStream()))
{
var responseContent = reader.ReadToEnd();
Utilities.PrintWebResponse((HttpWebResponse)response, responseContent);
var ordersResponse = Json.Decode(responseContent);
foreach (var order in ordersResponse.items)
{
PrintOrder(order);
}
return ordersResponse;
}
}
catch (WebException webException)
{
using (var reader = new StreamReader(webException.Response.GetResponseStream()))
{
var responseContent = reader.ReadToEnd();
Utilities.PrintErrorResponse((HttpWebResponse)webException.Response, responseContent);
}
}
return string.Empty;
}
/// <summary>
/// This method returns the order given an orderId for a reseller
/// </summary>
/// <param name="orderId">id of the order</param>
/// <param name="resellerCid">cid of the reseller</param>
/// <param name="sa_Token">sales agent token</param>
/// <returns>order object</returns>
public static dynamic GetOrder(string orderId, string resellerCid, string sa_Token)
{
var request = (HttpWebRequest)HttpWebRequest.Create(string.Format("https://api.cp.microsoft.com/{0}/orders/{1}", resellerCid, orderId));
request.Method = "GET";
request.Accept = "application/json";
request.Headers.Add("api-version", "2015-03-31");
request.Headers.Add("x-ms-correlation-id", Guid.NewGuid().ToString());
request.Headers.Add("x-ms-tracking-id", Guid.NewGuid().ToString());
request.Headers.Add("Authorization", "Bearer " + sa_Token);
try
{
Utilities.PrintWebRequest(request, string.Empty);
var response = request.GetResponse();
using (var reader = new StreamReader(response.GetResponseStream()))
{
var responseContent = reader.ReadToEnd();
Utilities.PrintWebResponse((HttpWebResponse)response, responseContent);
var order = Json.Decode(responseContent);
PrintOrder(order);
return order;
}
}
catch (WebException webException)
{
using (var reader = new StreamReader(webException.Response.GetResponseStream()))
{
var responseContent = reader.ReadToEnd();
Utilities.PrintErrorResponse((HttpWebResponse)webException.Response, responseContent);
}
}
return string.Empty;
}
/// <summary>
/// This method is used to place order on behalf of a customer by a reseller
/// </summary>
/// <param name="resellerCid">the cid of the reseller</param>
/// <param name="order">new Order that can contain multiple line items</param>
/// <param name="sa_Token">unexpired access token to call the partner apis</param>
/// <returns>order information that has references to the subscription uris and entitlement uri for the line items</returns>
public static dynamic PlaceOrder(dynamic order, string resellerCid, string sa_Token)
{
var request = (HttpWebRequest)HttpWebRequest.Create(string.Format("https://api.cp.microsoft.com/{0}/orders", resellerCid));
request.Method = "POST";
request.ContentType = "application/json";
request.Accept = "application/json";
request.Headers.Add("api-version", "2015-03-31");
request.Headers.Add("x-ms-correlation-id", Guid.NewGuid().ToString());
request.Headers.Add("x-ms-tracking-id", Guid.NewGuid().ToString());
request.Headers.Add("Authorization", "Bearer " + sa_Token);
string content = Json.Encode(order);
using (var writer = new StreamWriter(request.GetRequestStream()))
{
writer.Write(content);
}
try
{
Utilities.PrintWebRequest(request, content);
var response = request.GetResponse();
using (var reader = new StreamReader(response.GetResponseStream()))
{
var responseContent = reader.ReadToEnd();
Utilities.PrintWebResponse((HttpWebResponse)response, responseContent);
var placedOrder = Json.Decode(responseContent);
PrintOrder(placedOrder);
return placedOrder;
}
}
catch (WebException webException)
{
using (var reader = new StreamReader(webException.Response.GetResponseStream()))
{
var responseContent = reader.ReadToEnd();
Utilities.PrintErrorResponse((HttpWebResponse)webException.Response, responseContent);
}
}
return string.Empty;
}
/// <summary>
/// This method is used to patch an existing order by a reseller
/// </summary>
/// <param name="resellerCid">the cid of the reseller</param>
/// <param name="order">new Order that can contain multiple line items</param>
/// <param name="sa_Token">unexpired access token to call the partner apis</param>
/// <returns>order information that has references to the subscription uris and entitlement uri for the line items</returns>
public static dynamic PatchOrder(string id, dynamic order, string resellerCid, string sa_Token)
{
var previousOrder = GetOrder(id, resellerCid, sa_Token);
var request = (HttpWebRequest)HttpWebRequest.Create(string.Format("https://api.cp.microsoft.com/{0}/orders/{1}", resellerCid, id));
request.Method = "PATCH";
request.ContentType = "application/json";
request.Accept = "application/json";
request.Headers.Add("api-version", "2015-03-31");
request.Headers.Add("x-ms-correlation-id", Guid.NewGuid().ToString());
request.Headers.Add("x-ms-tracking-id", Guid.NewGuid().ToString());
request.Headers.Add("Authorization", "Bearer " + sa_Token);
request.Headers.Add("If-Match", previousOrder.etag);
string content = Json.Encode(order);
using (var writer = new StreamWriter(request.GetRequestStream()))
{
writer.Write(content);
}
try
{
Utilities.PrintWebRequest(request, content);
var response = request.GetResponse();
using (var reader = new StreamReader(response.GetResponseStream()))
{
var responseContent = reader.ReadToEnd();
Utilities.PrintWebResponse((HttpWebResponse)response, responseContent);
var patchedOrder = Json.Decode(responseContent);
PrintOrder(patchedOrder);
return patchedOrder;
}
}
catch (WebException webException)
{
using (var reader = new StreamReader(webException.Response.GetResponseStream()))
{
var responseContent = reader.ReadToEnd();
Utilities.PrintErrorResponse((HttpWebResponse)webException.Response, responseContent);
}
}
return string.Empty;
}
/// <summary>
/// This method prints the information in an order
/// </summary>
/// <param name="order">Order that was placed</param>
public static void PrintOrder(dynamic order)
{
Console.ForegroundColor = ConsoleColor.DarkGreen;
Console.WriteLine("=========================================");
Console.WriteLine("Order Information");
Console.WriteLine("=========================================");
Console.WriteLine("Id\t\t: {0}", order.id);
Console.WriteLine("CustomerId\t: {0}", order.recipient_customer_id);
Console.WriteLine("Etag\t\t: {0}", order.etag);
Console.WriteLine("Created Date\t: {0}\n", order.creation_date);
foreach (var line_item in order.line_items)
{
Console.WriteLine("LineItem {0}", line_item.line_item_number);
Console.WriteLine("\tOfferUri\t\t: {0}", line_item.offer_uri);
Console.WriteLine("\tQuantity\t\t: {0}", line_item.quantity);
Console.WriteLine("\tSubscriptionUri\t\t: {0}", line_item.resulting_subscription_uri);
}
Console.WriteLine("=========================================");
Console.ResetColor();
}
}
}