gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-exchange] branch master updated: more error codes


From: gnunet
Subject: [taler-exchange] branch master updated: more error codes
Date: Fri, 01 May 2020 18:38:23 +0200

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository exchange.

The following commit(s) were added to refs/heads/master by this push:
     new 78031b27 more error codes
78031b27 is described below

commit 78031b2711991c5ff08adbddf070277f5891d954
Author: Christian Grothoff <address@hidden>
AuthorDate: Fri May 1 18:38:21 2020 +0200

    more error codes
---
 src/include/taler_error_codes.h      | 194 ++++++++++++++++++++++++++++++++---
 src/include/taler_exchange_service.h |   4 +-
 src/lib/exchange_api_deposit.c       |  10 +-
 3 files changed, 186 insertions(+), 22 deletions(-)

diff --git a/src/include/taler_error_codes.h b/src/include/taler_error_codes.h
index c882d27d..b3be7dc4 100644
--- a/src/include/taler_error_codes.h
+++ b/src/include/taler_error_codes.h
@@ -1318,13 +1318,6 @@ enum TALER_ErrorCode
    */
   TALER_EC_PAY_WIRE_FEE_CURRENCY_MISMATCH = 2125,
 
-  /**
-   * The merchant refuses to abort and refund the payment operation as
-   * the payment succeeded already. This response is provided with HTTP
-   * status code of #MHD_HTTP_FORBIDDEN.
-   */
-  TALER_EC_PAY_ABORT_REFUND_REFUSED_PAYMENT_COMPLETE = 2126,
-
   /**
    * A unknown merchant public key was included in the payment.  That
    * happens typically when the wallet sends the payment to the wrong
@@ -1374,6 +1367,80 @@ enum TALER_ErrorCode
    */
   TALER_EC_PAY_REFUNDS_EXCEED_PAYMENTS = 2133,
 
+  /**
+   * The merchant failed to contact the exchange. This response is
+   * provided with HTTP status code of #MHD_HTTP_FAILED_DEPENDENCY.
+   */
+  TALER_EC_ABORT_EXCHANGE_KEYS_FAILURE = 2150,
+
+  /**
+   * The merchant failed to send the exchange the refund request. This
+   * response is provided with HTTP status code of
+   * #MHD_HTTP_INTERNAL_SERVER_ERROR.
+   */
+  TALER_EC_ABORT_EXCHANGE_REFUND_FAILED = 2151,
+
+  /**
+   * The merchant failed to find the exchange to process the lookup.
+   * This response is provided with HTTP status code of
+   * #MHD_HTTP_INTERNAL_SERVER_ERROR.
+   */
+  TALER_EC_ABORT_EXCHANGE_LOOKUP_FAILED = 2152,
+
+  /**
+   * The merchant failed to store the abort request in its database.
+   * This response is provided with HTTP status code of
+   * #MHD_HTTP_INTERNAL_SERVER_ERROR.
+   */
+  TALER_EC_ABORT_DB_STORE_ABORT_ERROR = 2153,
+
+  /**
+   * The merchant failed to repeatedly serialize the transaction. This
+   * response is provided with HTTP status code of
+   * #MHD_HTTP_INTERNAL_SERVER_ERROR.
+   */
+  TALER_EC_ABORT_DB_STORE_TRANSACTION_ERROR = 2154,
+
+  /**
+   * The merchant failed in the lookup part of the transaction. This
+   * response is provided with HTTP status code of
+   * #MHD_HTTP_INTERNAL_SERVER_ERROR.
+   */
+  TALER_EC_ABORT_DB_FETCH_TRANSACTION_ERROR = 2155,
+
+  /**
+   * The merchant could not find the contract. This response is provided
+   * with HTTP status code of #MHD_HTTP_NOT_FOUND.
+   */
+  TALER_EC_ABORT_CONTRACT_NOT_FOUND = 2156,
+
+  /**
+   * The payment was already completed and thus cannot be aborted
+   * anymore. This response is provided with HTTP status code of
+   * #MHD_HTTP_FORBIDDEN.
+   */
+  TALER_EC_ABORT_REFUND_REFUSED_PAYMENT_COMPLETE = 2157,
+
+  /**
+   * The hash provided by the wallet does not match the order. This
+   * response is provided with HTTP status code of
+   * #MHD_HTTP_BAD_REQUEST.
+   */
+  TALER_EC_ABORT_CONTRACT_HASH_MISSMATCH = 2158,
+
+  /**
+   * The array of coins cannot be empty. This response is provided with
+   * HTTP status code of #MHD_HTTP_BAD_REQUEST.
+   */
+  TALER_EC_ABORT_COINS_ARRAY_EMPTY = 2159,
+
+  /**
+   * The merchant experienced a timeout processing the request. This
+   * response is provided with HTTP status code of
+   * #MHD_HTTP_REQUEST_TIMEOUT.
+   */
+  TALER_EC_ABORT_EXCHANGE_TIMEOUT = 2160,
+
   /**
    * Integer overflow with specified timestamp argument detected. This
    * response is provided with HTTP status code #MHD_HTTP_BAD_REQUEST.
@@ -1617,25 +1684,29 @@ enum TALER_ErrorCode
 
   /**
    * The backend encountered an error while trying to retrieve the
-   * proposal data from database.  Likely to be an internal error.
+   * proposal data from database.  Likely to be an internal error. The
+   * response is provided with HTTP status code
+   * #MHD_HTTP_INTERNAL_SERVER_ERROR.
    */
   TALER_EC_PROPOSAL_LOOKUP_DB_ERROR = 2502,
 
   /**
    * The proposal being looked up is not found on this merchant.
+   * Returned with an HTTP status code of #MHD_HTTP_NOT_FOUND
    */
   TALER_EC_PROPOSAL_LOOKUP_NOT_FOUND = 2503,
 
   /**
    * The proposal had no timestamp and the backend failed to obtain the
-   * local time. Likely to be an internal error.
+   * local time. Likely to be an internal error. The response is
+   * provided with HTTP status code #MHD_HTTP_INTERNAL_SERVER_ERROR.
    */
   TALER_EC_PROPOSAL_NO_LOCALTIME = 2504,
 
   /**
    * The order provided to the backend could not be parsed, some
-   * required fields were missing or ill-formed. Returned as a bad
-   * request.
+   * required fields were missing or ill-formed. Returned with an HTTP
+   * status code #MHD_HTTP_BAD_REQUEST.
    */
   TALER_EC_PROPOSAL_ORDER_PARSE_ERROR = 2505,
 
