-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.php
427 lines (282 loc) · 11.5 KB
/
test.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
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
<h3>Email login</h3>
<form action="index.php?action=email_login" method="post">
email : <input type="text" name="email"/><br>
password : <input type="text" name="pass"/><br>
Longitude : <input type="text" name="long"/><br>
Latitude : <input type="text" name="lat"/><br>
device token : <input type="text" name="device_token"/><br>
app version : <input type="text" name="app_version"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>Fb login</h3>
<form action="index.php?action=fblogin" method="post">
Fb Id : <input type="text" name="fb_id"/><br>
Fb Name : <input type="text" name="fbname"/><br>
Longitude : <input type="text" name="long"/><br>
Latitude : <input type="text" name="lat"/><br>
device token : <input type="text" name="device_token"/><br>
app version : <input type="text" name="app_version"/><br>
fb access token : <input type="text" name="fb_access_token"/><br>
fb_email : <input type="text" name="fb_email"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>login</h3>
<form action="index.php?action=login" method="post">
access token : <input type="text" name="access_token"/><br>
Longitude : <input type="text" name="long"/><br>
Latitude : <input type="text" name="lat"/><br>
device token : <input type="text" name="device_token"/><br>
action: <input type="text" name="action"/><br>
app version : <input type="text" name="app_version"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>fb_friends</h3>
<form action="index.php?action=fb_friends" method="post">
access token : <input type="text" name="access_token"/><br>
fb_access token : <input type="text" name="fb_access_token"/><br>
fb_id : <input type="text" name="fb_id"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<hr />
<h3>fb_friends</h3>
<form action="index.php?action=fb_friends" method="post">
access token : <input type="text" name="access_token"/><br>
fb_access token : <input type="text" name="fb_access_token"/><br>
fb_id : <input type="text" name="fb_id"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>near by dj</h3>
<form action="index.php?action=near_dj" method="post">
access_token : <input type="text" name="access_token"/><br>
latitude : <input type="text" name="lat"/><br>
longitude: <input type="text" name="lon"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<hr />
<h3>dj playlist of user </h3>
<form action="index.php?action=get_djplaylist" method="post">
access_token : <input type="text" name="access_token"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>delete from playlist </h3>
<form action="index.php?action=del_fromdjplaylist" method="post">
access_token : <input type="text" name="access_token"/><br>
song id : <input type="text" name="song_id"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<hr />
<h3>Add to Playlist</h3>
<form action="index.php?action=add_to_playlist" method="post" enctype="multipart/form-data">
access token : <input type="text" name="access_token"/><br>
song_name : <input type="text" name="song_name"/><br>
song_artist: <input type="text" name="song_artist"/><br>
song_image : <input type="file" name="file"/><br>
song_image_url : <input type="text" name="song_image_url"/><br>
song_mp3 : <input type="file" name="mp3_file"/><br>
song_link : <input type="text" name="song_link"/><br>
song_itunes_link : <input type="text" name="song_itunes_link"/><br>
song_status : <input type="text" name="song_status"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>Share DJ Playlist</h3>
<form action="index.php?action=share_djplaylist" method="post">
access token : <input type="text" name="access_token"/><br>
fb_id: <input type="text" name="fb_id"/><br>
Fb Name : <input type="text" name="fbname"/><br>
user_email: <input type="text" name="user_email"/><br>
invite_by: <input type="text" name="invite_by"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>forgot password</h3>
<form action="index.php?action=forgot_password" method="post">
email: <input type="text" name="email"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>shared friends list</h3>
<form action="index.php?action=friends_sharedwith" method="post">
access token : <input type="text" name="access_token"/><br>
mode : <input type="text" name="mode"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>Accept request</h3>
<form action="index.php?action=accept_request" method="post">
access token : <input type="text" name="access_token"/><br>
dj_id : <input type="text" name="dj_id"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>Logout</h3>
<form action="index.php?action=logout" method="post">
access token : <input type="text" name="access_token"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>Clear List</h3>
<form action="index.php?action=clear_playlist" method="post">
access token : <input type="text" name="access_token"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>Previous Session dj ids and other info</h3>
<form action="index.php?action=previous_session" method="post">
access token : <input type="text" name="access_token"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>Previous Session dj playlist of a dj</h3>
<form action="index.php?action=get_previous_session_djplaylist" method="post">
access token : <input type="text" name="access_token"/><br>
dj id : <input type="text" name="user_id"/><br>
session id : <input type="text" name="session_id"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>Connections</h3>
<form action="index.php?action=connection" method="post">
access token : <input type="text" name="access_token"/><br>
dj_id : <input type="text" name="dj_id"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>Shuffle playlist</h3>
<form action="index.php?action=shuffle_playlist" method="post">
access token : <input type="text" name="access_token"/><br>
order : <input type="text" name="order"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>sound cloud</h3>
<form action="index.php?action=soundcloud" method="post">
URL: <input type="text" name="url"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>pub nub data</h3>
<form action="index.php?action=pubnub_data" method="post">
NTP Date: <input type="text" name="ntp_date"/><br>
access token : <input type="text" name="access_token"/><br>
song_status : <input type="text" name="song_status"/><br>
selected index: <input type="text" name="selected_index"/><br>
message: <input type="text" name="message"/><br>
selected song : <input type="text" name="selected_song"/><br>
bit rate: <input type="text" name="bit_rate"/><br>
npackets : <input type="text" name="npackets"/><br>
numBytes : <input type="text" name="num_bytes"/><br>
song_url : <input type="text" name="song_url"/><br>
dj_id : <input type="text" name="dj_id"/><br>
audio_byte : <input type="text" name="audio_bytes"/><br>
data offset : <input type="text" name="data_offset"/><br>
seek time : <input type="text" name="seek_time"/><br>
song_file_length : <input type="text" name="song_file_length"/><br>
flag : <input type="text" name="flag"/><br>
status : <input type="text" name="status"/><br>
remain_time : <input type="text" name="remain_time"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>Delete Listener</h3>
<form action="index.php?action=delete_listener" method="post">
access token : <input type="text" name="access_token"/><br>
listener id : <input type="text" name="listener_id"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>Sent request to dj</h3>
<form action="index.php?action=request_dj" method="post">
access token : <input type="text" name="access_token"/><br>
dj id : <input type="text" name="dj_id"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>Accept request of listener</h3>
<form action="index.php?action=accept_listener_request" method="post">
access token : <input type="text" name="access_token"/><br>
listener id : <input type="text" name="listener_id"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>Edit user profile</h3>
<form action="index.php?action=edit_profile" method="post" enctype="multipart/form-data">
access token : <input type="text" name="access_token"/><br>
image <input type="file" name="pic"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>update to premium</h3>
<form action="index.php?action=update_to_premium" method="post" >
access token : <input type="text" name="access_token"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>Disconnect from dj</h3>
<form action="index.php?action=disconnect_from_dj" method="post" >
access token : <input type="text" name="access_token"/><br>
Dj id : <input type="text" name="dj_id"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>Sound Cloud add playlist</h3>
<form action="index.php?action=playlist_add" method="post" >
access token : <input type="text" name="access_token"/><br>
name:<input type="text" name="name"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>Search sound cloud for tracks</h3>
<form action="index.php?action=track_search" method="post" >
Search : <input type="text" name="search_term"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>ADD track in SoundCloud PlayList</h3>
<form action="index.php?action=add_track" method="post" >
access token : <input type="text" name="access_token"/><br>
Playlist : <input type="text" name="playlist_id"/><br>
track id : <input type="text" name="track_id"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>Sound Cloud delete playlist</h3>
<form action="index.php?action=delete_playlist" method="post" >
access token : <input type="text" name="access_token"/><br>
ID:<input type="text" name="playlist_id"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>Delete track in SoundCloud PlayList</h3>
<form action="index.php?action=delete_track" method="post" >
access token : <input type="text" name="access_token"/><br>
Playlist : <input type="text" name="playlist_id"/><br>
track id : <input type="text" name="track_id"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>change premium</h3>
<form action="index.php?action=change_premium" method="post" >
email : <input type="text" name="email"/><br>
flag : <input type="text" name="flag"/><br>
<input type="submit" value="submit" />
</form>
<hr />
<h3>show premium users</h3>
<form action="index.php?action=premium_users" method="post" >
<input type="submit" value="submit" />
</form>
<hr />
<h3>play bot playlist</h3>
<form action="index.php?action=play_bot_playlist" method="post" >
Bot_id : <input type="text" name="bot_id"/><br>
<input type="submit" value="submit" />
</form>