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