This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpress.js
119 lines (98 loc) · 2.59 KB
/
express.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
/**
* ExpressJS Routes.
*
* @author Jared Allard <[email protected]>
* @version 1.0.0.
* @license MIT
**/
const express = require('express');
const fs = require('fs');
const async = require('async');
const path = require('path');
//const arango = require('arangojs');
// middleware
const morgan = require('morgan');
const bodyP = require('body-parser');
module.exports = (dbctl, log, stage) => {
'use strict';
if(process.argv[2] === '--test-express') {
throw 'ERROR'
}
// load our config or die.
let config;
try {
config = require('./config/config.json')
} catch(e) {
config = require('./config/config.example.json');
}
const API_VERSION = config.server.api_version;
let app = express();
// middleware.
app.use(morgan('dev'));
app.use(bodyP.json());
log('middleware loaded')
async.waterfall([
/**
* Load Express Routes
**/
function(next) {
let ROUTES = path.join(__dirname, 'routes', API_VERSION);
fs.readdir(ROUTES, (err, list) => {
if(err) {
return next(err);
}
async.each(list, function(route, next) {
let Path = path.join(ROUTES, route);
let name = path.parse(route).name;
let mount = path.join('/', API_VERSION, '/', name)
log('mount route', name, 'on', mount);
let eroute;
try {
eroute = require(Path);
} catch(e) {
return next(e);
}
// execute eroute "constructor"
let router = eroute(new express.Router(), dbctl, function() {
let args = Array.prototype.slice.call(arguments, 0);
args[0] = 'main: '+stage.Sub+ ' stage '+ stage.Stage + ' ('+mount+'): ' + args[0];
console.log.apply(console, args);
});
// Hook in the newly created route.
app.use(mount, router);
app.get('/'+API_VERSION, function(req, res) {
res.send('')
});
return next()
}, function(err) {
if(err) {
return next(err);
}
return next();
});
})
}
], err => {
if(err) {
throw err;
}
stage.emit('finished', {
stage: 1,
sub: 'INIT',
name: 'express::construct'
});
stage.emit('start', {
stage: 2,
name: 'express::start',
sub: 'INIT'
})
app.listen(config.server.port, function() {
log('express listening on', config.server.port);
stage.emit('finished', {
stage: 2,
name: 'express::start',
sub: 'INIT'
})
});
});
}