From 056c4c1ce78690caf881582ac0888913d674ab29 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Tue, 15 Dec 2015 09:32:19 +0100 Subject: [PATCH] Implement /initialSync --- .../matrix-glib/matrix-glib-sections.txt | 1 + src/matrix-http-api.c | 40 +++++++++++++++++++ src/matrix-http-api.h | 4 ++ 3 files changed, 45 insertions(+) diff --git a/docs/reference/matrix-glib/matrix-glib-sections.txt b/docs/reference/matrix-glib/matrix-glib-sections.txt index a277c62..801df7d 100644 --- a/docs/reference/matrix-glib/matrix-glib-sections.txt +++ b/docs/reference/matrix-glib/matrix-glib-sections.txt @@ -60,6 +60,7 @@ matrix_http_api_get_base_url matrix_http_api_gen_parameters matrix_http_api_register_account matrix_http_api_login +matrix_http_api_initial_sync MatrixHTTPAPI MatrixHTTPAPIClass diff --git a/src/matrix-http-api.c b/src/matrix-http-api.c index ea8007b..8d6600d 100644 --- a/src/matrix-http-api.c +++ b/src/matrix-http-api.c @@ -83,6 +83,7 @@ matrix_http_api_matrix_api_init(MatrixAPIInterface *iface) { iface->login = matrix_http_api_login; iface->register_account = matrix_http_api_register_account; + iface->initial_sync = matrix_http_api_initial_sync; } static void @@ -591,3 +592,42 @@ matrix_http_api_register_account(MatrixAPI *api, login_type, parameters); } + +/** + * matrix_http_api_initial_sync: + * @api: a #MatrixHTTPAPI object + * @callback: (scope async): the function to call when the request is + * finished + * @user_data: user data to pass to the callback function + * @limit: maximum number of messages to return for each room + * + * Perform /initialSync + */ +void +matrix_http_api_initial_sync(MatrixAPI *api, + MatrixAPICallback callback, + gpointer user_data, + guint limit) +{ + JsonBuilder *builder; + JsonNode *content, + *node; + + builder = json_builder_new(); + json_builder_begin_object(builder); + + node = json_node_new(JSON_NODE_VALUE); + json_node_set_int(node, limit); + json_builder_set_member_name(builder, "limit"); + json_builder_add_value(builder, node); + + json_builder_end_object(builder); + + content = json_builder_get_root(builder); + + matrix_http_api_send(MATRIX_HTTP_API(api), + callback, user_data, + "POST", "/initialSync", + content, + NULL); +} diff --git a/src/matrix-http-api.h b/src/matrix-http-api.h index df38194..f92a00e 100644 --- a/src/matrix-http-api.h +++ b/src/matrix-http-api.h @@ -64,6 +64,10 @@ void matrix_http_api_register_account(MatrixAPI *api, gpointer user_data, gchar *login_type, GHashTable *parameters); +void matrix_http_api_initial_sync(MatrixAPI *api, + MatrixAPICallback callback, + gpointer user_data, + guint limit); G_END_DECLS