@@ -1673,6 +1744,80 @@ enum TALER_ErrorCode
    */
   TALER_EC_PROPOSAL_REPLY_MALFORMED = 2510,
 
+  /**
+   * The order provided to the backend could not be deleted, it is not
+   * known. Returned with an HTTP status code #MHD_HTTP_NOT_FOUND.
+   */
+  TALER_EC_ORDERS_DELETE_NO_SUCH_ORDER = 2511,
+
+  /**
+   * The order provided to the backend could not be deleted, our offer
+   * is still valid and awaiting payment. Returned with an HTTP status
+   * code #MHD_HTTP_CONFLICT.
+   */
+  TALER_EC_ORDERS_DELETE_AWAITING_PAYMENT = 2512,
+
+  /**
+   * The order provided to the backend could not be deleted, due to a
+   * database error. Returned with an HTTP status code
+   * #MHD_HTTP_INTERNAL_SERVER_ERROR.
+   */
+  TALER_EC_ORDERS_DELETE_DB_HARD_FAILURE = 2513,
+
+  /**
+   * The order provided to the backend could not be completed, due to a
+   * database error trying to fetch product inventory data. Returned
+   * with an HTTP status code #MHD_HTTP_INTERNAL_SERVER_ERROR.
+   */
+  TALER_EC_ORDERS_LOOKUP_PRODUCT_DB_HARD_FAILURE = 2514,
+
+  /**
+   * The order provided to the backend could not be completed, due to a
+   * database serialization error (which should be impossible) trying to
+   * fetch product inventory data. Returned with an HTTP status code
+   * #MHD_HTTP_INTERNAL_SERVER_ERROR.
+   */
+  TALER_EC_ORDERS_LOOKUP_PRODUCT_DB_SOFT_FAILURE = 2515,
+
+  /**
+   * The order provided to the backend could not be completed, because a
+   * product to be completed via inventory data is not actually in our
+   * inventory. Returned with an HTTP status code #MHD_HTTP_NOT_FOUND.
+   */
+  TALER_EC_ORDERS_LOOKUP_PRODUCT_NOT_FOUND = 2516,
+
+  /**
+   * We could not obtain a list of all orders because of a database
+   * failure. Returned with an HTTP status code
+   * #MHD_HTTP_INTERNAL_SERVER_ERROR.
+   */
+  TALER_EC_ORDERS_GET_DB_LOOKUP_ERROR = 2517,
+
+  /**
+   * We could not claim the order because of a database failure.
+   * Returned with an HTTP status code #MHD_HTTP_INTERNAL_SERVER_ERROR.
+   */
+  TALER_EC_ORDERS_CLAIM_HARD_DB_ERROR = 2518,
+
+  /**
+   * We could not claim the order because of a database serialization
+   * failure. Returned with an HTTP status code
+   * #MHD_HTTP_INTERNAL_SERVER_ERROR.
+   */
+  TALER_EC_ORDERS_CLAIM_SOFT_DB_ERROR = 2519,
+
+  /**
+   * We could not claim the order because the backend is unaware of it.
+   * Returned with an HTTP status code #MHD_HTTP_NOT_FOUND.
+   */
+  TALER_EC_ORDERS_CLAIM_NOT_FOUND = 2520,
+
+  /**
+   * We could not claim the order because someone else claimed it first.
+   * Returned with an HTTP status code #MHD_HTTP_CONFLICT.
+   */
+  TALER_EC_ORDERS_ALREADY_CLAIMED = 2521,
+
   /**
    * The merchant backend failed to lookup the products. The response is
    * provied with an HTTP status of #MHD_HTTP_INTERNAL_SERVER_ERROR.
@@ -1724,11 +1869,11 @@ enum TALER_ErrorCode
   TALER_EC_PRODUCTS_PATCH_TOTAL_LOST_REDUCED = 2557,
 
   /**
-   * The update would have reduced the total amount of product sold,
-   * which is not allowed. The response is provied with an HTTP status
-   * of #MHD_HTTP_CONFLICT.
+   * The update would have mean that more stocks were lost than what
+   * remains from total inventory after sales, which is not allowed. The
+   * response is provied with an HTTP status of #MHD_HTTP_CONFLICT.
    */
