LCOV - code coverage report
Current view: top level - lib - merchant_api_delete-private-otp-devices-DEVICE_ID.c (source / functions) Coverage Total Hit
Test: coverage.info Lines: 0.0 % 57 0
Test Date: 2026-04-12 12:58:13 Functions: 0.0 % 4 0

            Line data    Source code
       1              : /*
       2              :   This file is part of TALER
       3              :   Copyright (C) 2022-2026 Taler Systems SA
       4              : 
       5              :   TALER is free software; you can redistribute it and/or modify it under the
       6              :   terms of the GNU Lesser General Public License as published by the Free Software
       7              :   Foundation; either version 2.1, 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 Lesser General Public License for more details.
      12              : 
      13              :   You should have received a copy of the GNU Lesser General Public License along with
      14              :   TALER; see the file COPYING.LGPL.  If not, see
      15              :   <http://www.gnu.org/licenses/>
      16              : */
      17              : /**
      18              :  * @file merchant_api_delete-private-otp-devices-DEVICE_ID-new.c
      19              :  * @brief Implementation of the DELETE /private/otp-devices/$DEVICE_ID request
      20              :  * @author Christian Grothoff
      21              :  */
      22              : #include "taler/platform.h"
      23              : #include <curl/curl.h>
      24              : #include <jansson.h>
      25              : #include <microhttpd.h> /* just for HTTP status codes */
      26              : #include <gnunet/gnunet_util_lib.h>
      27              : #include <gnunet/gnunet_curl_lib.h>
      28              : #include <taler/merchant/delete-private-otp-devices-DEVICE_ID.h>
      29              : #include "merchant_api_curl_defaults.h"
      30              : #include <taler/taler_json_lib.h>
      31              : 
      32              : 
      33              : /**
      34              :  * Handle for a DELETE /private/otp-devices/$DEVICE_ID operation.
      35              :  */
      36              : struct TALER_MERCHANT_DeletePrivateOtpDeviceHandle
      37              : {
      38              :   /**
      39              :    * Base URL of the merchant backend.
      40              :    */
      41              :   char *base_url;
      42              : 
      43              :   /**
      44              :    * The full URL for this request.
      45              :    */
      46              :   char *url;
      47              : 
      48              :   /**
      49              :    * Handle for the request.
      50              :    */
      51              :   struct GNUNET_CURL_Job *job;
      52              : 
      53              :   /**
      54              :    * Function to call with the result.
      55              :    */
      56              :   TALER_MERCHANT_DeletePrivateOtpDeviceCallback cb;
      57              : 
      58              :   /**
      59              :    * Closure for @a cb.
      60              :    */
      61              :   TALER_MERCHANT_DELETE_PRIVATE_OTP_DEVICE_RESULT_CLOSURE *cb_cls;
      62              : 
      63              :   /**
      64              :    * Reference to the execution context.
      65              :    */
      66              :   struct GNUNET_CURL_Context *ctx;
      67              : 
      68              :   /**
      69              :    * Identifier of the OTP device to delete.
      70              :    */
      71              :   char *otp_device_id;
      72              : };
      73              : 
      74              : 
      75              : /**
      76              :  * Function called when we're done processing the
      77              :  * HTTP DELETE /private/otp-devices/$DEVICE_ID request.
      78              :  *
      79              :  * @param cls the `struct TALER_MERCHANT_DeletePrivateOtpDeviceHandle`
      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_delete_otp_device_finished (void *cls,
      85              :                                    long response_code,
      86              :                                    const void *response)
      87              : {
      88            0 :   struct TALER_MERCHANT_DeletePrivateOtpDeviceHandle *doh = cls;
      89            0 :   const json_t *json = response;
      90            0 :   struct TALER_MERCHANT_DeletePrivateOtpDeviceResponse dor = {
      91            0 :     .hr.http_status = (unsigned int) response_code,
      92              :     .hr.reply = json
      93              :   };
      94              : 
      95            0 :   doh->job = NULL;
      96            0 :   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
      97              :               "Got /private/otp-devices/$DEVICE_ID DELETE response with status code %u\n",
      98              :               (unsigned int) response_code);
      99            0 :   switch (response_code)
     100              :   {
     101            0 :   case MHD_HTTP_NO_CONTENT:
     102            0 :     break;
     103            0 :   case MHD_HTTP_UNAUTHORIZED:
     104            0 :     dor.hr.ec = TALER_JSON_get_error_code (json);
     105            0 :     dor.hr.hint = TALER_JSON_get_error_hint (json);
     106            0 :     break;
     107            0 :   case MHD_HTTP_NOT_FOUND:
     108            0 :     dor.hr.ec = TALER_JSON_get_error_code (json);
     109            0 :     dor.hr.hint = TALER_JSON_get_error_hint (json);
     110            0 :     break;
     111            0 :   default:
     112            0 :     dor.hr.ec = TALER_JSON_get_error_code (json);
     113            0 :     dor.hr.hint = TALER_JSON_get_error_hint (json);
     114            0 :     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
     115              :                 "Unexpected response code %u/%d for DELETE /private/otp-devices/$DEVICE_ID\n",
     116              :                 (unsigned int) response_code,
     117              :                 (int) dor.hr.ec);
     118            0 :     break;
     119              :   }
     120            0 :   doh->cb (doh->cb_cls,
     121              :            &dor);
     122            0 :   TALER_MERCHANT_delete_private_otp_device_cancel (doh);
     123            0 : }
     124              : 
     125              : 
     126              : struct TALER_MERCHANT_DeletePrivateOtpDeviceHandle *
     127            0 : TALER_MERCHANT_delete_private_otp_device_create (
     128              :   struct GNUNET_CURL_Context *ctx,
     129              :   const char *url,
     130              :   const char *otp_device_id)
     131              : {
     132              :   struct TALER_MERCHANT_DeletePrivateOtpDeviceHandle *doh;
     133              : 
     134            0 :   doh = GNUNET_new (struct TALER_MERCHANT_DeletePrivateOtpDeviceHandle);
     135            0 :   doh->ctx = ctx;
     136            0 :   doh->base_url = GNUNET_strdup (url);
     137            0 :   doh->otp_device_id = GNUNET_strdup (otp_device_id);
     138            0 :   return doh;
     139              : }
     140              : 
     141              : 
     142              : enum TALER_ErrorCode
     143            0 : TALER_MERCHANT_delete_private_otp_device_start (
     144              :   struct TALER_MERCHANT_DeletePrivateOtpDeviceHandle *doh,
     145              :   TALER_MERCHANT_DeletePrivateOtpDeviceCallback cb,
     146              :   TALER_MERCHANT_DELETE_PRIVATE_OTP_DEVICE_RESULT_CLOSURE *cb_cls)
     147              : {
     148              :   CURL *eh;
     149              : 
     150            0 :   doh->cb = cb;
     151            0 :   doh->cb_cls = cb_cls;
     152              :   {
     153              :     char *path;
     154              : 
     155            0 :     GNUNET_asprintf (&path,
     156              :                      "private/otp-devices/%s",
     157              :                      doh->otp_device_id);
     158            0 :     doh->url = TALER_url_join (doh->base_url,
     159              :                                path,
     160              :                                NULL);
     161            0 :     GNUNET_free (path);
     162              :   }
     163            0 :   if (NULL == doh->url)
     164            0 :     return TALER_EC_GENERIC_CONFIGURATION_INVALID;
     165            0 :   eh = TALER_MERCHANT_curl_easy_get_ (doh->url);
     166            0 :   if (NULL == eh)
     167            0 :     return TALER_EC_GENERIC_CONFIGURATION_INVALID;
     168            0 :   GNUNET_assert (CURLE_OK ==
     169              :                  curl_easy_setopt (eh,
     170              :                                    CURLOPT_CUSTOMREQUEST,
     171              :                                    MHD_HTTP_METHOD_DELETE));
     172            0 :   doh->job = GNUNET_CURL_job_add (doh->ctx,
     173              :                                   eh,
     174              :                                   &handle_delete_otp_device_finished,
     175              :                                   doh);
     176            0 :   if (NULL == doh->job)
     177            0 :     return TALER_EC_GENERIC_INTERNAL_INVARIANT_FAILURE;
     178            0 :   return TALER_EC_NONE;
     179              : }
     180              : 
     181              : 
     182              : void
     183            0 : TALER_MERCHANT_delete_private_otp_device_cancel (
     184              :   struct TALER_MERCHANT_DeletePrivateOtpDeviceHandle *doh)
     185              : {
     186            0 :   if (NULL != doh->job)
     187              :   {
     188            0 :     GNUNET_CURL_job_cancel (doh->job);
     189            0 :     doh->job = NULL;
     190              :   }
     191            0 :   GNUNET_free (doh->url);
     192            0 :   GNUNET_free (doh->otp_device_id);
     193            0 :   GNUNET_free (doh->base_url);
     194            0 :   GNUNET_free (doh);
     195            0 : }
     196              : 
     197              : 
     198              : /* end of merchant_api_delete-private-otp-devices-DEVICE_ID-new.c */
        

Generated by: LCOV version 2.0-1