copay/js/controllers/send.js

618 lines
19 KiB
JavaScript
Raw Normal View History

2014-03-26 05:18:42 -07:00
'use strict';
2014-06-12 13:42:26 -07:00
var bitcore = require('bitcore');
2014-09-05 16:16:06 -07:00
var preconditions = require('preconditions').singleton();
2014-03-26 05:18:42 -07:00
2014-06-03 13:42:36 -07:00
angular.module('copayApp.controllers').controller('SendController',
function($scope, $rootScope, $window, $timeout, $modal, $filter, $location, isMobile, notification, rateService) {
var w = $rootScope.wallet;
preconditions.checkState(w);
preconditions.checkState(w.settings.unitToSatoshi);
$rootScope.title = w.isShared() ? 'Create Transaction Proposal' : 'Send';
$scope.loading = false;
2014-11-19 22:10:43 -08:00
$scope.error = $scope.success = null;
2014-12-01 06:03:35 -08:00
var satToUnit = 1 / w.settings.unitToSatoshi;
$scope.defaultFee = bitcore.TransactionBuilder.FEE_PER_1000B_SAT * satToUnit;
2014-12-01 06:03:35 -08:00
$scope.unitToBtc = w.settings.unitToSatoshi / bitcore.util.COIN;
$scope.unitToSatoshi = w.settings.unitToSatoshi;
$scope.alternativeName = w.settings.alternativeName;
$scope.alternativeIsoCode = w.settings.alternativeIsoCode;
$scope.isRateAvailable = false;
$scope.rateService = rateService;
2014-11-23 10:52:39 -08:00
$scope.showScanner = false;
2014-11-26 03:38:02 -08:00
$scope.myId = w.getMyCopayerId();
$scope.isMobile = isMobile.any();
rateService.whenAvailable(function() {
$scope.isRateAvailable = true;
$scope.$digest();
});
2014-11-29 13:35:48 -08:00
$scope.setAlternativeAmount = function(w, tx, cb) {
rateService.whenAvailable(function() {
_.each(tx.outs, function(out) {
var valueSat = out.valueSat * w.settings.unitToSatoshi;
out.alternativeAmount = $filter('noFractionNumber')(rateService.toFiat(valueSat, $scope.alternativeIsoCode), 2);
2014-12-01 00:24:19 -08:00
out.alternativeIsoCode = $scope.alternativeIsoCode;
2014-11-29 13:35:48 -08:00
});
if (cb) return cb(tx);
});
};
2014-08-28 07:37:39 -07:00
/**
* Setting the two related amounts as properties prevents an infinite
* recursion for watches while preserving the original angular updates
2014-11-30 13:35:30 -08:00
*
2014-08-28 07:37:39 -07:00
*/
2014-08-27 10:20:13 -07:00
Object.defineProperty($scope,
"alternative", {
2014-09-10 11:09:11 -07:00
get: function() {
return this._alternative;
},
set: function(newValue) {
this._alternative = newValue;
if (typeof(newValue) === 'number' && $scope.isRateAvailable) {
this._amount = parseFloat(
2014-12-01 00:24:19 -08:00
(rateService.fromFiat(newValue, $scope.alternativeIsoCode) * satToUnit).toFixed(w.settings.unitDecimals), 10);
2014-09-10 11:09:11 -07:00
} else {
this._amount = 0;
}
},
enumerable: true,
configurable: true
});
2014-08-27 10:20:13 -07:00
Object.defineProperty($scope,
"amount", {
2014-09-10 11:09:11 -07:00
get: function() {
return this._amount;
},
set: function(newValue) {
this._amount = newValue;
if (typeof(newValue) === 'number' && $scope.isRateAvailable) {
2014-10-29 14:34:59 -07:00
2014-09-10 11:09:11 -07:00
this._alternative = parseFloat(
2014-12-01 06:03:35 -08:00
(rateService.toFiat(newValue * w.settings.unitToSatoshi, $scope.alternativeIsoCode)).toFixed(2), 10);
2014-09-10 11:09:11 -07:00
} else {
this._alternative = 0;
}
},
enumerable: true,
configurable: true
});
Object.defineProperty($scope,
"address", {
get: function() {
return this._address;
},
set: function(newValue) {
this._address = newValue;
_onChanged();
},
enumerable: true,
configurable: true
});
2014-11-12 13:32:18 -08:00
2014-11-30 06:08:51 -08:00
$scope.init = function() {
// Empty
};
2014-05-06 13:02:49 -07:00
navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia;
window.URL = window.URL || window.webkitURL || window.mozURL || window.msURL;
if (!window.cordova && !navigator.getUserMedia)
2014-09-10 11:09:11 -07:00
$scope.disableScanner = 1;
2014-09-08 13:07:43 -07:00
$scope._showError = function(err) {
copay.logger.error(err);
var msg = err.toString();
if (msg.match('BIG'))
2014-11-23 10:52:39 -08:00
msg = 'The transaction have too many inputs. Try creating many transactions for smaller amounts'
if (msg.match('totalNeededAmount'))
2014-11-23 10:52:39 -08:00
msg = 'Not enough funds'
var message = 'The transaction' + (w.isShared() ? ' proposal' : '') +
' could not be created: ' + msg;
$scope.error = message;
$scope.loading = false;
};
$scope.submitForm = function(form) {
if (form.$invalid) {
2014-11-03 11:06:17 -08:00
$scope.error = 'Unable to send transaction proposal';
return;
}
2014-04-24 18:43:19 -07:00
$scope.loading = true;
var address = form.address.$modelValue;
2014-12-01 06:03:35 -08:00
var amount = parseInt((form.amount.$modelValue * w.settings.unitToSatoshi).toFixed(0));
2014-06-13 15:45:00 -07:00
var commentText = form.comment.$modelValue;
var payInfo;
if (address.indexOf('bitcoin:') === 0) {
payInfo = (new bitcore.BIP21(address)).data;
} else if (/^https?:\/\//.test(address)) {
payInfo = {
merchant: address
};
}
// If we're setting the domain, ignore the change.
2014-09-10 11:09:11 -07:00
if ($rootScope.merchant && $rootScope.merchant.domain && address === $rootScope.merchant.domain) {
payInfo = {
merchant: $rootScope.merchant.request_url
};
}
2014-11-23 10:52:39 -08:00
w.spend({
toAddress: address,
amountSat: amount,
comment: commentText,
2014-11-22 19:29:50 -08:00
url: (payInfo && payInfo.merchant) ? payInfo.merchant : null,
2014-11-23 10:52:39 -08:00
}, function(err, txid, status) {
2014-11-30 13:40:03 -08:00
$scope.loading = false;
2014-11-23 10:52:39 -08:00
// reset fields
$scope.address = $scope.amount = $scope.commentText = null;
form.address.$pristine = form.amount.$pristine = true;
$rootScope.pendingPayment = null;
$scope.isPayUri = null;
2014-11-23 10:52:39 -08:00
if (err) return $scope._showError(err);
$scope.notifyStatus(status);
});
2014-05-06 13:02:49 -07:00
};
// QR code Scanner
var cameraInput;
var video;
var canvas;
var $video;
var context;
var localMediaStream;
var _scan = function(evt) {
if ($scope.isMobile) {
$scope.scannerLoading = true;
var files = evt.target.files;
if (files.length === 1 && files[0].type.indexOf('image/') === 0) {
var file = files[0];
var reader = new FileReader();
reader.onload = (function(theFile) {
return function(e) {
var mpImg = new MegaPixImage(file);
2014-06-12 13:42:26 -07:00
mpImg.render(canvas, {
maxWidth: 200,
maxHeight: 200,
orientation: 6
});
2014-05-06 13:02:49 -07:00
$timeout(function() {
qrcode.width = canvas.width;
qrcode.height = canvas.height;
qrcode.imagedata = context.getImageData(0, 0, qrcode.width, qrcode.height);
try {
qrcode.decode();
} catch (e) {
2014-06-03 14:38:56 -07:00
// error decoding QR
2014-05-06 13:02:49 -07:00
}
}, 1500);
};
})(file);
// Read in the file as a data URL
reader.readAsDataURL(file);
}
} else {
if (localMediaStream) {
context.drawImage(video, 0, 0, 300, 225);
try {
qrcode.decode();
2014-06-12 13:42:26 -07:00
} catch (e) {
2014-05-06 13:02:49 -07:00
//qrcodeError(e);
}
}
$timeout(_scan, 500);
}
};
var _successCallback = function(stream) {
video.src = (window.URL && window.URL.createObjectURL(stream)) || stream;
localMediaStream = stream;
video.play();
$timeout(_scan, 1000);
};
var _scanStop = function() {
$scope.scannerLoading = false;
$scope.showScanner = false;
if (!$scope.isMobile) {
if (localMediaStream && localMediaStream.stop) localMediaStream.stop();
localMediaStream = null;
video.src = '';
}
};
var _videoError = function(err) {
_scanStop();
};
qrcode.callback = function(data) {
_scanStop();
2014-05-07 07:21:30 -07:00
$scope.$apply(function() {
$scope.sendForm.address.$setViewValue(data);
2014-11-03 10:13:53 -08:00
$scope.sendForm.address.$render();
2014-05-07 07:21:30 -07:00
});
2014-05-06 13:02:49 -07:00
};
$scope.cancelScanner = function() {
_scanStop();
};
$scope.openScanner = function() {
if (window.cordova) return $scope.scannerIntent();
2014-05-06 13:02:49 -07:00
$scope.showScanner = true;
// Wait a moment until the canvas shows
$timeout(function() {
canvas = document.getElementById('qr-canvas');
context = canvas.getContext('2d');
if ($scope.isMobile) {
cameraInput = document.getElementById('qrcode-camera');
cameraInput.addEventListener('change', _scan, false);
} else {
video = document.getElementById('qrcode-scanner-video');
$video = angular.element(video);
canvas.width = 300;
canvas.height = 225;
context.clearRect(0, 0, 300, 225);
2014-04-24 18:43:19 -07:00
2014-06-12 13:42:26 -07:00
navigator.getUserMedia({
video: true
}, _successCallback, _videoError);
2014-05-06 13:02:49 -07:00
}
}, 500);
2014-04-24 18:43:19 -07:00
};
2014-06-17 21:00:32 -07:00
2014-07-25 07:08:29 -07:00
$scope.scannerIntent = function() {
cordova.plugins.barcodeScanner.scan(
function onSuccess(result) {
if (result.cancelled) return;
$timeout(function() {
var data = result.text;
$scope.$apply(function() {
$scope.sendForm.address.$setViewValue(result.text);
$scope.sendForm.address.$render();
});
}, 1000);
2014-07-25 07:08:29 -07:00
},
function onError(error) {
alert('Scanning error');
});
}
2014-11-12 13:32:18 -08:00
$scope.setTopAmount = function() {
$scope.amount = $rootScope.topAmount;
2014-06-19 11:55:04 -07:00
};
2014-11-23 10:52:39 -08:00
$scope.notifyStatus = function(status) {
if (status == copay.Wallet.TX_BROADCASTED)
notification.success('Success', 'Transaction broadcasted!');
else if (status == copay.Wallet.TX_PROPOSAL_SENT)
notification.success('Success', 'Transaction proposal created');
else if (status == copay.Wallet.TX_SIGNED)
notification.success('Success', 'Transaction proposal was signed');
2014-11-27 12:45:10 -08:00
else if (status == copay.Wallet.TX_SIGNED_AND_BROADCASTED)
notification.success('Success', 'Transaction signed and broadcasted!');
2014-11-23 10:52:39 -08:00
else
notification.error('Error', 'Unknown error occured');
};
$scope.send = function(ntxid, cb) {
2014-11-19 22:10:43 -08:00
$scope.error = $scope.success = null;
$scope.loading = true;
$rootScope.txAlertCount = 0;
2014-11-27 12:45:10 -08:00
w.issueTx(ntxid, function(err, txid, status) {
2014-11-23 10:52:39 -08:00
$scope.notifyStatus(status);
if (cb) return cb();
});
};
$scope.clearMerchant = function(callback) {
// TODO: Find a better way of detecting
// whether we're in the Send scope or not.
2014-11-19 22:10:43 -08:00
if (!$scope.sendForm || !$scope.sendForm.address) {
delete $rootScope.merchant;
2014-10-31 12:10:11 -07:00
$rootScope.merchantError = false;
$scope.isPayUri = false;
if (callback) callback();
return;
}
2014-11-19 22:10:43 -08:00
var val = $scope.sendForm.address.$viewValue || '';
var uri;
// If we're setting the domain, ignore the change.
if ($rootScope.merchant && $rootScope.merchant.domain && val === $rootScope.merchant.domain) {
uri = {
merchant: $rootScope.merchant.request_url
};
}
if (val.indexOf('bitcoin:') === 0) {
uri = new bitcore.BIP21(val).data;
} else if (/^https?:\/\//.test(val)) {
uri = {
merchant: val
};
}
if (!uri || !uri.merchant) {
delete $rootScope.merchant;
2014-11-19 22:10:43 -08:00
$scope.sendForm.amount.$setViewValue('');
$scope.sendForm.amount.$render();
if (callback) callback();
if ($rootScope.$$phase !== '$apply' && $rootScope.$$phase !== '$digest') {
$rootScope.$apply();
}
}
};
$scope.cancelSend = function(form) {
delete $rootScope.merchant;
$rootScope.merchantError = false;
$scope.isPayUri = false;
form.address.$setViewValue('');
form.address.$render();
form.amount.$setViewValue('');
form.amount.$render();
form.comment.$setViewValue('');
form.comment.$render();
form.$setPristine();
};
var _onChanged = function(pp) {
var value;
if (pp) {
$scope.isPayUri = true;
var amount = (pp.data && pp.data.amount) ? pp.data.amount * 100000000 * satToUnit : 0;
$scope.commentText = pp.data.message;
if (pp.data.merchant) {
value = 'bitcoin:' + pp.address.data + '?amount=' + amount + '&r=' + pp.data.r;
}
else {
value = pp.address + '';
$timeout(function() {
$scope.amount = amount;
}, 1000);
$scope.address = value;
}
}
value = value || $scope.address || '';
2014-08-13 15:54:07 -07:00
var uri;
2014-11-19 22:10:43 -08:00
$scope.error = $scope.success = null;
// If we're setting the domain, ignore the change.
2014-09-10 11:09:11 -07:00
if ($rootScope.merchant && $rootScope.merchant.domain && value === $rootScope.merchant.domain) {
return;
}
2014-08-19 10:21:40 -07:00
if (value.indexOf('bitcoin:') === 0) {
uri = new bitcore.BIP21(value);
2014-08-19 10:21:40 -07:00
} else if (/^https?:\/\//.test(value)) {
2014-08-13 15:54:07 -07:00
uri = {
data : {
merchant: value
}
2014-08-13 15:54:07 -07:00
};
}
2014-08-19 10:21:40 -07:00
if (!uri || !uri.data.merchant) {
if (uri && uri.address) {
var amount = (uri.data && uri.data.amount) ? uri.data.amount * 100000000 * satToUnit : 0;
var address = uri.address.data;
if (amount && address) {
$scope.isPayUri = true;
}
$timeout(function() {
$scope.amount = amount;
}, 1000);
$scope.commentText = uri.data.message;
$scope.address = address;
}
2014-08-13 15:54:07 -07:00
return;
}
2014-08-19 10:21:40 -07:00
var apply = function() {
if ($rootScope.$$phase !== '$apply' && $rootScope.$$phase !== '$digest') {
$rootScope.$apply();
}
};
$scope.fetchingURL = uri.data.merchant;
2014-11-19 22:10:43 -08:00
$scope.loading = true;
apply();
var timeout = setTimeout(function() {
timeout = null;
2014-11-19 22:10:43 -08:00
$scope.fetchingURL = null;
$scope.loading = false;
$scope.sendForm.address.$setViewValue('');
$scope.sendForm.address.$render();
$scope.sendForm.address.$isValid = false;
$scope.error = 'Payment server timed out';
apply();
}, 10 * 1000);
// Payment Protocol URI (BIP-72)
2014-11-23 10:52:39 -08:00
$scope.wallet.fetchPaymentRequest({
url: uri.data.merchant
2014-11-23 10:52:39 -08:00
}, function(err, merchantData) {
if (!timeout) return;
clearTimeout(timeout);
2014-11-19 22:10:43 -08:00
$scope.loading = false;
$scope.fetchingURL = null;
apply();
var balance = $rootScope.availableBalance;
2014-12-01 06:03:35 -08:00
var available = +(balance * w.settings.unitToSatoshi).toFixed(0);
if (merchantData && available < +merchantData.total) {
2014-10-31 12:10:11 -07:00
err = new Error('Insufficient funds.');
err.amount = merchantData.total;
}
if (err) {
if (err.amount) {
2014-12-01 06:03:35 -08:00
$scope.sendForm.amount.$setViewValue(+err.amount / w.settings.unitToSatoshi);
2014-11-19 22:10:43 -08:00
$scope.sendForm.amount.$render();
$scope.sendForm.amount.$isValid = false;
$scope.notEnoughAmount = true;
$rootScope.merchantError = true;
2014-11-19 22:10:43 -08:00
var lastAddr = $scope.sendForm.address.$viewValue;
var unregister = $scope.$watch('address', function() {
if ($scope.sendForm.address.$viewValue !== lastAddr) {
delete $rootScope.merchantError;
$scope.isPayUri = false;
2014-11-19 22:10:43 -08:00
$scope.sendForm.amount.$setViewValue('');
$scope.sendForm.amount.$render();
unregister();
apply();
}
});
} else {
2014-11-19 22:10:43 -08:00
$scope.sendForm.address.$setViewValue('');
$scope.sendForm.address.$render();
}
2014-11-19 22:10:43 -08:00
$scope.sendForm.address.$isValid = false;
copay.logger.error(err);
2014-11-19 22:10:43 -08:00
$scope.error = 'Could not fetch payment request';
apply();
return;
}
var url = merchantData.request_url;
var domain = /^(?:https?)?:\/\/([^\/:]+).*$/.exec(url)[1];
2014-12-01 06:03:35 -08:00
merchantData.unitTotal = (+merchantData.total / w.settings.unitToSatoshi) + '';
merchantData.expiration = new Date(
2014-11-19 22:10:43 -08:00
merchantData.pr.pd.expires * 1000);
merchantData.domain = domain;
$rootScope.merchant = merchantData;
2014-11-19 22:10:43 -08:00
$scope.sendForm.address.$setViewValue(domain);
$scope.sendForm.address.$render();
$scope.sendForm.address.$isValid = true;
2014-11-19 22:10:43 -08:00
$scope.sendForm.amount.$setViewValue(merchantData.unitTotal);
$scope.sendForm.amount.$render();
$scope.sendForm.amount.$isValid = true;
// If the address changes to a non-payment-protocol one,
// delete the `merchant` property from the scope.
var unregister = $rootScope.$watch(function() {
$scope.clearMerchant(unregister);
});
apply();
});
};
if ($rootScope.pendingPayment) {
var value;
var pp = $rootScope.pendingPayment;
_onChanged(pp);
}
$scope.openAddressBook = function() {
var modalInstance = $modal.open({
templateUrl: 'views/modals/address-book.html',
windowClass: 'large',
controller: function($scope, $modalInstance) {
$scope.showForm = null;
$scope.addressBook = w.addressBook;
$scope.hasEntry = function() {
return _.keys($scope.addressBook).length > 0 ? true : false;
};
$scope.toggleAddressBookEntry = function(key) {
w.toggleAddressBookEntry(key);
};
$scope.copyToSend = function(addr) {
$modalInstance.close(addr);
};
$scope.cancel = function() {
$scope.error = $scope.success = null;
$scope.toggleForm();
};
$scope.toggleForm = function() {
$scope.showForm = !$scope.showForm;
};
$scope.submitAddressBook = function(form) {
if (form.$invalid) {
return;
}
$timeout(function() {
var errorMsg;
var entry = {
"address": form.newaddress.$modelValue,
"label": form.newlabel.$modelValue
};
try {
w.setAddressBook(entry.address, entry.label);
} catch (e) {
console.log('[send.js:583]',e); //TODO
errorMsg = e.message;
}
if (errorMsg) {
$scope.error = errorMsg;
} else {
$scope.toggleForm();
$scope.success = 'New entry has been created';
}
$rootScope.$digest();
}, 500);
$timeout(function() {
$scope.error = $scope.success = null;
}, 5000);
return;
};
$scope.close = function() {
$modalInstance.dismiss('cancel');
};
},
});
modalInstance.result.then(function(addr) {
$scope.address = addr;
});
};
2014-09-03 12:24:25 -07:00
});