-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappTemp.js
166 lines (133 loc) · 4.77 KB
/
appTemp.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
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
'use strict';
const { default: axios } = require('axios');
var express = require('express'),
session = require('express-session'),
passport = require('passport'),
SpotifyStrategy = require('passport-spotify').Strategy,
consolidate = require('consolidate');
require('dotenv').config();
var port = process.env.PORT;
var authCallbackPath = '/auth/spotify/callback';
// Passport session setup.
// To support persistent login sessions, Passport needs to be able to
// serialize users into and deserialize users out of the session. Typically,
// this will be as simple as storing the user ID when serializing, and finding
// the user by ID when deserializing. However, since this example does not
// have a database of user records, the complete spotify profile is serialized
// and deserialized.
passport.serializeUser(function (user, done) {
done(null, user);
});
passport.deserializeUser(function (obj, done) {
done(null, obj);
});
// Use the SpotifyStrategy within Passport.
// Strategies in Passport require a `verify` function, which accept
// credentials (in this case, an accessToken, refreshToken, expires_in
// and spotify profile), and invoke a callback with a user object.
passport.use(
new SpotifyStrategy(
{
clientID: process.env.CLIENT_ID,
clientSecret: process.env.CLIENT_SECRET,
callbackURL: 'http://localhost:' + port + authCallbackPath,
},
function (accessToken, refreshToken, expires_in, profile, done) {
// asynchronous verification, for effect...
process.nextTick(function () {
return done(null, profile);
});
}
)
);
var app = express();
// configure Express
app.set('views', __dirname + '/views');
app.set('view engine', 'html');
app.use(
session({ secret: process.env.SECRET_KEY, resave: false, saveUninitialized: true })
);
// Initialize Passport! Also use passport.session() middleware, to support
// persistent login sessions (recommended).
app.use(passport.initialize());
app.use(passport.session());
app.use(express.static(__dirname + '/public'));
app.engine('html', consolidate.nunjucks);
app.get('/', function (req, res) {
res.render('index.html', { user: req.user });
});
app.get('/account', ensureAuthenticated, function (req, res) {
console.log(req);
res.render('account.html', { user: req.user });
});
app.get('/playlists', ensureAuthenticated, async function (req, res) {
let response = await axios.get(
` https://api.spotify.com/v1/me/playlists`
);
console.log(response.data);
res.render('playlists.html', { user: req.user });
});
app.get('/playlist/:id', ensureAuthenticated, function (req, res) {
res.render('playlist.html', { user: req.user });
});
app.get('/login', function (req, res) {
res.render('login.html', { user: req.user });
});
// GET /auth/spotify
// Use passport.authenticate() as route middleware to authenticate the
// request. The first step in spotify authentication will involve redirecting
// the user to spotify.com. After authorization, spotify will redirect the user
// back to this application at /auth/spotify/callback
app.get(
'/auth/spotify',
passport.authenticate('spotify', {
scope: ['user-read-email', 'user-read-private'],
showDialog: true,
})
);
// GET /auth/spotify/callback
// Use passport.authenticate() as route middleware to authenticate the
// request. If authentication fails, the user will be redirected back to the
// login page. Otherwise, the primary route function function will be called,
// which, in this example, will redirect the user to the home page.
app.get(
authCallbackPath,
passport.authenticate('spotify', { failureRedirect: '/login' }),
function (req, res) {
res.redirect('/');
}
);
app.get('/logout', function (req, res) {
req.logout(function (err) {
if (err) { return next(err); }
res.redirect('/');
});
});
app.listen(port, function () {
console.log('App is listening on port ' + port);
});
// Simple route middleware to ensure user is authenticated.
// Use this route middleware on any resource that needs to be protected. If
// the request is authenticated (typically via a persistent login session),
// the request will proceed. Otherwise, the user will be redirected to the
// login page.
function ensureAuthenticated(req, res, next) {
if (req.isAuthenticated()) {
return next();
}
res.redirect('/login');
}
/** Handle 404 errors -- this matches everything */
app.use(function (req, res, next) {
throw new NotFoundError();
});
/** Generic error handler; anything unhandled goes here. */
app.use(function (err, req, res, next) {
if (process.env.NODE_ENV !== "test") console.error(err.stack);
const status = err.status || 500;
const message = err.message;
return res.status(status).json({
error: { message, status },
});
});
module.exports = app;