forked from JMPerez/spotify-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
157 lines (133 loc) · 4.74 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
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
var express = require('express');
var querystring = require('querystring');
var cookieParser = require('cookie-parser');
var bodyParser = require('body-parser');
var request = require('request');
var app = express();
app.use(cookieParser());
app.use(bodyParser.json());
var DEV = process.env.DEV ? true : false;
var stateKey = 'spotify_auth_state';
var client_id = process.env.CLIENT_ID;
var client_secret = process.env.CLIENT_SECRET;
var redirect_uri = DEV ? 'http://localhost:5000/callback' : process.env.REDIRECT_URI;
app.set('port', (process.env.PORT || 5000));
app.use(express.static(__dirname + '/public'));
// views is directory for all template files
app.set('views', __dirname + '/views');
app.set('view engine', 'ejs');
/**
* Generates a random string containing numbers and letters
* @param {number} length The length of the string
* @return {string} The generated string
*/
var generateRandomString = function(length) {
var text = '';
var possible = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
for (var i = 0; i < length; i++) {
text += possible.charAt(Math.floor(Math.random() * possible.length));
}
return text;
};
app.all('*', function(req,res,next) {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Headers", "Cache-Control, Pragma, Origin, Authorization, Content-Type, X-Requested-With");
res.header("Access-Control-Allow-Methods", "GET, PUT, POST, OPTIONS");
next();
});
app.get('/login', function(req, res) {
var state = generateRandomString(16);
res.cookie(stateKey, state);
// your application requests authorization
var scope = 'user-read-playback-state';
res.redirect('https://accounts.spotify.com/authorize?' +
querystring.stringify({
response_type: 'code',
client_id: client_id,
scope: scope,
redirect_uri: redirect_uri,
state: state
}));
});
app.get('/callback', function(req, res) {
// your application requests refresh and access tokens
// after checking the state parameter
var code = req.query.code || null;
var state = req.query.state || null;
var storedState = req.cookies ? req.cookies[stateKey] : null;
if (state === null || state !== storedState) {
console.log('state mismatch', 'state: ' + state, 'storedState ' + storedState, 'cookies ', req.cookies);
res.render('pages/callback', {
access_token: null,
expires_in: null
});
} else {
res.clearCookie(stateKey);
var authOptions = {
url: 'https://accounts.spotify.com/api/token',
form: {
code: code,
redirect_uri: redirect_uri,
grant_type: 'authorization_code'
},
headers: {
'Authorization': 'Basic ' + (new Buffer(client_id + ':' + client_secret).toString('base64'))
},
json: true
};
request.post(authOptions, function(error, response, body) {
if (!error && response.statusCode === 200) {
var access_token = body.access_token,
refresh_token = body.refresh_token,
expires_in = body.expires_in;
console.log('everything is fine');
res.cookie('refresh_token', refresh_token, {maxAge: 30 * 24 * 3600 * 1000, domain: 'localhost'});
res.render('pages/callback', {
access_token: access_token,
expires_in: expires_in,
refresh_token: refresh_token
});
} else {
console.log('wrong token');
res.render('pages/callback', {
access_token: null,
expires_in: null
});
}
});
}
});
app.post('/token', function(req, res) {
res.setHeader('Access-Control-Allow-Origin', '*');
var refreshToken = req.body ? req.body.refresh_token : null;
if (refreshToken) {
var authOptions = {
url: 'https://accounts.spotify.com/api/token',
form: {
refresh_token: refreshToken,
grant_type: 'refresh_token'
},
headers: {
'Authorization': 'Basic ' + (new Buffer(client_id + ':' + client_secret).toString('base64'))
},
json: true
};
request.post(authOptions, function(error, response, body) {
if (!error && response.statusCode === 200) {
var access_token = body.access_token,
expires_in = body.expires_in;
res.setHeader('Content-Type', 'application/json');
res.send(JSON.stringify({ access_token: access_token, expires_in: expires_in }));
} else {
res.setHeader('Content-Type', 'application/json');
res.send(JSON.stringify({ access_token: '', expires_in: '' }));
}
});
} else {
res.setHeader('Content-Type', 'application/json');
res.send(JSON.stringify({ access_token: '', expires_in: '' }));
}
});
app.listen(app.get('port'), function() {
console.log('Node app is running on port', app.get('port'));
});