-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathProgram.cs
179 lines (148 loc) · 5.19 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
using RestSharp;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using System.Text.Json.Serialization;
class Keygen
{
private RestClient client = null;
public Keygen(string accountId)
{
client = new RestClient($"https://api.keygen.sh/v1/accounts/{accountId}");
}
async public Task<Document<License, Validation>> ValidateLicense(string licenseKey, string deviceFingerprint)
{
var request = new RestRequest("licenses/actions/validate-key", Method.Post);
request.AddHeader("Content-Type", "application/vnd.api+json");
request.AddHeader("Accept", "application/vnd.api+json");
request.AddJsonBody(new {
meta = new {
key = licenseKey,
scope = new {
fingerprint = deviceFingerprint,
}
}
});
var response = await client.ExecuteAsync<Document<License, Validation>>(request);
if (response.Data.Errors.Count > 0)
{
var err = response.Data.Errors[0];
Console.WriteLine("[ERROR] [ValidateLicense] Status={0} Title={1} Detail={2} Code={3}", response.StatusCode, err.Title, err.Detail, err.Code);
Environment.Exit(1);
}
return response.Data;
}
async public Task<Document<Machine>> ActivateDevice(string licenseId, string licenseKey, string deviceFingerprint)
{
var request = new RestRequest("machines", Method.Post);
request.AddHeader("Authorization", $"License {licenseKey}");
request.AddHeader("Content-Type", "application/vnd.api+json");
request.AddHeader("Accept", "application/vnd.api+json");
request.AddJsonBody(new {
data = new {
type = "machine",
attributes = new {
fingerprint = deviceFingerprint,
},
relationships = new {
license = new {
data = new {
type = "license",
id = licenseId,
}
}
}
}
});
var response = await client.ExecuteAsync<Document<Machine>>(request);
if (response.Data.Errors.Count > 0)
{
var err = response.Data.Errors[0];
Console.WriteLine("[ERROR] [ActivateDevice] Status={0} Title={1} Detail={2} Code={3}", response.StatusCode, err.Title, err.Detail, err.Code);
Environment.Exit(1);
}
return response.Data;
}
public class Document<T>
{
public T Data { get; set; }
public List<Error> Errors { get; set; } = new();
}
public class Document<T, U> : Document<T>
{
public U Meta { get; set; }
}
public class Error
{
public string Title { get; set; }
public string Detail { get; set; }
public string Code { get; set; }
}
public class Validation
{
public Boolean Valid { get; set; }
public string Detail { get; set; }
[JsonPropertyNameAttribute("code")]
public string Code { get; set; }
}
public class License
{
public string Type { get; set; }
public string ID { get; set; }
}
public class Machine
{
public string Type { get; set; }
public string ID { get; set; }
}
}
class Program
{
async public static Task MainAsync (string[] args)
{
var keygen = new Keygen("demo");
// Keep a reference to the current license and device
Keygen.License license = null;
Keygen.Machine device = null;
// Validate license
var validation = await keygen.ValidateLicense("0BB042-E1A90B-A5DC67-D651E0-73E6C5-V3", "AB:CD:EF:GH:IJ:KL:MN:OP");
if (validation.Meta.Valid)
{
Console.WriteLine("[INFO] [ValidateLicense] Valid={0} ValidationCode={1}", validation.Meta.Detail, validation.Meta.Code);
}
else
{
Console.WriteLine("[INFO] [ValidateLicense] Invalid={0} ValidationCode={1}", validation.Meta.Detail, validation.Meta.Code);
}
// Store license data
license = validation.Data;
// Activate the current machine if it is not already activated (based on validation code)
switch (validation.Meta.Code)
{
case "FINGERPRINT_SCOPE_MISMATCH":
case "NO_MACHINES":
case "NO_MACHINE":
var activation = await keygen.ActivateDevice((string) license.ID, "0BB042-E1A90B-A5DC67-D651E0-73E6C5-V3", "AB:CD:EF:GH:IJ:KL:MN:OP");
// Store device data
device = activation.Data;
Console.WriteLine("[INFO] [ActivateDevice] DeviceId={0} LicenseId={1}", device.ID, license.ID);
// OPTIONAL: Validate license again
validation = await keygen.ValidateLicense("0BB042-E1A90B-A5DC67-D651E0-73E6C5-V3", "AB:CD:EF:GH:IJ:KL:MN:OP");
if (validation.Meta.Valid)
{
Console.WriteLine("[INFO] [ValidateLicense] Valid={0} ValidationCode={1}", validation.Meta.Detail, validation.Meta.Code);
}
else
{
Console.WriteLine("[INFO] [ValidateLicense] Invalid={0} ValidationCode={1}", validation.Meta.Detail, validation.Meta.Code);
}
break;
}
// Print the overall results
Console.WriteLine("[INFO] [Main] Valid={0} RecentlyActivated={1}", validation.Meta.Valid, device != null);
}
public static void Main (string[] args)
{
MainAsync(args).GetAwaiter().GetResult();
}
}