chiark / gitweb /
Merge more 3.0 branch changes
[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 users
327 Send the list of currently known users in a response body.
328 .TP
329 .B version
330 Send back a response with the server version as the second field.
331 .TP
332 .B volume \fR[\fILEFT\fR [\fIRIGHT\fR]]
333 Get or set the volume.
334 .IP
335 With zero parameters just gets the volume and reports the left and right sides
336 as the 2nd and 3rd fields of the response.
337 .IP
338 With one parameter sets both sides to the same value.
339 With two parameters sets each side independently.
340 Setting the volume requires the \fBvolume\fR right.
341 .SH RESPONSES
342 Responses are three-digit codes.
343 The first digit distinguishes errors from succesful responses:
344 .TP
345 .B 2
346 Operation succeeded.
347 .TP
348 .B 5
349 Operation failed.
350 .PP
351 The second digit breaks down the origin of the response:
352 .TP
353 .B 0
354 Generic responses not specific to the handling of the command.
355 Mostly this is parse errors.
356 .TP
357 .B 1
358 51x errors indicate that the user had insufficient rights for the command.
359 .TP
360 .B 3
361 Authentication responses.
362 .TP
363 .B 5
364 Responses specific to the handling of the command.
365 .PP
366 The third digit provides extra information about the response:
367 .TP
368 .B 0
369 Text part is just commentary.
370 .TP
371 .B 1
372 Text part is a constant result e.g. \fBversion\fR.
373 .TP
374 .B 2
375 Text part is a potentially variable result.
376 .TP
377 .B 3
378 Text part is just commentary; a dot-stuffed body follows.
379 .TP
380 .B 4
381 Text part is just commentary; an indefinite dot-stuffed body follows.
382 (Used for \fBlog\fR.)
383 .TP
384 .B 5
385 Used with "normal" errors, for instance a preference not being found.
386 The text part is commentary.
387 .TP
388 .B 9
389 The text part is just commentary (but would normally be a response for this
390 command) e.g. \fBplaying\fR.
391 .PP
392 Result strings (not bodies) intended for machine parsing (i.e. xx1 and xx2
393 responses) are quoted.
394 .SH AUTHENTICATION
395 When a connection is made the server sends a \fB231\fR response before any
396 command is received.
397 This contains a protocol generation, an algorithm name and a
398 challenge encoded in hex, all separated by whitespace.
399 .PP
400 The current protocol generation is \fB2\fR.
401 .PP
402 The possible algorithms are (currently) \fBsha1\fR, \fBsha256\fR, \fBsha384\fR
403 and \fBsha512\fR.
404 \fBSHA1\fR etc work as synonyms.
405 .PP
406 The \fBuser\fR response consists of the selected hash of the user's password
407 concatenated with the challenge, encoded in hex.
408 .SH "TRACK INFORMATION"
409 Track information is encoded in a line (i.e. using the usual line syntax) as
410 pairs of fields.
411 The first is a name, the second a value.
412 The names have the following meanings:
413 .TP 12
414 .B expected
415 The time the track is expected to be played at.
416 .TP
417 .B id
418 A string uniquely identifying this queue entry.
419 .TP
420 .B played
421 The time the track was played at.
422 .TP
423 .B scratched
424 The user that scratched the track.
425 .TP
426 .B state
427 The current track state.
428 Valid states are:
429 .RS
430 .TP 12
431 .B failed
432 The player failed (exited with nonzero status but wasn't scratched).
433 .TP
434 .B isscratch
435 The track is actually a scratch.
436 .TP
437 .B no_player
438 No player could be found for the track.
439 .TP
440 .B ok
441 The track was played without any problems.
442 .TP
443 .B scratched
444 The track was scratched.
445 .TP
446 .B started
447 The track is currently playing.
448 .TP
449 .B unplayed
450 In the queue, hasn't been played yet.
451 .TP
452 .B quitting
453 The track was terminated because the server is shutting down.
454 .RE
455 .TP
456 .B submitter
457 The user that submitted the track.
458 .TP
459 .B track
460 The filename of the track.
461 .TP
462 .B when
463 The time the track was added to the queue.
464 .TP
465 .B wstat
466 The wait status of the player in decimal.
467 .SH NOTES
468 Times are decimal integers using the server's \fBtime_t\fR.
469 .PP
470 For file listings, the regexp applies to the basename of the returned file, not
471 the whole filename, and letter case is ignored.
472 \fBpcrepattern\fR(3) describes the regexp syntax.
473 .PP
474 Filenames are in UTF-8 even if the collection they come from uses some other
475 encoding - if you want to access the real file (in such cases as the filenames
476 actually correspond to a real file) you'll have to convert to whatever the
477 right encoding is.
478 .SH "EVENT LOG"
479 The event log consists of lines starting with a hexadecimal timestamp and a
480 keyword followed by (optionally) parameters.
481 The parameters are quoted in the usual DisOrder way.
482 Currently the following keywords are used:
483 .TP
484 .B completed \fITRACK\fR
485 Completed playing \fITRACK\fR
486 .TP
487 .B failed \fITRACK\fR \fIERROR\fR
488 Completed playing \fITRACK\fR with an error status
489 .TP
490 .B moved \fIUSER\fR
491 User \fIUSER\fR moved some track(s).
492 Further details aren't included any more.
493 .TP
494 .B playing \fITRACK\fR [\fIUSER\fR]
495 Started playing \fITRACK\fR.
496 .TP
497 .B queue \fIQUEUE-ENTRY\fR...
498 Added \fITRACK\fR to the queue.
499 .TP
500 .B recent_added \fIQUEUE-ENTRY\fR...
501 Added \fIID\fR to the recently played list.
502 .TP
503 .B recent_removed \fIID\fR
504 Removed \fIID\fR from the recently played list.
505 .TP
506 .B removed \fIID\fR [\fIUSER\fR]
507 Queue entry \fIID\fR was removed.
508 This is used both for explicit removal (when \fIUSER\fR is present)
509 and when playing a track (when it is absent).
510 .TP
511 .B rescanned
512 A rescan completed.
513 .TP
514 .B scratched \fITRACK\fR \fIUSER\fR
515 \fITRACK\fR was scratched by \fIUSER\fR.
516 .TP
517 .B state \fIKEYWORD\fR
518 Some state change occurred.
519 The current set of keywords is:
520 .RS
521 .TP
522 .B completed
523 The current track completed successfully.
524 .TP
525 .B disable_play
526 Playing was disabled.
527 .TP
528 .B disable_random
529 Random play was disabled.
530 .TP
531 .B enable_play
532 Playing was enabled.
533 .TP
534 .B enable_random
535 Random play was enabled.
536 .TP
537 .B failed
538 The current track failed.
539 .TP
540 .B pause
541 The current track was paused.
542 .TP
543 .B playing
544 A track started playing.
545 .TP
546 .B resume
547 The current track was resumed.
548 .TP
549 .B scratched
550 The current track was scratched.
551 .PP
552 To simplify client implementation, \fBstate\fR commands reflecting the current
553 state are sent at the start of the log.
554 .RE
555 .TP
556 .B volume \fILEFT\fR \fIRIGHT\fR
557 The volume changed.
558 .PP
559 .IR QUEUE-ENTRY ...
560 is as defined in
561 .B "TRACK INFORMATION"
562 above.
563 .SH "CHARACTER ENCODING"
564 All data sent by both server and client is encoded using UTF-8.
565 Moreover it must be valid UTF-8, i.e. non-minimal sequences are not
566 permitted, nor are surrogates, nor are code points outside the
567 Unicode code space.
568 .PP
569 There are no particular normalization requirements on either side of the
570 protocol.
571 The server currently converts internally to NFC, the client must
572 normalize the responses returned if it needs some normalized form for further
573 processing.
574 .PP
575 The various characters which divide up lines may not be followed by combining
576 characters.
577 For instance all of the following are prohibited:
578 .TP
579 .B o
580 LINE FEED followed by a combining character.
581 For example the sequence LINE FEED, COMBINING GRAVE ACCENT is never permitted.
582 .TP
583 .B o
584 APOSTROPHE or QUOTATION MARK followed by a combining character when used to
585 delimit fields.
586 For instance a line starting APOSTROPHE, COMBINING CEDILLA is prohibited.
587 .IP
588 Note that such sequences are not prohibited when the quote character cannot be
589 interpreted as a field delimiter.
590 For instance APOSTROPHE, REVERSE SOLIDUS, APOSTROPHE, COMBINING CEDILLA,
591 APOSTROPHE would be permitted.
592 .TP
593 .B o
594 REVERSE SOLIDUS (BACKSLASH) followed by a combining character in a quoted
595 string when it is the first character of an escape sequence.
596 For instance a line starting APOSTROPHE, REVERSE SOLIDUS, COMBINING TILDE
597 is prohibited.
598 .IP
599 As above such sequences are not prohibited when the character is not being used
600 to start an escape sequence.
601 For instance APOSTROPHE, REVERSE SOLIDUS, REVERSE SOLIDS, COMBINING TILDE,
602 APOSTROPHE is permitted.
603 .TP
604 .B o
605 Any of the field-splitting whitespace characters followed by a combining
606 character when not part of a quoted field.
607 For instance a line starting COLON, SPACE, COMBINING CANDRABINDU is prohibited.
608 .IP
609 As above non-delimiter uses are fine.
610 .TP
611 .B o
612 The FULL STOP characters used to quote or delimit a body.
613 .PP
614 Furthermore none of these characters are permitted to appear in the context of
615 a canonical decomposition (i.e. they must still be present when converted to
616 NFC).
617 In practice however this is not an issue in Unicode 5.0.
618 .PP
619 These rules are consistent with the observation that the split() function is
620 essentially a naive ASCII parser.
621 The implication is not that these sequences never actually appear in
622 the protocol, merely that the server is not required to honor them in
623 any useful way nor be consistent between versions: in current
624 versions the result will be lines and fields that start with combining
625 characters and are not necessarily split where you expect, but future versions
626 may remove them, reject them or ignore some or all of the delimiters that have
627 following combining characters, and no notice will be given of any change.
628 .SH "SEE ALSO"
629 \fBdisorder\fR(1),
630 \fBtime\fR(2),
631 \fBdisorder\fR(3),
632 \fBpcrepattern\fR(3)
633 \fBdisorder_config\fR(5),
634 \fBdisorderd\fR(8),
635 \fButf8\fR(7)
636 .\" Local Variables:
637 .\" mode:nroff
638 .\" fill-column:79
639 .\" End: