Skip to content

Commit 4be0bd4

Browse files
authored
Merge pull request #49 from CyberSource/folder-restructure
Folder Restructure
2 parents 8ba5619 + 9a8515b commit 4be0bd4

File tree

168 files changed

+6980
-3165
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

168 files changed

+6980
-3165
lines changed

src/Configuration.cs

+25
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,31 @@ public Dictionary<string, string> GetConfiguration()
2929
// _configurationDictionary.Add("proxyPassword", string.Empty);
3030

3131

32+
return _configurationDictionary;
33+
}
34+
35+
public Dictionary<string, string> GetAlternativeConfiguration()
36+
{
37+
_configurationDictionary.Add("authenticationType", "HTTP_SIGNATURE");
38+
_configurationDictionary.Add("merchantID", "testrest_cpctv");
39+
_configurationDictionary.Add("merchantsecretKey", "JXm4dqKYIxWofM1TIbtYY9HuYo7Cg1HPHxn29f6waRo=");
40+
_configurationDictionary.Add("merchantKeyId", "e547c3d3-16e4-444c-9313-2a08784b906a");
41+
_configurationDictionary.Add("keysDirectory", "Resource");
42+
_configurationDictionary.Add("keyFilename", "testrest_cpctv");
43+
_configurationDictionary.Add("runEnvironment", "cybersource.environment.sandbox");
44+
_configurationDictionary.Add("keyAlias", "testrest_cpctv");
45+
_configurationDictionary.Add("keyPass", "testrest_cpctv");
46+
_configurationDictionary.Add("enableLog", "FALSE");
47+
_configurationDictionary.Add("logDirectory", string.Empty);
48+
_configurationDictionary.Add("logFileName", string.Empty);
49+
_configurationDictionary.Add("logFileMaxSize", "5242880");
50+
_configurationDictionary.Add("timeout", "300000");
51+
// _configurationDictionary.Add("proxyAddress", string.Empty);
52+
// _configurationDictionary.Add("proxyPort", string.Empty);
53+
// _configurationDictionary.Add("proxyUsername", string.Empty);
54+
// _configurationDictionary.Add("proxyPassword", string.Empty);
55+
56+
3257
return _configurationDictionary;
3358
}
3459
}

src/Resource/testrest_cpctv.p12

3.5 KB
Binary file not shown.

src/SampleCode.cs

+5-1
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,16 @@ public static void RunSample(string cmdLineArg = null)
7272

