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
|
#include <stdio.h>
#include <string.h>
#include <openssl/bio.h>
#include <openssl/evp.h>
#include <curl/curl.h>
#include <json.h>
#include "midtrans.h"
#define ORDER_ID "SANDBOX-G710367688-806"
static _Bool sandbox;
static char *base_url;
static CURL *curl;
static struct curl_slist *slist;
void midtrans_init(_Bool production, const char *api_key, const char *cainfo)
{
sandbox = !production;
static const char *url_tmpl = "https://api.%smidtrans.com/v2/";
static const char *infix = "sandbox.";
base_url = malloc(strlen(url_tmpl) - strlen ("%s")
+ sandbox * 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_FOLLOWLOCATION, 1L);
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_puts(b64, basic);
char *pp;
long base64_len = BIO_get_mem_data(b64, &pp);
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);
}
void midtrans_status(const char *order_id)
{
static const char *tmpl = "%s%s/status";
char url[strlen(tmpl) - strlen("%s") * 2 + strlen(base_url)
+ (sandbox ? strlen(ORDER_ID) : strlen(order_id)) + 1];
sprintf(url, tmpl, base_url, sandbox ? ORDER_ID : order_id);
curl_easy_setopt(curl, CURLOPT_URL, url);
curl_easy_perform(curl);
}
void midtrans_cleanup()
{
free(base_url);
curl_slist_free_all(slist);
curl_easy_cleanup(curl);
curl_global_cleanup();
}
|