-
Notifications
You must be signed in to change notification settings - Fork 0
/
JsonAPI.txt
689 lines (459 loc) · 14.7 KB
/
JsonAPI.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
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
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
= API =
* before the definition of a playlist, files must be registered
* when editing, leaving fields to null means that fields are left untouched
== Logging in and out ==
=== Log in ===
{
"request": "login",
"username": <username>,
"password": <password>
}
The response contains a 'sessionid' key, whose value is to be used on subsequent requests
=== Log out ===
{
"request": "logout",
"username": <session ID>,
"sessionid": <password>
}
== Users and Roles ==
=== Create a New Role ===
{
"request": "createrole",
"username": <role creator's username>,
"sessionid": <role creator's session ID>,
"role" : {
"rolename": <name>,
"canManageRoles": (true|false), #true if the user can create/edit/delete roles
"canManageUsers": (true|false), #true if the user can create/edit/delete users
"canManageAllPlaylists": (true|false), #true if the user can create/edit/delete all playlists
"canRegisterFiles": (true|false), #true if the user can register local files
"canManageRegisteredFiles": (true|false), #true if the user can manage registered files' data (i.e. change, delete)
"canManageTimetable": (true|false), #true if the user can edit/delete the beginning and ending time of scheduled slots
"fixedSlotTimes": (true|false), #true if the fixedSlotTimesList field has to be considered
"fixedSlotTimesList": <array of fixed slot times, in minutes>, #if fixedSlotTime is true, then this is the list of the allowed length for the timeslots for this user
"changeTimeBeforeTransmission": <number of minutes before the beginning of the transmission in which the user is permitted to change the beginning time>, # -1 for unlimited
"canCreateTestSlot": (true|false) #true if the user is permitted to create a testing mountpoint
}
}
=== Edit an Existing Role ===
{
"request": "editrole",
"username": <role editor's username>,
"sessionid": <role editor's session ID>,
"role" : {
"rolename": <name>, #mandatory
"canManageRoles": (true|false), #true if the user can create/edit/delete roles
"canManageUsers": (true|false), #true if the user can create/edit/delete users
"canManageAllPlaylists": (true|false), #true if the user can create/edit/delete all playlists
"canRegisterFiles": (true|false), #true if the user can register local files
"canManageRegisteredFiles": (true|false), #true if the user can manage registered files' data (i.e. change, delete)
"canManageTimetable": (true|false), #true if the user can edit/delete the beginning and ending time of scheduled slots
"fixedSlotTimes": (true|false), #true if the fixedSlotTimesList field has to be considered
"fixedSlotTimesList": <array of fixed slot times, in minutes>, #if fixedSlotTime is true, then this is the list of the allowed length for the timeslots for this user
"changeTimeBeforeTransmission": <number of minutes before the beginning of the transmission in which the user is permitted to change the beginning time>, # -1 for unlimited
"canCreateTestSlot": (true|false) #true if the user is permitted to create a testing mountpoint
}
}
=== Remove an Existing Role ===
{
"request": "removerole",
"username": <role editor's username>,
"sessionid": <role editor's session ID>,
"rolename": <name>
}
=== List all Roles ===
{
"request": "listroles",
"username": <requestor's username>,
"sessionid": <requestor's session ID>,
}
=== Get an Existing Role's details ===
{
"request": "getrole",
"username": <requestor's username>,
"sessionid": <requestor's session ID>,
"rolename": <requested role's name>
}
=== Create a New User ===
{
"request":"createuser",
"username": <creator's username>,
"sessionid": <session ID>,
"user" : {
"name": <username>,
"password": <password>,
"displayname": <name to be displayed>,
"email": <user's email address>,
"rolename": <existing role name>
}
}
=== Edit an Existing User ===
{
"request":"edituser",
"username": <editor's username>,
"sessionid": <session ID>,
"user" : {
"name": <name>,
"password": <password>,
"displayname": <name to be displayed>,
"email": <user's email address>,
"rolename": <existing role name>
}
}
=== Remove an Existing User ===
{
"request": "removeuser",
"username": <user editor's username>,
"sessionid": <user editor's session ID>,
"name": <username of the user to be removed>
}
=== Retrieve an User's Details ==
{
"request": "getuser",
"username": <requestor's username>,
"sessionid": <requestor's session ID>
"name": <user name of the user to be retrieved>
}
=== List All Users ===
{
"request":"listusers",
"username": <username>,
"sessionid": <session ID>,
}
== Files and Playlists ==
=== Register an Audio File ===
{
"request": "registerfile",
"username": <username>,
"sessionid": <session ID>,
"mediafile": {
"path": <local path of the file>,
"title": <title of the track>,
"author": <author of the track>,
"album": <album>,
"genre": <genre>,
"year": <year of pubblication>,
"comment": <comment>,
"license": <license of the file>,
"tags": <tags>
}
}
== Scan an existing file for ID3 tags ==
{
"request": "scanfile",
"username": <username>,
"sessionid": <session ID>,
"path": <path of the media file>
}
=== Get an Audio File ===
{
"request": "getfile",
"username": <username>,
"sessionid": <session ID>,
"mediafileid": <id of the media file>
}
=== Search for an Audio File ===
{
"request": "searchfiles",
"username": <username>,
"sessionid": <session ID>,
"mediafile": {
"id": <id of the file>,
"path": <partial or complete local path of the file>,
"title": <partial or complete title of the track>,
"author": <partial or complete author of the track>,
"album": <partial or complete album>,
"genre": <partial or complete genre>,
"year": <year of pubblication>,
"comment": <partial or complete comment>,
"license": <partial or complete license of the file>,
"tags": <one or more tags>
}
}
== Search on all fields ==
{
"request": "fullsearchfiles",
"username": <username>,
"sessionid": <session ID>,
"q": <search term>
}
=== Edit an Audio File ===
{
"request": "editfile",
"username": <username>,
"sessionid": <session ID>,
"mediafile": {
"id": <id of the file>,
"path": <new local path of the file or null to leave unchanged>,
"title": <new title of the track or null to leave unchanged>,
"author": <new author of the track or null to leave unchanged>,
"album": <new album or null to leave unchanged>,
"genre": <new genre or null to leave unchanged>,
"year": <new year of pubblication or null to leave unchanged>,
"comment": <new comment or null to leave unchanged>,
"license": <new license of the file or null to leave unchanged>,
"tags": <new tags or null to leave unchanged>
}
}
=== Unregister an Audio File ===
{
"request": "unregisterfile",
"username": <username>,
"sessionid": <session ID>,
"mediafileid": <id of the media file to be deregistered>
}
=== Create a New Playlist ===
{
"request": "createplaylist",
"username": <username>,
"sessionid": <session ID>,
"playlist": {
"title": <a name for the playlist>,
"description": <a description of the playlist>,
"comment": <comment>,
"tags": <tags>,
"private": (true|false), #true if this playlist can be viewed only by the owner (or with the canManageAllPlaylists role attribute)
"random": (true|false), #true if this playlist will be played in random order
"viewers": [ # a list of usernames of other users that can watch and play this playlist
<username>,
<username>
]
"owners": [ # a list of usernames of other users that can manage this playlist
<username>,
<username>
]
}
}
=== Edit an Existing Playlist ===
{
"request": "editplaylist",
"username": <username>,
"sessionid": <session ID>,
"playlist": {
"id": <the id of the existing playlist that we are editing>,
"title": <a new name for the playlist or null to leave unchanged>,
"description": <a new description of the playlist or null to leave unchanged>,
"comment": <a new comment or null to leave unchanged>,
"tags": <new tags or null to leave unchanged>,
"private": (true|false), #true if this playlist can be viewed only by the owner (or with the canManageAllPlaylists role attribute)
"random": (true|false), #true if this playlist will be played in random order
"viewers": [ # a list of usernames of other users that can watch and play this playlist, or null to leave unchanged
<username>,
<username>
]
"owners": [ # a list of usernames of other users that can manage this playlist, or null to leave unchanged
<username>,
<username>
]
}
}
=== Get a Playlist ===
{
"request": "getplaylist",
"username": <username>,
"sessionid": <session ID>,
"playlistid": <id of the playlist to be retrieved>
}
=== Remove an Existing Playlist ===
{
"request": "removeplaylist",
"username": <username>,
"sessionid": <session ID>,
"playlistid": <id of the playlist to be removed>
}
=== Add Files to an Existing Playlist ===
{
"request": "addfilestoplaylist",
"username": <username>,
"sessionid": <session ID>,
"playlistid": <id of an existing playlist>,
"mediafileidlist": [ #ordered list of file ids
<id of a registered file>,
<id of a registered file>,
...
]
}
=== Remove Files from an Existing Playlist ===
{
"request": "removefilesfromplaylist",
"username": <username>,
"sessionid": <session ID>,
"playlistid": <id of an existing playlist>,
"mediafilepositionlist": [ # list of mediafile positions
<position of a file in the playlist>,
<position of a file in the playlist>,
...
]
}
=== Change Position of file in an Existing Playlist ===
{
"request": "movefilesinplaylist",
"username": <username>,
"sessionid": <session ID>,
"playlistid": <id of an existing playlist>,
"oldmediafileposition": <old position of a file in the playlist>,
"newmediafileposition": <new position of a file in the playlist>
#if there is already a file present, then the old one is moved one position further
=== List Users' Playlists ===
List of playlists in which the user is owner or viewer
* users with a role with the canManageAllPlaylists flag set to true are co-owners of all playlists
* an owner of a playlist is also viewer
{
"request": "listuserplaylists",
"username": <username>,
"sessionid": <session ID>,
"user": <username or null>
}
== Time Slots ==
=== Reserve a Timeslot ===
{
"request": "reservetimeslot",
"username": <username>,
"sessionid": <session ID>,
"timeslot": {
"title": <title of the transmission>,
"description": <description of the transmission>,
"fallbackplaylist": <an existing playlist, to be used as fallback>,
"slottype": <type of slot to be created>,
"beginningtime": {
"year": <year>,
"month": <month>,
"day": <day>,
"hour": <hour>,
"minute": <minute>
},
"duration": <duration of the timeslot in minutes>,
"slotparams": {
<slot-specific parameters>
},
"comment": <a comment>,
"tags": <tags>
}
}
=== Unreserve a Timeslot ===
{
"request": "unreservetimeslot",
"username": <username>,
"sessionid": <session ID>,
"timeslotid": <id of the timeslot to be removed>
}
=== Edit a Timeslot ===
{
"request": "edittimeslot",
"username": <username>,
"sessionid": <session ID>,
"timeslot": {
"id": <id of the timeslot to be edited>,
"title": <title of the transmission>,
"description": <description of the transmission>,
"fallbackplaylist": <an existing playlist, to be used as fallback>,
"slottype": <type of slot to be created>,
"beginningtime": {
"year": <year>,
"month": <month>,
"day": <day>,
"hour": <hour>,
"minute": <minute>
},
"duration": <duration of the timeslot in minutes>,
"slotparams": {
<slot-specific parameters>
},
"comment": <a comment>,
"tags": <tags>
}
}
=== List Timeslots ===
{
"request": "listtimeslots",
"username": <username>,
"sessionid": <session ID>,
"timeslot": {
"id": <id of the timeslot or null>,
"title": <title of the transmission or null>,
"description": <description of the transmission or null>,
"tags": <null or tags>,
"comment": <null or partial comment>,
"creator": <user who reserved the timeslot, or null>,
"from": { #or null
"year": <year>,
"month": <month>,
"day": <day>,
"hour": <hour>,
"minute": <minute>
},
"to": { # or null
"year": <year>,
"month": <month>,
"day": <day>,
"hour": <hour>,
"minute": <minute>
}
}
}
=== List Available Slot Types (for the timeslot.slottype field) ===
{
"request": "listslottypes",
"username": <username>,
"sessionid": <session ID>
}
=== List Required parameter for a specified slot type ===
{
"request": "getslotreqparameters",
"username": <username>,
"sessionid": <session ID>,
"slottype": <slot type name>
}
=== Test Slot ===
{
"request": "createtestslot",
"username": <username>,
"sessionid": <session ID>,
"testslot": {
"slottype": <type of slot to be created>,
"duration": <duration of the testslot in minutes>,
"slotparams": {
<slot-specific parameters>
}
}
}
== Archive/Podcasts/Netcasts ==
NOT YET IMPLEMENTED
=== List/Search Archive/Podcasts/Netcasts ===
{
"request": "listnetcasts",
"username": <username>,
"sessionid": <session ID>,
"netcast": {
"user": <owner of the transmission, or null>
"title": <complete or partial title of the transmission, or null>
"description": <complete or partial description of the transmission>
"tags": <zero or more tags>
"slottype": <type of slot>,
"from": { # or null
"year": <year>,
"month": <month>,
"day": <day>,
"hour": <hour>,
"minute": <minute>
},
"to": { #or null
"year": <year>,
"month": <month>,
"day": <day>,
"hour": <hour>,
"minute": <minute>
}
"limit": <maximum number of transmissions to display, or null>
}
}
== Responses ==
{
"response": ("ok" | "notallowed" | "dontexists" | "alreadyexists" | "servererror" | "error" | "requesterror", "notimplemented"),
"responsen": (0 | 101 | 201 | 202 | 301 | 401 | 501 | 601),
"requested": <the requested action>,
"warning": <warning message(s) or null>,
"description": <textual description>,
<the response follows>
}
$Id$