-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.js
137 lines (125 loc) · 3.68 KB
/
server.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
const express = require('express');
const session = require('express-session');
const MongoStore = require('connect-mongo')(session);
const passport = require('passport');
const twitchStrategy = require('passport-twitch').Strategy;
const bodyParser = require('body-parser');
const isProd = process.env.NODE_ENV === 'production';
let settings;
if (isProd) {
settings = require('./server/settings.prod');
} else {
settings = require('./server/settings');
}
const host = process.env.HOST || 'http://localhost:8080';
// Set up Mongo.
const mongoose = require('mongoose');
mongoose.Promise = Promise;
require('./server/db')(mongoose);
const User = require('./server/models/user.js');
/**
* Setup for Login with Twitch.
* Most of this is setting up `express-sessions` to store data in a
* Mongo database.
*/
const server = express();
server.use(bodyParser.json());
server.use(bodyParser.urlencoded({
extended: true
}));
server.use(session({
secret: settings.login.sessionSecret,
resave: false,
saveUninitialized: false,
store: new MongoStore(settings.mongo)
}));
if (isProd) {
server.use(express.static('./dist'));
} else {
server.use(express.static('./public'));
}
server.use(passport.initialize());
server.use(passport.session());
// Set up Passport.
// This is Twitch specific. Different services require their own strategies.
/**
* Set up Passport.
* This is Twitch specific. Different services require their own strategies.
* Go here to find one for the service you want: http://www.passportjs.org/packages/
*/
passport.use(new twitchStrategy({
clientID: settings.twitch.clientId,
clientSecret: settings.twitch.secret,
callbackURL: settings.login.callback,
scope: settings.twitch.scopes
}, (accessToken, refreshToken, profile, done) => {
User.findOrCreate({
id: profile.id,
}, {
id: profile.id,
username: profile.displayName,
email: profile.email,
avatar: profile._json.logo,
access_token: accessToken,
refresh_token: refreshToken
}).then((result) => {
return done(null, result);
});
}));
/**
* serializeUser determines which data of the user object should be stored in the session
*/
passport.serializeUser(function (user, done) {
// Only store the user id.
// Whatever is passed as the second param is stored in req.session.passport.user.
done(null, user.doc._id);
});
/**
* The first argument of deserializeUser corresponds to the key of the user
* object that was given to the done function. Typically this users the user
* ID to match a record in a User database. User.findById does just this.
*/
passport.deserializeUser(function (id, done) {
// Retrieve user by stored user id.
User.findById(id, (err, user) => {
if (err) {
console.log('deserializeUser error:', err);
}
done(null, user);
});
});
// Set up middleware.
function loginRequiredCheck(req, res, next) {
if (!req.user) {
return res.status(200).send({
code: 401,
message: 'Not logged in'
});
}
return next();
}
// Set up routes which are caught from the requests/callback at Login.vue and after
// signing into Twitch.
server.get('/auth/twitch', passport.authenticate('twitch'));
server.get('/auth/callback', passport.authenticate('twitch', {
failureRedirect: '/'
}), (req, res) => {
res.redirect(`${host}/#/dashboard`);
});
server.get('/logout', (req, res) => {
req.logout();
res.redirect(`${host}/#/`);
});
const lockedRoutes = express.Router();
lockedRoutes.use(loginRequiredCheck);
lockedRoutes.get('/me', (req, res) => {
res.json({
user: req.user
});
});
server.use('/api', lockedRoutes);
// Start the server.
const port = process.env.PORT || 3000;
server.listen(port, () => {
console.log(`server operating on port ${port}`);
});