From 110c388f48b0929e0f09eff2b1e9c92783fde3ad Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Fri, 15 Jan 2016 15:10:11 +0100 Subject: [PATCH] Implement delete_pusher --- src/matrix-http-api.c | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/src/matrix-http-api.c b/src/matrix-http-api.c index d9f627e..0799793 100644 --- a/src/matrix-http-api.c +++ b/src/matrix-http-api.c @@ -1354,6 +1354,38 @@ i_get_pushers(MatrixAPI *api, FALSE, error); } +static void +i_delete_pusher(MatrixAPI *api, + MatrixAPICallback callback, + gpointer user_data, + const gchar *scope, + MatrixAPIPusherKind kind, + const gchar *rule_id, + GError **error) +{ + gchar *encoded_scope, *encoded_rule_id, *kind_string, *path; + + encoded_scope = soup_uri_encode(scope, NULL); + encoded_rule_id = soup_uri_encode(rule_id, NULL); + kind_string = enum_to_string(MATRIX_TYPE_API_PUSHER_KIND, kind, TRUE); + + path = g_strdup_printf("pushrules/%s/%s/%s", + encoded_scope, + kind_string, + encoded_rule_id); + + g_free(encoded_scope); + g_free(encoded_rule_id); + g_free(kind_string); + + _send(MATRIX_HTTP_API(api), + callback, user_data, + CALL_API, + "DELETE", path, NULL, NULL, NULL, NULL, + FALSE, error); + g_free(path); +} + static void matrix_http_api_matrix_api_init(MatrixAPIInterface *iface) { @@ -1378,7 +1410,7 @@ matrix_http_api_matrix_api_init(MatrixAPIInterface *iface) /* Push notifications */ iface->update_pusher = i_update_pusher; iface->get_pushers = i_get_pushers; - iface->delete_pusher = NULL; + iface->delete_pusher = i_delete_pusher; iface->get_pusher = NULL; iface->add_pusher = NULL; iface->toggle_pusher = NULL;