Line data Source code
1 : /*
2 : This file is part of TALER
3 : Copyright (C) 2020 Taler Systems SA
4 :
5 : TALER is free software; you can redistribute it and/or modify
6 : it under the terms of the GNU Lesser General Public License as
7 : published by the Free Software Foundation; either version 2.1,
8 : or (at your option) any later version.
9 :
10 : TALER is distributed in the hope that it will be useful,
11 : but WITHOUT ANY WARRANTY; without even the implied warranty of
12 : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 : GNU Lesser General Public License for more details.
14 :
15 : You should have received a copy of the GNU Lesser General
16 : Public License along with TALER; see the file COPYING.LGPL.
17 : If not, see <http://www.gnu.org/licenses/>
18 : */
19 : /**
20 : * @file merchant_api_lock_product.c
21 : * @brief Implementation of the POST /products/$ID/lock request
22 : * of the merchant's HTTP API
23 : * @author Christian Grothoff
24 : */
25 : #include "platform.h"
26 : #include <curl/curl.h>
27 : #include <jansson.h>
28 : #include <microhttpd.h> /* just for HTTP status codes */
29 : #include <gnunet/gnunet_util_lib.h>
30 : #include "taler_merchant_service.h"
31 : #include <taler/taler_json_lib.h>
32 : #include <taler/taler_curl_lib.h>
33 :
34 :
35 : /**
36 : * Handle for a POST /products/$ID/lock operation.
37 : */
38 : struct TALER_MERCHANT_ProductLockHandle
39 : {
40 :
41 : /**
42 : * The url for this request.
43 : */
44 : char *url;
45 :
46 : /**
47 : * Handle for the request.
48 : */
49 : struct GNUNET_CURL_Job *job;
50 :
51 : /**
52 : * Function to call with the result.
53 : */
54 : TALER_MERCHANT_ProductLockCallback cb;
55 :
56 : /**
57 : * Closure for @a cb.
58 : */
59 : void *cb_cls;
60 :
61 : /**
62 : * Reference to the execution context.
63 : */
64 : struct GNUNET_CURL_Context *ctx;
65 :
66 : /**
67 : * Minor context that holds body and headers.
68 : */
69 : struct TALER_CURL_PostContext post_ctx;
70 :
71 : };
72 :
73 :
74 : /**
75 : * Function called when we're done processing the
76 : * HTTP POST /products/$ID/lock request.
77 : *
78 : * @param cls the `struct TALER_MERCHANT_ProductLockHandle`
79 : * @param response_code HTTP response code, 0 on error
80 : * @param response response body, NULL if not in JSON
81 : */
82 : static void
83 0 : handle_lock_product_finished (void *cls,
84 : long response_code,
85 : const void *response)
86 : {
87 0 : struct TALER_MERCHANT_ProductLockHandle *plh = cls;
88 0 : const json_t *json = response;
89 0 : struct TALER_MERCHANT_HttpResponse hr = {
90 0 : .http_status = (unsigned int) response_code,
91 : .reply = json
92 : };
93 :
94 0 : plh->job = NULL;
95 0 : GNUNET_log (GNUNET_ERROR_TYPE_INFO,
96 : "LOCK /products/$ID completed with response code %u\n",
97 : (unsigned int) response_code);
98 0 : switch (response_code)
99 : {
100 0 : case 0:
101 0 : hr.ec = TALER_EC_GENERIC_INVALID_RESPONSE;
102 0 : break;
103 0 : case MHD_HTTP_NO_CONTENT:
104 0 : break;
105 0 : case MHD_HTTP_BAD_REQUEST:
106 0 : hr.ec = TALER_JSON_get_error_code (json);
107 0 : hr.hint = TALER_JSON_get_error_hint (json);
108 0 : GNUNET_break_op (0);
109 : /* This should never happen, either us
110 : * or the merchant is buggy (or API version conflict);
111 : * just pass JSON reply to the application */
112 0 : break;
113 0 : case MHD_HTTP_FORBIDDEN:
114 0 : hr.ec = TALER_JSON_get_error_code (json);
115 0 : hr.hint = TALER_JSON_get_error_hint (json);
116 : /* Nothing really to verify, merchant says we tried to abort the payment
117 : * after it was successful. We should pass the JSON reply to the
118 : * application */
119 0 : break;
120 0 : case MHD_HTTP_NOT_FOUND:
121 0 : hr.ec = TALER_JSON_get_error_code (json);
122 0 : hr.hint = TALER_JSON_get_error_hint (json);
123 0 : break;
124 0 : case MHD_HTTP_GONE:
125 0 : hr.ec = TALER_JSON_get_error_code (json);
126 0 : hr.hint = TALER_JSON_get_error_hint (json);
127 0 : break;
128 0 : case MHD_HTTP_INTERNAL_SERVER_ERROR:
129 0 : hr.ec = TALER_JSON_get_error_code (json);
130 0 : hr.hint = TALER_JSON_get_error_hint (json);
131 : /* Server had an internal issue; we should retry,
132 : but this API leaves this to the application */
133 0 : break;
134 0 : default:
135 0 : TALER_MERCHANT_parse_error_details_ (json,
136 : response_code,
137 : &hr);
138 : /* unexpected response code */
139 0 : GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
140 : "Unexpected response code %u/%d\n",
141 : (unsigned int) response_code,
142 : (int) hr.ec);
143 0 : GNUNET_break_op (0);
144 0 : break;
145 : }
146 0 : plh->cb (plh->cb_cls,
147 : &hr);
148 0 : TALER_MERCHANT_product_lock_cancel (plh);
149 0 : }
150 :
151 :
152 : struct TALER_MERCHANT_ProductLockHandle *
153 0 : TALER_MERCHANT_product_lock (
154 : struct GNUNET_CURL_Context *ctx,
155 : const char *backend_url,
156 : const char *product_id,
157 : const struct GNUNET_Uuid *uuid,
158 : struct GNUNET_TIME_Relative duration,
159 : uint32_t quantity,
160 : TALER_MERCHANT_ProductLockCallback cb,
161 : void *cb_cls)
162 : {
163 : struct TALER_MERCHANT_ProductLockHandle *plh;
164 : json_t *req_obj;
165 :
166 0 : req_obj = json_pack ("{s:o, s:o, s:I}",
167 : "lock_uuid",
168 : GNUNET_JSON_from_data_auto (uuid),
169 : "duration",
170 : GNUNET_JSON_from_time_rel (duration),
171 : "quantity",
172 : (json_int_t) quantity);
173 0 : if (NULL == req_obj)
174 : {
175 0 : GNUNET_break (0);
176 0 : return NULL;
177 : }
178 0 : plh = GNUNET_new (struct TALER_MERCHANT_ProductLockHandle);
179 0 : plh->ctx = ctx;
180 0 : plh->cb = cb;
181 0 : plh->cb_cls = cb_cls;
182 : {
183 : char *path;
184 :
185 0 : GNUNET_asprintf (&path,
186 : "private/products/%s/lock",
187 : product_id);
188 0 : plh->url = TALER_url_join (backend_url,
189 : path,
190 : NULL);
191 0 : GNUNET_free (path);
192 : }
193 0 : if (NULL == plh->url)
194 : {
195 0 : GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
196 : "Could not construct request URL.\n");
197 0 : json_decref (req_obj);
198 0 : GNUNET_free (plh);
199 0 : return NULL;
200 : }
201 : {
202 : CURL *eh;
203 :
204 0 : eh = curl_easy_init ();
205 0 : if (GNUNET_OK !=
206 0 : TALER_curl_easy_post (&plh->post_ctx,
207 : eh,
208 : req_obj))
209 : {
210 0 : GNUNET_break (0);
211 0 : json_decref (req_obj);
212 0 : GNUNET_free (plh);
213 0 : return NULL;
214 : }
215 :
216 0 : json_decref (req_obj);
217 0 : GNUNET_assert (CURLE_OK == curl_easy_setopt (eh,
218 : CURLOPT_URL,
219 : plh->url));
220 0 : plh->job = GNUNET_CURL_job_add2 (ctx,
221 : eh,
222 0 : plh->post_ctx.headers,
223 : &handle_lock_product_finished,
224 : plh);
225 : }
226 0 : return plh;
227 : }
228 :
229 :
230 : void
231 0 : TALER_MERCHANT_product_lock_cancel (
232 : struct TALER_MERCHANT_ProductLockHandle *plh)
233 : {
234 0 : if (NULL != plh->job)
235 : {
236 0 : GNUNET_CURL_job_cancel (plh->job);
237 0 : plh->job = NULL;
238 : }
239 0 : TALER_curl_easy_post_finished (&plh->post_ctx);
240 0 : GNUNET_free (plh->url);
241 0 : GNUNET_free (plh);
242 0 : }
243 :
244 :
245 : /* end of merchant_api_lock_product.c */
|