-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
192 lines (162 loc) · 4.88 KB
/
app.js
File metadata and controls
192 lines (162 loc) · 4.88 KB
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
const express = require('express')
const path = require('path')
const mongoose = require('mongoose')
const methodOverride = require('method-override')
const session = require('express-session')
const flash = require('connect-flash')
const passport = require('passport')
const LocalStrategy = require('passport-local')
const Item = require('./models/items')
const Admin = require('./models/admin')
const Mesaj = require('./models/mesaj')
mongoose.set('strictQuery', false)
mongoose.connect('mongodb://************/copytech', {
useNewUrlParser: true,
useUnifiedTopology: true,
})
mongoose.connection.on(
'error',
console.error.bind(console, 'connection error:')
)
mongoose.connection.once('open', () => {
console.log('Database connected')
})
const app = express()
app.set('view engine', 'ejs')
app.set('views', path.join(__dirname, 'views'))
app.use(express.static(path.join(__dirname, 'public')))
app.use(methodOverride('_method'))
app.use(express.urlencoded({ extended: true }))
const sessionConfig = {
secret: 'This is a secret',
resave: false,
saveUninitialized: true,
cookie: {
httpOnly: true,
expires: Date.now() + 1000 * 60 * 60 * 24 * 7,
maxAge: 1000 * 60 * 60 * 24 * 7,
},
}
app.use(session(sessionConfig))
app.use(flash())
app.use(passport.initialize())
app.use(passport.session())
passport.use(new LocalStrategy(Admin.authenticate()))
passport.serializeUser(Admin.serializeUser())
passport.deserializeUser(Admin.deserializeUser())
app.use((req, res, next) => {
res.locals.currentUser = req.user
res.locals.success = req.flash('success')
res.locals.error = req.flash('error')
next()
})
const isLoggedIn = (req, res, next) => {
console.log(req.user)
if (!req.isAuthenticated()) {
req.flash('error', 'Nu aveti permisiunea necesara')
return res.redirect('/magazin')
}
next()
}
app.get('/admin', async (req, res) => {
const admin = new Admin({ username: '1234' })
const newAdmin = await Admin.register(admin, 'qwer')
res.send(newAdmin)
})
app.get('/home', (req, res) => {
res.render('pages/home')
})
app.get('/add', isLoggedIn, (req, res) => {
res.render('pages/add')
})
app.post('/add', async (req, res) => {
console.log(req.body.item)
req.body.item.contAdmin = '****************'
console.log(req.body.item)
const item = new Item(req.body.item)
await item.save()
req.flash('success', 'Ai adaugat un nou produs!')
res.redirect('/home')
})
app.post('/contact', async (req, res) => {
req.body.mesaj.contAdmin = '***************'
const mesaj = new Mesaj(req.body.mesaj)
await mesaj.save()
res.redirect('/oferte')
})
app.delete('/contact/:id', isLoggedIn, async (req, res) => {
await Mesaj.findByIdAndDelete({ _id: req.params.id })
res.redirect('/oferte')
})
app.get('/mod/:id', isLoggedIn, async (req, res) => {
const item = await Item.findById({ _id: req.params.id })
res.render('pages/mod', { item })
})
app.put('/mod/:id', async (req, res) => {
const item = await Item.findByIdAndUpdate(req.params.id, { ...req.body.item })
req.flash('success', 'Produs modificat')
res.redirect('/magazin')
})
app.delete('/mod/:id', isLoggedIn, async (req, res) => {
await Item.findByIdAndDelete({ _id: req.params.id })
req.flash('success', 'Produs sters')
res.redirect('/magazin')
})
app.get('/login', (req, res) => {
res.render('pages/login')
})
app.get('/login', (req, res) => {
res.render('pages/login')
})
app.post(
'/login',
passport.authenticate('local', {
failureFlash: true,
failureRedirect: '/login',
}),
(req, res) => {
req.flash('success', 'Setarile magazinului sunt acum disponibile')
res.redirect('/home')
}
)
app.get('/logout', async (req, res) => {
await req.logout()
req.flash('success', 'V-ati delogat cu succes')
res.redirect('/magazin')
})
app.route('/logout').get((req, res) => {
req.logout(function (err) {
if (err) {
return next(err)
}
res.redirect('/')
})
})
app.get('/oferte', async (req, res) => {
const mesaje = await Mesaj.find({})
res.render('pages/oferte', { mesaje })
})
app.get('/aparatura', async (req, res) => {
const mesaje = await Mesaj.find({})
res.render('pages/aparatura', { mesaje })
})
app.get('/magazin', async (req, res) => {
const items = await Item.find({})
res.render('pages/magazin', { items })
})
app.post('/magazin/cauta', async (req, res) => {
const items = await Item.find({})
let search = req.body.termen
console.log(search)
res.render('pages/magazin', { items, search })
})
app.get('/magazin/:clasa', async (req, res) => {
const items = await Item.find({ clasa: req.params.clasa })
res.render('pages/magazin', { items })
})
app.use((req, res, next) => {
res.render('pages/home')
})
app.listen(3000, () => {
console.log('Serving on port 3000')
})