Merge branch 'develop' of https://github.com/Connoropolous/metamaps_gen002 into phantom
This commit is contained in:
commit
d9c01db056
1 changed files with 123 additions and 0 deletions
123
app/assets/javascripts/lib/bitcoinsrc.js
Normal file
123
app/assets/javascripts/lib/bitcoinsrc.js
Normal file
|
@ -0,0 +1,123 @@
|
|||
//HEAD SCRIPT FOR BITCOIN DONATE
|
||||
$(document).ready(function() {
|
||||
var root = "https://blockchain.info/";
|
||||
var buttons = $('.blockchain-btn');
|
||||
|
||||
buttons.find('.blockchain').hide();
|
||||
buttons.find('.stage-begin').trigger('show').show();
|
||||
|
||||
buttons.each(function(index) {
|
||||
var _button = $(this);
|
||||
|
||||
(function() {
|
||||
var button = _button;
|
||||
|
||||
button.click(function() {
|
||||
var receivers_address = $(this).data('address');
|
||||
var shared = $(this).data('shared');
|
||||
var test = $(this).data('test');
|
||||
|
||||
if (!shared) shared = false;
|
||||
|
||||
var callback_url = $(this).data('callback');
|
||||
|
||||
if (!callback_url) callback_url = '';
|
||||
|
||||
button.find('.blockchain').hide();
|
||||
|
||||
button.find('.stage-loading').trigger('show').show();
|
||||
|
||||
$.ajax({
|
||||
type: "GET",
|
||||
dataType: 'json',
|
||||
url: root + 'api/receive',
|
||||
data : {method : 'create', address : encodeURIComponent(receivers_address), shared:shared, callback:callback_url},
|
||||
success: function(response) {
|
||||
button.find('.qr-code').empty();
|
||||
|
||||
button.find('.blockchain').hide();
|
||||
|
||||
if (!response || !response.input_address) {
|
||||
button.find('.stage-error').trigger('show').show().html(button.find('.stage-error').html().replace('[[error]]', 'Unknown Error'));
|
||||
return;
|
||||
}
|
||||
|
||||
function checkBalance() {
|
||||
$.ajax({
|
||||
type: "GET",
|
||||
url: root + 'q/getreceivedbyaddress/'+response.input_address,
|
||||
data : {format : 'plain'},
|
||||
success: function(response) {
|
||||
if (!response) return;
|
||||
|
||||
var value = parseInt(response);
|
||||
|
||||
if (value > 0 || test) {
|
||||
button.find('.blockchain').hide();
|
||||
button.find('.stage-paid').trigger('show').show().html(button.find('.stage-paid').html().replace('[[value]]', value / 100000000));
|
||||
} else {
|
||||
setTimeout(checkBalance, 5000);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
try {
|
||||
ws = new WebSocket('ws://ws.blockchain.info/inv');
|
||||
|
||||
if (!ws) return;
|
||||
|
||||
ws.onmessage = function(e) {
|
||||
try {
|
||||
var obj = $.parseJSON(e.data);
|
||||
|
||||
if (obj.op == 'utx') {
|
||||
var tx = obj.x;
|
||||
|
||||
var result = 0;
|
||||
for (var i = 0; i < tx.out.length; i++) {
|
||||
var output = tx.out[i];
|
||||
|
||||
if (output.addr == response.input_address) {
|
||||
result += parseInt(output.value);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
button.find('.blockchain').hide();
|
||||
button.find('.stage-paid').trigger('show').show().html(button.find('.stage-paid').html().replace('[[value]]', result / 100000000));
|
||||
|
||||
ws.close();
|
||||
} catch(e) {
|
||||
console.log(e);
|
||||
|
||||
console.log(e.data);
|
||||
}
|
||||
};
|
||||
|
||||
ws.onopen = function() {
|
||||
ws.send('{"op":"addr_sub", "addr":"'+ response.input_address +'"}');
|
||||
};
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
|
||||
button.find('.stage-ready').trigger('show').show().html(button.find('.stage-ready').html().replace('[[address]]', response.input_address));
|
||||
|
||||
button.find('.qr-code').html('<img style="margin:5px" src="'+root+'qr?data='+response.input_address+'&size=125">');
|
||||
|
||||
button.unbind();
|
||||
|
||||
///Check for incoming payment
|
||||
setTimeout(checkBalance, 5000);
|
||||
},
|
||||
error : function(e) {
|
||||
button.find('.blockchain').hide();
|
||||
|
||||
button.find('.stage-error').show().trigger('show').html(button.find('.stage-error').html().replace('[[error]]', e.responseText));
|
||||
}
|
||||
});
|
||||
});
|
||||
})();
|
||||
});
|
||||
});
|
Loading…
Reference in a new issue