-
Notifications
You must be signed in to change notification settings - Fork 0
/
Routes.txt
282 lines (248 loc) · 5.47 KB
/
Routes.txt
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
/auth/login (post)
Send: username and password
receive:
If Existing combination in database
-> User object if exists in database
1) Fname
2) Lastname
3) Username
4) email
5) isAdmin
6) isApproved
-> User object contains session variables you can attach to $rootscope
-> User will be logged in inside the server
If non-existent combination in database
-> 400
/auth/signup (post)
Send:
1) User object
Receive:
If Existing username in database
-> 409
If non-existent combination in database
-> User object if exists in database
1) Fname
2) Lastname
3) Username
4) email
5) isAdmin
6) isApproved
-> User object contains session variables you can attach to $rootscope
-> User will be logged in inside the server
Insertion Error
-> 405
/auth/logout
Send:
1) User object (rootscope from login)
Receive: redirect to index.
/profile/:userid (get)
For viewing a userid's profile
Send:
1) User object (rootscope from login)
Receive:
If success
-> row sa users_name and users
-> array of playlists
-> array of songs
Fail
-> 403
/profile/:userid (put)
Admin editing account if approved or not
Send:
1) username (one attached in rootscope)
2) isAdmin (one attached in rootscope)
3) userid
4) update user data
Receive:
If success
true
Fail
-> 404 or 405
/profile/:userid (put)
Admin deleting disapproved account
Send:
1) username (one attached in rootscope)
2) isAdmin (one attached in rootscope)
3) userid
Receive:
If success
true
Fail
-> 404 or 405
/profile (get)
For viewing own profile
Send:
1) User object (rootscope from login)
Recieve:
If found
-> Your entry in users_name and users as one object
If not found
-> 404
/profile (put)
For editing own profile
Send:
1) User object (rootscope from login)
2) objkect to change
/api/playlist (post)
For creating a new playlist
Send:
1) User object (rootscope from login)
2)
3) users_id
4) array of file_ids to add to playlist (music table)
5) array of playlist tags
6) playlistname
Receive:
If successful creation
-> Newly inserted playlist (push it to array of user's playlist)
Insertion Error
-> 500
No such thing as conflict error
/api/playlist/:id (get)
Retrieving list of music in playlist with id
Send: (inside $http.get config object)
1) User object (rootscope from login)
3) users_id
Receive:
If playlist ID exists
-> Array of music contained in the playlist
Else
-> 404
/api/playlist/:id (put)
Update playlist with id
Send:
1) User object (rootscope from login)
3)
4) playlist object
Receive:
If successful creation
-> Newly edited playlist. (similar to get)
Do a get again to update client.
Insertion Error
-> 500
No such thing as conflict error
/api/playlist/:id (delete)
delete playlist with id
Send:
1) User object (rootscope from login)
Receive:
If successful creation
-> get request for /api/playlist
Delete Error
-> 500
No such thing as conflict error
ID not found:
410
/api/music (post)
For uploading new music
Send:
1) User object (rootscope from login)
4) music file
5) [<artist names>...]
Receive:
If successful creation
-> Newly inserted music (push it to array of user's playlist)
Insertion Error
-> 500
No such thing as conflict error
/api/music (get)
For getting a list of all music na ginawa mo.
Send:
1) user object
3) users_id
Receive
If successful creation
-> Array of all songs(objects)
{
song_name,
artist,
length,
times_played,
views
}
/api/music/:id (put)
edit music name with id
Send:
1) user object
2) isAdmin (one attached in rootscope)
3) new name
Receive:
If successful creation
-> Newly edited playlist.
Do a get again to update client.
Insertion Error
-> 500
No such thing as conflict error
Not found
-> 404
/api/music/:id (delete)
delete playlist with id
Send:
1) username (one attached in rootscope)
2) isAdmin (one attached in rootscope)
Receive:
If successful creation
-> Newly deleted playlist.
Do a get again to update client.
Insertion Error
-> 500
No such thing as conflict error
Not found
-> 404
/api/music/:id (get)
download music with id
Send:
1) user object(one attached in rootscope)
2) isAdmin (one attached in rootscope)
Receive:
Success
-> File
No such thing as conflict error
Not found
-> 404
/api/search/:parameter (get)
(For searching)
Retrieving list of:
music with name like parameter,
playlist with name like parameter,
playlist with tag like parameter,
artist with tag like parameter,
album with album name like parameter,
user with username like parameter
All will be unique, so non repeating
Send: (inside $http.get config object)
1) username (one attached in rootscope)
2) isAdmin (one attached in rootscope)
3) users_id
Receive:
If playlist ID exists
-> json object with:
{
artists: [<objects of matched artists>],
playlists: [<objects of matched playlists>],
music: [<objects of matched music>],
album: [<objects of matched album>]
}
matched artist: {
artist_id
name
}
matched playlist {
id
user
date created
}
matched music {
music_name
times_played
views
length
}
matched album {
album_id
album_name
year
subscribers(count)
}
If no match
-> empty set