-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.js
145 lines (134 loc) · 3.03 KB
/
index.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
'use strict';
/**
* @module Incident
* @name Incident
* @description A representation of an entity which define and track an
* instance(or occurrence) of an emergency(or disaster) event.
*
* @see {@link https://en.wikipedia.org/wiki/Disaster}
*
* @author lally elias <lallyelias87@gmail.com>
* @license MIT
* @since 0.1.0
* @version 0.1.0
* @public
* @example
*
* const { app } = require('@codetanzania/emis-incident');
* app.start((error, env) => {...});
*
*/
/* dependencies */
const _ = require('lodash');
const { include } = require('@lykmapipo/include');
const app = require('@lykmapipo/express-common');
const pkg = include(__dirname, 'package.json');
const Incident = include(__dirname, 'lib', 'incident.model');
const Action = include(__dirname, 'lib', 'action.model');
const Task = include(__dirname, 'lib', 'task.model');
const incidentRouter = include(__dirname, 'lib', 'incident.http.router');
const actionRouter = include(__dirname, 'lib', 'action.http.router');
const taskRouter = include(__dirname, 'lib', 'task.http.router');
/**
* @name info
* @description package information
* @type {Object}
*
* @author lally elias <lallyelias87@gmail.com>
* @since 1.0.0
* @version 0.1.0
*/
exports.info = _.merge(
{},
_.pick(pkg, [
'name',
'description',
'version',
'license',
'homepage',
'repository',
'bugs',
'sandbox',
'contributors',
])
);
/**
* @name Incident
* @description Incident model
* @type {mongoose.Model}
*
* @author lally elias <lallyelias87@gmail.com>
* @since 1.0.0
* @version 0.1.0
*/
exports.Incident = Incident;
/**
* @name Action
* @description Action model
* @type {mongoose.Model}
*
* @author lally elias <lallyelias87@gmail.com>
* @since 1.0.0
* @version 0.1.0
*/
exports.Action = Action;
/**
* @name Task
* @description Task model
* @type {mongoose.Model}
*
* @author lally elias <lallyelias87@gmail.com>
* @since 1.0.0
* @version 0.1.0
*/
exports.Task = Task;
/**
* @name incidentRouter
* @description incident http router
* @type {express.Router}
*
* @author lally elias <lallyelias87@gmail.com>
* @since 1.0.0
* @version 0.1.0
*/
exports.incidentRouter = incidentRouter;
/**
* @name actionRouter
* @description action http router
* @type {express.Router}
*
* @author lally elias <lallyelias87@gmail.com>
* @since 1.0.0
* @version 0.1.0
*/
exports.actionRouter = actionRouter;
/**
* @name taskRouter
* @description task http router
* @type {express.Router}
*
* @author lally elias <lallyelias87@gmail.com>
* @since 1.0.0
* @version 0.1.0
*/
exports.taskRouter = taskRouter;
/**
* @name apiVersion
* @description http router api version
* @type {String}
*
* @author lally elias <lallyelias87@gmail.com>
* @since 1.0.0
* @version 0.1.0
*/
exports.apiVersion = incidentRouter.apiVersion;
/* export app */
Object.defineProperty(exports, 'app', {
get() {
/* @todo bind oauth middlewares authenticate, token, authorize */
app.mount(incidentRouter);
app.mount(actionRouter);
app.mount(taskRouter);
return app;
},
});