7373
if (_sampleToRun.ToUpper().Contains("RUNALL"))
7474
{
75+
int sampleCount = 1;
7576
foreach (var apiMethod in ApiList)
7677
{
77-
Console.WriteLine("\n#### START RUNNING SAMPLE CODE FOR " + apiMethod.ApiFunctionCall + " ####");
78+
Console.WriteLine("\n" + sampleCount + ".\t#### START RUNNING SAMPLE CODE FOR " + apiMethod.ApiFunctionCall + " ####");
7879
RunSample(apiMethod.ApiFunctionCall);
7980
Console.WriteLine("\n#### END RUNNING SAMPLE CODE FOR " + apiMethod.ApiFunctionCall + " ####");
81+
sampleCount++;
8082
}
83+
84+
Console.WriteLine("\n\nTotal number of Sample run : " + sampleCount);
8185
}
8286
else
8387
{

src/SampleCode.csproj

+114-85
Large diffs are not rendered by default.

src/Samples/Flex/CoreServices/GenerateKey.cs src/Samples/Flex/KeyGeneration/GenerateKey.cs

+12-6
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,34 @@
1-
using System;
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Globalization;
4+
25
using CyberSource.Api;
36
using CyberSource.Model;
47

5-
namespace Cybersource_rest_samples_dotnet.Samples.Flex.CoreServices
8+
namespace Cybersource_rest_samples_dotnet.Samples.Flex
69
{
710
public class GenerateKey
811
{
912
public static FlexV1KeysPost200Response Run()
1013
{
11-
var requestObj = new GeneratePublicKeyRequest("None");
14+
string encryptionType = "None";
15+
var requestObj = new GeneratePublicKeyRequest(
16+
EncryptionType: encryptionType
17+
);
1218

1319
try
1420
{
1521
var configDictionary = new Configuration().GetConfiguration();
1622
var clientConfig = new CyberSource.Client.Configuration(merchConfigDictObj: configDictionary);
17-
var apiInstance = new KeyGenerationApi(clientConfig);
1823

19-
var result = apiInstance.GeneratePublicKey(requestObj);
24+
var apiInstance = new KeyGenerationApi(clientConfig);
25+
FlexV1KeysPost200Response result = apiInstance.GeneratePublicKey(requestObj);
2026
Console.WriteLine(result);
2127
return result;
2228
}
2329
catch (Exception e)
2430
{
25-
Console.WriteLine("Exception on calling the API: " + e.Message);
31+
Console.WriteLine("Exception on calling the API : " + e.Message);
2632
return null;
2733
}
2834
}

src/Samples/Flex/CoreServices/TokenizeCard.cs src/Samples/Flex/Tokenization/FlexTokenizeCard.cs

+27-21
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,47 @@
1-
using System;
1+
using System;
22
using System.Collections.Generic;
3-
using System.IO;
4-
using System.Security.Cryptography;
5-
using System.Text;
3+
using System.Globalization;
4+
65
using CyberSource.Api;
76
using CyberSource.Model;
87
using CyberSource.Utilities.Flex.Model;
98
using CyberSource.Utilities.Flex.TokenVerification;
109

11-
namespace Cybersource_rest_samples_dotnet.Samples.Flex.CoreServices
10+
namespace Cybersource_rest_samples_dotnet.Samples.Flex
1211
{
13-
public class TokenizeCard
12+
public class FlexTokenizeCard
1413
{
15-
public static void Run()
14+
public static FlexV1TokensPost200Response Run()
1615
{
1716
var generateKeyResult = GenerateKey.Run();
18-
var keyId = generateKeyResult.KeyId;
17+
string keyId = generateKeyResult.KeyId;
1918
var derFormat = generateKeyResult.Der.Format;
2019
var derAlgo = generateKeyResult.Der.Algorithm;
2120
var derPublicKey = generateKeyResult.Der.PublicKey;
2221

23-
var requestObj = new TokenizeRequest
24-
(
22+
string cardInfoCardNumber = "4111111111111111";
23+
string cardInfoCardExpirationMonth = "12";
24+
string cardInfoCardExpirationYear = "2031";
25+
string cardInfoCardType = "001";
26+
Flexv1tokensCardInfo cardInfo = new Flexv1tokensCardInfo(
27+
CardNumber: cardInfoCardNumber,
28+
CardExpirationMonth: cardInfoCardExpirationMonth,
29+
CardExpirationYear: cardInfoCardExpirationYear,
30+
CardType: cardInfoCardType
31+
);
32+
33+
var requestObj = new TokenizeRequest(
2534
KeyId: keyId,
26-
CardInfo: new Flexv1tokensCardInfo
27-
(
28-
CardExpirationYear: "2031",
29-
CardNumber: "5555555555554444",
30-
CardType: "002",
31-
CardExpirationMonth: "03"
32-
)
33-
);
35+
CardInfo: cardInfo
36+
);
3437

3538
try
3639
{
3740
var configDictionary = new Configuration().GetConfiguration();
3841
var clientConfig = new CyberSource.Client.Configuration(merchConfigDictObj: configDictionary);
39-
var apiInstance = new TokenizationApi(clientConfig);
4042

41-
var result = apiInstance.Tokenize(requestObj);
43+
var apiInstance = new TokenizationApi(clientConfig);
44+
FlexV1TokensPost200Response result = apiInstance.Tokenize(requestObj);
4245
Console.WriteLine(result);
4346

4447
TokenVerificationUtility tokenVerifier = new TokenVerificationUtility();
@@ -67,10 +70,13 @@ public static void Run()
6770

6871
var tokenVerificationResult = tokenVerifier.Verify(flexPublicKey, postParameters);
6972
Console.WriteLine("TOKEN VERIFICATION : " + tokenVerificationResult);
73+
74+
return result;
7075
}
7176
catch (Exception e)
7277
{
73-
Console.WriteLine("Exception on calling the API: " + e.Message);
78+
Console.WriteLine("Exception on calling the API : " + e.Message);
79+
return null;
7480
}
7581
}
7682
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Globalization;
4+
5+
using CyberSource.Api;
6+
using CyberSource.Model;
7+
8+
namespace Cybersource_rest_samples_dotnet.Samples.Invoicing
9+
{
10+
public class GetInvoiceSettings
11+
{
12+
public static InvoicingV2InvoiceSettingsGet200Response Run()
13+
{
14+
try
15+
{
16+
var configDictionary = new Configuration().GetConfiguration();
17+
var clientConfig = new CyberSource.Client.Configuration(merchConfigDictObj: configDictionary);
18+
19+
var apiInstance = new InvoiceSettingsApi(clientConfig);
20+
InvoicingV2InvoiceSettingsGet200Response result = apiInstance.GetInvoiceSettings();
21+
Console.WriteLine(result);
22+
return result;
23+
}
24+
catch (Exception e)
25+
{
26+
Console.WriteLine("Exception on calling the API : " + e.Message);
27+
return null;
28+
}
29+
}
30+
}
31+
}

src/Samples/Invoicing/InvoiceSettings/UpdateInvoiceSettings.cs

+54
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Globalization;
4+
5+
using CyberSource.Api;
6+
using CyberSource.Model;
7+
8+
namespace Cybersource_rest_samples_dotnet.Samples.Invoicing
9+
{
10+
public class CreateAndSendInvoiceImmediately
11+
{
12+
public static InvoicingV2InvoicesPost201Response Run()
13+
{
14+
string customerInformationName = "Tanya Lee";
15+
string customerInformationEmail = "[email protected]";
16+
Invoicingv2invoicesCustomerInformation customerInformation = new Invoicingv2invoicesCustomerInformation(
17+
Name: customerInformationName,
18+
Email: customerInformationEmail
19+
);
20+
21+
string invoiceInformationDescription = "This is a test invoice";
22+
DateTime invoiceInformationDueDate = DateTime.Parse("2019-07-11");
23+
bool invoiceInformationSendImmediately = true;
24+
bool invoiceInformationAllowPartialPayments = true;
25+
string invoiceInformationDeliveryMode = "email";
26+
Invoicingv2invoicesInvoiceInformation invoiceInformation = new Invoicingv2invoicesInvoiceInformation(
27+
Description: invoiceInformationDescription,
28+
DueDate: invoiceInformationDueDate,
29+
SendImmediately: invoiceInformationSendImmediately,
30+
AllowPartialPayments: invoiceInformationAllowPartialPayments,
31+
DeliveryMode: invoiceInformationDeliveryMode
32+
);
33+
34+
string orderInformationAmountDetailsTotalAmount = "2623.64";
35+
string orderInformationAmountDetailsCurrency = "USD";
36+
string orderInformationAmountDetailsDiscountAmount = "126.08";
37+
decimal orderInformationAmountDetailsDiscountPercent = 5.00M;
38+
decimal orderInformationAmountDetailsSubAmount = 2749.72M;
39+
decimal orderInformationAmountDetailsMinimumPartialAmount = 20.00M;
40+
string orderInformationAmountDetailsTaxDetailsType = "State Tax";
41+
string orderInformationAmountDetailsTaxDetailsAmount = "208.04";
42+
string orderInformationAmountDetailsTaxDetailsRate = "8.25";
43+
Invoicingv2invoicesOrderInformationAmountDetailsTaxDetails orderInformationAmountDetailsTaxDetails = new Invoicingv2invoicesOrderInformationAmountDetailsTaxDetails(
44+
Type: orderInformationAmountDetailsTaxDetailsType,
45+
Amount: orderInformationAmountDetailsTaxDetailsAmount,
46+
Rate: orderInformationAmountDetailsTaxDetailsRate
47+
);
48+
49+
string orderInformationAmountDetailsFreightAmount = "20.00";
50+
bool orderInformationAmountDetailsFreightTaxable = true;
51+
Invoicingv2invoicesOrderInformationAmountDetailsFreight orderInformationAmountDetailsFreight = new Invoicingv2invoicesOrderInformationAmountDetailsFreight(
52+
Amount: orderInformationAmountDetailsFreightAmount,
53+
Taxable: orderInformationAmountDetailsFreightTaxable
54+
);
55+
56+
Invoicingv2invoicesOrderInformationAmountDetails orderInformationAmountDetails = new Invoicingv2invoicesOrderInformationAmountDetails(
57+
TotalAmount: orderInformationAmountDetailsTotalAmount,
58+
Currency: orderInformationAmountDetailsCurrency,
59+
DiscountAmount: orderInformationAmountDetailsDiscountAmount,
60+
DiscountPercent: orderInformationAmountDetailsDiscountPercent,
61+
SubAmount: orderInformationAmountDetailsSubAmount,
62+
MinimumPartialAmount: orderInformationAmountDetailsMinimumPartialAmount,
63+
TaxDetails: orderInformationAmountDetailsTaxDetails,
64+
Freight: orderInformationAmountDetailsFreight
65+
);
66+
67+
68+
List <Invoicingv2invoicesOrderInformationLineItems> orderInformationLineItems = new List <Invoicingv2invoicesOrderInformationLineItems>();
69+
string orderInformationLineItemsProductSku1 = "P653727383";
70+
string orderInformationLineItemsProductName1 = "First line item's name";
71+
int orderInformationLineItemsQuantity1 = 21;
72+
string orderInformationLineItemsUnitPrice1 = "120.08";
73+
orderInformationLineItems.Add(new Invoicingv2invoicesOrderInformationLineItems(
74+
ProductSku: orderInformationLineItemsProductSku1,
75+
ProductName: orderInformationLineItemsProductName1,
76+
Quantity: orderInformationLineItemsQuantity1,
77+
UnitPrice: orderInformationLineItemsUnitPrice1
78+
));
79+
80+
Invoicingv2invoicesOrderInformation orderInformation = new Invoicingv2invoicesOrderInformation(
81+
AmountDetails: orderInformationAmountDetails,
82+
LineItems: orderInformationLineItems
83+
);
84+
85+
var requestObj = new CreateInvoiceRequest(
86+
CustomerInformation: customerInformation,
87+
InvoiceInformation: invoiceInformation,
88+
OrderInformation: orderInformation
89+
);
90+
91+
try
92+
{
93+
var configDictionary = new Configuration().GetConfiguration();
94+
var clientConfig = new CyberSource.Client.Configuration(merchConfigDictObj: configDictionary);
95+
96+
var apiInstance = new InvoicesApi(clientConfig);
97+
InvoicingV2InvoicesPost201Response result = apiInstance.CreateInvoice(requestObj);
98+
Console.WriteLine(result);
99+
return result;
100+
}
101+
catch (Exception e)
102+
{
103+
Console.WriteLine("Exception on calling the API : " + e.Message);
104+
return null;
105+
}
106+
}
107+
}
108+
}

0 commit comments

Comments
 (0)