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
|
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdint.h>
#include <curl/curl.h>
#include <json.h>
#include "net.h"
#include "common.h"
size_t memoryCallback(void* contents, size_t size, size_t nmemb, void* userp)
{
size_t realsize = size * nmemb;
struct MemoryStruct* mem = (struct MemoryStruct*)userp;
uint8_t* ptr = realloc(mem->memory, mem->size + realsize + 1);
if(ptr == NULL) {
/* out of memory! */
puts("out of memory");
return 0;
}
mem->memory = ptr;
memcpy(&(mem->memory[mem->size]), contents, realsize);
mem->size += realsize;
mem->memory[mem->size] = 0;
return realsize;
}
struct MemoryStruct* downloadToRam(const char* URL)
{
CURL* curl_handle;
CURLcode res;
struct MemoryStruct* chunk = malloc(sizeof(struct MemoryStruct));
chunk->memory = malloc(1);
chunk->size = 0;
curl_global_init(CURL_GLOBAL_ALL);
curl_handle = curl_easy_init();
curl_easy_setopt(curl_handle, CURLOPT_URL, URL);
curl_easy_setopt(curl_handle, CURLOPT_WRITEFUNCTION, memoryCallback);
curl_easy_setopt(curl_handle, CURLOPT_WRITEDATA, (void*)chunk);
curl_easy_setopt(curl_handle, CURLOPT_USERAGENT, USER_AGENT);
curl_easy_setopt(curl_handle, CURLOPT_FOLLOWLOCATION, 1L);
res = curl_easy_perform(curl_handle);
long http_code = 0;
curl_easy_getinfo (curl_handle, CURLINFO_RESPONSE_CODE, &http_code);
if(res != CURLE_OK) {
fprintf(stderr, "curl_easy_perform() failed: %s\n",
curl_easy_strerror(res));
return NULL;
}
else if (http_code != 200)
{
fprintf(stderr, "Server didn't respond as expected [HTTP Error %li]\n", http_code);
return NULL;
}
curl_easy_cleanup(curl_handle);
curl_global_cleanup();
return chunk;
}
int downloadFile(const char* URL, const char* path)
{
struct MemoryStruct* chunk = downloadToRam(URL);
if (chunk)
{
FILE* file = fopen(path, "wb");
fwrite(chunk->memory, chunk->size, 1, file);
fclose(file);
free(chunk->memory);
free(chunk);
}
return 0;
}
struct json_object* fetchJSON(const char* URL)
{
struct MemoryStruct* chunk = downloadToRam(URL);
struct json_object* json = json_tokener_parse((char*)chunk->memory);
free(chunk->memory);
free(chunk);
return json;
}
|