/* This file is part of TALER (C) 2014, 2015, 2016 INRIA TALER is free software; you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version. TALER is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with TALER; see the file COPYING. If not, see */ /** * @file backend/taler-merchant-httpd_history.c * @brief HTTP serving layer mainly intended to communicate with the frontend * @author Marcello Stanisci */ #include "platform.h" #include #include #include #include "taler-merchant-httpd.h" #include "taler-merchant-httpd_responses.h" /** * Function called with information about a transaction. * * @param cls closure * @param merchant_pub merchant's public key * @param exchange_uri URI of the exchange * @param transaction_id proposal's transaction id * @param h_wire hash of our wire details * @param timestamp time of the confirmation * @param refund refund deadline * @param total_amount total amount we receive for the contract after fees */ static void pd_cb (void *cls, const char *order_id, const json_t *proposal_data) { json_t *response = cls; json_t *entry; json_t *amount; json_t *timestamp; GNUNET_assert (NULL != (amount = json_copy (json_object_get (proposal_data, "amount")))); GNUNET_assert (NULL != (timestamp = json_object_get (proposal_data, "timestamp"))); GNUNET_break (NULL != (entry = json_pack ("{s:s, s:o, s:s}", "order_id", order_id, "amount", amount, "timestamp", json_string_value (timestamp)))); GNUNET_break (0 == json_array_append_new (response, entry)); } /** * Manage a /history request. Query the db and returns transactions * younger than the date given as parameter * * @param rh context of the handler * @param connection the MHD connection to handle * @param[in,out] connection_cls the connection's closure (can be updated) * @param upload_data upload data * @param[in,out] upload_data_size number of bytes (left) in @a upload_data * @return MHD result code */ int MH_handler_history (struct TMH_RequestHandler *rh, struct MHD_Connection *connection, void **connection_cls, const char *upload_data, size_t *upload_data_size) { #define LOG_INFO(...) GNUNET_log (GNUNET_ERROR_TYPE_INFO, __VA_ARGS__) const char *str; struct GNUNET_TIME_Absolute date; json_t *response; unsigned int ret; unsigned long long seconds; struct MerchantInstance *mi; response = json_array (); /*FIXME who decrefs this?*/ str = MHD_lookup_connection_value (connection, MHD_GET_ARGUMENT_KIND, "date"); if (NULL == str) return TMH_RESPONSE_reply_arg_missing (connection, TALER_EC_PARAMETER_MISSING, "date"); if (1 != sscanf (str, "%llu", &seconds)) return TMH_RESPONSE_reply_arg_invalid (connection, TALER_EC_PARAMETER_MALFORMED, "date"); date.abs_value_us = seconds * 1000LL * 1000LL; if (date.abs_value_us / 1000LL / 1000LL != seconds) return TMH_RESPONSE_reply_bad_request (connection, TALER_EC_HISTORY_TIMESTAMP_OVERFLOW, "Timestamp overflowed"); str = MHD_lookup_connection_value (connection, MHD_GET_ARGUMENT_KIND, "instance"); if (NULL == str) return TMH_RESPONSE_reply_arg_missing (connection, TALER_EC_PARAMETER_MISSING, "instance"); mi = TMH_lookup_instance (str); GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Querying history back to %llu\n", date.abs_value_us); ret = db->find_proposal_data_by_date (db->cls, date, &mi->pubkey, pd_cb, response); if (GNUNET_SYSERR == ret) return TMH_RESPONSE_reply_internal_error (connection, TALER_EC_HISTORY_DB_FETCH_ERROR, "db error to get history"); GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "history data: %s\n", json_dumps (response, JSON_INDENT (1))); return TMH_RESPONSE_reply_json (connection, response, MHD_HTTP_OK); } /* end of taler-merchant-httpd_history.c */