LCOV - code coverage report
Current view: top level - lib - merchant_api_post_products.c (source / functions) Hit Total Coverage
Test: GNU Taler merchant coverage report Lines: 0 72 0.0 %
Date: 2022-08-25 06:17:04 Functions: 0 3 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /*
       2             :   This file is part of TALER
       3             :   Copyright (C) 2020-2021 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_post_products.c
      21             :  * @brief Implementation of the POST /products 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 "merchant_api_curl_defaults.h"
      32             : #include <taler/taler_json_lib.h>
      33             : #include <taler/taler_curl_lib.h>
      34             : 
      35             : 
      36             : /**
      37             :  * Handle for a POST /products/$ID operation.
      38             :  */
      39             : struct TALER_MERCHANT_ProductsPostHandle
      40             : {
      41             : 
      42             :   /**
      43             :    * The url for this request.
      44             :    */
      45             :   char *url;
      46             : 
      47             :   /**
      48             :    * Handle for the request.
      49             :    */
      50             :   struct GNUNET_CURL_Job *job;
      51             : 
      52             :   /**
      53             :    * Function to call with the result.
      54             :    */
      55             :   TALER_MERCHANT_ProductsPostCallback cb;
      56             : 
      57             :   /**
      58             :    * Closure for @a cb.
      59             :    */
      60             :   void *cb_cls;
      61             : 
      62             :   /**
      63             :    * Reference to the execution context.
      64             :    */
      65             :   struct GNUNET_CURL_Context *ctx;
      66             : 
      67             :   /**
      68             :    * Minor context that holds body and headers.
      69             :    */
      70             :   struct TALER_CURL_PostContext post_ctx;
      71             : 
      72             : };
      73             : 
      74             : 
      75             : /**
      76             :  * Function called when we're done processing the
      77             :  * HTTP POST /products request.
      78             :  *
      79             :  * @param cls the `struct TALER_MERCHANT_ProductsPostHandle`
      80             :  * @param response_code HTTP response code, 0 on error
      81             :  * @param response response body, NULL if not in JSON
      82             :  */
      83             : static void
      84           0 : handle_post_products_finished (void *cls,
      85             :                                long response_code,
      86             :                                const void *response)
      87             : {
      88           0 :   struct TALER_MERCHANT_ProductsPostHandle *pph = cls;
      89           0 :   const json_t *json = response;
      90           0 :   struct TALER_MERCHANT_HttpResponse hr = {
      91           0 :     .http_status = (unsigned int) response_code,
      92             :     .reply = json
      93             :   };
      94             : 
      95           0 :   pph->job = NULL;
      96           0 :   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
      97             :               "POST /products completed with response code %u\n",
      98             :               (unsigned int) response_code);
      99           0 :   switch (response_code)
     100             :   {
     101           0 :   case 0:
     102           0 :     hr.ec = TALER_EC_GENERIC_INVALID_RESPONSE;
     103           0 :     break;
     104           0 :   case MHD_HTTP_NO_CONTENT:
     105           0 :     break;
     106           0 :   case MHD_HTTP_BAD_REQUEST:
     107           0 :     hr.ec = TALER_JSON_get_error_code (json);
     108           0 :     hr.hint = TALER_JSON_get_error_hint (json);
     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_UNAUTHORIZED:
     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 need to authenticate. */
     117           0 :     break;
     118           0 :   case MHD_HTTP_FORBIDDEN:
     119           0 :     hr.ec = TALER_JSON_get_error_code (json);
     120           0 :     hr.hint = TALER_JSON_get_error_hint (json);
     121             :     /* Nothing really to verify, merchant says we tried to abort the payment
     122             :      * after it was successful. We should pass the JSON reply to the
     123             :      * application */
     124           0 :     break;
     125           0 :   case MHD_HTTP_NOT_FOUND:
     126           0 :     hr.ec = TALER_JSON_get_error_code (json);
     127           0 :     hr.hint = TALER_JSON_get_error_hint (json);
     128             :     /* Nothing really to verify, this should never
     129             :        happen, we should pass the JSON reply to the
     130             :        application */
     131           0 :     break;
     132           0 :   case MHD_HTTP_CONFLICT:
     133           0 :     hr.ec = TALER_JSON_get_error_code (json);
     134           0 :     hr.hint = TALER_JSON_get_error_hint (json);
     135           0 :     break;
     136           0 :   case MHD_HTTP_INTERNAL_SERVER_ERROR:
     137           0 :     hr.ec = TALER_JSON_get_error_code (json);
     138           0 :     hr.hint = TALER_JSON_get_error_hint (json);
     139             :     /* Server had an internal issue; we should retry,
     140             :        but this API leaves this to the application */
     141           0 :     break;
     142           0 :   default:
     143           0 :     TALER_MERCHANT_parse_error_details_ (json,
     144             :                                          response_code,
     145             :                                          &hr);
     146             :     /* unexpected response code */
     147           0 :     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
     148             :                 "Unexpected response code %u/%d\n",
     149             :                 (unsigned int) response_code,
     150             :                 (int) hr.ec);
     151           0 :     GNUNET_break_op (0);
     152           0 :     break;
     153             :   }
     154           0 :   pph->cb (pph->cb_cls,
     155             :            &hr);
     156           0 :   TALER_MERCHANT_products_post_cancel (pph);
     157           0 : }
     158             : 
     159             : 
     160             : struct TALER_MERCHANT_ProductsPostHandle *
     161           0 : TALER_MERCHANT_products_post (
     162             :   struct GNUNET_CURL_Context *ctx,
     163             :   const char *backend_url,
     164             :   const char *product_id,
     165             :   const char *description,
     166             :   const json_t *description_i18n,
     167             :   const char *unit,
     168             :   const struct TALER_Amount *price,
     169             :   const char *image,
     170             :   const json_t *taxes,
     171             :   int64_t total_stock,
     172             :   const json_t *address,
     173             :   struct GNUNET_TIME_Timestamp next_restock,
     174             :   TALER_MERCHANT_ProductsPostCallback cb,
     175             :   void *cb_cls)
     176             : {
     177             :   struct TALER_MERCHANT_ProductsPostHandle *pph;
     178             :   json_t *req_obj;
     179             : 
     180           0 :   req_obj = GNUNET_JSON_PACK (
     181             :     GNUNET_JSON_pack_string ("product_id",
     182             :                              product_id),
     183             :     GNUNET_JSON_pack_string ("description",
     184             :                              description),
     185             :     GNUNET_JSON_pack_object_incref ("description_i18n",
     186             :                                     (json_t *) description_i18n),
     187             :     GNUNET_JSON_pack_string ("unit",
     188             :                              unit),
     189             :     TALER_JSON_pack_amount ("price",
     190             :                             price),
     191             :     GNUNET_JSON_pack_string ("image",
     192             :                              image),
     193             :     GNUNET_JSON_pack_array_incref ("taxes",
     194             :                                    (json_t *) taxes),
     195             :     GNUNET_JSON_pack_uint64 ("total_stock",
     196             :                              total_stock),
     197             :     GNUNET_JSON_pack_object_incref ("address",
     198             :                                     (json_t *) address),
     199             :     GNUNET_JSON_pack_allow_null (
     200             :       GNUNET_JSON_pack_timestamp ("next_restock",
     201             :                                   next_restock)));
     202           0 :   pph = GNUNET_new (struct TALER_MERCHANT_ProductsPostHandle);
     203           0 :   pph->ctx = ctx;
     204           0 :   pph->cb = cb;
     205           0 :   pph->cb_cls = cb_cls;
     206           0 :   pph->url = TALER_url_join (backend_url,
     207             :                              "private/products",
     208             :                              NULL);
     209           0 :   if (NULL == pph->url)
     210             :   {
     211           0 :     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
     212             :                 "Could not construct request URL.\n");
     213           0 :     json_decref (req_obj);
     214           0 :     GNUNET_free (pph);
     215           0 :     return NULL;
     216             :   }
     217             :   {
     218             :     CURL *eh;
     219             : 
     220           0 :     eh = TALER_MERCHANT_curl_easy_get_ (pph->url);
     221           0 :     GNUNET_assert (GNUNET_OK ==
     222             :                    TALER_curl_easy_post (&pph->post_ctx,
     223             :                                          eh,
     224             :                                          req_obj));
     225           0 :     json_decref (req_obj);
     226           0 :     pph->job = GNUNET_CURL_job_add2 (ctx,
     227             :                                      eh,
     228           0 :                                      pph->post_ctx.headers,
     229             :                                      &handle_post_products_finished,
     230             :                                      pph);
     231           0 :     GNUNET_assert (NULL != pph->job);
     232             :   }
     233           0 :   return pph;
     234             : }
     235             : 
     236             : 
     237             : void
     238           0 : TALER_MERCHANT_products_post_cancel (
     239             :   struct TALER_MERCHANT_ProductsPostHandle *pph)
     240             : {
     241           0 :   if (NULL != pph->job)
     242             :   {
     243           0 :     GNUNET_CURL_job_cancel (pph->job);
     244           0 :     pph->job = NULL;
     245             :   }
     246           0 :   TALER_curl_easy_post_finished (&pph->post_ctx);
     247           0 :   GNUNET_free (pph->url);
     248           0 :   GNUNET_free (pph);
     249           0 : }
     250             : 
     251             : 
     252             : /* end of merchant_api_post_products.c */

Generated by: LCOV version 1.14