-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
426 lines (358 loc) · 14.5 KB
/
main.py
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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
from config import CLIENT_ID, CLIENT_SECRET
from requests import post, get, put
import base64
import json
from requests_oauthlib import OAuth2Session
from requests.auth import HTTPBasicAuth
import spotipy
from spotipy.oauth2 import SpotifyOAuth
from webbrowser import open
from kivymd.app import MDApp
from kivy.uix.gridlayout import GridLayout
from kivy.uix.label import Label
from kivy.uix.image import Image, AsyncImage
from kivy.uix.button import Button
from kivy.uix.textinput import TextInput
from kivymd.uix.card import MDCard
from kivymd.uix.scrollview import MDScrollView
from kivymd.uix.list import MDList, OneLineAvatarListItem, ImageLeftWidget
from kivy.uix.popup import Popup
from kivy.uix.checkbox import CheckBox
REDIRECT_URL = "https://www.google.com" # -> this worked? LOL
BASE_AUTH_URL = "https://accounts.spotify.com/authorize"
TOKEN_URL = "https://accounts.spotify.com/api/token"
SCOPE = [
"user-read-email",
"playlist-read-collaborative",
"playlist-read-private",
"user-modify-playback-state",
"playlist-modify-public",
"playlist-modify-private"
]
colors = {
"Teal": {
"200": "#212121",
"500": "#212121",
"700": "#212121",
},
"Red": {
"200": "#C25554",
"500": "#C25554",
"700": "#C25554",
},
"Light": {
"StatusBar": "E0E0E0",
"AppBar": "#202020",
"Background": "#2E3032",
"CardsDialogs": "#FFFFFF",
"FlatButtonDown": "#CCCCCC",
},
}
class Spotify:
def __init__(self):
self.spotify = OAuth2Session(CLIENT_ID, scope=SCOPE, redirect_uri=REDIRECT_URL)
# self.spotify = spotipy.Spotify(auth_manager=SpotifyOAuth(client_id=CLIENT_ID,
# client_secret=CLIENT_SECRET,
# redirect_uri=REDIRECT_URL,
# scope=SCOPE))
self.token = self.get_token()
self.headers = {"Authorization":f"Bearer {self.get_token()}"}
def authorize(self):
authorization_url, state = self.spotify.authorization_url(BASE_AUTH_URL)
open(authorization_url)
def fetching_token(self, redirect_response):
auth = HTTPBasicAuth(CLIENT_ID, CLIENT_SECRET)
token = self.spotify.fetch_token(TOKEN_URL, auth=auth,
authorization_response=redirect_response)
return token
def get_token(self):
username = f"{CLIENT_ID}:{CLIENT_SECRET}"
auth_bytes = username.encode("utf-8")
encoded = str(base64.b64encode(auth_bytes),'utf8')
url = "https://accounts.spotify.com/api/token"
headers = {
"Authorization" : f"Basic {encoded}",
"Content-Type" : "application/x-www-form-urlencoded"
}
data = {"grant_type" : "client_credentials"}
result = post(url, headers=headers, data=data)
json_result = json.loads(result.content)
token = json_result["access_token"]
return token
def get_spotify_id(self,id):
url = "https://api.spotify.com/v1/search"
query = f"?q={id}&type=artist"
query_url = url + query
result = self.spotify.get(query_url, headers=self.headers)
results = json.loads(result.content)
results = self.search_in_spotify(id)
return results["artists"]["items"][0]["id"]
def search_in_spotify(self, keyword):
url = "https://api.spotify.com/v1/search"
types = ["album", "artist", "playlist", "track", "show", "episode", "audiobook"]
result = get(
url=url,
headers=self.headers,
params= {
"q" : keyword,
"type" : types
})
results = json.loads(result.content)
return results
def get_artist(self, artist):
artist_id = self.get_spotify_id(artist)
url = f"https://api.spotify.com/v1/artists/{artist_id}"
result = get(url, headers=self.headers)
results = json.loads(result.content)
return results
def get_my_data(self):
result = self.spotify.get("https://api.spotify.com/v1/me", headers=self.headers)
results = json.loads(result.content)
return results
def get_user_playlists(self):
user_id = self.get_my_data()["id"]
url = f"https://api.spotify.com/v1/users/{user_id}/playlists"
result = get(url, headers=self.headers)
results = json.loads(result.content)
return results
def make_playlist(self, name_of_playlist, is_public):
user_id = self.get_my_data()["id"]
url = f"https://api.spotify.com/v1/users/{user_id}/playlists"
result = post(url=url,headers=self.headers,data=json.dumps({
"name" : name_of_playlist,
"public" : is_public
}))
return result
spotify = Spotify()
class SpotifyApp(MDApp):
authorization_data = ""
profile_data = ""
controls = []
playlist_ctrls = {}
playlist_songs = {}
default_image = "https://img.freepik.com/free-icon/user_318-644325.jpg"
def build(self):
self.window = GridLayout()
self.window.cols = 1
self.window.size_hint = (0.6, 0.7)
self.window.pos_hint = {"center_x": 0.5, "center_y":0.5}
self.theme_cls.colors = colors
self.theme_cls.primary_palette = "Teal"
self.theme_cls.accent_palette = "Red"
return self.window
def on_start(self):
self.msg = Label(
text="Please login to your Spotify and paste the entire URL of the site after your login"
)
self.authorize_button = Button(
text="Authorize",
size_hint= (1,0.5),
bold= True,
background_color ='#47B5FF',
)
self.authorize_button.bind(on_press=self.authorize_callback)
self.redirect_url = TextInput(
multiline=True,
padding_y= (20,20),
size_hint= (1, 0.5)
)
self.submit_button = Button(
text="Submit",
size_hint= (1,0.5),
bold= True,
background_color ='#47B5FF',
)
self.submit_button.bind(on_press=self.submit_callback)
self.controls = [
self.msg,
self.authorize_button,
self.redirect_url,
self.submit_button
]
self.add_widgets()
def go_to_main_page(self, event):
self.remove_widgets()
self.main_page()
def go_to_start_page(self,event):
self.remove_widgets()
self.on_start()
def main_page(self):
name = self.profile_data["display_name"]
pfp_image_url = self.default_image if len(self.profile_data["images"]) == 0 else self.profile_data["images"][0]["url"]
self.search_bar = TextInput(
hint_text="Search",
multiline=False,
size_hint=(0.5,0.5))
self.search_button = Button(
text="Search",
size_hint=(0.3,0.5),
background_color ='#47B5FF'
)
self.search_button.bind(on_press=self.searching)
self.profile_picture = AsyncImage(
source=pfp_image_url,
)
self.greeting = Label(
text=f"Hello {name}!",
)
self.playlists_btn = Button(
text="Playlists",
size_hint= (1,0.5),
bold= True,
background_color ='#47B5FF',
)
self.playlists_btn.bind(on_press=self.playlist_callback)
self.logout_btn = Button(
text="Logout",
size_hint= (1,0.5),
bold= True,
background_color ='#47B5FF',
)
self.logout_btn.bind(on_press=self.go_to_start_page)
self.controls = [
self.search_bar,
self.search_button,
self.profile_picture,
self.greeting,
self.playlists_btn,
self.logout_btn
]
self.add_widgets()
def search_page(self, searched, data):
title = Label(text=searched, size_hint=(0.2, 0.1))
to_be_added_to_controls = MDScrollView()
md_list = MDList()
to_be_added_to_controls.add_widget(md_list)
for item in data["albums"]["items"]:
image = self.default_image if len(item["images"]) == 0 else item["images"][0]["url"]
name = item["name"]
url = item["external_urls"]["spotify"]
output = OneLineAvatarListItem(ImageLeftWidget(source=image), text=name, theme_text_color="Custom", text_color=(1, 1, 1, 1),on_release=self.go_to_play_playlist_song)
self.playlist_songs[output] = url
md_list.add_widget(output)
self.controls.append(title)
self.controls.append(to_be_added_to_controls)
self.controls.append(Button(text="Back", on_press=self.go_to_main_page, size_hint=(0.2, 0.1)))
self.add_widgets()
def searching(self, event):
if self.search_bar.text != "":
search_data = spotify.search_in_spotify(self.search_bar.text)
self.remove_widgets()
self.search_page(self.search_bar.text, search_data)
else:
self.show_error_popup("Empty Search Bar")
def indiv_playlist(self, event):
self.remove_widgets()
self.go_to_indiv_playlist(self.playlist_ctrls[event])
def go_to_indiv_playlist(self, data):
# get id of the playlist here
name_of_playlist = data["name"]
url = f"https://api.spotify.com/v1/playlists/{data['id']}/tracks"
result = get(url, headers=spotify.headers)
results = json.loads(result.content)
self.indiv_playlist_page(results, name_of_playlist)
def indiv_playlist_page(self, data, name):
to_be_added_to_controls = MDScrollView()
md_list = MDList()
to_be_added_to_controls.add_widget(md_list)
for track in data["items"]:
image = self.default_image if len(track["track"]["album"]["images"]) == 0 else track["track"]["album"]["images"][0]["url"]
item = OneLineAvatarListItem(ImageLeftWidget(source=image), text=track["track"]["name"], theme_text_color="Custom", text_color=(1, 1, 1, 1),on_release=self.go_to_play_playlist_song)
self.playlist_songs[item] = track["track"]["external_urls"]["spotify"]
md_list.add_widget(item)
self.controls.append(Label(text=name, size_hint=(0.1,0.1)))
self.controls.append(to_be_added_to_controls)
self.controls.append(Button(text="Back", on_press=self.playlist_callback, size_hint=(0.2, 0.1)))
self.add_widgets()
'''
turns out that in order to play a song, you have to use spotipy since the method im using for this is weird
which, in turn, will make me have to change the entire code around and i am NOT doing that, so until i feel
like implementing it and changing the code, this feature will unforunately not be fully implemented.
'''
def go_to_play_playlist_song(self, event):
url_of_song = self.playlist_songs[event]
open(url_of_song)
def playlists_page(self):
playlist_data = spotify.get_user_playlists()
all_playlists = playlist_data["items"]
to_be_added_to_controls = MDScrollView()
md_list = MDList()
to_be_added_to_controls.add_widget(md_list)
for playlist in all_playlists:
image = self.default_image if len(playlist["images"]) == 0 else playlist["images"][0]["url"]
item = OneLineAvatarListItem(
ImageLeftWidget(source=image),
theme_text_color="Custom",
text_color=(1, 1, 1, 1),
text=playlist["name"],
on_release = self.indiv_playlist
)
self.playlist_ctrls[item] = playlist
md_list.add_widget(item)
self.controls.append(to_be_added_to_controls)
self.controls.append(Button(text="Make Playlist", size_hint=(0.2, 0.1), on_press=self.go_to_make_playlist))
self.controls.append(Button(text="Back", on_press=self.go_to_main_page, size_hint=(0.2, 0.1)))
self.add_widgets()
def make_playlist(self, event):
print(self.publicity.active)
if self.get_name.text != "":
def close_pop(event):
popup.dismiss()
self.remove_widgets()
self.playlists_page()
spotify.make_playlist(self.get_name.text, self.publicity.active)
content_for_popup = Button(text="Close")
popup = Popup(title="Playlist Created!", content=content_for_popup, size_hint=(0.2,0.2))
content_for_popup.bind(on_press=close_pop)
popup.open()
else:
self.show_error_popup("Empty Name")
def make_playlist_page(self):
self.get_name = TextInput(
hint_text = "Name of Playlist",
size_hint=(0.2, 0.1)
)
self.publicity = CheckBox(size_hint=(0.2, 0.1))
self.make_playlist_button = Button(
text="Create playlist",
on_press = self.make_playlist,
size_hint=(0.2, 0.1)
)
self.controls.append(self.get_name)
self.controls.append(Label(text="Make public",size_hint=(0.2, 0.1)))
self.controls.append(self.publicity)
self.controls.append(self.make_playlist_button)
self.controls.append(Button(text="Back", on_press=self.playlist_callback, size_hint=(0.2, 0.1)))
self.add_widgets()
def go_to_make_playlist(self, event):
self.remove_widgets()
self.make_playlist_page()
def add_widgets(self):
for elem in self.controls:
self.window.add_widget(elem)
def remove_widgets(self):
for elem in self.controls:
self.window.remove_widget(elem)
self.controls = []
def authorize_callback(self, event):
spotify.authorize()
def show_error_popup(self, text):
def close_pop(event):
popup.dismiss()
content_for_popup = Button(text="Close")
popup = Popup(title=text, content=content_for_popup, size_hint=(0.2,0.2))
content_for_popup.bind(on_press=close_pop)
popup.open()
def submit_callback(self, event):
if self.redirect_url.text == "":
self.show_error_popup("Empty URL")
else:
self.authorization_data = spotify.fetching_token(self.redirect_url.text)
self.profile_data = spotify.get_my_data()
self.remove_widgets()
self.main_page()
def playlist_callback(self, events):
self.remove_widgets()
self.playlists_page()
if __name__ == "__main__":
SpotifyApp().run()