2016-12-31 15:01:21 -03:00
|
|
|
// Copyright (c) 2011-2016 The Bitcoin Core developers
|
2014-12-05 05:40:58 -03:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2013-11-04 12:20:43 -03:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2014-11-03 12:16:40 -03:00
|
|
|
#ifndef BITCOIN_QT_PAYMENTREQUESTPLUS_H
|
|
|
|
#define BITCOIN_QT_PAYMENTREQUESTPLUS_H
|
2013-07-22 02:50:39 -04:00
|
|
|
|
2017-02-14 07:05:50 -03:00
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
2017-08-15 12:31:26 -03:00
|
|
|
#include <qt/paymentrequest.pb.h>
|
2017-02-14 07:05:50 -03:00
|
|
|
#pragma GCC diagnostic pop
|
2013-04-13 02:13:08 -03:00
|
|
|
|
2017-11-09 21:57:53 -03:00
|
|
|
#include <base58.h>
|
2013-04-13 02:13:08 -03:00
|
|
|
|
2015-01-20 21:23:25 -03:00
|
|
|
#include <openssl/x509.h>
|
|
|
|
|
2013-07-22 02:50:39 -04:00
|
|
|
#include <QByteArray>
|
|
|
|
#include <QList>
|
|
|
|
#include <QString>
|
|
|
|
|
2015-11-09 15:23:46 -03:00
|
|
|
static const bool DEFAULT_SELFSIGNED_ROOTCERTS = false;
|
|
|
|
|
2013-07-22 02:50:39 -04:00
|
|
|
//
|
|
|
|
// Wraps dumb protocol buffer paymentRequest
|
|
|
|
// with extra methods
|
|
|
|
//
|
|
|
|
|
|
|
|
class PaymentRequestPlus
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PaymentRequestPlus() { }
|
|
|
|
|
|
|
|
bool parse(const QByteArray& data);
|
2014-06-16 10:30:38 -04:00
|
|
|
bool SerializeToString(std::string* output) const;
|
2013-07-22 02:50:39 -04:00
|
|
|
|
|
|
|
bool IsInitialized() const;
|
|
|
|
// Returns true if merchant's identity is authenticated, and
|
|
|
|
// returns human-readable merchant identity in merchant
|
|
|
|
bool getMerchant(X509_STORE* certStore, QString& merchant) const;
|
|
|
|
|
|
|
|
// Returns list of outputs, amount
|
2014-04-22 19:46:19 -03:00
|
|
|
QList<std::pair<CScript,CAmount> > getPayTo() const;
|
2013-07-22 02:50:39 -04:00
|
|
|
|
|
|
|
const payments::PaymentDetails& getDetails() const { return details; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
payments::PaymentRequest paymentRequest;
|
|
|
|
payments::PaymentDetails details;
|
|
|
|
};
|
|
|
|
|
2014-11-03 12:16:40 -03:00
|
|
|
#endif // BITCOIN_QT_PAYMENTREQUESTPLUS_H
|