-
Notifications
You must be signed in to change notification settings - Fork 0
/
routes.js
153 lines (112 loc) · 5.63 KB
/
routes.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
const checksum_lib = require('./checksum/checksum')
const port = 5000
const KEY = ''
let ID = Math.floor(Math.random() * 100001);
let CUST_ID = "CUST" + ID
let ORDER_ID = "ORD" + ID
let params ={}
params['MID'] = ''
params['WEBSITE'] = 'WEBSTAGING'
params['CHANNEL_ID'] = 'WEB'
params['INDUSTRY_TYPE_ID'] = 'Retail'
params['CALLBACK_URL'] = 'http://localhost:' + port + '/callback'
params['ORDER_ID'] = ORDER_ID
params['CUST_ID'] = CUST_ID
module.exports = (app) => {
app.get('/payment/nano', (req,res) => {
params['TXN_AMOUNT'] = '15',
checksum_lib.genchecksum(params, KEY,function(err,checksum){
let txn_url = "https://securegw-stage.paytm.in/order/process"
let form_fields = ""
for(x in params)
{
form_fields += "<input type='hidden' name='"+x+"' value='"+params[x]+"'/>"
}
form_fields+="<input type='hidden' name='CHECKSUMHASH' value='"+checksum+"' />"
var html = '<html><body><center><h1>Please wait! Do not refresh the page</h1></center><form method="post" action="'+txn_url+'" name="f1">'+form_fields +'</form><script type="text/javascript">document.f1.submit()</script></body></html>'
res.writeHead(200,{'Content-Type' : 'text/html'})
res.write(html)
res.end()
})
})
app.get('/payment/micro', (req,res) => {
params['TXN_AMOUNT'] = '25',
checksum_lib.genchecksum(params, KEY,function(err,checksum){
let txn_url = "https://securegw-stage.paytm.in/order/process"
let form_fields = ""
for(x in params)
{
form_fields += "<input type='hidden' name='"+x+"' value='"+params[x]+"'/>"
}
form_fields+="<input type='hidden' name='CHECKSUMHASH' value='"+checksum+"' />"
var html = '<html><body><center><h1>Please wait! Do not refresh the page</h1></center><form method="post" action="'+txn_url+'" name="f1">'+form_fields +'</form><script type="text/javascript">document.f1.submit()</script></body></html>'
res.writeHead(200,{'Content-Type' : 'text/html'})
res.write(html)
res.end()
})
})
app.get('/payment/mini', (req,res) => {
params['TXN_AMOUNT'] = '35',
checksum_lib.genchecksum(params, KEY,function(err,checksum){
let txn_url = "https://securegw-stage.paytm.in/order/process"
let form_fields = ""
for(x in params)
{
form_fields += "<input type='hidden' name='"+x+"' value='"+params[x]+"'/>"
}
form_fields+="<input type='hidden' name='CHECKSUMHASH' value='"+checksum+"' />"
var html = '<html><body><center><h1>Please wait! Do not refresh the page</h1></center><form method="post" action="'+txn_url+'" name="f1">'+form_fields +'</form><script type="text/javascript">document.f1.submit()</script></body></html>'
res.writeHead(200,{'Content-Type' : 'text/html'})
res.write(html)
res.end()
})
})
app.get('/payment/macro', (req,res) => {
params['TXN_AMOUNT'] = '45',
checksum_lib.genchecksum(params, KEY,function(err,checksum){
let txn_url = "https://securegw-stage.paytm.in/order/process"
let form_fields = ""
for(x in params)
{
form_fields += "<input type='hidden' name='"+x+"' value='"+params[x]+"'/>"
}
form_fields+="<input type='hidden' name='CHECKSUMHASH' value='"+checksum+"' />"
var html = '<html><body><center><h1>Please wait! Do not refresh the page</h1></center><form method="post" action="'+txn_url+'" name="f1">'+form_fields +'</form><script type="text/javascript">document.f1.submit()</script></body></html>'
res.writeHead(200,{'Content-Type' : 'text/html'})
res.write(html)
res.end()
})
})
app.get('/payment/max', (req,res) => {
params['TXN_AMOUNT'] = '101',
checksum_lib.genchecksum(params, KEY,function(err,checksum){
let txn_url = "https://securegw-stage.paytm.in/order/process"
let form_fields = ""
for(x in params)
{
form_fields += "<input type='hidden' name='"+x+"' value='"+params[x]+"'/>"
}
form_fields+="<input type='hidden' name='CHECKSUMHASH' value='"+checksum+"' />"
var html = '<html><body><center><h1>Please wait! Do not refresh the page</h1></center><form method="post" action="'+txn_url+'" name="f1">'+form_fields +'</form><script type="text/javascript">document.f1.submit()</script></body></html>'
res.writeHead(200,{'Content-Type' : 'text/html'})
res.write(html)
res.end()
})
})
app.get('/payment/huge', (req,res) => {
params['TXN_AMOUNT'] = '201',
checksum_lib.genchecksum(params, KEY,function(err,checksum){
let txn_url = "https://securegw-stage.paytm.in/order/process"
let form_fields = ""
for(x in params)
{
form_fields += "<input type='hidden' name='"+x+"' value='"+params[x]+"'/>"
}
form_fields+="<input type='hidden' name='CHECKSUMHASH' value='"+checksum+"' />"
var html = '<html><body><center><h1>Please wait! Do not refresh the page</h1></center><form method="post" action="'+txn_url+'" name="f1">'+form_fields +'</form><script type="text/javascript">document.f1.submit()</script></body></html>'
res.writeHead(200,{'Content-Type' : 'text/html'})
res.write(html)
res.end()
})
})
}