chiark / gitweb /
24ad5e834796b233b0214ac290f2e08197b10350
[disorder] / doc / disorder_protocol.5.in
1 .\"
2 .\" Copyright (C) 2004-2008 Richard Kettlewell
3 .\"
4 .\" This program is free software; you can redistribute it and/or modify
5 .\" it under the terms of the GNU General Public License as published by
6 .\" the Free Software Foundation; either version 2 of the License, or
7 .\" (at your option) any later version.
8 .\"
9 .\" This program is distributed in the hope that it will be useful, but
10 .\" WITHOUT ANY WARRANTY; without even the implied warranty of
11 .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 .\" General Public License for more details.
13 .\"
14 .\" You should have received a copy of the GNU General Public License
15 .\" along with this program; if not, write to the Free Software
16 .\" Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
17 .\" USA
18 .\"
19 .TH disorder_protocol 5
20 .SH NAME
21 disorder_protocol \- DisOrder communication protocol
22 .SH DESCRIPTION
23 The DisOrder client and server communicate via the protocol described
24 in this man page.
25 .PP
26 The protocol is liable to change without notice.
27 You are recommended to check the implementation before believing this document.
28 .SH "GENERAL SYNTAX"
29 Everything is encoded using UTF-8.
30 See
31 .B "CHARACTER ENCODING"
32 below for more detail on character encoding issues.
33 .PP
34 Commands and responses consist of a line perhaps followed (depending on the
35 command or response) by a body.
36 .PP
37 The line syntax is the same as described in \fBdisorder_config\fR(5) except
38 that comments are prohibited.
39 .PP
40 Bodies borrow their syntax from RFC821; they consist of zero or more ordinary
41 lines, with any initial full stop doubled up, and are terminated by a line
42 consisting of a full stop and a line feed.
43 .SH COMMANDS
44 Commands always have a command name as the first field of the line; responses
45 always have a 3-digit response code as the first field.
46 See below for more details about this field.
47 .PP
48 All commands require the connection to have been already authenticated unless
49 stated otherwise.
50 If not stated otherwise, the \fBread\fR right is sufficient to execute
51 the command.
52 .PP
53 Neither commands nor responses have a body unless stated otherwise.
54 .TP
55 .B adduser \fIUSERNAME PASSWORD \fR[\fIRIGHTS\fR]
56 Create a new user with the given username and password.
57 The new user's rights list can be specified; if it is not
58 then the \fBdefault_rights\fR setting applies instead.
59 Requires the \fBadmin\fR right, and only works on local
60 connections.
61 .TP
62 .B allfiles \fIDIRECTORY\fR [\fIREGEXP\fR]
63 List all the files and directories in \fIDIRECTORY\fR in a response body.
64 If \fIREGEXP\fR is present only matching files and directories are returned.
65 .TP
66 .B confirm \fICONFIRMATION
67 Confirm user registration.
68 \fICONFIRMATION\fR is as returned from \fBregister\fR below.
69 This command can be used without logging in.
70 .TP
71 .B cookie \fICOOKIE
72 Log a user back in using a cookie created with \fBmake\-cookie\fR.
73 The response contains the username.
74 .TP
75 .B deluser \fIUSERNAME
76 Delete the named user.
77 Requires the \fBadmin\fR right, and only works on local connections.
78 .TP
79 .B dirs \fIDIRECTORY\fR [\fIREGEXP\fR]
80 List all the directories in \fIDIRECTORY\fR in a response body.
81 If \fIREGEXP\fR is present only matching directories are returned.
82 .TP
83 .B disable \fR[\fBnow\fR]
84 Disable further playing.
85 If the optional \fBnow\fR argument is present then the current track
86 is stopped.
87 Requires the \fBglobal prefs\fR right.
88 .TP
89 .B edituser \fIUSERNAME PROPERTY VALUE
90 Set a user property.
91 With the \fBadmin\fR right any username and property may be specified.
92 Otherwise the \fBuserinfo\fR right is required and only the
93 \fBemail\fR and \fBpassword\fR properties may be set.
94 .TP
95 .B enable
96 Re-enable further playing, and is the opposite of \fBdisable\fR.
97 Requires the \fBglobal prefs\fR right.
98 .TP
99 .B enabled
100 Report whether playing is enabled.
101 The second field of the response line will be \fByes\fR or \fBno\fR.
102 .TP
103 .B exists \fITRACK\fR
104 Report whether the named track exists.
105 The second field of the response line will be \fByes\fR or \fBno\fR.
106 .TP
107 .B files \fIDIRECTORY\fR [\fIREGEXP\fR]
108 List all the files in \fIDIRECTORY\fR in a response body.
109 If \fIREGEXP\fR is present only matching files are returned.
110 .TP
111 .B get \fITRACK\fR \fIPREF\fR
112 Getsa preference value.
113 On success the second field of the response line will have the value.
114 .IP
115 If the track or preference do not exist then the response code is 555.
116 .TP
117 .B get\-global \fIKEY\fR
118 Get a global preference.
119 .IP
120 If the preference does not exist then the response code is 555.
121 .TP
122 .B length \fITRACK\fR
123 Get the length of the track in seconds.
124 On success the second field of the response line will have the value.
125 .TP
126 .B log
127 Send event log messages in a response body.
128 The command will never terminate.
129 Any further data sent to the server will be discarded (explicitly;
130 i.e. it will not accumulate in a buffer somewhere).
131 .IP
132 See \fBEVENT LOG\fR below for more details.
133 .TP
134 .B make\-cookie
135 Returns an opaque string that can be used by the \fBcookie\fR command to log
136 this user back in on another connection (until the cookie expires).
137 .TP
138 .B move \fITRACK\fR \fIDELTA\fR
139 Move a track in the queue.
140 The track may be identified by ID (preferred) or name (which might cause
141 confusion if it's there twice).
142 \fIDELTA\fR should be an negative or positive integer and indicates how
143 many steps towards the head of the queue the track should be moved.
144 .IP
145 Requires one of the \fBmove mine\fR, \fBmove random\fR or \fBmove any\fR rights
146 depending on how the track came to be added to the queue.
147 .TP
148 .B moveafter \fITARGET\fR \fIID\fR ...
149 Move all the tracks in the \fIID\fR list after ID \fITARGET\fR.
150 If \fITARGET\fR is the empty string then the listed tracks are put
151 at the head of the queue.
152 If \fITARGET\fR is listed in the ID list then the tracks are moved
153 to just after the first non-listed track before it, or to the head if there is
154 no such track.
155 .IP
156 Requires one of the \fBmove mine\fR, \fBmove random\fR or \fBmove any\fR rights
157 depending on how the tracks came to be added to the queue.
158 .TP
159 .B new \fR[\fIMAX\fR]
160 Send the most recently added \fIMAX\fR tracks in a response body.
161 If the argument is ommitted, the \fBnew_max\fR most recent tracks are
162 listed (see \fBdisorder_config\fR(5)).
163 .TP
164 .B nop
165 Do nothing.
166 Used by
167 .BR disobedience (1)
168 as a keepalive measure.
169 This command does not require authentication.
170 .TP
171 .B part \fITRACK\fR \fICONTEXT\fI \fIPART\fR
172 Get a track name part.
173 Returns an empty string if a name part cannot be constructed.
174 .IP
175 .I CONTEXT
176 is one of
177 .B sort
178 or
179 .B display
180 and
181 .I PART
182 is usually one of
183 .BR artist ,
184 .B album
185 or
186 .BR title .
187 .TP
188 .B pause
189 Pause the current track.
190 Requires the \fBpause\fR right.
191 .TP
192 .B play \fITRACK\fR
193 Add a track to the queue.
194 The response contains the queue ID of the track.
195 Requires the \fBplay\fR right.
196 .TP
197 .B playing
198 Report what track is playing.
199 .IP
200 If the response is \fB252\fR then the rest of the response line consists of
201 track information (see below).
202 .IP
203 If the response is \fB259\fR then nothing is playing.
204 .TP
205 .B prefs \fBTRACK\fR
206 Send back the preferences for \fITRACK\fR in a response body.
207 Each line of the response has the usual line syntax, the first field being the
208 name of the pref and the second the value.
209 .TP
210 .B queue
211 Send back the current queue in a response body, one track to a line, the track
212 at the head of the queue (i.e. next to be be played) first.
213 See below for the track information syntax.
214 .TP
215 .B random\-disable
216 Disable random play (but don't stop the current track).
217 Requires the \fBglobal prefs\fR right.
218 .TP
219 .B random\-enable
220 Enable random play.
221 Requires the \fBglobal prefs\fR right.
222 .TP
223 .B random\-enabled
224 Report whether random play is enabled.
225 The second field of the response line will be \fByes\fR or \fBno\fR.
226 .TP
227 .B recent
228 Send back the current recently-played list in a response body, one track to a
229 line, the track most recently played last.
230 See below for the track information syntax.
231 .TP
232 .B reconfigure
233 Request that DisOrder reconfigure itself.
234 Requires the \fBadmin\fR right.
235 .TP
236 .B register \fIUSER PASSWORD EMAIL
237 Register a new user.
238 Requires the \fBregister\fR right.
239 The result contains a confirmation string; the user will be be able
240 to log in until this has been presented back to the server via the
241 \fBconfirm\fR command.
242 .TP
243 .B reminder \fIUSER\fR
244 Send a password reminder to \fIUSER\fR.
245 If the user has no valid email address, or no password, or a
246 reminder has been sent too recently, then no reminder will be sent.
247 .TP
248 .B remove \fIID\fR
249 Remove the track identified by \fIID\fR.
250 Requires one of the \fBremove mine\fR, \fBremove random\fR or
251 \fBremove any\fR rights depending on how the
252 track came to be added to the queue.
253 .TP
254 .B rescan
255 Rescan all roots for new or obsolete tracks.
256 Requires the \fBrescan\fR right.
257 .TP
258 .B resolve \fITRACK\fR
259 Resolve a track name, i.e. if this is an alias then return the real track name.
260 .TP
261 .B resume
262 Resume the current track after a \fBpause\fR command.
263 Requires the \fBpause\fR right.
264 .TP
265 .B revoke \fBcookie\fR
266 Revoke a cookie previously created with \fBmake\-cookie\fR.
267 It will not be possible to use this cookie in the future.
268 .TP
269 .B rtp\-address
270 Report the RTP broadcast (or multicast) address, in the form \fIADDRESS
271 PORT\fR.
272 This command does not require authentication.
273 .TP
274 .B scratch \fR[\fIID\fR]
275 Remove the track identified by \fIID\fR, or the currently playing track if no
276 \fIID\fR is specified.
277 Requires one of the \fBscratch mine\fR, \fBscratch random\fR or
278 \fBscratch any\fR rights depending on how the track came to be
279 added to the queue.
280 .TP
281 .B search \fITERMS\fR
282 Search for tracks matching the search terms.
283 The results are put in a response body, one to a line.
284 .IP
285 The search string is split in the usual way, with quoting supported, into a
286 list of terms.
287 Only tracks matching all terms are included in the results.
288 .IP
289 Any terms of the form \fBtag:\fITAG\fR limits the search to tracks with that
290 tag.
291 .IP
292 All other terms are interpreted as individual words which must be present in
293 the track name.
294 .IP
295 Spaces in terms don't currently make sense, but may one day be interpreted to
296 allow searching for phrases.
297 .TP
298 .B \fBset\fR \fITRACK\fR \fIPREF\fR \fIVALUE\fR
299 Set a preference.
300 Requires the \fBprefs\fR right.
301 .TP
302 .B set\-global \fIKEY\fR \fIVALUE\fR
303 Set a global preference.
304 Requires the \fBglobal prefs\fR right.
305 .TP
306 .B stats
307 Send server statistics in plain text in a response body.
308 .TP
309 .B \fBtags\fR
310 Send the list of currently known tags in a response body.
311 .TP
312 .B \fBunset\fR \fITRACK\fR \fIPREF\fR
313 Unset a preference.
314 Requires the \fBprefs\fR right.
315 .TP
316 .B \fBunset\-global\fR \fIKEY\fR
317 Unset a global preference.
318 Requires the \fBglobal prefs\fR right.
319 .TP
320 .B user \fIUSER\fR \fIRESPONSE\fR
321 Authenticate as \fIUSER\fR.
322 See
323 .B AUTHENTICATION
324 below.
325 .TP
326 .B userinfo \fIUSER PROPERTY
327 Get a user property.
328 .TP
329 .B users
330 Send the list of currently known users in a response body.
331 .TP
332 .B version
333 Send back a response with the server version as the second field.
334 .TP
335 .B volume \fR[\fILEFT\fR [\fIRIGHT\fR]]
336 Get or set the volume.
337 .IP
338 With zero parameters just gets the volume and reports the left and right sides
339 as the 2nd and 3rd fields of the response.
340 .IP
341 With one parameter sets both sides to the same value.
342 With two parameters sets each side independently.
343 Setting the volume requires the \fBvolume\fR right.
344 .SH RESPONSES
345 Responses are three-digit codes.
346 The first digit distinguishes errors from succesful responses:
347 .TP
348 .B 2
349 Operation succeeded.
350 .TP
351 .B 5
352 Operation failed.
353 .PP
354 The second digit breaks down the origin of the response:
355 .TP
356 .B 0
357 Generic responses not specific to the handling of the command.
358 Mostly this is parse errors.
359 .TP
360 .B 1
361 51x errors indicate that the user had insufficient rights for the command.
362 .TP
363 .B 3
364 Authentication responses.
365 .TP
366 .B 5
367 Responses specific to the handling of the command.
368 .PP
369 The third digit provides extra information about the response:
370 .TP
371 .B 0
372 Text part is just commentary.
373 .TP
374 .B 1
375 Text part is a constant result e.g. \fBversion\fR.
376 .TP
377 .B 2
378 Text part is a potentially variable result.
379 .TP
380 .B 3
381 Text part is just commentary; a dot-stuffed body follows.
382 .TP
383 .B 4
384 Text part is just commentary; an indefinite dot-stuffed body follows.
385 (Used for \fBlog\fR.)
386 .TP
387 .B 5
388 Used with "normal" errors, for instance a preference not being found.
389 The text part is commentary.
390 .TP
391 .B 9
392 The text part is just commentary (but would normally be a response for this
393 command) e.g. \fBplaying\fR.
394 .PP
395 Result strings (not bodies) intended for machine parsing (i.e. xx1 and xx2
396 responses) are quoted.
397 .SH AUTHENTICATION
398 When a connection is made the server sends a \fB231\fR response before any
399 command is received.
400 This contains a protocol generation, an algorithm name and a
401 challenge encoded in hex, all separated by whitespace.
402 .PP
403 The current protocol generation is \fB2\fR.
404 .PP
405 The possible algorithms are (currently) \fBsha1\fR, \fBsha256\fR, \fBsha384\fR
406 and \fBsha512\fR.
407 \fBSHA1\fR etc work as synonyms.
408 .PP
409 The \fBuser\fR response consists of the selected hash of the user's password
410 concatenated with the challenge, encoded in hex.
411 .SH "TRACK INFORMATION"
412 Track information is encoded in a line (i.e. using the usual line syntax) as
413 pairs of fields.
414 The first is a name, the second a value.
415 The names have the following meanings:
416 .TP 12
417 .B expected
418 The time the track is expected to be played at.
419 .TP
420 .B id
421 A string uniquely identifying this queue entry.
422 .TP
423 .B played
424 The time the track was played at.
425 .TP
426 .B scratched
427 The user that scratched the track.
428 .TP
429 .B state
430 The current track state.
431 Valid states are:
432 .RS
433 .TP 12
434 .B failed
435 The player failed (exited with nonzero status but wasn't scratched).
436 .TP
437 .B isscratch
438 The track is actually a scratch.
439 .TP
440 .B no_player
441 No player could be found for the track.
442 .TP
443 .B ok
444 The track was played without any problems.
445 .TP
446 .B scratched
447 The track was scratched.
448 .TP
449 .B started
450 The track is currently playing.
451 .TP
452 .B unplayed
453 In the queue, hasn't been played yet.
454 .TP
455 .B quitting
456 The track was terminated because the server is shutting down.
457 .RE
458 .TP
459 .B submitter
460 The user that submitted the track.
461 .TP
462 .B track
463 The filename of the track.
464 .TP
465 .B when
466 The time the track was added to the queue.
467 .TP
468 .B wstat
469 The wait status of the player in decimal.
470 .SH NOTES
471 Times are decimal integers using the server's \fBtime_t\fR.
472 .PP
473 For file listings, the regexp applies to the basename of the returned file, not
474 the whole filename, and letter case is ignored.
475 \fBpcrepattern\fR(3) describes the regexp syntax.
476 .PP
477 Filenames are in UTF-8 even if the collection they come from uses some other
478 encoding - if you want to access the real file (in such cases as the filenames
479 actually correspond to a real file) you'll have to convert to whatever the
480 right encoding is.
481 .SH "EVENT LOG"
482 The event log consists of lines starting with a hexadecimal timestamp and a
483 keyword followed by (optionally) parameters.
484 The parameters are quoted in the usual DisOrder way.
485 Currently the following keywords are used:
486 .TP
487 .B completed \fITRACK\fR
488 Completed playing \fITRACK\fR
489 .TP
490 .B failed \fITRACK\fR \fIERROR\fR
491 Completed playing \fITRACK\fR with an error status
492 .TP
493 .B moved \fIUSER\fR
494 User \fIUSER\fR moved some track(s).
495 Further details aren't included any more.
496 .TP
497 .B playing \fITRACK\fR [\fIUSER\fR]
498 Started playing \fITRACK\fR.
499 .TP
500 .B queue \fIQUEUE-ENTRY\fR...
501 Added \fITRACK\fR to the queue.
502 .TP
503 .B recent_added \fIQUEUE-ENTRY\fR...
504 Added \fIID\fR to the recently played list.
505 .TP
506 .B recent_removed \fIID\fR
507 Removed \fIID\fR from the recently played list.
508 .TP
509 .B removed \fIID\fR [\fIUSER\fR]
510 Queue entry \fIID\fR was removed.
511 This is used both for explicit removal (when \fIUSER\fR is present)
512 and when playing a track (when it is absent).
513 .TP
514 .B rescanned
515 A rescan completed.
516 .TP
517 .B scratched \fITRACK\fR \fIUSER\fR
518 \fITRACK\fR was scratched by \fIUSER\fR.
519 .TP
520 .B state \fIKEYWORD\fR
521 Some state change occurred.
522 The current set of keywords is:
523 .RS
524 .TP
525 .B completed
526 The current track completed successfully.
527 .TP
528 .B disable_play
529 Playing was disabled.
530 .TP
531 .B disable_random
532 Random play was disabled.
533 .TP
534 .B enable_play
535 Playing was enabled.
536 .TP
537 .B enable_random
538 Random play was enabled.
539 .TP
540 .B failed
541 The current track failed.
542 .TP
543 .B pause
544 The current track was paused.
545 .TP
546 .B playing
547 A track started playing.
548 .TP
549 .B resume
550 The current track was resumed.
551 .TP
552 .B scratched
553 The current track was scratched.
554 .PP
555 To simplify client implementation, \fBstate\fR commands reflecting the current
556 state are sent at the start of the log.
557 .RE
558 .TP
559 .B volume \fILEFT\fR \fIRIGHT\fR
560 The volume changed.
561 .PP
562 .IR QUEUE-ENTRY ...
563 is as defined in
564 .B "TRACK INFORMATION"
565 above.
566 .SH "CHARACTER ENCODING"
567 All data sent by both server and client is encoded using UTF-8.
568 Moreover it must be valid UTF-8, i.e. non-minimal sequences are not
569 permitted, nor are surrogates, nor are code points outside the
570 Unicode code space.
571 .PP
572 There are no particular normalization requirements on either side of the
573 protocol.
574 The server currently converts internally to NFC, the client must
575 normalize the responses returned if it needs some normalized form for further
576 processing.
577 .PP
578 The various characters which divide up lines may not be followed by combining
579 characters.
580 For instance all of the following are prohibited:
581 .TP
582 .B o
583 LINE FEED followed by a combining character.
584 For example the sequence LINE FEED, COMBINING GRAVE ACCENT is never permitted.
585 .TP
586 .B o
587 APOSTROPHE or QUOTATION MARK followed by a combining character when used to
588 delimit fields.
589 For instance a line starting APOSTROPHE, COMBINING CEDILLA is prohibited.
590 .IP
591 Note that such sequences are not prohibited when the quote character cannot be
592 interpreted as a field delimiter.
593 For instance APOSTROPHE, REVERSE SOLIDUS, APOSTROPHE, COMBINING CEDILLA,
594 APOSTROPHE would be permitted.
595 .TP
596 .B o
597 REVERSE SOLIDUS (BACKSLASH) followed by a combining character in a quoted
598 string when it is the first character of an escape sequence.
599 For instance a line starting APOSTROPHE, REVERSE SOLIDUS, COMBINING TILDE
600 is prohibited.
601 .IP
602 As above such sequences are not prohibited when the character is not being used
603 to start an escape sequence.
604 For instance APOSTROPHE, REVERSE SOLIDUS, REVERSE SOLIDS, COMBINING TILDE,
605 APOSTROPHE is permitted.
606 .TP
607 .B o
608 Any of the field-splitting whitespace characters followed by a combining
609 character when not part of a quoted field.
610 For instance a line starting COLON, SPACE, COMBINING CANDRABINDU is prohibited.
611 .IP
612 As above non-delimiter uses are fine.
613 .TP
614 .B o
615 The FULL STOP characters used to quote or delimit a body.
616 .PP
617 Furthermore none of these characters are permitted to appear in the context of
618 a canonical decomposition (i.e. they must still be present when converted to
619 NFC).
620 In practice however this is not an issue in Unicode 5.0.
621 .PP
622 These rules are consistent with the observation that the split() function is
623 essentially a naive ASCII parser.
624 The implication is not that these sequences never actually appear in
625 the protocol, merely that the server is not required to honor them in
626 any useful way nor be consistent between versions: in current
627 versions the result will be lines and fields that start with combining
628 characters and are not necessarily split where you expect, but future versions
629 may remove them, reject them or ignore some or all of the delimiters that have
630 following combining characters, and no notice will be given of any change.
631 .SH "SEE ALSO"
632 \fBdisorder\fR(1),
633 \fBtime\fR(2),
634 \fBdisorder\fR(3),
635 \fBpcrepattern\fR(3)
636 \fBdisorder_config\fR(5),
637 \fBdisorderd\fR(8),
638 \fButf8\fR(7)
639 .\" Local Variables:
640 .\" mode:nroff
641 .\" fill-column:79
642 .\" End: