-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.ts
421 lines (404 loc) · 15.6 KB
/
server.ts
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
require('dotenv').config();
import { APP_BASE_HREF } from '@angular/common';
import { ngExpressEngine } from '@nguniversal/express-engine';
import * as express from 'express';
import { existsSync } from 'fs';
import { join } from 'path';
import 'zone.js/dist/zone-node';
import { checkJwt } from './auth/auth';
import { AppServerModule } from './src/main.server';
import db from './src/server/models/index';
// The Express app is exported so that it can be used by serverless Functions.
export function app(): express.Express {
const server = express();
const distFolder = join(process.cwd(), 'dist/AngularUniversalSSR/browser');
const indexHtml = existsSync(join(distFolder, 'index.original.html'))
? 'index.original.html'
: 'index';
// Our Universal express-engine (found @ https://github.com/angular/universal/tree/master/modules/express-engine)
server.engine(
'html',
ngExpressEngine({
bootstrap: AppServerModule,
})
);
// Add express's built in body parser
server.use(express.json());
server.set('view engine', 'html');
server.set('views', distFolder);
// Express Rest API endpoints
// Add a task
server.post('/api/task/submit', checkJwt, async (req, res) => {
try {
const {
data: { task },
email,
} = req.body;
const {
body: { data },
} = req;
// Check if the task and email are both not null and not empty
if (task && email && task !== '' && email !== '') {
const findUserToCreateTodo = await db.Users.findOne({
where: {
email: email,
},
});
// Check if the user that we're adding a task for exists and has a user ID
if (findUserToCreateTodo && findUserToCreateTodo?.id) {
await findUserToCreateTodo!.createTodo({
todo: task,
});
// Send the request body back since it's fully validated
res.json(data);
} else {
// Logging the error to the console for more visibility
console.error(`User not found with ID: ${findUserToCreateTodo?.id}`);
// Return a HTTP 404 if the user isn't found or doesn't exist
res.status(404).send({
error: `User not found with ID: ${findUserToCreateTodo?.id}`,
});
}
} else if (task.length < 2) {
// Logging the error to the console for more visibility
// Send a HTTP 500 back if the task in the request body is less than 2 characters
console.error('Error: Value must be 2 or greater');
res.status(500).send({ error: 'Value must be 2 or greater' });
} else {
// Logging the error to the console for more visibility
console.error('Error: Form data must contain a value');
// Send a HTTP 500 back if the task in the request body is null
res.status(500).send({ error: 'Form data must contain a value' });
}
} catch (e) {
// Logging the error to the console for more visibility
console.error(e);
// Return a HTTP 500 in the case of a SequelizeError or otherwise
res.status(500).send({ error: `An error has occurred: ${e}` });
}
});
// Update a task with a due date
server.put('/api/task/due/:id', checkJwt, async (req, res) => {
try {
const { id } = req.params;
const { isDueBy, email } = req.body;
// Check if the todo ID and email are both not null and not empty
if (id && email && id !== '' && email !== '') {
const findUserDueDateTask = await db.Users.findOne({
where: {
email: email,
},
});
// If the user is found and the user ID exists use this to include in the where clause for the task
if (findUserDueDateTask && findUserDueDateTask?.id) {
await db.Todos.update(
{
dueBy: isDueBy,
},
{
where: {
id: id,
userId: findUserDueDateTask?.id,
},
}
).catch((e) => res.status(500).send({ error: e }));
res.status(200).send({ message: 'Task updated' });
} else {
// Logging the error to the console for more visibility
console.error(`User not found with ID: ${findUserDueDateTask?.id}`);
// Return a HTTP 404 if the user isn't found or doesn't exist
res.status(404).send({
error: `User not found with ID: ${findUserDueDateTask?.id}`,
});
}
} else {
// Logging the error to the console for more visibility
console.error('Required parameters are either empty or invalid');
// Return a HTTP 500 if the required parameters are not provided or valid
res
.status(500)
.send({ error: 'Required parameters are either empty or invalid' });
}
} catch (e) {
// Logging the error to the console for more visibility
console.error(e);
// Return a HTTP 500 in the case of a SequelizeError or otherwise
res.status(500).send({ error: `An error has occurred: ${e}` });
}
});
// Delete a task
server.delete('/api/task/delete/:id', checkJwt, async (req, res) => {
try {
const { id } = req.params;
const { email } = req.body;
// Check if the todo ID and email are both not null and not empty
if (id && email && id !== '' && email !== '') {
const findUserToDeleteTask = await db.Users.findOne({
where: {
email: email,
},
});
// If the user is found and the user ID exists use this to include in the where clause for the task
if (findUserToDeleteTask && findUserToDeleteTask?.id) {
await db.Todos.destroy({
where: {
id: id,
userId: findUserToDeleteTask?.id,
},
}).catch((e) => res.status(500).send({ error: e }));
res.status(200).send({ message: 'Task deleted' });
} else {
// Logging the error to the console for more visibility
console.error(`User not found with ID: ${findUserToDeleteTask?.id}`);
// Return a HTTP 404 if the user isn't found or doesn't exist
res.status(404).send({
error: `User not found with ID: ${findUserToDeleteTask?.id}`,
});
}
} else {
// Logging the error to the console for more visibility
console.error('Required parameters are either empty or invalid');
// Return a HTTP 500 if the required parameters are not provided or valid
res
.status(500)
.send({ error: 'Required parameters are either empty or invalid' });
}
} catch (e) {
// Logging the error to the console for more visibility
console.error(e);
// Return a HTTP 500 in the case of a SequelizeError or otherwise
res.status(500).send({ error: `An error has occurred: ${e}` });
}
});
// Update a task to be completed/incomplete
server.put('/api/task/complete/:id', checkJwt, async (req, res) => {
try {
const { id } = req.params;
const { isCompleted, email } = req.body;
// Check if the todo ID and email are both not null and not empty
if (id && email && id !== '' && email !== '') {
const findUserForTaskToComplete = await db.Users.findOne({
where: {
email: email,
},
include: [db.Users.associations.todos],
});
// If the user is found and the user ID exists use this to include in the where clause for the task
if (findUserForTaskToComplete && findUserForTaskToComplete?.id) {
await db.Todos.update(
{
completed: isCompleted,
},
{
where: {
id: id,
userId: findUserForTaskToComplete?.id,
},
}
).catch((e) => res.status(500).send({ error: e }));
res.status(200).send({ message: 'Task updated' });
} else {
// Logging the error to the console for more visibility
console.error(
`User not found with ID: ${findUserForTaskToComplete?.id}`
);
// Return a HTTP 404 if the user isn't found or doesn't exist
res.status(404).send({
error: `User not found with ID: ${findUserForTaskToComplete?.id}`,
});
}
} else {
// Logging the error to the console for more visibility
console.error('Required parameters are either empty or invalid');
// Return a HTTP 500 if the required parameters are not provided or valid
res
.status(500)
.send({ error: 'Required parameters are either empty or invalid' });
}
} catch (e) {
// Logging the error to the console for more visibility
console.error(e);
// Return a HTTP 500 in the case of a SequelizeError or otherwise
res.status(500).send({ error: `An error has occurred: ${e}` });
}
});
// Update a task to be important/unimportant
server.put('/api/task/important/:id', checkJwt, async (req, res) => {
try {
const { id } = req.params;
const { isImportant, email } = req.body;
// Check if the todo ID and email are both not null and not empty
if (id && email && id !== '' && email !== '') {
const findImportantUser = await db.Users.findOne({
where: {
email: email,
},
include: [db.Users.associations.todos],
});
// If the user is found and the user ID exists use this to include in the where clause for the task
if (findImportantUser && findImportantUser?.id) {
await db.Todos.update(
{
important: isImportant,
},
// Update by specifying the task/todo ID and the userID associated with the task
{
where: {
id: id,
userId: findImportantUser?.id,
},
}
).catch((e) => res.status(500).send({ error: e }));
res.status(200).send({ message: 'Task updated' });
} else {
// Logging the error to the console for more visibility
console.error(`User not found with ID: ${findImportantUser?.id}`);
// Return a HTTP 404 if the user isn't found or doesn't exist
res.status(404).send({
error: `User not found with ID: ${findImportantUser?.id}`,
});
}
} else {
// Logging the error to the console for more visibility
console.error('Required parameters are either empty or invalid');
// Return a HTTP 500 if the required parameters are not provided or valid
res
.status(500)
.send({ error: 'Required parameters are either empty or invalid' });
}
} catch (e) {
// Logging the error to the console for more visibility
console.error(e);
// Return a HTTP 500 in the case of a SequelizeError or otherwise
res.status(500).send({ error: `An error has occurred: ${e}` });
}
});
// Find all tasks
server.get('/api/task/get/:email', checkJwt, async (req, res) => {
try {
const { email } = req.params;
// If the email parameter exists and isn't emptry search for the user
if (email && email !== '') {
const findUserToGetTasks = await db.Users.findOne({
where: {
email: req.params.email,
},
include: [db.Users.associations.todos],
});
// Check if the user is not null and the user ID exists
if (findUserToGetTasks && findUserToGetTasks?.id) {
// Find all tasks with the getTodos() method off of the User class
// Return all found tasks back to the client
const getAllTasks = await findUserToGetTasks?.getTodos();
res.json(getAllTasks);
} else {
// Logging the error to the console for more visibility
console.error(`User not found with ID: ${findUserToGetTasks?.id}`);
// Return a HTTP 404 if the user isn't found or doesn't exist
res.status(404).send({
error: `User not found with ID: ${findUserToGetTasks?.id}`,
});
}
} else {
// Logging the error to the console for more visibility
console.error('Required parameters are either empty or invalid');
// Return a HTTP 500 if the required parameters are not provided or valid
res
.status(500)
.send({ error: 'Required parameters are either empty or invalid' });
}
} catch (e) {
// Logging the error to the console for more visibility
console.error(e);
// Return a HTTP 500 in the case of a SequelizeError or otherwise
res.status(500).send({ error: `An error has occurred: ${e}` });
}
});
// Add a user
server.get('/api/user/get/:email', checkJwt, async (req, res) => {
try {
const { email } = req.params;
// If the email parameter exists and isn't empty search for the user
if (email && email !== '') {
const findUser = await db.Users.findOne({
where: {
email: req.params.email,
},
});
// If the user doesn't create it after logging in create the user
// This would indicate the user is new
if (!findUser) {
const createNonExistentUser = await db.Users.create({
email,
});
res
.status(200)
.send({ message: `User added: ${createNonExistentUser?.email}` });
} else {
// Else the user already exists and skip creation
res.status(200).send({ message: 'User exists' });
}
} else {
// Logging the error to the console for more visibility
console.error('Required parameters are either empty or invalid');
// Return a HTTP 500 if the required parameters are not provided or valid
res
.status(500)
.send({ error: 'Required parameters are either empty or invalid' });
}
} catch (e) {
// Logging the error to the console for more visibility
console.error(e);
// Return a HTTP 500 in the case of a SequelizeError or otherwise
res.status(500).send({ error: `An error has occurred: ${e}` });
}
});
// Serve static files from /browser
server.get(
'*.*',
express.static(distFolder, {
maxAge: '1y',
})
);
// All regular routes use the Universal engine
server.get('*', (req, res) => {
res.render(indexHtml, {
req,
providers: [{ provide: APP_BASE_HREF, useValue: req.baseUrl }],
});
});
return server;
}
function run(): void {
const port = process.env.PORT || 4000;
const server = app();
try {
db.sequelize
// Sync the database depending on the current environment
.sync({ force: false })
.then(() => {
console.log('Successfully connected to MySQL');
// Start up the Node server
server.listen(port, () => {
console.log(
`Angular Universal SSR - Node Express server listening on http://localhost:${port}`
);
});
})
.catch((e: any) =>
console.error(`An error has occurred with Sequelize and MySQL: ${e}`)
);
} catch (error) {
console.error(`An error has occurred: ${error}`);
}
}
// Webpack will replace 'require' with '__webpack_require__'
// '__non_webpack_require__' is a proxy to Node 'require'
// The below code is to ensure that the server is run only when not requiring the bundle.
declare const __non_webpack_require__: NodeRequire;
const mainModule = __non_webpack_require__.main;
const moduleFilename = (mainModule && mainModule.filename) || '';
if (moduleFilename === __filename || moduleFilename.includes('iisnode')) {
run();
}
export * from './src/main.server';