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
|
#include <stdio.h>
#include <string.h>
#include <openssl/bio.h>
#include <openssl/evp.h>
#include <pthread.h>
#include <curl/curl.h>
#include <json.h>
#include "midtrans.h"
#define ORDER_ID "SANDBOX-G710367688-806"
static _Bool production = 0;
static char *base_url;
static CURL *curl;
static struct curl_slist *slist;
static pthread_t *threads;
static size_t num_threads = 0;
static size_t append(char *data, size_t size, size_t nmemb, char **json)
{
size_t realsize = size * nmemb;
size_t json_len = *json ? strlen(*json) : 0;
*json = realloc(*json, json_len + realsize + 1);
strlcpy(&(*json)[json_len], data, realsize + 1);
return realsize;
}
void midtrans_init(const char *api_key, const char *cainfo)
{
static const char *prefix = "SB-";
if (strncmp(api_key, prefix, strlen(prefix)))
production = 1;
static const char *url_tmpl = "https://api.%smidtrans.com/v2/";
static const char *infix = "sandbox.";
base_url = malloc(strlen(url_tmpl) - strlen ("%s")
+ !production * strlen(infix) + 1);
sprintf(base_url, url_tmpl, production ? "" : infix);
curl_global_init(CURL_GLOBAL_SSL);
curl = curl_easy_init();
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, append);
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
#ifdef DEBUG
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
#endif
static const char *basic_tmpl = "%s:";
const size_t basic_len = strlen(basic_tmpl) - strlen("%s")
+ strlen(api_key);
char basic[basic_len + 1];
sprintf(basic, basic_tmpl, api_key);
BIO *b64 = BIO_new(BIO_f_base64());
BIO *mem = BIO_new(BIO_s_mem());
BIO_push(b64, mem);
BIO_write(b64, basic, basic_len);
BIO_flush(b64);
char *pp;
long base64_len = BIO_get_mem_data(b64, &pp) - 1;
char base64[base64_len + 1];
strlcpy(base64, pp, base64_len + 1);
BIO_free_all(b64);
static const char *hdr_tmpl = "Authorization: Basic %s";
char auth[strlen(hdr_tmpl) - strlen("%s") + base64_len + 1];
sprintf(auth, hdr_tmpl, base64);
slist = curl_slist_append(NULL, auth);
slist = curl_slist_append(slist, "Accept: application/json");
slist = curl_slist_append(slist, "Content-Type: application/json");
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, slist);
if (cainfo)
curl_easy_setopt(curl, CURLOPT_CAINFO, cainfo);
}
static void *request(void *arg)
{
char *json = NULL;
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &json);
curl_easy_perform(curl);
#ifdef DEBUG
printf("%s\n", json);
#endif
free(json);
return NULL;
}
void midtrans_status(const char *order_id)
{
static const char *tmpl = "%s%s/status";
char url[strlen(tmpl) - strlen("%s") * 2 + strlen(base_url)
+ (production ? strlen(order_id) : strlen(ORDER_ID)) + 1];
sprintf(url, tmpl, base_url, production ? order_id : ORDER_ID);
curl_easy_setopt(curl, CURLOPT_URL, url);
threads = realloc(threads, ++num_threads * sizeof(pthread_t));
pthread_create(&threads[num_threads - 1], NULL, request, NULL);
}
void midtrans_cleanup()
{
for (size_t i = 0; i < num_threads; i++)
pthread_join(threads[i], NULL);
free(base_url);
curl_slist_free_all(slist);
curl_easy_cleanup(curl);
curl_global_cleanup();
}
|