-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.js
More file actions
152 lines (120 loc) · 4.21 KB
/
Copy pathapp.js
File metadata and controls
152 lines (120 loc) · 4.21 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
const express = require('express')
const path = require('path')
const favicon = require('serve-favicon')
const logger = require('morgan')
const cookieParser = require('cookie-parser')
const bodyParser = require('body-parser')
const cors = require('cors')
const index = require('./routes/index')
const character = require('./routes/character')
const character_ability = require('./routes/character_ability')
const character_skill = require('./routes/character_skill')
const armor = require('./routes/armor')
const item = require('./routes/item')
const weapon = require('./routes/weapon')
const app = express()
// ------------------ INITIAL SETUP ------------------
const knex = require('./db/knex');
const jwt = require('jsonwebtoken');
// Bring in Passport and the Facebook OAuth Strategy
const passport = require('passport');
const FacebookStrategy = require('passport-facebook').Strategy;
// Require dotenv to use environment variables
require('dotenv').config();
// ------------------ PASSPORT FACEBOOK OAUTH 2.0 ------------------
// Configure the Facebook strategy
passport.use(new FacebookStrategy(
// filling in the blanks on the FB strategy
{
clientID: process.env.CLIENT_ID,
clientSecret: process.env.CLIENT_SECRET,
callbackURL: 'http://localhost:3000/auth/facebook/callback',
profileFields: ['id', 'email']
},
// after both API calls were made
function onSuccessfulLogin(token, refreshToken, profile, done) {
// User has successfuly logged in through FB
// Run this code
// Capture email to use in database queries
let email = profile.emails[0].value;
// Query database for user that has just logged in through Facebook
knex('player')
.where('email', email)
.then(user => {
// If user does not exist in database, create new record
if (user.length === 0) {
knex('player')
.insert({email, token})
.returning('*')
.then(newUser => {
// Pass user info to callback route
// done function first parameter/argument is error
done(null, {
user: newUser[0],
token: token
})
})
}
// If user already exists in database, pass their info on to callback route
else {
done(null, {
user: user[0],
token: token
})
}
})
.catch(err => {
console.log(err);
done(err);
})
}
));
app.use(passport.initialize());
// ROUTE 1: Initial route for logging in through Facebook
app.get('/auth/facebook', passport.authenticate('facebook', { scope: ['email'] }));
// ROUTE 2: Callback route that executes after a successful login w/Facebook
app.get('/auth/facebook/callback', (req, res, next) => {
passport.authenticate('facebook', (err, data) => {
console.log(data);
let user = data.user;
delete user.password;
// delete user.username;
let token = jwt.sign(user, process.env.JWT_SECRET);
res.redirect(`/logged/?token=${token}`);
})(req, res, next)
});
// ------------------ END PASSPORT FACEBOOK OAUTH 2.0 ------------------
app.use(cors())
// view engine setup
app.set('views', path.join(__dirname, 'views'))
app.set('view engine', 'hbs')
// uncomment after placing your favicon in /public
//app.use(favicon(path.join(__dirname, 'public', 'favicon.ico')))
app.use(logger('dev'))
app.use(bodyParser.json())
app.use(bodyParser.urlencoded({ extended: false }))
app.use(cookieParser())
app.use(express.static(path.join(__dirname, 'public')))
app.use('/', index)
app.use('/character', character)
app.use('/character/:id/ability', character_ability)
app.use('/character/:id/skill', character_skill)
app.use('/armor', armor)
app.use('/item', item)
app.use('/weapon', weapon)
// catch 404 and forward to error handler
app.use(function(req, res, next) {
var err = new Error('Not Found')
err.status = 404
next(err)
})
// error handler
app.use(function(err, req, res, next) {
// set locals, only providing error in development
res.locals.message = err.message
res.locals.error = req.app.get('env') === 'development' ? err : {}
// render the error page
res.status(err.status || 500)
res.render('error')
})
module.exports = app