Line data Source code
1 : /*
2 : This file is part of TALER
3 : (C) 2025 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 Affero General Public License for more
12 : details.
13 :
14 : You should have received a copy of the GNU Affero General Public License
15 : along with TALER; see the file COPYING. If not, see
16 : <http://www.gnu.org/licenses/>
17 : */
18 : /**
19 : * @file src/backend/taler-merchant-httpd_delete-private-pots-POT_ID.c
20 : * @brief implementation of DELETE /private/pots/$POT_ID
21 : * @author Christian Grothoff
22 : */
23 : #include "platform.h"
24 : #include "taler-merchant-httpd_delete-private-pots-POT_ID.h"
25 : #include <taler/taler_json_lib.h>
26 : #include "merchant-database/delete_money_pot.h"
27 :
28 :
29 : enum MHD_Result
30 0 : TMH_private_delete_pot (const struct TMH_RequestHandler *rh,
31 : struct MHD_Connection *connection,
32 : struct TMH_HandlerContext *hc)
33 : {
34 0 : const char *pot_id_str = hc->infix;
35 : unsigned long long pot_id;
36 : enum GNUNET_DB_QueryStatus qs;
37 : char dummy;
38 :
39 : (void) rh;
40 0 : if (1 != sscanf (pot_id_str,
41 : "%llu%c",
42 : &pot_id,
43 : &dummy))
44 : {
45 0 : GNUNET_break_op (0);
46 0 : return TALER_MHD_reply_with_error (connection,
47 : MHD_HTTP_BAD_REQUEST,
48 : TALER_EC_GENERIC_PARAMETER_MALFORMED,
49 : "pot_id");
50 : }
51 :
52 0 : qs = TALER_MERCHANTDB_delete_money_pot (TMH_db,
53 0 : hc->instance->settings.id,
54 : pot_id);
55 :
56 0 : if (qs < 0)
57 : {
58 0 : GNUNET_break (0);
59 0 : return TALER_MHD_reply_with_error (connection,
60 : MHD_HTTP_INTERNAL_SERVER_ERROR,
61 : TALER_EC_GENERIC_DB_STORE_FAILED,
62 : "delete_money_pot");
63 : }
64 0 : if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == qs)
65 : {
66 0 : return TALER_MHD_reply_with_error (connection,
67 : MHD_HTTP_NOT_FOUND,
68 : TALER_EC_MERCHANT_GENERIC_MONEY_POT_UNKNOWN,
69 : pot_id_str);
70 : }
71 0 : return TALER_MHD_reply_static (connection,
72 : MHD_HTTP_NO_CONTENT,
73 : NULL,
74 : NULL,
75 : 0);
76 : }
|