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
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <shopify.h>
static enum MHD_Result handle_request(void *cls, struct MHD_Connection *conn,
const char *url, const char *method, const char *version,
const char *upload_data, size_t *upload_data_size,
void **con_cls)
{
if (strcmp(method, "GET"))
return MHD_NO;
struct shopify_param *params = *con_cls;
if (!params) {
params = malloc(sizeof(struct shopify_param));
*con_cls = params;
return MHD_YES;
}
static const char *redir_url = "/auth";
if (!shopify_valid(conn, url, redir_url, API_SECRET_KEY, ¶ms)) {
free(params);
return MHD_NO;
}
struct MHD_Response *resp;
enum MHD_Result ret = shopify_respond(params, url, redir_url, APP_URL,
APP_ID, API_KEY, API_SECRET_KEY, APP_DIR, conn, &resp);
MHD_destroy_response(resp);
free(params);
return ret;
}
int main(int argc, char *argv[])
{
shopify_init();
struct MHD_Daemon *daemon
= MHD_start_daemon(MHD_USE_INTERNAL_POLLING_THREAD, 3000, NULL,
NULL, &handle_request, NULL, MHD_OPTION_END);
getchar();
MHD_stop_daemon(daemon);
shopify_cleanup();
return 0;
}
|