Implement delete_pusher

This commit is contained in:
Gergely Polonkai 2016-01-15 15:10:11 +01:00
parent 35028e66b0
commit 110c388f48

View File

@ -1354,6 +1354,38 @@ i_get_pushers(MatrixAPI *api,
FALSE, error); 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 static void
matrix_http_api_matrix_api_init(MatrixAPIInterface *iface) matrix_http_api_matrix_api_init(MatrixAPIInterface *iface)
{ {
@ -1378,7 +1410,7 @@ matrix_http_api_matrix_api_init(MatrixAPIInterface *iface)
/* Push notifications */ /* Push notifications */
iface->update_pusher = i_update_pusher; iface->update_pusher = i_update_pusher;
iface->get_pushers = i_get_pushers; iface->get_pushers = i_get_pushers;
iface->delete_pusher = NULL; iface->delete_pusher = i_delete_pusher;
iface->get_pusher = NULL; iface->get_pusher = NULL;
iface->add_pusher = NULL; iface->add_pusher = NULL;
iface->toggle_pusher = NULL; iface->toggle_pusher = NULL;