taler-merchant-httpd_private-get-webhooks.c (2678B)
1 /* 2 This file is part of TALER 3 (C) 2022 Taler Systems SA 4 5 TALER is free software; you can redistribute it and/or modify it under the 6 terms of the GNU Affero General Public License as published by the Free Software 7 Foundation; either version 3, or (at your option) any later version. 8 9 TALER is distributed in the hope that it will be useful, but WITHOUT ANY 10 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 11 A PARTICULAR PURPOSE. See the GNU General Public License for more details. 12 13 You should have received a copy of the GNU General Public License along with 14 TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/> 15 */ 16 /** 17 * @file taler-merchant-httpd_private-get-webhooks.c 18 * @brief implement GET /webhooks 19 * @author Priscilla HUANG 20 */ 21 #include "platform.h" 22 #include "taler-merchant-httpd_private-get-webhooks.h" 23 24 25 /** 26 * Add webhook details to our JSON array. 27 * 28 * @param cls a `json_t *` JSON array to build 29 * @param webhook_id ID of the webhook 30 * @param event_type what type of event is the hook for 31 */ 32 static void 33 add_webhook (void *cls, 34 const char *webhook_id, 35 const char *event_type) 36 { 37 json_t *pa = cls; 38 39 GNUNET_assert (0 == 40 json_array_append_new ( 41 pa, 42 GNUNET_JSON_PACK ( 43 GNUNET_JSON_pack_string ("webhook_id", 44 webhook_id), 45 GNUNET_JSON_pack_string ("event_type", 46 event_type)))); 47 } 48 49 50 MHD_RESULT 51 TMH_private_get_webhooks (const struct TMH_RequestHandler *rh, 52 struct MHD_Connection *connection, 53 struct TMH_HandlerContext *hc) 54 { 55 json_t *pa; 56 enum GNUNET_DB_QueryStatus qs; 57 58 pa = json_array (); 59 GNUNET_assert (NULL != pa); 60 qs = TMH_db->lookup_webhooks (TMH_db->cls, 61 hc->instance->settings.id, 62 &add_webhook, 63 pa); 64 if (0 > qs) 65 { 66 GNUNET_break (0); 67 json_decref (pa); 68 return TALER_MHD_reply_with_error (connection, 69 MHD_HTTP_INTERNAL_SERVER_ERROR, 70 TALER_EC_GENERIC_DB_FETCH_FAILED, 71 NULL); 72 } 73 return TALER_MHD_REPLY_JSON_PACK (connection, 74 MHD_HTTP_OK, 75 GNUNET_JSON_pack_array_steal ("webhooks", 76 pa)); 77 } 78 79 80 /* end of taler-merchant-httpd_private-get-webhooks.c */