-  TALER_EC_PRODUCTS_PATCH_TOTAL_SOLD_REDUCED = 2558,
+  TALER_EC_PRODUCTS_PATCH_TOTAL_LOST_EXCEEDS_STOCKS = 2558,
 
   /**
    * The update would have reduced the total amount of product in stock,
@@ -1750,6 +1895,25 @@ enum TALER_ErrorCode
    */
   TALER_EC_PRODUCTS_LOCK_UNKNOWN_PRODUCT = 2561,
 
+  /**
+   * The deletion request resulted in a hard database error. The
+   * response is provied with an HTTP status of
+   * #MHD_HTTP_INTERNAL_SERVER_ERROR.
+   */
+  TALER_EC_PRODUCTS_DELETE_DB_HARD_FAILURE = 2562,
+
+  /**
+   * The deletion request was for a product unknown to the backend. The
+   * response is provied with an HTTP status of #MHD_HTTP_NOT_FOUND.
+   */
+  TALER_EC_PRODUCTS_DELETE_NO_SUCH_PRODUCT = 2563,
+
+  /**
+   * The deletion request is for a product that is locked. The response
+   * is provied with an HTTP status of #MHD_HTTP_CONFLICT.
+   */
+  TALER_EC_PRODUCTS_DELETE_CONFLICTING_LOCK = 2564,
+
   /**
    * The merchant returned a malformed response. Error created client-
    * side.
diff --git a/src/include/taler_exchange_service.h 
b/src/include/taler_exchange_service.h
index 3505195f..f7fa7144 100644
--- a/src/include/taler_exchange_service.h
+++ b/src/include/taler_exchange_service.h
@@ -757,14 +757,14 @@ struct TALER_EXCHANGE_DepositHandle;
  * @param cls closure
  * @param hr HTTP response data
  * @param exchange_sig signature provided by the exchange
- * @param sign_key exchange key used to sign @a obj, or NULL
+ * @param exchange_pub exchange key used to sign @a obj, or NULL
  */
 typedef void
 (*TALER_EXCHANGE_DepositResultCallback) (
   void *cls,
   const struct TALER_EXCHANGE_HttpResponse *hr,
   const struct TALER_ExchangeSignatureP *exchange_sig,
-  const struct TALER_ExchangePublicKeyP *sign_key);
+  const struct TALER_ExchangePublicKeyP *exchange_pub);
 
 
 /**
diff --git a/src/lib/exchange_api_deposit.c b/src/lib/exchange_api_deposit.c
index 3c06bbe3..5f374993 100644
--- a/src/lib/exchange_api_deposit.c
+++ b/src/lib/exchange_api_deposit.c
@@ -550,11 +550,11 @@ TALER_EXCHANGE_deposit (struct TALER_EXCHANGE_Handle 
*exchange,
     char pub_str[sizeof (struct TALER_CoinSpendPublicKeyP) * 2];
     char *end;
 
-    end = GNUNET_STRINGS_data_to_string (coin_pub,
-                                         sizeof (struct
-                                                 TALER_CoinSpendPublicKeyP),
-                                         pub_str,
-                                         sizeof (pub_str));
+    end = GNUNET_STRINGS_data_to_string (
+      coin_pub,
+      sizeof (struct TALER_CoinSpendPublicKeyP),
+      pub_str,
+      sizeof (pub_str));
     *end = '\0';
     GNUNET_snprintf (arg_str,
                      sizeof (arg_str),

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]