-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.js
152 lines (126 loc) · 3.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
var createError = require('http-errors');
var express = require('express');
var path = require('path');
var cookieParser = require('cookie-parser');
var logger = require('morgan');
//const Config = require('./common/config');
var indexRouter = require('./routes/index');
var ethereumRouter = require('./routes/ethereum');
var tokenRouter = require('./routes/token');
const swaggerJSDoc = require('swagger-jsdoc');
var cors = require('cors')
var bodyParser = require('body-parser')
const watcher = require('./common/watcher')
require('./config/env');
var app = express();
app.use(cors());
// view engine setup
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'jade');
app.use(logger('dev'));
app.use(express.json());
app.use(express.urlencoded({ extended: true }));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, 'public')));
const apiKeyAuth = (req, res, next) => {
let apiKey = req.headers.authorization;
if (!apiKey || apiKey != 'Bearer '+process.env.API_KEY) {
res.status(401).json({
message:"Invalid API KEY",
});
res.end();
}else{
next()
}
}
watcher.watchEtherTransfers()
console.log('Started watching Ether transfers')
watcher.watchTokenTransfers()
console.log('Started watching token transfers\n')
app.use('/', indexRouter);
// -- setup up swagger-jsdoc --
const swaggerDefinition = {
info: {
title: 'Ethereum Wallet API',
description: "<h3>Supported Coins</h3> ETH, VILA, USDT, NGNS, BNB, USDC, OKB, CRO, LEO, VEN, DAI, CEL, YFI, UNI, SNX, BUSD, PAX, LINK, OMG, BAT, NEXO, ZRX, BAND, LEND, TUSD, BKY <br><br> <h3>Authentication:</h3> Ethapi offers one form of authentication which is an API Key. <br>",
version: '0.5.0',
"contact": {
"email": "hello@davidoti.com",
"name": "David Oti"
},
"license": {
"name": "MIT",
"url": "https://github.com/davmixcool/ethereum-wallet-api/blob/master/LICENSE"
},
"x-logo": {
"url": "images/logo.png",
"backgroundColor": "#FFFFFF",
"altText": "Ethereum Wallet"
}
},
"x-tagGroups": [
{
"name": "API",
"tags": ['Ethereum','ERC20 token']
}
],
"tags": [
{
"name": "Ethereum",
"description": "Create and manage an ethereum account"
},
{
"name": "ERC20 token",
"description": "Manage ERC20 Tokens"
}
],
"servers":[
// {
// "url": "https://localhost:"+process.env.PORT,
// "description": "Development Server"
// }
],
basePath: '/',
hideHostname: true,
schemes: [
'http',
'https'
],
securityDefinitions:{
Bearer:{
type: 'apiKey',
name: 'Authorization',
in: 'header',
required: true
}
}
};
const options = {
swaggerDefinition,
apis : ['./routes/ethereum.js',
'./routes/token.js'
]
};
const swaggerSpec = swaggerJSDoc(options);
// -- routes for docs and generated swagger spec --
app.get('/swagger.json', (req, res, next) => {
res.setHeader('Content-Type', 'application/json');
res.send(swaggerSpec);
});
app.use(apiKeyAuth);
app.use('/ethereum', ethereumRouter);
app.use('/token', tokenRouter);
// 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;