/*! * payment.js - bip70 payment for bcoin * Copyright (c) 2016-2017, Christopher Jeffrey (MIT License). * https://github.com/bcoin-org/bcoin */ 'use strict'; var assert = require('assert'); var Output = require('../primitives/output'); var TX = require('../primitives/tx'); var Script = require('../script/script'); var protobuf = require('../utils/protobuf'); var PaymentDetails = require('./paymentdetails'); var ProtoReader = protobuf.ProtoReader; var ProtoWriter = protobuf.ProtoWriter; /** * Represents a BIP70 payment. * @alias module:bip70.Payment * @constructor * @param {Object?} options * @property {Buffer} merchantData * @property {TX[]} transactions * @property {Output[]} refundTo * @property {String|null} memo */ function Payment(options) { if (!(this instanceof Payment)) return new Payment(options); this.merchantData = null; this.transactions = []; this.refundTo = []; this.memo = null; if (options) this.fromOptions(options); } /** * Inject properties from options. * @private * @param {Object} options * @returns {Payment} */ Payment.prototype.fromOptions = function fromOptions(options) { var i, tx, output; if (options.merchantData) this.setData(options.merchantData); if (options.transactions) { assert(Array.isArray(options.transactions)); for (i = 0; i < options.transactions.length; i++) { tx = new TX(options.transactions[i]); this.transactions.push(tx); } } if (options.refundTo) { assert(Array.isArray(options.refundTo)); for (i = 0; i < options.refundTo.length; i++) { output = new Output(options.refundTo[i]); this.refundTo.push(output); } } if (options.memo != null) { assert(typeof options.memo === 'string'); this.memo = options.memo; } return this; }; /** * Instantiate payment from options. * @param {Object} options * @returns {Payment} */ Payment.fromOptions = function fromOptions(options) { return new Payment().fromOptions(options); }; /** * Set payment details. * @method * @alias Payment#setData * @param {Object} data * @param {String?} enc */ Payment.prototype.setData = PaymentDetails.prototype.setData; /** * Get payment details. * @method * @alias Payment#getData * @param {String?} enc * @returns {String|Object|null} */ Payment.prototype.getData = PaymentDetails.prototype.getData; /** * Inject properties from serialized data. * @private * @param {Buffer} data * @returns {Payment} */ Payment.prototype.fromRaw = function fromRaw(data) { var br = new ProtoReader(data); var tx, op, output; this.merchantData = br.readFieldBytes(1, true); while (br.nextTag() === 2) { tx = TX.fromRaw(br.readFieldBytes(2)); this.transactions.push(tx); } while (br.nextTag() === 3) { op = new ProtoReader(br.readFieldBytes(3)); output = new Output(); output.value = op.readFieldU64(1, true); output.script = Script.fromRaw(op.readFieldBytes(2, true)); this.refundTo.push(output); } this.memo = br.readFieldString(4, true); return this; }; /** * Instantiate payment from serialized data. * @param {Buffer} data * @returns {Payment} */ Payment.fromRaw = function fromRaw(data, enc) { if (typeof data === 'string') data = new Buffer(data, enc); return new Payment().fromRaw(data); }; /** * Serialize the payment (protobuf). * @returns {Buffer} */ Payment.prototype.toRaw = function toRaw() { var bw = new ProtoWriter(); var i, tx, op, output; if (this.merchantData) bw.writeFieldBytes(1, this.merchantData); for (i = 0; i < this.transactions.length; i++) { tx = this.transactions[i]; bw.writeFieldBytes(2, tx.toRaw()); } for (i = 0; i < this.refundTo.length; i++) { op = new ProtoWriter(); output = this.refundTo[i]; op.writeFieldU64(1, output.value); op.writeFieldBytes(2, output.script.toRaw()); bw.writeFieldBytes(3, op.render()); } if (this.memo != null) bw.writeFieldString(4, this.memo); return bw.render(); }; /* * Expose */ module.exports = Payment;