2014-12-05 09:40:58 +01:00
|
|
|
// Copyright (c) 2011-2014 The Bitcoin developers
|
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2013-11-04 16:20:43 +01:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#ifndef BITCOIN_QT_PAYMENTREQUESTPLUS_H
|
|
|
|
#define BITCOIN_QT_PAYMENTREQUESTPLUS_H
|
2013-07-22 08:50:39 +02:00
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "paymentrequest.pb.h"
|
|
|
|
|
|
|
|
#include "base58.h"
|
|
|
|
|
2015-01-21 01:23:25 +01:00
|
|
|
#include <openssl/x509.h>
|
|
|
|
|
2013-07-22 08:50:39 +02:00
|
|
|
#include <QByteArray>
|
|
|
|
#include <QList>
|
|
|
|
#include <QString>
|
|
|
|
|
|
|
|
//
|
|
|
|
// Wraps dumb protocol buffer paymentRequest
|
|
|
|
// with extra methods
|
|
|
|
//
|
|
|
|
|
|
|
|
class PaymentRequestPlus
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PaymentRequestPlus() { }
|
|
|
|
|
|
|
|
bool parse(const QByteArray& data);
|
2014-06-16 16:30:38 +02:00
|
|
|
bool SerializeToString(std::string* output) const;
|
2013-07-22 08:50:39 +02: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-23 00:46:19 +02:00
|
|
|
QList<std::pair<CScript,CAmount> > getPayTo() const;
|
2013-07-22 08:50:39 +02:00
|
|
|
|
|
|
|
const payments::PaymentDetails& getDetails() const { return details; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
payments::PaymentRequest paymentRequest;
|
|
|
|
payments::PaymentDetails details;
|
|
|
|
};
|
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#endif // BITCOIN_QT_PAYMENTREQUESTPLUS_H
|