-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.js
131 lines (114 loc) · 3.39 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
const express = require('express')
const path = require('path')
const mongoose = require('mongoose')
const articleRouter = require('./routes/articles')
const app = express()
const bodyParser = require('body-parser')
const nodemailer = require('nodemailer')
const session = require('express-session')
const flash = require('connect-flash')
const article = require('./models/article')
main().catch((err) => console.log(err))
async function main() {
await mongoose.connect(
'mongodb+srv://prateek147:[email protected]/FCBlogs?retryWrites=true&w=majority'
)
console.log(`working`)
}
app.use(
session({
secret: 'secretkey',
resave: true,
saveUninitialized: true,
})
)
app.use(flash())
app.use(bodyParser.urlencoded({ extended: false }))
app.use(express.static(path.join(__dirname, 'public')))
app.set('view engine', 'ejs')
app.set('views', 'views')
const port = process.env.PORT || 5000
app.get('/', (req, res, next) => {
res.status(200).render('home.ejs', {
pageTitle: 'Finance Club IITP',
path: '/',
message: req.flash('message'),
})
next()
})
app.post('/', async (req, res) => {
const { name, email, message } = req.body
const transporter = nodemailer.createTransport({
service: 'gmail',
port: 587,
secure: false,
auth: {
user: '[email protected]',
pass: 'snajzngtqrcwrovz',
// pass: 'finclubiitp@2022',
},
tls: {
rejectUnauthorized: false,
},
})
try {
let info = await transporter.sendMail({
from: `"${name}" [email protected]`,
to: '[email protected]', //Email where you want to receive messages
subject: name,
html: `From : <h3>${name}</h3><h4>${email}</h4><p>${message}</p>`,
})
if (info.messageId) {
console.log('Mail received successfully')
req.flash('message', 'Mail received successfully')
let confirm = await transporter.sendMail({
from: '"Finance Club IIT Patna" [email protected]',
to: email,
subject: 'Finance Club IIT Patna',
html: `<h3>Dear, ${name}</h3>
<p>Thanks for writing us. We will reach you soon:)<br>
<b>Contact us at : </b>[email protected]</p><br>
<small>This is an auto generated email, Please don't reply</small>`,
})
if (confirm.messageId) {
console.log('Confirmation mail sent successfully')
}
}
} catch (error) {
console.log('Internal server error, please try again')
req.flash('message', 'Internal server error, please try again')
}
res.redirect('/')
})
app.get('/blogs', async (req, res, next) => {
const articles = await article.find().sort({ createdAt: 'desc' })
res.status(200).render('blogs', {
articles: articles,
pageTitle: 'Finance Club IITP | Blogs',
path: '/blogs',
})
next()
})
app.use('/articles', articleRouter)
app.get('/resources', (req, res, next) => {
res.status(200).render('resources.ejs', {
pageTitle: 'FC Blogs | Resources',
path: '/resources',
})
next()
})
app.get('/events', (req, res, next) => {
res.status(200).render('events.ejs', {
pageTitle: 'Finance Club IITP | Events',
path: '/events',
})
next()
})
app.get('/team', (req, res, next) => {
res.status(200).render('team.ejs', {
pageTitle: 'Finance Club IITP | Team',
path: '/team',
})
next()
})
app.listen(port, () => console.log(`Server running on port ${port} 🔥`))