-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
240 lines (170 loc) · 5.78 KB
/
app.js
File metadata and controls
240 lines (170 loc) · 5.78 KB
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
const https = require('https');
const crypto = require('crypto');
const express = require('express');
const axios = require('axios');
const qr = require('qr-image');
const app = express();
// let appPort = 8080;
let appPort = process.env.PORT || 1710;
app.use(express.static('public'));
app.get("/hello", (req, res) => {
// res.send('Hello World of Node.js by Gamechai')
var respObj = {
status: true,
data: {
text: "Hello World of Node.js by Gamechai"
}
}
res.json(respObj);
});
app.get('/hello/:name', (req, res) => {
res.send("Hello "+req.params.name+", Nice to meet you")
})
app.get('/qr/:input', function(req, res) {
var code = qr.image( req.params.input, { type: 'svg' });
res.type('svg');
code.pipe(res);
});
app.get('/bot/exchange-rate', (req, res) => {
console.log("-----------------------------------------------------------------------------------");
res.send("/bot/exchange-rate")
// API of Bank of Thailand
const clientId = "509b1f6f-c93a-45ea-b068-84009ebdd108";
const periodStart = "2022-03-21";
const periodEnd = "2022-03-21";
const currency = "JPY";
const pathUri = "/bot/public/Stat-ExchangeRate/v2/DAILY_AVG_EXG_RATE/?start_period="+periodStart+"&end_period="+periodEnd+"¤cy="+currency;
var result = "";
process.stdout.write("@ Client ID = "+ clientId+"\r\n");
// console.log("Client ID = "+ clientId);
process.stdout.write("@ Path = "+ pathUri+"\r\n");
const options = {
hostname: 'apigw1.bot.or.th',
port: 443,
path: pathUri,
method: 'GET',
headers: {
'Content-Type': 'application/json',
'X-IBM-Client-Id': clientId
}
}
console.log(">>> req = https.request(");
// res.on('data', function (chunk) {
// con
req = https.request(options, res => {
console.log(">>> in req = https.request(");
console.log(`@ statusCode: ${res.statusCode}`);
// let buf = ''
res.on('data', (d) => {
result += d.toString;
process.stdout.write("\r\nd >>>>>> "+d);
// console.log(body);
// myJSON = JSON.stringify(d);
// var myJSON = JSON.parse(d);
// process.stdout.write("\n\r >>>>>> "+myJSON.result.data.data_detail);
// process.stdout.write(d.result)
//
// process.stdout.write('${res.result.data}')
})
console.log("!!! result = "+result);
// const jsonResp = res.json()
// console.log( jsonResp );
// console.log(`*** Res Data : \r\n${res.data_detail}`);
})
let buf = ''
req.on('data', (chunk) => {
buf += chunk
})
req.on('end', () => {
console.log(`Data is : ${buf}`)
res.end('Request Accepted \n')
})
req.on('error', error => {
console.error(error);
})
console.log(">>> req.end()");
req.end();
console.log(">>> result = "+result.toString);
// res.send( result )
})
// ====================================================
app.get('/scb/qr-payment', (req, res) => {
const appKey = "l7da6c470225294a60bcf2b36ed859b5c2";
const appSecret = "5d927c4cbf25451f8a9b92a7e6a0a52d";
var accessToken = "";
var qrRawData = "";
var txnId = "";
var dt = new Date();
txnId = dt.getFullYear()+"0"+(dt.getMonth()+1)+""+dt.getDate()+""+dt.getHours()+""+dt.getMinutes()+""+dt.getSeconds();
console.log("txnId = "+ txnId );
// Call API to get access token
const body = {
'applicationKey' : appKey,
'applicationSecret' : appSecret,
'authCode' : ''
};
const config = {
headers: {
'Content-Type': 'application/json',
'accept-language': 'EN',
'resourceOwnerId': appKey,
'requestUId': crypto.randomBytes(16).toString("hex")
}
};
axios.post('https://api-sandbox.partners.scb/partners/sandbox/v1/oauth/token', body, config)
.then((response) => {
// const myJSON = JSON.stringify(response.data);
// console.log("*** myJSON = "+myJSON);
accessToken = response.data.data.accessToken;
console.log("*** accessToken = "+accessToken);
// Call API to get QR Payment Tag 30
var dt = new Date();
const body = {
"qrType": "PP",
"ppType": "BILLERID",
"ppId": "170613490315111",
"amount": dt.getMinutes()+"."+dt.getSeconds(),
"ref1": txnId,
"ref2": "REF2",
"ref3": "SCB"
}
const config = {
headers: {
'Content-Type': 'application/json',
'authorization': 'Bearer '+accessToken,
'accept-language': 'EN',
'resourceOwnerId': appKey,
'requestUId': crypto.randomBytes(16).toString("hex")
}
};
axios.post('https://api-sandbox.partners.scb/partners/sandbox/v1/payment/qrcode/create', body, config)
.then((response) => {
// const myJSON = JSON.stringify(response.data);
// console.log("*** myJSON = "+myJSON);
qrRawData = response.data.data.qrRawData;
console.log("*** qrRawData = "+qrRawData);
// var code = qr.image( qrRawData, { type: 'svg' });
// response.type('svg');
// code.pipe(response);
// return qrRawData;
// this.goal();
})
.catch(error => {
console.error(error);
});
});
// console.log("### qrRawData = "+qrRawData);
// // var code = qr.image( "000201010212304201151706134903151110211202203270100304REF252047011530376454071710.005802TH5922TestMerchant16455146796007BANGKOK62340523202203271210277910000000703SCB63047737", { type: 'svg' });
// var code = qr.image( qrRawData, { type: 'svg' });
// res.type('svg');
// code.pipe(res);
res.send( "View QR raw data in the console log" );
// res.send( "*** qrRawData = "+qrRawData );
})
// function goal(){
// console.log("Eureka !!");
// }
// -----------------------------------------------
app.listen(appPort, () => {
console.log("Start server at port "+appPort)
})