summaryrefslogtreecommitdiff
path: root/util.h
blob: 509bcb9749f800eabc7777da34bcb6786505c550 (plain)
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
#ifndef MATRIX_CURL_UTIL_H
#define MATRIX_CURL_UTIL_H

#include <curl/curl.h>
#include <json-c/json.h>
#include <string.h>

CURLcode _curl_get(CURL *curl, const char *url, json_object **resp);
CURLcode _curl_post(CURL *curl, const char *url, const char *postdata,
						  json_object **resp);

static inline int
json_add_string(json_object *j, const char *k, const char *v)
{
	return json_object_object_add(j, k, json_object_new_string(v));
}

static inline
const char *json_gets(json_object *j, const char *key)
{
	json_object *val;

	if (json_object_object_get_ex(j, key, &val)) {
		if (json_object_is_type(val, json_type_string))
			return json_object_get_string(val);
	}
	return NULL;
}

static inline
char* copy_str(const char *s)
{
	size_t l = strlen(s)+1;
	char *ss = (char*)malloc(l);
	memcpy(ss, s, l);
	return ss;
}

#endif