-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
136 lines (117 loc) · 3.61 KB
/
app.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
const express = require("express"); // Express web server framework
const request = require("request"); // "Request" library
const queryString = require("query-string");
const cookieParser = require("cookie-parser");
const cors = require("cors");
require("dotenv").config();
const app = express();
const client_id = process.env.SPOTIFY_CLIENT_ID;
const client_secret = process.env.SPOTIFY_CLIENT_SECRET;
const redirect_uri = process.env.REDIRECT_URI;
const stateKey = "spotify_auth_state";
let generateRandomString = (length) => {
let text = "";
let possible =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
for (let i = 0; i < length; i++) {
text += possible.charAt(Math.floor(Math.random() * possible.length));
}
return text;
};
app
.use(express.static(__dirname + "/public"))
.use(cors())
.use(cookieParser());
app.get("/login", (req, res) => {
let state = generateRandomString(16);
res.cookie(stateKey, state);
let scope =
"user-read-private user-read-email user-read-currently-playing playlist-modify-public";
const url = "https://accounts.spotify.com/authorize";
const query = {
client_id,
response_type: "code",
redirect_uri,
scope,
state,
};
const requestUrl = queryString.stringifyUrl({ url: url, query: query });
res.redirect(requestUrl);
});
app.get("/callback", (req, res) => {
let code = req.query.code || null;
let state = req.query.state || null;
let storedState = req.cookies ? req.cookies[stateKey] : null;
if (!state || state !== storedState) {
res.redirect("/#" + queryString.stringify({ error: "state_mismatch" }));
} else {
res.clearCookie(stateKey);
let authOptions = {
url: "https://accounts.spotify.com/api/token",
form: {
grant_type: "authorization_code",
code,
redirect_uri,
client_id,
client_secret,
},
json: true,
};
request.post(authOptions, (error, response, body) => {
if (!error && response.statusCode === 200) {
let access_token = body.access_token;
let refresh_token = body.refresh_token;
let options = {
url: "https://api.spotify.com/v1/me",
headers: { Authorization: "Bearer " + access_token },
json: true,
};
request.get(options, (error, response, body) => {
console.log(body);
res.redirect(
"http://localhost:3000/#" +
queryString.stringify({ access_token, refresh_token })
);
});
} else {
res.redirect(
"http://localhost:3000/#" +
queryString.stringify({ error: "invalid_token" })
);
}
});
}
});
app.get("/refresh_token", (req, res) => {
// requesting access token from refresh token
let refresh_token = req.query.refresh_token;
let authOptions = {
url: "https://accounts.spotify.com/api/token",
headers: {
Authorization:
"Basic " +
new Buffer(client_id + ":" + client_secret).toString("base64"),
},
form: {
grant_type: "refresh_token",
refresh_token: refresh_token,
},
json: true,
};
request.post(authOptions, function (error, response, body) {
if (!error && response.statusCode === 200) {
let access_token = body.access_token;
res.send({
access_token: access_token,
});
}
});
});
// app.use(express.static(path.join(__dirname, "build")));
// app.get("*", (req, res) => {
// res.sendFile(path.join(__dirname, "build/index.html"));
// });
let PORT = process.env.PORT || 8080;
app.listen(PORT, () => {
console.log(`Server listening on port ${PORT}...`);
});