-
Notifications
You must be signed in to change notification settings - Fork 0
/
spotify-db.php
378 lines (340 loc) · 12.4 KB
/
spotify-db.php
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
<?php
function retrieveSongByTitle($title){
global $db;
$query = "select *
from Song
inner join SongTitle_ArtistID
on Song.title = SongTitle_ArtistID.title and Song.artist_id = SongTitle_ArtistID.artist_id
inner join Album
on SongTitle_ArtistID.album_id = Album.album_id
natural join Song_Language
natural join Song_Genre
inner join Artist
on Artist.artist_id = Song.artist_id
where Song.title=:title
";
$statement = $db->prepare($query);
$statement->bindValue(':title', $title);
$statement->execute();
$result = $statement->fetchAll();
//close cursor
$statement->closeCursor();
return $result;
}
function retrieveSongByArtist($artistName){
global $db;
$query = "select *
from Song
inner join SongTitle_ArtistID
on Song.title = SongTitle_ArtistID.title and Song.artist_id = SongTitle_ArtistID.artist_id
inner join Album
on SongTitle_ArtistID.album_id = Album.album_id
natural join Song_Language
natural join Song_Genre
inner join Artist
on Artist.artist_id = Song.artist_id
where Artist.name=:artistName
";
$statement = $db->prepare($query);
$statement->bindValue(':artistName', $artistName);
$statement->execute();
$result = $statement->fetchAll();
//close cursor
$statement->closeCursor();
return $result;
}
function retrieveSongByID($song_id){
global $db;
$query = "select *
from Song
inner join SongTitle_ArtistID
on Song.title = SongTitle_ArtistID.title and Song.artist_id = SongTitle_ArtistID.artist_id
inner join Album
on SongTitle_ArtistID.album_id = Album.album_id
natural join Song_Language
natural join Song_Genre
inner join Artist
on Artist.artist_id = Song.artist_id
where Song.song_id=:song_id
";
$statement = $db->prepare($query);
$statement->bindValue(':song_id', $song_id);
$statement->execute();
$result = $statement->fetchAll();
//close cursor
$statement->closeCursor();
return $result;
}
//---------------------------add---------------------------------
//---------------------------------------------------------------
function addTrack_Song($song_id, $title, $duration, $artist_id){
global $db;
$query = "insert into Song(song_id, title, duration, artist_id) values (:song_id, :title, :duration, :artist_id)";
$statement = $db->prepare($query);
$statement->bindValue(':song_id', $song_id);
$statement->bindValue(':title', $title);
$statement->bindValue(':duration', $duration);
$statement->bindValue(':artist_id', $artist_id);
$statement->execute();
$statement->closeCursor();
}
function addTrack_Album($album_id, $album_name, $album_type, $num_of_tracks, $release_year, $artist_id){
global $db;
$query = "insert into Album(album_id,album_name,album_type,num_of_tracks,release_year, artist_id) values (:album_id,:album_name,:album_type,:num_of_tracks,:release_year,:artist_id)";
$statement = $db->prepare($query);
$statement->bindValue(':album_id', $album_id);
$statement->bindValue(':album_name', $album_name);
$statement->bindValue(':album_type', $album_type);
$statement->bindValue(':num_of_tracks', $num_of_tracks);
$statement->bindValue(':release_year', $release_year);
$statement->bindValue(':artist_id', $artist_id);
$statement->execute();
$statement->closeCursor();
}
function addTrack_AlbumName_ArtistID($artist_id, $album_name, $album_id){
global $db;
$query = "insert into AlbumName_ArtistID(artist_id,album_name,album_id) values (:artist_id,:album_name,:album_id)";
$statement = $db->prepare($query);
$statement->bindValue(':artist_id', $artist_id);
$statement->bindValue(':album_name', $album_name);
$statement->bindValue(':album_id', $album_id);
$statement->execute();
$statement->closeCursor();
}
function addTrack_Artist($artist_id, $name, $country){
global $db;
$query = "insert into Artist(artist_id,name,country) values (:artist_id,:name,:country)";
$statement = $db->prepare($query);
$statement->bindValue(':artist_id', $artist_id);
$statement->bindValue(':name', $name);
$statement->bindValue(':country', $country);
$statement->execute();
$statement->closeCursor();
}
function addTrack_SongTitle_AlbumID($title,$album_id,$song_id){
global $db;
$query = "insert into SongTitle_AlbumID(title,album_id,song_id) values (:title,:album_id,:song_id)";
$statement = $db->prepare($query);
$statement->bindValue(':title', $title);
$statement->bindValue(':album_id', $album_id);
$statement->bindValue(':song_id', $song_id);
$statement->execute();
$statement->closeCursor();
}
function addTrack_SongTitle_ArtistID($title,$artist_id,$album_id){
global $db;
$query = "insert into SongTitle_ArtistID(title,artist_id,album_id) values (:title,:artist_id,:album_id)";
$statement = $db->prepare($query);
$statement->bindValue(':title', $title);
$statement->bindValue(':artist_id', $artist_id);
$statement->bindValue(':album_id', $album_id);
$statement->execute();
$statement->closeCursor();
}
function addTrack_Song_Genre($song_id, $genre){
global $db;
$query = "insert into Song_Genre(song_id, genre) values (:song_id,:genre)";
$statement = $db->prepare($query);
$statement->bindValue(':song_id', $song_id);
$statement->bindValue(':genre', $genre);
$statement->execute();
$statement->closeCursor();
}
function addTrack_Song_Language($song_id, $language){
global $db;
$query = "insert into Song_Language(song_id, language) values (:song_id,:language)";
$statement = $db->prepare($query);
$statement->bindValue(':song_id', $song_id);
$statement->bindValue(':language', $language);
$statement->execute();
$statement->closeCursor();
}
//--------------------------delete-------------------------------
//---------------------------------------------------------------
function deleteTrack_Song($song_id){
global $db;
$query = "delete from Song where song_id = :song_id";
$statement = $db->prepare($query);
$statement->bindValue(':song_id', $song_id);
$statement->execute();
$statement->closeCursor();
}
function deleteTrack_SongTitle_ArtistID($title,$artist_id){
global $db;
$query = "delete from SongTitle_ArtistID where title = :title and artist_id = :artist_id";
$statement = $db->prepare($query);
$statement->bindValue(':title', $title);
$statement->bindValue(':artist_id', $artist_id);
$statement->execute();
$statement->closeCursor();
}
function deleteTrack_SongTitle_AlbumID($song_id){
global $db;
$query = "delete from SongTitle_AlbumID where song_id = :song_id";
$statement = $db->prepare($query);
$statement->bindValue(':song_id', $song_id);
$statement->execute();
$statement->closeCursor();
}
function deleteTrack_Song_Language($song_id){
global $db;
$query = "delete from Song_Language where song_id = :song_id";
$statement = $db->prepare($query);
$statement->bindValue(':song_id', $song_id);
$statement->execute();
$statement->closeCursor();
}
function deleteTrack_Song_Genre($song_id){
global $db;
$query = "delete from Song_Genre where song_id = :song_id";
$statement = $db->prepare($query);
$statement->bindValue(':song_id', $song_id);
$statement->execute();
$statement->closeCursor();
}
function deleteTrack_Contain ($song_id){
global $db;
$query = "delete from Contain where song_id = :song_id";
$statement = $db->prepare($query);
$statement->bindValue(':song_id', $song_id);
$statement->execute();
$statement->closeCursor();
}
function deleteTrack_User_Like ($song_id){
global $db;
$query = "delete from User_Like where song_id = :song_id";
$statement = $db->prepare($query);
$statement->bindValue(':song_id', $song_id);
$statement->execute();
$statement->closeCursor();
}
//--------------------------update-------------------------------
//---------------------------------------------------------------
function updateTrack_Song($song_id, $duration){
global $db;
$query = "update Song
set duration = :duration
where song_id = :song_id";
$statement = $db->prepare($query);
$statement->bindValue(':song_id', $song_id);
$statement->bindValue(':duration', $duration);
$statement->execute();
$statement->closeCursor();
}
function updateTrack_Album($album_id, $album_type, $num_of_tracks, $release_year){
global $db;
$query = "update Album
set release_year = :release_year, album_type = :album_type, num_of_tracks = :num_of_tracks
where album_id = :album_id";
$statement = $db->prepare($query);
$statement->bindValue(':album_id', $album_id);
$statement->bindValue(':release_year', $release_year);
$statement->bindValue(':album_type', $album_type);
$statement->bindValue(':num_of_tracks', $num_of_tracks);
$statement->execute();
$statement->closeCursor();
}
function updateTrack_Artist($artist_id, $name, $country){
global $db;
$query = "update Artist
set name = :name, country = :country
where artist_id = :artist_id";
$statement = $db->prepare($query);
$statement->bindValue(':artist_id', $artist_id);
$statement->bindValue(':name', $name);
$statement->bindValue(':country', $country);
$statement->execute();
$statement->closeCursor();
}
//--------------------------filter-------------------------------
//---------------------------------------------------------------
function filterTrackByGenre($genre){
global $db;
$query = "select *
from Song
inner join SongTitle_ArtistID
on Song.title = SongTitle_ArtistID.title and Song.artist_id = SongTitle_ArtistID.artist_id
inner join Album
on SongTitle_ArtistID.album_id = Album.album_id
natural join Song_Language
natural join Song_Genre
inner join Artist
on Artist.artist_id = Song.artist_id
where Song_Genre.genre=:genre
";
$statement = $db->prepare($query);
$statement->bindValue(':genre', $genre);
$statement->execute();
$result = $statement->fetchAll();
$statement->closeCursor();
return $result;
}
function filterTrackByRegion($region){
global $db;
$query = "select *
from Song
inner join SongTitle_ArtistID
on Song.title = SongTitle_ArtistID.title and Song.artist_id = SongTitle_ArtistID.artist_id
inner join Album
on SongTitle_ArtistID.album_id = Album.album_id
natural join Song_Language
natural join Song_Genre
inner join Artist
on Artist.artist_id = Song.artist_id
where Artist.country=:region
";
$statement = $db->prepare($query);
$statement->bindValue(':region', $region);
$statement->execute();
$result = $statement->fetchAll();
$statement->closeCursor();
return $result;
}
function filterTrackByYear($year){
global $db;
$query = "select *
from Song
inner join SongTitle_ArtistID
on Song.title = SongTitle_ArtistID.title and Song.artist_id = SongTitle_ArtistID.artist_id
inner join Album
on SongTitle_ArtistID.album_id = Album.album_id
natural join Song_Language
natural join Song_Genre
inner join Artist
on Artist.artist_id = Song.artist_id
where Album.release_year=:year
";
$statement = $db->prepare($query);
$statement->bindValue(':year', $year);
$statement->execute();
$result = $statement->fetchAll();
$statement->closeCursor();
return $result;
}
//--------------------------like---------------------------------
//---------------------------------------------------------------
function add_User_Like($user_id, $song_id)
{
global $db;
$query = "insert into User_Like(user_id, song_id) values (:user_id, :song_id)";
$statement = $db->prepare($query);
$statement->bindValue(':user_id', $user_id);
$statement->bindValue(':song_id', $song_id);
$statement->execute();
$statement->closeCursor();
}
function retrieveSongidByUserid($user_id){
global $db;
$query = "select song_id
from User_Like
where user_id=:user_id
";
$statement = $db->prepare($query);
$statement->bindValue(':user_id', $user_id);
$statement->execute();
$result = $statement->fetchAll();
//close cursor
$statement->closeCursor();
return $result;
}
?>