-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome-routes.js
97 lines (88 loc) · 2.11 KB
/
home-routes.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
const router = require('express').Router()
const { Post, User, Comment } = require('../models')
router.get('/', async (req, res) => {
try {
const allPosts = await Post.findAll({
attributes: ['id', 'post_text', 'title', 'created_on'],
order: [['created_on', 'DESC']],
include: [
{
model: User,
attributes: ['full_name'],
},
{
model: Comment,
attributes: [
'id',
'comment_text',
'post_id',
'user_id',
'created_on',
],
include: {
model: User,
attributes: ['full_name'],
},
},
],
})
const posts = allPosts.map((post) => post.get({ plain: true }))
res.render('home', {
posts,
logged_in: req.session.logged_in,
})
} catch (err) {
console.log(err)
res.status(500).json(err)
}
})
router.get('/dashboard', async (req, res) => {
if (req.session.logged_in || req.session.user_id) {
try {
const allPosts = await Post.findAll({
where: {
user_id: req.session.user_id,
},
attributes: ['id', 'post_text', 'title', 'created_on'],
include: [
{
model: Comment,
attributes: [
'id',
'comment_text',
'post_id',
'user_id',
'created_on',
],
include: {
model: User,
attributes: ['full_name'],
},
},
{
model: User,
attributes: ['full_name'],
},
],
})
const posts = allPosts.map((post) => post.get({ plain: true }))
res.render('dashboard', { posts, logged_in: true })
} catch (err) {
console.log(err)
res.status(500).json(err)
}
} else {
res.redirect('/login')
}
})
router.get('/login', (req, res) => {
if (req.session.logged_in) {
res.redirect('/dashboard')
return
}
res.render('login')
})
router.get('/signup', (req, res) => {
res.render('signup')
})
module.exports = router