Fabcoin Core  0.16.2
P2P Digital Currency
Public Slots | Signals | Public Member Functions | Static Public Member Functions | Protected Member Functions | Private Slots | Private Member Functions | Static Private Member Functions | Private Attributes | List of all members
PaymentServer Class Reference

#include <paymentserver.h>

Inheritance diagram for PaymentServer:
[legend]
Collaboration diagram for PaymentServer:
[legend]

Public Slots

void uiReady ()
 
void fetchPaymentACK (CWallet *wallet, SendCoinsRecipient recipient, QByteArray transaction)
 
void handleURIOrFile (const QString &s)
 

Signals

void receivedPaymentRequest (SendCoinsRecipient)
 
void receivedPaymentACK (const QString &paymentACKMsg)
 
void message (const QString &title, const QString &message, unsigned int style)
 

Public Member Functions

 PaymentServer (QObject *parent, bool startLocalServer=true)
 
 ~PaymentServer ()
 
void setOptionsModel (OptionsModel *optionsModel)
 

Static Public Member Functions

static void ipcParseCommandLine (int argc, char *argv[])
 
static bool ipcSendCommandLine ()
 
static void LoadRootCAs (X509_STORE *store=nullptr)
 
static X509_STORE * getCertStore ()
 
static bool verifyNetwork (const payments::PaymentDetails &requestDetails)
 
static bool verifyExpired (const payments::PaymentDetails &requestDetails)
 
static bool verifySize (qint64 requestSize)
 
static bool verifyAmount (const CAmount &requestAmount)
 

Protected Member Functions

bool eventFilter (QObject *object, QEvent *event)
 

Private Slots

void handleURIConnection ()
 
void netRequestFinished (QNetworkReply *)
 
void reportSslErrors (QNetworkReply *, const QList< QSslError > &)
 
void handlePaymentACK (const QString &paymentACKMsg)
 

Private Member Functions

bool processPaymentRequest (const PaymentRequestPlus &request, SendCoinsRecipient &recipient)
 
void fetchRequest (const QUrl &url)
 
void initNetManager ()
 

Static Private Member Functions

static bool readPaymentRequestFromFile (const QString &filename, PaymentRequestPlus &request)
 

Private Attributes

bool saveURIs
 
QLocalServer * uriServer
 
QNetworkAccessManager * netManager
 
OptionsModeloptionsModel
 

Detailed Description

Definition at line 58 of file paymentserver.h.

Constructor & Destructor Documentation

PaymentServer::PaymentServer ( QObject *  parent,
bool  startLocalServer = true 
)

Definition at line 300 of file paymentserver.cpp.

Here is the call graph for this function:

PaymentServer::~PaymentServer ( )

Definition at line 338 of file paymentserver.cpp.

Member Function Documentation

bool PaymentServer::eventFilter ( QObject *  object,
QEvent *  event 
)
protected

Definition at line 348 of file paymentserver.cpp.

Here is the call graph for this function:

void PaymentServer::fetchPaymentACK ( CWallet wallet,
SendCoinsRecipient  recipient,
QByteArray  transaction 
)
slot

Definition at line 623 of file paymentserver.cpp.

Here is the call graph for this function:

void PaymentServer::fetchRequest ( const QUrl &  url)
private

Definition at line 613 of file paymentserver.cpp.

Here is the caller graph for this function:

X509_STORE * PaymentServer::getCertStore ( )
static

Definition at line 811 of file paymentserver.cpp.

Here is the caller graph for this function:

void PaymentServer::handlePaymentACK ( const QString &  paymentACKMsg)
privateslot

Definition at line 757 of file paymentserver.cpp.

Here is the caller graph for this function:

void PaymentServer::handleURIConnection ( )
privateslot

Definition at line 478 of file paymentserver.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

void PaymentServer::handleURIOrFile ( const QString &  s)
slot

Definition at line 402 of file paymentserver.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

void PaymentServer::initNetManager ( )
private

Definition at line 363 of file paymentserver.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

void PaymentServer::ipcParseCommandLine ( int  argc,
char *  argv[] 
)
static

Definition at line 202 of file paymentserver.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

bool PaymentServer::ipcSendCommandLine ( )
static

Definition at line 267 of file paymentserver.cpp.

Here is the caller graph for this function:

void PaymentServer::LoadRootCAs ( X509_STORE *  store = nullptr)
static

Definition at line 111 of file paymentserver.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

void PaymentServer::message ( const QString &  title,
const QString &  message,
unsigned int  style 
)
signal

Definition at line 206 of file moc_paymentserver.cpp.

Here is the caller graph for this function:

void PaymentServer::netRequestFinished ( QNetworkReply *  reply)
privateslot

Definition at line 678 of file paymentserver.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

bool PaymentServer::processPaymentRequest ( const PaymentRequestPlus request,
SendCoinsRecipient recipient 
)
private

Definition at line 521 of file paymentserver.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

bool PaymentServer::readPaymentRequestFromFile ( const QString &  filename,
PaymentRequestPlus request 
)
staticprivate

Definition at line 503 of file paymentserver.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

void PaymentServer::receivedPaymentACK ( const QString &  paymentACKMsg)
signal

Definition at line 199 of file moc_paymentserver.cpp.

Here is the caller graph for this function:

void PaymentServer::receivedPaymentRequest ( SendCoinsRecipient  _t1)
signal

Definition at line 192 of file moc_paymentserver.cpp.

Here is the caller graph for this function:

void PaymentServer::reportSslErrors ( QNetworkReply *  reply,
const QList< QSslError > &  errs 
)
privateslot

Definition at line 740 of file paymentserver.cpp.

Here is the caller graph for this function:

void PaymentServer::setOptionsModel ( OptionsModel optionsModel)

Definition at line 752 of file paymentserver.cpp.

void PaymentServer::uiReady ( )
slot

Definition at line 390 of file paymentserver.cpp.

Here is the call graph for this function:

bool PaymentServer::verifyAmount ( const CAmount requestAmount)
static

Definition at line 799 of file paymentserver.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

bool PaymentServer::verifyExpired ( const payments::PaymentDetails requestDetails)
static

Definition at line 775 of file paymentserver.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

bool PaymentServer::verifyNetwork ( const payments::PaymentDetails requestDetails)
static

Definition at line 763 of file paymentserver.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

bool PaymentServer::verifySize ( qint64  requestSize)
static

Definition at line 787 of file paymentserver.cpp.

Here is the caller graph for this function:

Member Data Documentation

QNetworkAccessManager* PaymentServer::netManager
private

Definition at line 143 of file paymentserver.h.

OptionsModel* PaymentServer::optionsModel
private

Definition at line 145 of file paymentserver.h.

bool PaymentServer::saveURIs
private

Definition at line 140 of file paymentserver.h.

QLocalServer* PaymentServer::uriServer
private

Definition at line 141 of file paymentserver.h.


The documentation for this class was generated from the following files: