paypro
This commit is contained in:
parent
6743243bab
commit
ba3c834ea5
3 changed files with 62 additions and 11 deletions
|
|
@ -58,6 +58,8 @@ angular.module('copayApp.controllers').controller('confirmController', function(
|
||||||
|
|
||||||
$scope.toAddress = $stateParams.toAddress;
|
$scope.toAddress = $stateParams.toAddress;
|
||||||
$scope.toName = $stateParams.toName;
|
$scope.toName = $stateParams.toName;
|
||||||
|
$scope.description = $stateParams.description;
|
||||||
|
$scope.paypro = $stateParams.paypro;
|
||||||
|
|
||||||
var network = (new bitcore.Address($scope.toAddress)).network.name;
|
var network = (new bitcore.Address($scope.toAddress)).network.name;
|
||||||
$scope.network = network;
|
$scope.network = network;
|
||||||
|
|
@ -136,7 +138,6 @@ angular.module('copayApp.controllers').controller('confirmController', function(
|
||||||
var currentSpendUnconfirmed = config.spendUnconfirmed;
|
var currentSpendUnconfirmed = config.spendUnconfirmed;
|
||||||
var outputs = [];
|
var outputs = [];
|
||||||
|
|
||||||
// TODO
|
|
||||||
var paypro = $scope.paypro;
|
var paypro = $scope.paypro;
|
||||||
|
|
||||||
// ToDo: use a credential's (or fc's) function for this
|
// ToDo: use a credential's (or fc's) function for this
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,18 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
angular.module('copayApp.controllers').controller('tabSendController', function($scope, $ionicModal, $log, $timeout, addressbookService, profileService, lodash, $state, walletService, bitcore) {
|
angular.module('copayApp.controllers').controller('tabSendController', function($scope, $ionicModal, $log, $timeout, addressbookService, profileService, lodash, $state, walletService, bitcore, platformInfo, ongoingProcess) {
|
||||||
|
|
||||||
var originalList;
|
var originalList;
|
||||||
|
var isChromeApp = platformInfo.isChromeApp;
|
||||||
|
|
||||||
|
|
||||||
|
// An alert dialog
|
||||||
|
var showAlert = function(title, msg) {
|
||||||
|
$log.warn(title + ": " + msg);
|
||||||
|
var alertPopup = $ionicPopup.alert({
|
||||||
|
title: title,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
$scope.init = function() {
|
$scope.init = function() {
|
||||||
originalList = [];
|
originalList = [];
|
||||||
|
|
@ -42,6 +52,47 @@ angular.module('copayApp.controllers').controller('tabSendController', function(
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
var setFromPayPro = function(uri, cb) {
|
||||||
|
if (!cb) cb = function() {};
|
||||||
|
|
||||||
|
var wallet = profileService.getWallets({onlyComplete: true})[0];
|
||||||
|
if (!wallet) return cb();
|
||||||
|
|
||||||
|
if (isChromeApp) {
|
||||||
|
showAlert(gettext('Payment Protocol not supported on Chrome App'));
|
||||||
|
return cb(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
$log.debug('Fetch PayPro Request...', uri);
|
||||||
|
|
||||||
|
ongoingProcess.set('fetchingPayPro', true);
|
||||||
|
wallet.fetchPayPro({
|
||||||
|
payProUrl: uri,
|
||||||
|
}, function(err, paypro) {
|
||||||
|
ongoingProcess.set('fetchingPayPro', false);
|
||||||
|
|
||||||
|
if (err) {
|
||||||
|
$log.warn('Could not fetch payment request:', err);
|
||||||
|
var msg = err.toString();
|
||||||
|
if (msg.match('HTTP')) {
|
||||||
|
msg = gettext('Could not fetch payment information');
|
||||||
|
}
|
||||||
|
showAlert(msg);
|
||||||
|
return cb(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!paypro.verified) {
|
||||||
|
$log.warn('Failed to verify payment protocol signatures');
|
||||||
|
showAlert(gettext('Payment Protocol Invalid'));
|
||||||
|
return cb(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
$state.go('send.confirm', {toAmount: paypro.amount, toAddress: paypro.toAddress, message:paypro.memo, paypro: uri})
|
||||||
|
return cb();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
var setFromUri = function(uri) {
|
var setFromUri = function(uri) {
|
||||||
|
|
||||||
function sanitizeUri(uri) {
|
function sanitizeUri(uri) {
|
||||||
|
|
@ -56,8 +107,6 @@ angular.module('copayApp.controllers').controller('tabSendController', function(
|
||||||
return newUri;
|
return newUri;
|
||||||
};
|
};
|
||||||
|
|
||||||
var satToUnit = 1 / this.unitToSatoshi;
|
|
||||||
|
|
||||||
// URI extensions for Payment Protocol with non-backwards-compatible request
|
// URI extensions for Payment Protocol with non-backwards-compatible request
|
||||||
if ((/^bitcoin:\?r=[\w+]/).exec(uri)) {
|
if ((/^bitcoin:\?r=[\w+]/).exec(uri)) {
|
||||||
uri = decodeURIComponent(uri.replace('bitcoin:?r=', ''));
|
uri = decodeURIComponent(uri.replace('bitcoin:?r=', ''));
|
||||||
|
|
@ -77,24 +126,25 @@ angular.module('copayApp.controllers').controller('tabSendController', function(
|
||||||
var addr = parsed.address ? parsed.address.toString() : '';
|
var addr = parsed.address ? parsed.address.toString() : '';
|
||||||
var message = parsed.message;
|
var message = parsed.message;
|
||||||
|
|
||||||
var amount = parsed.amount ?
|
var amount = parsed.amount ? parsed.amount : '';
|
||||||
(parsed.amount.toFixed(0) * satToUnit).toFixed(this.unitDecimals) : 0;
|
|
||||||
|
|
||||||
if (parsed.r) {
|
if (parsed.r) {
|
||||||
setFromPayPro(parsed.r, function(err) {
|
setFromPayPro(parsed.r, function(err) {
|
||||||
if (err && addr && amount) {
|
if (err && addr && amount) {
|
||||||
// TODO
|
// TODO
|
||||||
$state.go('confirm', {toAmount: amount, toAddress: addr, message:message})
|
$state.go('send.confirm', {toAmount: amount, toAddress: addr, message:message})
|
||||||
return addr;
|
return addr;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
//
|
if (amount) {
|
||||||
$state.go('confirm', {toAmount: amount, toAddress: addr, message:message})
|
$state.go('send.confirm', {toAmount: amount, toAddress: addr, message:message})
|
||||||
|
} else {
|
||||||
|
$state.go('send.amount', {toAddress: addr})
|
||||||
|
}
|
||||||
return addr;
|
return addr;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -353,7 +353,7 @@ angular.module('copayApp').config(function(historicLogProvider, $provide, $logPr
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.state('send.confirm', {
|
.state('send.confirm', {
|
||||||
url: '/confirm/:toAddress/:toName/:toAmount/:message',
|
url: '/confirm/:toAddress/:toName/:toAmount/:description/:paypro',
|
||||||
views: {
|
views: {
|
||||||
'send': {
|
'send': {
|
||||||
templateUrl: 'views/confirm.html'
|
templateUrl: 'views/confirm.html'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue