forked from BobNisco/Spotlistr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.js
195 lines (162 loc) · 5.81 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
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
/**
* This is an example of a basic node.js script that performs
* the Authorization Code oAuth2 flow to authenticate against
* the Spotify Accounts.
*
* For more information, read
* https://developer.spotify.com/web-api/authorization-guide/#authorization_code_flow
*/
var express = require('express'); // Express web server framework
var request = require('request'); // "Request" library
var querystring = require('querystring');
var client_id = '0dc431a2682b462e93cd00fbf8295447'; // Your client id
var client_secret = '3c29e4ee31b242758532b7c12cffe4a5'; // Your client secret
var redirect_uri = 'http://spotlistr.herokuapp.com/callback'; // Your redirect uri
// Reddit API settings
var reddit_client_id = 'x_1EWGYnLKmEZA';
var reddit_client_secret = 'N6csZ5eNC_js63V5GxxRXTEn2UY';
var reddit_redirect_uri = 'http://spotlistr.herokuapp.com/reddit-oauth-callback';
// Change the redirect URI if we are developing
// To set NODE_ENV in Windows: SET NODE_ENV=development
// NODE_ENV in *nix/OSX: export NODE_ENV=development
if (process.env.NODE_ENV === "development") {
redirect_uri = 'http://localhost:8888/callback';
}
var app = express();
app.use(express.static(__dirname + '/dist'));
app.get('/login', function(req, res) {
// your application requests authorization
var scope = 'user-read-private playlist-read playlist-read-private playlist-modify playlist-modify-private';
res.redirect('https://accounts.spotify.com/authorize?' +
querystring.stringify({
response_type: 'code',
client_id: client_id,
scope: scope,
redirect_uri: redirect_uri
}));
});
app.get('/callback', function(req, res) {
// your application requests refresh and access tokens
var code = req.query.code;
var authOptions = {
url: 'https://accounts.spotify.com/api/token',
form: {
code: code,
redirect_uri: redirect_uri,
grant_type: 'authorization_code',
client_id: client_id,
client_secret: client_secret
},
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;
var options = {
url: 'https://api.spotify.com/v1/me',
headers: { 'Authorization': 'Bearer ' + access_token },
json: true
};
// use the access token to access the Spotify Web API
request.get(options, function(error, response, body) {
console.log(body);
});
// we can also pass the tokens to the browser to make requests from there
res.redirect('/#/splash/' + access_token + '/' + refresh_token);
}
});
});
app.get('/reddit-oauth-callback', function(req, res) {
if (req.query.error) {
// TODO: Handle error
}
var code = req.query.code,
state = req.query.state;
var authOptions = {
url: 'https://ssl.reddit.com/api/v1/access_token',
form: {
code: code,
redirect_uri: reddit_redirect_uri,
grant_type: 'authorization_code',
},
headers: { 'Authorization': 'Basic ' + (new Buffer(reddit_client_id + ':' + reddit_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;
res.redirect('/#/search/multireddit/' + access_token + '/' + refresh_token);
}
});
});
app.get('/refresh_token', function(req, res) {
// requesting access token from refresh token
var refresh_token = req.query.refresh_token;
var 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) {
var access_token = body.access_token;
res.send({
'access_token': access_token
});
}
});
});
app.get('/reddit/api/multi/mine/:access_token', function(req, res) {
res.header("Access-Control-Allow-Origin", "*");
res.header('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE');
res.header("Access-Control-Allow-Headers", "X-Requested-With, Content-Type");
// http://www.reddit.com/dev/api#GET_api_multi_mine
var options = {
url: 'https://oauth.reddit.com/api/multi/mine.json',
headers: {
'Authorization': 'bearer ' + req.params.access_token,
'user-agent': makeRedditApiUserHeader()
}
};
// use the access token to access the Spotify Web API
request.get(options, function(error, response, body) {
res.send(body);
});
});
app.get('/reddit/refresh_token/:access_token/:refresh_token', function(req, res) {
res.header("Access-Control-Allow-Origin", "*");
res.header('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE');
res.header("Access-Control-Allow-Headers", "X-Requested-With, Content-Type");
var options = {
url: 'https://ssl.reddit.com/api/v1/access_token',
headers: { 'Authorization': 'Basic ' + (new Buffer(reddit_client_id + ':' + reddit_client_secret).toString('base64')) },
form: {
grant_type: 'refresh_token',
refresh_token: req.params.refresh_token
},
json: true,
};
console.log(options);
request.post(options, function(error, response, body) {
console.log(body);
if (!error && response.statusCode === 200) {
var access_token = body.access_token;
res.send({
'access_token': access_token
});
}
});
});
var makeRedditApiUserHeader = function() {
return 'Spotlistr/1.9.3';
}
var port = Number(process.env.PORT || 8888);
app.listen(port, function() {
console.log("Listening on " + port);
});