-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathspotify.cpp
More file actions
406 lines (347 loc) · 10.9 KB
/
spotify.cpp
File metadata and controls
406 lines (347 loc) · 10.9 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
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
#include <iostream>
#include <string>
#include <fstream>
#include <nlohmann/json.hpp>
#include <vector>
using namespace std;
using json = nlohmann::json;
class Song {
private:
string name;
string artist;
string videoId;
public:
Song() {}
Song(string name, string artist, string videoId) : name(name), artist(artist), videoId(videoId) {}
string getName() { return name; }
string getArtist() { return artist; }
string getVideoId() { return videoId; }
void setName(string name) { this->name = name; }
void setArtist(string artist) { this->artist = artist; }
void setVideoId(string videoId) { this->videoId = videoId; }
void playSong(bool playVideo) {
string playCommand;
if (playVideo) {
playCommand = "mpv https://www.youtube.com/watch?v=" + videoId;
} else {
playCommand = "mpv --no-video https://www.youtube.com/watch?v=" + videoId;
}
cout << endl << endl;
system(playCommand.c_str());
cout << endl << endl;
}
};
class Playlist {
private:
vector<Song> songs;
public:
vector<Song> getSongs() { return songs; }
void setSongs(vector<Song> songs) { this->songs = songs; }
void addToPlaylist(Song song) {
songs.push_back(song);
}
void playPlaylist(bool playVideo) {
for (Song song : songs) {
song.playSong(playVideo);
}
}
};
string user;
vector<string> fav_list;
Playlist fav;
string addPlus(string input)
{
string result;
for (int i = 0; i < input.length(); ++i)
{
if (input[i] == ' ')
{
result += '+';
}
else
{
result += input[i];
}
}
return result;
}
string getYouTubeVideoId(string song, string artist, string apiKey)
{
string query = addPlus(song) + '+' + addPlus(artist);
string command = "curl -X GET 'https://www.googleapis.com/youtube/v3/search?key=" + apiKey + "&q=" + query + "&type=video&videoCategoryId=10' > output.json"; // 10 is the video category id for music
cout << endl
<< endl;
int exitCode = system(command.c_str());
cout << endl
<< endl;
if (exitCode == 0)
{
ifstream inputFile("output.json");
if (inputFile.is_open())
{
json root;
inputFile >> root;
json items = root["items"];
if (!items.empty())
{
string videoId = items[0]["id"]["videoId"];
inputFile.close();
return videoId;
}
else
{
cout << "No videos found!" << endl;
}
inputFile.close();
}
else
{
cout << "Failed to open output.json" << endl;
}
}
else
{
cout << "Failed to execute cURL command." << endl;
}
return "";
}
string getSpotifyAccessToken(string clientID, string clientSecret)
{
string command = "curl -X POST \"https://accounts.spotify.com/api/token\" -H \"Content-Type: application/x-www-form-urlencoded\" -d \"grant_type=client_credentials&client_id=" + clientID + "&client_secret=" + clientSecret + "\" > output.json";
cout << endl
<< endl; // because of the download logs
int exitCode = system(command.c_str());
cout << endl
<< endl;
if (exitCode == 0)
{
ifstream inputFile("output.json");
if (inputFile.is_open())
{
json jsonData;
inputFile >> jsonData;
inputFile.close();
if (jsonData.contains("access_token"))
{
return jsonData["access_token"];
}
}
}
else
{
cout << "Failed to execute cURL command." << endl;
}
return "";
}
string credentialsFile = "credentials3.json";
json credentials;
void loadCredentials()
{
ifstream file(credentialsFile);
if (file.is_open())
{
file >> credentials;
file.close();
}
}
void saveCredentials()
{
ofstream file(credentialsFile);
if (file.is_open())
{
file << credentials;
file.close();
}
}
void createAccount()
{
string username, password;
cout << "Enter new username: ";
cin >> username;
cout << "Enter password: ";
cin >> password;
credentials[username]["pass"] = password;
vector<string> fav_new;
credentials[username]["fav"] = fav_new;
saveCredentials();
cout << "Account created successfully!" << endl;
}
bool login()
{
string username, password;
cout << "Enter username: ";
cin >> username;
cout << "Enter password: ";
cin >> password;
if (credentials.contains(username) && credentials[username]["pass"] == password)
{
cout << "Login successful!" << endl;
fav_list = credentials[username]["fav"];
vector<Song> song_list;
for (int i=0;i<fav_list.size();i++){
Song temp;
temp.setVideoId(fav_list[i]);
song_list.push_back(temp);
}
fav.setSongs(song_list);
user = username;
return true;
}
else
{
cout << "Invalid username or password. Please try again." << endl;
return false;
}
}
bool askForVideoPreference()
{
char choice;
cout << "Do you want to play the video? (y/n): ";
cin >> choice;
return (choice == 'y' || choice == 'Y');
}
void search(string access_token, string apiKey)
{
string songName;
cout << "Enter the song name: ";
cin.ignore(); // Clear the buffer GPT
getline(cin, songName);
string formattedSongName = addPlus(songName);
string command = "curl -X GET 'https://api.spotify.com/v1/search?q=" + formattedSongName + "&type=track&limit=5&access_token=" + access_token + "' > output.json";
cout << endl
<< endl;
int exitCode = system(command.c_str());
cout << endl
<< endl;
if (exitCode == 0)
{
ifstream inputFile("output.json");
if (inputFile.is_open())
{
json root;
inputFile >> root;
json tracks = root["tracks"]["items"];
if (tracks.empty())
{
cout << "No tracks found!" << endl;
}
else
{
cout << "Top 5 tracks:" << endl;
for (int i = 0; i < tracks.size(); i++)
{
json track = tracks[i];
string track_name = track["name"];
string artist_name = track["artists"][0]["name"];
cout << i + 1 << ". Track: " << track_name << "\n Artist: " << artist_name << "\n\n";
}
cout << "Enter the number of the track you want to play (1-5): ";
int choice;
cin >> choice;
if (choice >= 1 && choice <= 5)
{
json chosen_track = tracks[choice - 1];
string chosen_track_name = chosen_track["name"];
string chosen_artist_name = chosen_track["artists"][0]["name"];
cout << "Playing track: " << chosen_track_name << " by " << chosen_artist_name << "\n";
string videoId = getYouTubeVideoId(chosen_track_name, chosen_artist_name, apiKey);
if (!videoId.empty())
{
Song s1(chosen_track_name,chosen_artist_name,videoId);
bool playVideo = askForVideoPreference();
s1.playSong(playVideo);
cout << "Add to Favorites (y/n)" << endl;
char choice;
cin >> choice;
if (choice == 'y')
{
fav.addToPlaylist(s1);
fav_list.push_back(videoId);
credentials[user]["fav"] = fav_list;
saveCredentials();
}
else
{
cout << "Could not find the song on YouTube." << endl;
}
}
else
{
cout << "Invalid choice! Please select a number between 1 and 5." << endl;
}
}
}
inputFile.close();
}
else
{
cout << "Internal Server Error! 500 Error!" << endl;
}
}
else
{
cout << "Failed to execute cURL command." << endl;
}
}
int main()
{
loadCredentials();
bool loggedIn = false;
while (!loggedIn)
{
cout << "1. Create Account\n2. Login\nEnter option: " << endl;
int choice;
while (!(cin >> choice))
{
cout << "Invalid choice. Try again." << endl;
cin.clear(); // clear the error flag on cin so that future I/O operations will work correctly after invalid input has been entered and ignored using cin.ignore() below (cin will not allow further I/O operations if its error flag is set)
cin.ignore(10000, '\n'); // ignore bad input up to 10000 characters or the newline character '\n', whichever comes first
}
if (choice == 1)
{
createAccount();
}
else if (choice == 2)
{
loggedIn = login();
}
else
{
cout << "Invalid choice. Try again." << endl;
}
}
string clientID = "13d3ebbdb54b4f2d9c7223f4655048dc"; // Spotify
string clientSecret = "1fc57941ab3441d2b0f09472b6925d50"; // Spotify
string access_token = getSpotifyAccessToken(clientID, clientSecret); // Spotify
string apiKey = "AIzaSyAZLtq61NE2gHMtBDsDR29Ojid4wuRWFEs"; // YouTube
string choices = "1. Search \n2. Play Favorites\n3. Logout\n";
int ch = 0;
while (ch != 3)
{
cout << choices;
while (!(cin >> ch))
{
cout << "Invalid choice. Try again." << endl;
cin.clear(); // clear the error flag on cin so that future I/O operations will work correctly after invalid input has been entered and ignored using cin.ignore() below (cin will not allow further I/O operations if its error flag is set)
cin.ignore(10000, '\n'); // ignore bad input up to 10000 characters or the newline character '\n', whichever comes first
}
if (ch == 1)
{
search(access_token, apiKey);
}
else if (ch == 2)
{
bool playvideo = askForVideoPreference();
fav.playPlaylist(playvideo);
}
else if (ch == 3)
{
cout << "Logging out\n";
}
else
{
cout << "Invalid choice. Try again\n";
}
}
return 0;
}