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
|
#ifdef DEBUG
#ifdef ANDROID
#include <android/log.h>
#else
#include <stdio.h>
#endif // ANDROID
#endif // DEBUG
#include <stdbool.h>
#include <string.h>
#include <stdlib.h>
#include <curl/curl.h>
#include "rtclient.h"
static CURL *handle = NULL;
static char *server_url = NULL;
bool rtclient_init(const char *url)
{
curl_global_init(CURL_GLOBAL_SSL);
handle = curl_easy_init();
if (handle) {
curl_easy_setopt(handle, CURLOPT_FOLLOWLOCATION, 1L);
curl_easy_setopt(handle, CURLOPT_COOKIEFILE, "");
#ifdef DEBUG
curl_easy_setopt(handle, CURLOPT_VERBOSE, 1L);
#endif // DEBUG
server_url = malloc(strlen(url) + 1);
strcpy(server_url, url);
}
return (bool)handle;
}
void rtclient_login(const char *name, const char *password)
{
struct curl_httppost *post, *last = NULL;
curl_formadd(&post, &last,
CURLFORM_COPYNAME, "user",
CURLFORM_PTRCONTENTS, name,
CURLFORM_END);
curl_formadd(&post, &last,
CURLFORM_COPYNAME, "pass",
CURLFORM_PTRCONTENTS, password,
CURLFORM_END);
last = NULL;
curl_easy_setopt(handle, CURLOPT_URL, server_url);
curl_easy_setopt(handle, CURLOPT_HTTPPOST, post);
#ifdef DEBUG
CURLcode res =
#endif // DEBUG
curl_easy_perform(handle);
#ifdef DEBUG
if (res != CURLE_OK) {
const char *error = curl_easy_strerror(res);
#ifdef ANDROID
__android_log_print(ANDROID_LOG_ERROR, "librtclient.so", "cURL perform error: %s", error);
#else
fprintf(stderr, "cURL perform error: %s\n", error);
#endif // ANDROID
}
#endif // DEBUG
}
void rtclient_user(const char *name)
{
#ifdef DEBUG
fprintf(stderr, "NAME:\n%s\n", name);
#endif
static const char *user_path = "/REST/1.0/user/";
char user_url[strlen(server_url) + strlen(user_path) + strlen(name) + 1];
sprintf(user_url, "%s%s%s", server_url, user_path, name);
curl_easy_setopt(handle, CURLOPT_URL, user_url);
curl_easy_setopt(handle, CURLOPT_HTTPGET, 1L);
curl_easy_perform(handle);
}
void rtclient_cleanup()
{
if (handle) {
free(server_url);
curl_easy_cleanup(handle);
}
curl_global_cleanup();
}
|