/**************************************************************************** ** ** Copyright (C) 2015 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** ** This file is part of the Purchasing module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL3-COMM$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see http://www.qt.io/terms-conditions. For further ** information use the contact form at http://www.qt.io/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 3 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPLv3 included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 3 requirements ** will be met: https://www.gnu.org/licenses/lgpl.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "qinapptransaction.h" QT_BEGIN_NAMESPACE class QInAppTransactionPrivate { public: QInAppTransactionPrivate(QInAppTransaction::TransactionStatus s, QInAppProduct *p) : status(s) , product(p) { } QInAppTransaction::TransactionStatus status; QInAppProduct *product; }; /*! \qmltype Transaction \inqmlmodule QtPurchasing \since QtPurchasing 1.0 \ingroup qtpurchasing \brief Contains information about an in-app transaction. Transaction contains information about a transaction in the external app store and is usually provided as a result of calling \l{QtPurchasing::Product::purchase()}{purchase()} on a product. When the purchase flow has ended, whether it's successful or not, either the product's \l{QtPurchasing::Product::onPurchaseSucceeded}{onPurchaseSucceeded} or \l{QtPurchasing::Product::onPurchaseFailed}{onPurchaseFailed} handler will be called with a transaction object as argument. Transaction cannot be created directly in QML, but is only provided as an argument to the purchase handlers in the products. */ /*! \class QInAppTransaction \inmodule QtPurchasing \brief Contains information about a transaction in the external app store. QInAppTransaction contains information about a transaction in the external app store and is usually provided as a result of calling QInAppProduct::purchase(). When the purchase flow has been completed by the user (confirming the purchase, for instance by entering their password), the QInAppStore instance containing the product will emit a QInAppStore::transactionReady() signal with data about the transaction. The status() provides information on whether the transaction was successful or not. If it was successful, then the application should take appropriate action. When the necessary action has been performed, finalize() should be called. The finalize() function should be called regardless of the status of the transaction. It is important that the application stores the purchase information before calling finalize(). If a transaction is not finalized (for example because the application was interrupted before it had a chance to save the information), then the transaction will be emitted again the next time the product is registered by QInAppStore::registerProduct(). Transactions can also be emitted after calling QInAppStore::restorePurchases(), at which point a new transaction will be emitted for each previously purchased unlockable product with the status of PurchaseRestored. \note Since transactions may under certain circumstances be emitted for the same transaction several times, the application should always check if the transaction has been registered before. Do not expect each transaction to be unique. */ /*! * \internal */\ QInAppTransaction::QInAppTransaction(TransactionStatus status, QInAppProduct *product, QObject *parent) : QObject(parent) { d = QSharedPointer(new QInAppTransactionPrivate(status, product)); } /*! * \internal */\ QInAppTransaction::~QInAppTransaction() { } /*! * \qmlproperty object QtPurchasing::Transaction::product * * This property holds the product which is the object of this transaction. */ /*! * \property QInAppTransaction::product * * This property holds the product which is the object of this transaction. */ QInAppProduct *QInAppTransaction::product() const { return d->product; } /*! \enum QInAppTransaction::TransactionStatus This enum type is used to specify the status of the transaction. \value Unknown The transaction status has not been set. \value PurchaseApproved The purchase was successfully completed. \value PurchaseFailed The purchase was not completed for some reason. This could be because the user canceled the transaction, but it could also for example be caused by a missing network connection. \value PurchaseRestored The product has previously been purchased and the purchase has now been restored as a result of calling \l{QInAppStore::restorePurchases()}. */ /*! \enum QInAppTransaction::FailureReason This enum type specifies the reason for failure if a transaction has the \l PurchaseFailed status. \value NoFailure The status of the transaction is not \l PurchaseFailed. \value CanceledByUser The transaction was manually canceled by the user. \value ErrorOccurred An error occurred, preventing the transaction from completing. See the \l errorString property for more information on the precise error that occurred. */ /*! \qmlproperty enum QtPurchasing::Transaction::status This property holds the status of the transaction. \list \li Transaction.PurchaseApproved The purchase was successfully completed. \li Transaction.PurchaseFailed The purchase was not completed for some reason. This could be because the user canceled the transaction, but it could also for example be caused by a missing network connection. \li PurchaseRestored The product has previously been purchased and the purchase has now been restored as a result of calling \l{QtPurchasing::Store::restorePurchases()}{restorePurchases()}. \endlist */ /*! * \property QInAppTransaction::status * * This property holds the status of the transaction. If the purchase was successfully * completed, the status will be PurchaseApproved. If the purchase failed * or was unsuccessful then the status will be PurchaseFailed. If the * transaction was restored as a result of calling QInAppStore::restorePurchases() * then the status will be PurchaseRestored. */ QInAppTransaction::TransactionStatus QInAppTransaction::status() const { return d->status; } /*! * \qmlproperty enum QtPurchasing::Transaction::failureReason * * This property holds the reason for the failure if the transaction failed. * * \list * \li Transaction.NoFailure The transaction did not fail. * \li Transaction.CanceledByUser The transaction was canceled by the user. * \li Transaction.ErrorOccurred The transaction failed due to an error. * \endlist * * \sa errorString */ /*! * \property QInAppTransaction::failureReason * * This property holds the reason for the failure if the transaction's status is * \l{PurchaseFailed}. If the purchase was canceled by the user, the failure * reason will be \l{CanceledByUser}. If the purchase failed due to an error, it * will be \l{ErrorOccurred}. If the purchase did not fail, the failure reason * will be \l{NoFailure}. * * \sa errorString, status */ QInAppTransaction::FailureReason QInAppTransaction::failureReason() const { return NoFailure; } /*! * \qmlproperty string QtPurchasing::Transaction::errorString * * This property holds a string describing the error if the transaction failed * due to an error. The contents of the error string is platform-specific. * * \sa failureReason, status */ /*! * \property QInAppTransaction::errorString * * This property holds a string describing the error if the transaction failed * due to an error. The contents of the error string is platform-specific. * * \sa failureReason, status */ QString QInAppTransaction::errorString() const { return QString(); } /*! * \qmlproperty time QtPurchasing::Transaction::timestamp * * This property holds the timestamp of the transaction. The timestamp * can be invalid if there is no valid transaction, for example if the user * canceled the purchase. * * \sa orderId */ /*! * \property QInAppTransaction::timestamp * * This property holds the timestamp of the transaction. The timestamp * can be invalid if there is no valid transaction, for example if the user * canceled the purchase. * * \sa orderId */ QDateTime QInAppTransaction::timestamp() const { return QDateTime(); } /*! * \qmlproperty string QtPurchasing::Transaction::orderId * * This property holds a unique identifier for this transaction. This value may be an empty * string if no transaction was registered (for example for canceled purchases). */ /*! * \property QInAppTransaction::orderId * * This property holds a unique identifier for this transaction. This value may be an empty * string if no transaction was registered (for example for canceled purchases). */ QString QInAppTransaction::orderId() const { return QString(); } /*! * Returns the platform-specific property given by \a propertyName. * * The following properties are available on Google Play: * \list * \li AndroidSignature: The signature of the transaction, as given by the * private key for the application. * \li AndroidPurchaseData: The purchase data returned by the Google Play store. * \endlist * These properties can be used to verify the purchase using the public key of * your application. It is also possible to have the back-end verify the purchases * by passing in the public key before registering products, using * QInAppStore::setPlatformProperty(). */ QString QInAppTransaction::platformProperty(const QString &propertyName) const { Q_UNUSED(propertyName); return QString(); } /*! * \fn void QInAppTransaction::finalize() * * Call this when the application has finished performing all necessary reactions * to the purchase. If the status is PurchaseApproved, the application should * store the information about the transaction in a safe way before finalizing it. * All transactions should be finalized. */ /*! * \qmlmethod void QtPurchasing::Transaction::finalize() * * Call this when the application has finished performing all necessary reactions * to the purchase. If the purchase succeeded, the application should store the * information about the transaction in a safe way before finalizing it. * All transactions should be finalized. */ QT_END_NAMESPACE