112 lines
3.2 KiB
JavaScript
112 lines
3.2 KiB
JavaScript
'use strict';
|
|
|
|
angular.module('copayApp.services').factory('incomingData', function($log, $ionicModal, $state, $window, $timeout, bitcore) {
|
|
|
|
var root = {};
|
|
|
|
root.redir = function(data) {
|
|
$log.debug('Processing incoming data:' +data);
|
|
|
|
function sanitizeUri(data) {
|
|
// Fixes when a region uses comma to separate decimals
|
|
var regex = /[\?\&]amount=(\d+([\,\.]\d+)?)/i;
|
|
var match = regex.exec(data);
|
|
if (!match || match.length === 0) {
|
|
return data;
|
|
}
|
|
var value = match[0].replace(',', '.');
|
|
var newUri = data.replace(regex, value);
|
|
|
|
// mobile devices, uris like copay://glidera
|
|
newUri.replace('://', ':');
|
|
|
|
return newUri;
|
|
};
|
|
|
|
// data extensions for Payment Protocol with non-backwards-compatible request
|
|
if ((/^bitcoin:\?r=[\w+]/).exec(data)) {
|
|
data = decodeURIComponent(data.replace('bitcoin:?r=', ''));
|
|
$state.go('tabs.send');
|
|
$timeout(function() {
|
|
$state.transitionTo('tabs.send.confirm', {paypro: data});
|
|
}, 100);
|
|
return true;
|
|
}
|
|
|
|
|
|
data = sanitizeUri(data);
|
|
|
|
// BIP21
|
|
if (bitcore.URI.isValid(data)) {
|
|
var parsed = new bitcore.URI(data);
|
|
|
|
var addr = parsed.address ? parsed.address.toString() : '';
|
|
var message = parsed.message;
|
|
|
|
var amount = parsed.amount ? parsed.amount : '';
|
|
|
|
$state.go('tabs.send');
|
|
$timeout(function() {
|
|
if (parsed.r) {
|
|
$state.transitionTo('tabs.send.confirm', {paypro: parsed.r});
|
|
} else {
|
|
if (amount) {
|
|
$state.transitionTo('tabs.send.confirm', {toAmount: amount, toAddress: addr, description:message});
|
|
} else {
|
|
$state.transitionTo('tabs.send.amount', {toAddress: addr});
|
|
}
|
|
}
|
|
}, 100);
|
|
return true;
|
|
|
|
// Plain URL
|
|
} else if (/^https?:\/\//.test(data)) {
|
|
$state.go('tabs.send');
|
|
$timeout(function() {
|
|
$state.transitionTo('tabs.send.confirm', {paypro: data});
|
|
}, 100);
|
|
return true;
|
|
|
|
// Plain Address
|
|
} else if (bitcore.Address.isValid(data, 'livenet')) {
|
|
$state.go('tabs.send');
|
|
$timeout(function() {
|
|
$state.transitionTo('tabs.send.amount', {toAddress: data});
|
|
}, 100);
|
|
return true;
|
|
} else if (bitcore.Address.isValid(data, 'testnet')) {
|
|
$state.go('tabs.send');
|
|
$timeout(function() {
|
|
$state.transitionTo('tabs.send.amount', {toAddress: data});
|
|
}, 100);
|
|
return true;
|
|
|
|
// Protocol
|
|
} else if (data.indexOf($window.appConfig.name + '://glidera')==0) {
|
|
return $state.go('uriglidera', {url: data});
|
|
} else if (data.indexOf($window.appConfig.name + '://coinbase')==0) {
|
|
return $state.go('uricoinbase', {url: data});
|
|
|
|
// Join
|
|
} else if (data.match(/^copay:[0-9A-HJ-NP-Za-km-z]{70,80}$/)) {
|
|
$state.go('tabs.home');
|
|
$timeout(function() {
|
|
$state.transitionTo('tabs.add.join', {url: data});
|
|
}, 100);
|
|
return true;
|
|
|
|
// Old join
|
|
} else if (data.match(/^[0-9A-HJ-NP-Za-km-z]{70,80}$/)) {
|
|
$state.go('tabs.home');
|
|
$timeout(function() {
|
|
$state.transitionTo('tabs.add.join', {url: data});
|
|
}, 100);
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
return root;
|
|
});
|