2017-11-30 13:27:33 +00:00
|
|
|
'use strict'
|
|
|
|
|
2018-04-02 23:55:44 +00:00
|
|
|
if (process.platform === 'darwin') {
|
|
|
|
const {EventEmitter} = require('events')
|
|
|
|
const {inAppPurchase, InAppPurchase} = process.atomBinding('in_app_purchase')
|
2017-11-30 13:27:33 +00:00
|
|
|
|
2018-04-02 23:55:44 +00:00
|
|
|
// inAppPurchase is an EventEmitter.
|
|
|
|
Object.setPrototypeOf(InAppPurchase.prototype, EventEmitter.prototype)
|
|
|
|
EventEmitter.call(inAppPurchase)
|
2017-11-30 13:27:33 +00:00
|
|
|
|
2018-04-02 23:55:44 +00:00
|
|
|
module.exports = inAppPurchase
|
|
|
|
} else {
|
|
|
|
module.exports = {
|
|
|
|
purchaseProduct: (productID, quantity, callback) => {
|
|
|
|
throw new Error('The inAppPurchase module can only be used on macOS')
|
|
|
|
},
|
|
|
|
canMakePayments: () => false,
|
|
|
|
getReceiptURL: () => ''
|
|
|
|
}
|
|
|
|
}
|