-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
215 lines (192 loc) · 5.37 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
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
var config = require('nconf');
var express = require('express');
var mongoose = require('mongoose');
var app = express();
config.argv().env().file({
file: 'config.json'
});
mongoose.connect(config.get('mongoose:connectionUrl'));
app.use(express.static(__dirname + '/public'));
app.disable('x-powered-by');
app.listen(3000);
/**
* GET recipient
*
* Retrieve a Recipient, which represents a user that can be sent emails and form emails.
*
* Params:
* - recipientID: id of Recipient object. Expects string. Required.
*/
app.get('/api/v1/recipient/:recipientID?', function(req, res) {
console.log('GET recipient');
require('./controllers/recipient/get')(app, req, res);
});
/**
* POST recipient
*
* Create a Recipient.
*
* Params:
* - name: name of person. Expects string. Required.
* - email: email address of person. Expects string. Required.
*/
app.post('/api/v1/recipient', function(req, res) {
console.log('POST recipient');
require('./controllers/recipient/post')(app, req, res);
});
/**
* GET message
*
* Retrieve a Message (email), which represents an email that has been
* sent to a Recipient or static email address.
*
* Providing a messageID retrieves that specific Message. Leaving out
* the messageID parameter retrieves all Messages.
*
* Params:
* - messageID: id of Message object. Expects string. Optional.
*/
app.get('/api/v1/message/:messageID?', function(req, res) {
console.log('GET message');
require('./controllers/message/get')(app, req, res);
});
/**
* POST message
*
* Create a Message, which will be delivered through Mailgun ASAP.
*
* One can either create a Message with a "to" param value or a
* "recipientID" param value. Using "recipientID" is preferred.
*
* In this demo, POST message does not have a body parameter. The
* API automatically loads template.hbs for every Message it creates.
*
* In a fully-functioning API, a body parameter would be assumed, or
* perhaps a dynamic template loading system (as outlined later in
* POST templates).
*
* Params:
* - from: email address of message sender. Expects string. Required.
* - to: email address of message recipient. Expects string. Semi-optional.
* - recipientID: id of Recipient to send Message to. Expects string.
* Semi-optional.
* - subject: subject line of Message. Expects string. Required.
* - formID: id of Form to embed within Message. Expects string.
*/
app.post('/api/v1/message', function(req, res) {
console.log('POST message');
require('./controllers/message/post')(app, req, res);
});
/**
* GET form
*
* Retrieve a Form.
*
* Providing a formID retrieves that specific Form. Leaving out the
* formID parameter retrieves all Forms.
*
* Params:
* - formID: id of Form object. Expects string. Optional.
*/
app.get('/api/v1/form/:formID?', function(req, res, next) {
console.log('GET form');
if (typeof req.params.formID !== 'undefined' && req.params.formID === 'response') {
next();
} else {
require('./controllers/form/get')(app, req, res);
}
});
/**
* POST form
*
* Create a Form, which can be embedded within a Message.
*
* For the demo, fields are currently only limited to "text" and
* "textarea".
*
* In the future, ideally, fields wouldn't be saved as a JSON string.
* This allows for no indexing and searching on it's values. Instead,
* the fields of a form could each be saved individually as FormField
* objects, each consisting of field name, field label, field type,
* and parent Form id.
*
* Params:
* - name: name of Form object. Expects string. Required.
* - fields: JSON encoded string of form fields. Expects string. Required.
* See below for example.
*
* Example fields JSON string:
[
{
"name" : "name",
"label" : "Your Name",
"type" : "text"
},
{
"name" : "comments",
"label" : "Your Comments",
"type" : "textarea"
}
]
*/
app.post('/api/v1/form', function(req, res) {
console.log('POST form');
require('./controllers/form/post')(app, req, res);
});
/**
* GET form/response
*
* Retrieve a FormResponse. A FormResponse consists of values submitted
* in response to an emailed Form, plus relevant meta data (id of Recipient
* that submitted form, the Message the form was sent within, time, etc).
*
* Providing a responseID retrieves that specific FormResponse. Leaving
* out the responseID parameter retrieves all FormResponses.
*
* Params:
* - responseID: id of FormResponse object. Expects string. Optional.
*/
app.get('/api/v1/form/response/:responseID?', function(req, res) {
console.log('GET form/response');
require('./controllers/form/response/get')(app, req, res);
});
/**
* POST form/response
*
* Create a FormResponse.
*
* Params:
* -
*/
app.post('/api/v1/form/response', function(req, res) {
console.log('POST form/response');
require('./controllers/form/response/post')(app, req, res);
});
app.get('/', function(req, res) {
console.log('GET admin');
require('./controllers/admin/get')(app, req, res);
});
app.all('*', function(req, res) {
res.writeHead(200);
res.write('rm-demo nothing matches');
res.end();
});
// envisioned but not built API endpoints below:
/**
* POST forms/fields
*/
/**
* GET forms/fields
*/
/**
* POST forms/responses/fields
*/
/**
* GET forms/responses/fields
*/
/**
* POST templates
*/
/**
* GET templates
*/