-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.js
219 lines (159 loc) · 7.55 KB
/
app.js
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
var createError = require('http-errors');
var express = require('express');
var path = require('path');
var cookieParser = require('cookie-parser');
var logger = require('morgan');
var indexRouter = require('./routes/index');
var usersRouter = require('./routes/users');
var cybersourceRestApi = require('cybersource-rest-client');
var querystring = require('querystring');
var https = require('https');
var fs = require('fs');
var host = 'api-matest.cybersource.com';
var tokenResource = '/oauth2/v3/token';
var searchResource = '/tss/v2/searches'
var app = express();
// view engine setup
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'ejs');
app.use(logger('dev'));
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, 'public')));
app.use('/', indexRouter);
app.use('/users', usersRouter);
// THIS IS THE SERVER-SIDE REQUEST TO RETRIEVE THE ACCESS TOKEN
// USING THE AUTH CODE AND THE CLIENT CREDENTIALS
app.get('/authorize', function (req, res) {
try {
var authCode = req.query.code;
console.log('Authorization Code : ' + authCode);
// This is where we will call /oauth2/v3/token
var accesstoken = "";
// THIS CLIENT SECRET SHOULD BE MANAGED LIKE ANY OTHER SHARED SECRET AND NOT SHARED IN BROWSER,
// MOBILE DEVICE OR ANY OTHER CLIENT SIDE CODE
// (READ PUBLIC FOR MOBILE DEVICE REGARDLESS OF WHAT PHONE MANUFACTURERS TELL YOU)
var clientSecret = process.env.CLIENT_SECRET;
// The CLient ID is a public shareable value
var clientId = "aZjTAJXtHg";
var dataString = "client_id="+clientId+"&grant_type=authorization_code&code="+authCode+"&client_secret="+clientSecret;
var method = "POST";
var headers = {
'Content-Type': 'application/x-www-form-urlencoded',
'Content-Length': dataString.length
};
var options = {
host: host,
path: tokenResource,
method: 'POST',
headers: headers,
key : fs.readFileSync('./paymentsdemo.pem'),
cert: fs.readFileSync('./paymentsdemo.crt')
};
var responseString = '';
var req = https.request(options, function(resp) {
resp.setEncoding('utf-8');
resp.on('data', function(data) {
console.log("Got data back : "+data);
responseString += data;
});
resp.on('end', function() {
console.log("Done with request");
console.log("Response String : " + responseString);
var responseJSON = JSON.parse(responseString);
console.log("Access Token : " + responseJSON.access_token);
console.log("Redirecting to display page with access token : "+responseJSON.access_token);
res.render('accesstoken', { accesstoken: JSON.stringify(responseJSON.access_token) } );
});
});
console.log("Making request" + dataString);
req.write(dataString);
req.end();
} catch (error) {
console.log(error);
}
});
// THIS REPRESENTS THE SERVER-SIDE REQUEST TO MAKE A PAYMENT WITH THE TRANSIENT
// TOKEN
app.post('/apicall', function (req, res) {
var accessToken = JSON.parse(req.body.accesstoken)
console.log('Access token for API call is: ' + JSON.stringify(accessToken));
try {
var method = "POST";
var headers = {
'Content-Type': 'application/json',
'Authorization': 'Bearer '+accessToken
};
var dataString =
{
"save": "false",
"name": "MRN",
"timezone": "America/Chicago",
"query": "submitTimeUtc:[NOW/DAY-7DAYS TO NOW/DAY+1DAY}",
"offset": "0",
"limit": "100",
"sort": "id:asc,submitTimeUtc:asc"
};
var options = {
host: host,
path: searchResource,
method: method,
headers: headers,
key : fs.readFileSync('./paymentsdemo.pem'),
cert: fs.readFileSync('./paymentsdemo.crt')
};
var responseString = '';
var req = https.request(options, function(resp) {
resp.setEncoding('utf-8');
resp.on('data', function(data) {
console.log("Got data back : "+data);
responseString += data;
});
resp.on('end', function() {
console.log("Done with request");
console.log("Response String : " + responseString);
// Create a datatable object from the JSON Response
var responseObj = JSON.parse(responseString);
var totalTransactions = responseObj.totalCount;
var transactionData = {
"cols": [
{"id": "","label": "ID","pattern": "","type": "string"},
{"id": "","label": "Name","pattern": "","type": "string"},
{"id": "","label": "Amount","pattern": "","type": "string"},
{"id": "","label": "Last 4","pattern": "","type": "string"},
{"id": "","label": "Date/Time","pattern": "","type": "string"}
],
"rows": []
};
var transactionsArr = responseObj._embedded.transactionSummaries;
for(i=0;i<transactionsArr.length;i++){
var currentObj = transactionsArr[i];
var newRow = {"c":[{"v":currentObj.id,"f":null},{"v":currentObj.orderInformation.billTo.firstName+" "+currentObj.orderInformation.billTo.lastName,"f":null},{"v":currentObj.orderInformation.amountDetails.totalAmount,"f":null},{"v":currentObj.paymentInformation.card.suffix,"f":null},{"v":currentObj.submitTimeUtc,"f":null}]};
transactionData.rows.push(newRow);
}
console.log("Redirecting to display page with transactions : ");
res.render('apicall', { totalTransactions: totalTransactions, transactionlist: JSON.stringify(transactionData) } );
});
});
console.log("Making request");
req.write(JSON.stringify(dataString));
req.end();
} catch (error) {
console.log(error);
}
});
// catch 404 and forward to error handler
app.use(function(req, res, next) {
next(createError(404));
});
// error handler
app.use(function(err, req, res, next) {
// set locals, only providing error in development
res.locals.message = err.message;
res.locals.error = req.app.get('env') === 'development' ? err : {};
// render the error page
res.status(err.status || 500);
res.render('error');
});
module.exports = app;