-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
116 lines (83 loc) · 3.64 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/paho-mqtt/1.0.1/mqttws31.js" type="text/javascript"></script>
</head>
<body>
<div id="directpay">
</div>
</body>
<script>
$('<button id="directpay_btn" style="background-color: darkblue;color: white;width: 200px;height: 50px">DirectPay</button>').appendTo('#directpay')
$(' <img src="" id="qr">'+
'<div id="success"></div>'+
'<div id="transactionId"></div>'+
'<div id="amount"></div>'+
'<div id="merchantName"></div>').appendTo('#directpay')
$( "#directpay_btn" ).click(function() {
PayWithDirectPay();
});
function PayWithDirectPay() {
//assign url amount
var amount = '2100.00';
var merchantId = '819934bd-3409-442a-9fed-ccfa8e77ba93';
//assign reference number
var referenceNo = '123456';
var directpayUrlPayemnt = 'http://13.58.144.197/default/web/purchase/getqr?amount='+amount+'&id='+referenceNo+'&merchantId='+merchantId;
// Create a client instance
//client = new Paho.MQTT.Client(location.hostname, Number(location.port), "clientId");
client = new Paho.MQTT.Client('13.58.144.197',9001, "clientId"+ new Date().getTime());
// set callback handlers
client.onConnectionLost = onConnectionLost;
client.onMessageArrived = onMessageArrived;
// connect the client
client.connect({onSuccess:onConnect});
// called when the client connects
function onConnect() {
// Once a connection has been made, make a subscription and send a message.
console.log("onConnect");
var topic = "{{ merchantId }}";
client.subscribe("Supun");
//message = new Paho.MQTT.Message("Hello");
//message.destinationName = "Supun";
//client.send(message);
}
// called when the client loses its connection
function onConnectionLost(responseObject) {
if (responseObject.errorCode !== 0) {
console.log("onConnectionLost:"+responseObject.errorMessage);
}
}
// called when a message arrives
function onMessageArrived(message) {
var msg = JSON.parse( message.payloadString);
console.log(msg);
if(msg['success'] == true){
console.log(msg);
var url = '{{ rUrl }}';
console.log(msg);
//window.location.href='http://13.58.144.197/default/web/purchase/success?id='+msg['id']+'&name='+msg['name']+'&amount='+msg['amount']+'&rUrl='+encodeURIComponent(url);
console.log("onMessageArrived:"+message.payloadString);
$('#transactionId').text("Receipt No: "+msg['id']);
$('#amount').text("Payment : "+msg['amount'])
$('#merchantName').text("Merchant Name: "+msg['name'])
$('#qr').remove()
}
}
var xmlHttp = new XMLHttpRequest();
xmlHttp.onreadystatechange = function () {
if (xmlHttp.readyState == 4 && xmlHttp.status == 200) {
//document.getElementById("qr").innerHTML = (xmlHttp.responseText)
document.getElementById("qr").src = ( xmlHttp.responseText)
$('#directpay_btn').remove()
}
}
xmlHttp.open("GET",directpayUrlPayemnt , true); // true for asynchronous
xmlHttp.send(null)
}
//style
</script>
</html>