-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathGoGetSSLApi.php
451 lines (363 loc) · 10.8 KB
/
GoGetSSLApi.php
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
<?php
class GoGetSSLApi
{
protected $key;
protected $lastError;
protected $lastStatus;
protected $lastResponse;
protected $apiUrl = 'https://my.gogetssl.com/api';
public function __construct($key = null)
{
if (isset($key)) {
$this->setKey($key);
}
}
public function auth($user, $pass)
{
$response = $this->call('/auth/', [], [
'user' => $user,
'pass' => $pass
]);
if (isset($response ['key'])) {
$this->setKey($response ['key']);
return $response;
}
return false;
}
public function addSslSan($orderId, $count)
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call(
'/orders/add_ssl_san_order/',
['auth_key' => $this->key],
['order_id' => $orderId, 'count' => $count]
);
}
public function cancelSSLOrder($orderId, $reason)
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call(
'/orders/cancel_ssl_order/',
['auth_key' => $this->key],
['order_id' => $orderId, 'reason' => $reason]);
}
public function changeDcv($orderId, $data)
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call("/orders/ssl/change_dcv/{$orderId}",
['auth_key' => $this->key],
$data);
}
public function changeValidationEmail($orderId, $data)
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call("/orders/ssl/change_validation_email/{$orderId}",
['auth_key' => $this->key],
$data);
}
public function decodeCSR($csr, $brand = 1, $wildcard = 0)
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call('/tools/csr/decode/',
['auth_key' => $this->key],
['csr' => $csr, 'brand' => $brand, 'wildcard' => $wildcard]);
}
/*
* Get Domain Emails List
*/
public function getWebServers($type)
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call("/tools/webservers/{$type}", ['auth_key' => $this->key]);
}
public function getDomainAlternative($csr)
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call('/tools/domain/alternative/',
['auth_key' => $this->key],
['csr' => trim($csr)]);
}
/*
* Get Domain Emails List
*/
public function getDomainEmails($domain)
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call('/tools/domain/emails/',
['auth_key' => $this->key],
['domain' => $domain]);
}
public function getDomainEmailsForGeotrust($domain)
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call('/tools/domain/emails/geotrust',
['auth_key' => $this->key],
['domain' => $domain]);
}
/**
* @deprecated
* @return mixed
* @throws GoGetSSLAuthException
*/
public function getAllProductPrices()
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call('/products/all_prices/', ['auth_key' => $this->key]);
}
/**
* @deprecated
* @return mixed
* @throws GoGetSSLAuthException
*/
public function getAllProducts()
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call('/products/', ['auth_key' => $this->key]);
}
public function getProduct($productId)
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call("/products/ssl/{$productId}", ['auth_key' => $this->key]);
}
public function getProducts()
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call('/products/ssl/', ['auth_key' => $this->key]);
}
/**
* @deprecated
* @param int $productId
* @return array
* @throws GoGetSSLAuthException
*/
public function getProductDetails($productId)
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call("/products/details/{$productId}", ['auth_key' => $this->key]);
}
/**
* @deprecated
* @param int $productId
* @return array
* @throws GoGetSSLAuthException
*/
public function getProductPrice($productId)
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call("/products/price/{$productId}", ['auth_key' => $this->key]);
}
public function getUserAgreement($productId)
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call("/products/agreement/{$productId}", ['auth_key' => $this->key]);
}
public function getAccountBalance()
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call('/account/balance/', ['auth_key' => $this->key]);
}
public function getAccountDetails()
{
if (!$this->key) {
throw new GoGetSSLAuthExceptio();
}
return $this->call('/account/', ['auth_key' => $this->key]);
}
public function getTotalOrders()
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call('/account/total_orders/', ['auth_key' => $this->key]);
}
public function getAllInvoices()
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call('/account/invoices/', ['auth_key' => $this->key]);
}
public function getUnpaidInvoices()
{
if (!$this->key) {
throw new GoGetSSLAuthException ();
}
return $this->call('/account/invoices/unpaid/', ['auth_key' => $this->key]);
}
public function getTotalTransactions()
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call('/account/total_transactions/', ['auth_key' => $this->key]);
}
public function addSSLOrder($data)
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call('/orders/add_ssl_order/', ['auth_key' => $this->key], $data);
}
public function addSSLRenewOrder($data)
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call('/orders/add_ssl_renew_order/', ['auth_key' => $this->key], $data);
}
public function reIssueOrder($orderId, $data)
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call("/orders/ssl/reissue/{$orderId}", ['auth_key' => $this->key], $data);
}
public function addSandboxAccount($data)
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call('/accounts/sandbox/add/', ['auth_key' => $this->key], $data);
}
public function getOrderStatus($orderId)
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call("/orders/status/{$orderId}", ['auth_key' => $this->key]);
}
public function comodoClaimFreeEV($orderId, $data)
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call("/orders/ssl/comodo_claim_free_ev/{$orderId}" , ['auth_key' => $this->key], $data);
}
public function getOrderInvoice($orderId)
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call("/orders/invoice/{$orderId}", ['auth_key' => $this->key]);
}
public function getUnpaidOrders()
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call('/orders/list/unpaid/', ['auth_key' => $this->key]);
}
public function resendEmail($orderId)
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call("/orders/ssl/resend_validation_email/{$orderId}", ['auth_key' => $this->key]);
}
public function resendValidationEmail($orderId)
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call("/orders/ssl/resend_validation_email/{$orderId}", ['auth_key' => $this->key]);
}
public function getCSR($data)
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call('/tools/csr/get/', ['auth_key' => $this->key], $data);
}
public function generateCSR($data)
{
if (!$this->key) {
throw new GoGetSSLAuthException();
}
return $this->call('/tools/csr/generate/', ['auth_key' => $this->key], $data);
}
protected function call($uri, $getData = [], $postData = [])
{
$curl = curl_init();
$endpoint = count($getData)
? "{$this->apiUrl}{$uri}?" . http_build_query($getData)
: "{$this->apiUrl}{$uri}";
$options = [
CURLOPT_URL => $endpoint,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_SSL_VERIFYPEER => false,
];
if (count($postData)) {
$options[CURLOPT_CUSTOMREQUEST] = "POST";
$options[CURLOPT_POSTFIELDS] = http_build_query($postData);
$options[CURLOPT_HTTPHEADER] = ["Content-Type: application/x-www-form-urlencoded"];
}
curl_setopt_array($curl, $options);
$response = curl_exec($curl);
$this->lastError = curl_error($curl);
$this->lastStatus = curl_getinfo($curl, CURLINFO_HTTP_CODE);
$this->lastResponse = json_decode($response, true);
curl_close($curl);
return $this->lastResponse;
}
public function setKey($key)
{
$this->key = $key;
}
public function setUrl($url)
{
$this->apiUrl = $url;
}
public function getLastStatus()
{
return $this->lastStatus;
}
public function getLastResponse()
{
return $this->lastResponse;
}
}
class GoGetSSLAuthException extends Exception
{
public function __construct()
{
parent::__construct('Please authorize first');
}
}