2017-10-27 01:08:41 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2017-06-14 10:59:00 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_PaymentResponse_h
|
|
|
|
#define mozilla_dom_PaymentResponse_h
|
|
|
|
|
|
|
|
#include "mozilla/dom/PaymentResponseBinding.h" // PaymentComplete
|
|
|
|
#include "nsPIDOMWindow.h"
|
|
|
|
#include "nsWrapperCache.h"
|
2018-05-29 12:31:22 +03:00
|
|
|
#include "nsITimer.h"
|
2017-06-14 10:59:00 +03:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class PaymentAddress;
|
2018-06-01 02:20:51 +03:00
|
|
|
class PaymentRequest;
|
2017-06-14 10:59:00 +03:00
|
|
|
class Promise;
|
|
|
|
|
2018-05-29 12:31:22 +03:00
|
|
|
class PaymentResponse final : public nsITimerCallback,
|
2017-06-14 10:59:00 +03:00
|
|
|
public nsWrapperCache
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(PaymentResponse)
|
|
|
|
|
2018-05-29 12:31:22 +03:00
|
|
|
NS_IMETHOD Notify(nsITimer* aTimer) override;
|
|
|
|
|
2017-06-14 10:59:00 +03:00
|
|
|
PaymentResponse(nsPIDOMWindowInner* aWindow,
|
2018-06-01 02:20:51 +03:00
|
|
|
PaymentRequest* aRequest,
|
2017-06-14 10:59:00 +03:00
|
|
|
const nsAString& aRequestId,
|
|
|
|
const nsAString& aMethodName,
|
|
|
|
const nsAString& aShippingOption,
|
|
|
|
RefPtr<PaymentAddress> aShippingAddress,
|
|
|
|
const nsAString& aDetails,
|
|
|
|
const nsAString& aPayerName,
|
|
|
|
const nsAString& aPayerEmail,
|
|
|
|
const nsAString& aPayerPhone);
|
|
|
|
|
|
|
|
nsPIDOMWindowInner* GetParentObject() const
|
|
|
|
{
|
|
|
|
return mOwner;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual JSObject* WrapObject(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
|
|
|
|
|
|
|
void GetRequestId(nsString& aRetVal) const;
|
|
|
|
|
|
|
|
void GetMethodName(nsString& aRetVal) const;
|
|
|
|
|
|
|
|
void GetDetails(JSContext* cx, JS::MutableHandle<JSObject*> aRetVal) const;
|
|
|
|
|
|
|
|
already_AddRefed<PaymentAddress> GetShippingAddress() const;
|
|
|
|
|
|
|
|
void GetShippingOption(nsString& aRetVal) const;
|
|
|
|
|
|
|
|
void GetPayerName(nsString& aRetVal) const;
|
|
|
|
|
|
|
|
void GetPayerEmail(nsString& aRetVal) const;
|
|
|
|
|
|
|
|
void GetPayerPhone(nsString& aRetVal) const;
|
|
|
|
|
|
|
|
// Return a raw pointer here to avoid refcounting, but make sure it's safe
|
|
|
|
// (the object should be kept alive by the callee).
|
|
|
|
already_AddRefed<Promise> Complete(PaymentComplete result, ErrorResult& aRv);
|
|
|
|
|
|
|
|
void RespondComplete();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
~PaymentResponse();
|
|
|
|
|
|
|
|
private:
|
|
|
|
nsCOMPtr<nsPIDOMWindowInner> mOwner;
|
|
|
|
bool mCompleteCalled;
|
2018-06-01 02:20:51 +03:00
|
|
|
PaymentRequest* mRequest;
|
2017-06-14 10:59:00 +03:00
|
|
|
nsString mRequestId;
|
|
|
|
nsString mMethodName;
|
2017-06-23 12:15:51 +03:00
|
|
|
nsString mDetails;
|
2017-06-14 10:59:00 +03:00
|
|
|
nsString mShippingOption;
|
|
|
|
nsString mPayerName;
|
|
|
|
nsString mPayerEmail;
|
|
|
|
nsString mPayerPhone;
|
|
|
|
RefPtr<PaymentAddress> mShippingAddress;
|
|
|
|
// Promise for "PaymentResponse::Complete"
|
|
|
|
RefPtr<Promise> mPromise;
|
2018-05-29 12:31:22 +03:00
|
|
|
// Timer for timing out if the page doesn't call
|
|
|
|
// complete()
|
|
|
|
nsCOMPtr<nsITimer> mTimer;
|
2017-06-14 10:59:00 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_PaymentResponse_h
|