2 * This file is part of DisOrder.
3 * Copyright (C) 2004-2008 Richard Kettlewell
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20 /** @file server/macros-disorder.c
21 * @brief DisOrder-specific expansions
24 #include "disorder-cgi.h"
26 /** @brief For error template */
27 char *dcgi_error_string;
29 /** @brief For login template */
30 char *dcgi_status_string;
32 /** @brief Return @p i as a string */
33 static const char *make_index(int i) {
36 byte_xasprintf(&s, "%d", i);
42 * Expands to the server's version string, or a (safe to use) error
43 * value if the server is unavailable or broken.
45 static int exp_server_version(int attribute((unused)) nargs,
46 char attribute((unused)) **args,
48 void attribute((unused)) *u) {
52 if(disorder_version(dcgi_client, (char **)&v))
53 v = "(cannot get version)";
55 v = "(server not running)";
56 return sink_writes(output, cgi_sgmlquote(v)) < 0 ? -1 : 0;
61 * Expands to the local version string.
63 static int exp_version(int attribute((unused)) nargs,
64 char attribute((unused)) **args,
66 void attribute((unused)) *u) {
67 return sink_writes(output,
68 cgi_sgmlquote(disorder_short_version_string)) < 0 ? -1 : 0;
73 * Expands to the base URL of the web interface.
75 static int exp_url(int attribute((unused)) nargs,
76 char attribute((unused)) **args,
78 void attribute((unused)) *u) {
79 return sink_writes(output,
80 cgi_sgmlquote(config->url)) < 0 ? -1 : 0;
85 * Expands to the UNQUOTED form of CGI argument NAME, or the empty string if
86 * there is no such argument. Use @argq for a quick way to quote the argument.
88 static int exp_arg(int attribute((unused)) nargs,
91 void attribute((unused)) *u) {
92 const char *s = cgi_get(args[0]);
95 return sink_writes(output, s) < 0 ? -1 : 0;
102 * Expands to the (quoted) form of CGI argument NAME, or the empty string if
103 * there is no such argument. Use @arg for the unquoted argument.
105 static int exp_argq(int attribute((unused)) nargs,
108 void attribute((unused)) *u) {
109 const char *s = cgi_get(args[0]);
112 return sink_writes(output, cgi_sgmlquote(s)) < 0 ? -1 : 0;
119 * Expands to the logged-in username (which might be "guest"), or to
120 * the empty string if not connected.
122 static int exp_user(int attribute((unused)) nargs,
123 char attribute((unused)) **args,
125 void attribute((unused)) *u) {
128 if(dcgi_client && (user = disorder_user(dcgi_client)))
129 return sink_writes(output, cgi_sgmlquote(user)) < 0 ? -1 : 0;
133 /* @part{TRACK|ID}{PART}{CONTEXT}
135 * Expands to a track name part.
137 * A track may be identified by name or by queue ID.
139 * CONTEXT may be omitted. If it is then 'display' is assumed.
141 * If the CONTEXT is 'short' then the 'display' part is looked up, and the
142 * result truncated according to the length defined by the short_display
143 * configuration directive.
145 static int exp_part(int nargs,
148 void attribute((unused)) *u) {
149 const char *track = args[0], *part = args[1];
150 const char *context = nargs > 2 ? args[2] : "display";
153 if(track[0] != '/') {
154 struct queue_entry *q = dcgi_findtrack(track);
161 fprintf(stderr, "track=[%s] part=[%s] context=[%s] dcgi_client=[%p]\n",
164 !strcmp(context, "short") ? "display" : context,
167 && !disorder_part(dcgi_client, &s,
169 !strcmp(context, "short") ? "display" : context,
171 return sink_writes(output, cgi_sgmlquote(s)) < 0 ? -1 : 0;
177 * SGML-quotes STRING. Note that most expansion results are already suitable
178 * quoted, so this expansion is usually not required.
180 static int exp_quote(int attribute((unused)) nargs,
183 void attribute((unused)) *u) {
184 return sink_writes(output, cgi_sgmlquote(args[0])) < 0 ? -1 : 0;
189 * Expands to the name of the submitter of track ID, which must be a playing
190 * track, in the queue, or in the recent list.
192 static int exp_who(int attribute((unused)) nargs,
195 void attribute((unused)) *u) {
196 struct queue_entry *q = dcgi_findtrack(args[0]);
198 if(q && q->submitter)
199 return sink_writes(output, cgi_sgmlquote(q->submitter)) < 0 ? -1 : 0;
205 * Expands to the time a track started or is expected to start. The track must
206 * be a playing track, in the queue, or in the recent list.
208 static int exp_when(int attribute((unused)) nargs,
211 void attribute((unused)) *u) {
212 struct queue_entry *q = dcgi_findtrack(args[0]);
213 const struct tm *w = 0;
217 case playing_isscratch:
218 case playing_unplayed:
221 w = localtime(&q->expected);
224 case playing_no_player:
226 case playing_scratched:
227 case playing_started:
229 case playing_quitting:
231 w = localtime(&q->played);
235 return sink_printf(output, "%d:%02d", w->tm_hour, w->tm_min) < 0 ? -1 : 0;
237 return sink_writes(output, " ") < 0 ? -1 : 0;
242 * Expands to the length of a track, identified by its queue ID or its name.
243 * If it is the playing track (identified by ID) then the amount played so far
246 static int exp_length(int attribute((unused)) nargs,
249 void attribute((unused)) *u) {
250 struct queue_entry *q;
254 if(args[0][0] == '/')
255 /* Track identified by name */
258 /* Track identified by queue ID */
259 if(!(q = dcgi_findtrack(args[0])))
261 if(q->state == playing_started || q->state == playing_paused)
262 if(sink_printf(output, "%ld:%02ld/", q->sofar / 60, q->sofar % 60) < 0)
266 if(dcgi_client && disorder_length(dcgi_client, name, &length))
267 return sink_printf(output, "%ld:%02ld",
268 length / 60, length % 60) < 0 ? -1 : 0;
269 return sink_writes(output, " ") < 0 ? -1 : 0;
274 * Expands to "true" if track ID is removable (or scratchable, if it is the
275 * playing track) and "false" otherwise.
277 static int exp_removable(int attribute((unused)) nargs,
280 void attribute((unused)) *u) {
281 struct queue_entry *q = dcgi_findtrack(args[0]);
282 /* TODO would be better to reject recent */
284 if(!q || !dcgi_client)
285 return mx_bool_result(output, 0);
286 dcgi_lookup(DCGI_RIGHTS);
287 return mx_bool_result(output,
288 (q == dcgi_playing ? right_scratchable : right_removable)
289 (dcgi_rights, disorder_user(dcgi_client), q));
294 * Expands to "true" if track ID is movable and "false" otherwise.
296 * DIR (which is optional) should be a non-zero integer. If it is negative
297 * then the intended move is down (later in the queue), if it is positive then
298 * the intended move is up (earlier in the queue). The first track is not
299 * movable up and the last track not movable down.
301 static int exp_movable(int nargs,
304 void attribute((unused)) *u) {
305 struct queue_entry *q = dcgi_findtrack(args[0]);
306 /* TODO would be better to recent playing/recent */
308 if(!q || !dcgi_client)
309 return mx_bool_result(output, 0);
311 const long dir = atoi(args[1]);
313 if(dir > 0 && q == dcgi_queue)
314 return mx_bool_result(output, 0);
315 if(dir < 0 && q->next == 0)
316 return mx_bool_result(output, 0);
318 dcgi_lookup(DCGI_RIGHTS);
319 return mx_bool_result(output,
320 right_movable(dcgi_rights,
321 disorder_user(dcgi_client),
325 /* @playing{TEMPLATE}
327 * Expands to TEMPLATE, with:
328 * - @id expanded to the queue ID of the playing track
329 * - @track expanded to its UNQUOTED name
331 * If no track is playing expands to nothing.
333 * TEMPLATE is optional. If it is left out then instead expands to the queue
334 * ID of the playing track.
336 static int exp_playing(int nargs,
337 const struct mx_node **args,
340 dcgi_lookup(DCGI_PLAYING);
344 return sink_writes(output, dcgi_playing->id) < 0 ? -1 : 0;
345 return mx_expand(mx_rewritel(args[0],
346 "id", dcgi_playing->id,
347 "track", dcgi_playing->track,
354 * For each track in the queue, expands TEMPLATE with the following expansions:
355 * - @id to the queue ID of the track
356 * - @track to the UNQUOTED track name
357 * - @index to the track number from 0
358 * - @parity to "even" or "odd" alternately
359 * - @first to "true" on the first track and "false" otherwise
360 * - @last to "true" on the last track and "false" otherwise
362 static int exp_queue(int attribute((unused)) nargs,
363 const struct mx_node **args,
366 struct queue_entry *q;
369 dcgi_lookup(DCGI_QUEUE);
370 for(q = dcgi_queue, i = 0; q; q = q->next, ++i)
371 if((rc = mx_expand(mx_rewritel(args[0],
374 "index", make_index(i),
375 "parity", i % 2 ? "odd" : "even",
376 "first", q == dcgi_queue ? "true" : "false",
377 "last", q->next ? "false" : "true",
386 * For each track in the recently played list, expands TEMPLATE with the
387 * following expansions:
388 * - @id to the queue ID of the track
389 * - @track to the UNQUOTED track name
390 * - @index to the track number from 0
391 * - @parity to "even" or "odd" alternately
392 * - @first to "true" on the first track and "false" otherwise
393 * - @last to "true" on the last track and "false" otherwise
395 static int exp_recent(int attribute((unused)) nargs,
396 const struct mx_node **args,
399 struct queue_entry *q;
402 dcgi_lookup(DCGI_RECENT);
403 for(q = dcgi_recent, i = 0; q; q = q->next, ++i)
404 if((rc = mx_expand(mx_rewritel(args[0],
407 "index", make_index(i),
408 "parity", i % 2 ? "odd" : "even",
409 "first", q == dcgi_recent ? "true" : "false",
410 "last", q->next ? "false" : "true",
419 * For each track in the newly added list, expands TEMPLATE wit the following
421 * - @track to the UNQUOTED track name
422 * - @index to the track number from 0
423 * - @parity to "even" or "odd" alternately
424 * - @first to "true" on the first track and "false" otherwise
425 * - @last to "true" on the last track and "false" otherwise
427 * Note that unlike @playing, @queue and @recent which are otherwise
428 * superficially similar, there is no @id sub-expansion here.
430 static int exp_new(int attribute((unused)) nargs,
431 const struct mx_node **args,
436 dcgi_lookup(DCGI_NEW);
437 /* TODO perhaps we should generate an ID value for tracks in the new list */
438 for(i = 0; i < dcgi_nnew; ++i)
439 if((rc = mx_expand(mx_rewritel(args[0],
440 "track", dcgi_new[i],
441 "index", make_index(i),
442 "parity", i % 2 ? "odd" : "even",
443 "first", i == 0 ? "true" : "false",
444 "last", i == dcgi_nnew - 1 ? "false" : "true",
453 * Expands to the volume in a given channel. CHANNEL must be "left" or
456 static int exp_volume(int attribute((unused)) nargs,
459 void attribute((unused)) *u) {
460 dcgi_lookup(DCGI_VOLUME);
461 return sink_printf(output, "%d",
462 !strcmp(args[0], "left")
463 ? dcgi_volume_left : dcgi_volume_right) < 0 ? -1 : 0;
468 * Expands to "true" if there is a playing track, otherwise "false".
470 static int exp_isplaying(int attribute((unused)) nargs,
471 char attribute((unused)) **args,
473 void attribute((unused)) *u) {
474 dcgi_lookup(DCGI_PLAYING);
475 return mx_bool_result(output, !!dcgi_playing);
480 * Expands to "true" if there the queue is nonempty, otherwise "false".
482 static int exp_isqueue(int attribute((unused)) nargs,
483 char attribute((unused)) **args,
485 void attribute((unused)) *u) {
486 dcgi_lookup(DCGI_QUEUE);
487 return mx_bool_result(output, !!dcgi_queue);
492 * Expands to "true" if there the recently played list is nonempty, otherwise
495 static int exp_isrecent(int attribute((unused)) nargs,
496 char attribute((unused)) **args,
498 void attribute((unused)) *u) {
499 dcgi_lookup(DCGI_RECENT);
500 return mx_bool_result(output, !!dcgi_recent);
505 * Expands to "true" if there the newly added track list is nonempty, otherwise
508 static int exp_isnew(int attribute((unused)) nargs,
509 char attribute((unused)) **args,
511 void attribute((unused)) *u) {
512 dcgi_lookup(DCGI_NEW);
513 return mx_bool_result(output, !!dcgi_nnew);
518 * Expands to a track preference.
520 static int exp_pref(int attribute((unused)) nargs,
523 void attribute((unused)) *u) {
526 if(dcgi_client && !disorder_get(dcgi_client, args[0], args[1], &value))
527 return sink_writes(output, cgi_sgmlquote(value)) < 0 ? -1 : 0;
531 /* @prefs{TRACK}{TEMPLATE}
533 * For each track preference of track TRACK, expands TEMPLATE with the
534 * following expansions:
535 * - @name to the UNQUOTED preference name
536 * - @index to the preference number from 0
537 * - @value to the UNQUOTED preference value
538 * - @parity to "even" or "odd" alternately
539 * - @first to "true" on the first preference and "false" otherwise
540 * - @last to "true" on the last preference and "false" otherwise
542 * Use @quote to quote preference names and values where necessary; see below.
544 static int exp_prefs(int attribute((unused)) nargs,
545 const struct mx_node **args,
549 struct kvp *k, *head;
552 if((rc = mx_expandstr(args[0], &track, u, "argument #0 (TRACK)")))
554 if(!dcgi_client || disorder_prefs(dcgi_client, track, &head))
556 for(k = head, i = 0; k; k = k->next, ++i)
557 if((rc = mx_expand(mx_rewritel(args[1],
558 "index", make_index(i),
559 "parity", i % 2 ? "odd" : "even",
562 "first", k == head ? "true" : "false",
563 "last", k->next ? "false" : "true",
570 /* @transform{TRACK}{TYPE}{CONTEXT}
572 * Transforms a track name (if TYPE is "track") or directory name (if type is
573 * "dir"). CONTEXT should be the context, if it is left out then "display" is
576 static int exp_transform(int nargs,
579 void attribute((unused)) *u) {
580 const char *t = trackname_transform(args[1], args[0],
581 (nargs > 2 ? args[2] : "display"));
582 return sink_writes(output, cgi_sgmlquote(t)) < 0 ? -1 : 0;
587 * Expands to "true" if playing is enabled, otherwise "false".
589 static int exp_enabled(int attribute((unused)) nargs,
590 char attribute((unused)) **args,
592 void attribute((unused)) *u) {
596 disorder_enabled(dcgi_client, &e);
597 return mx_bool_result(output, e);
602 * Expands to "true" if random play is enabled, otherwise "false".
604 static int exp_random_enabled(int attribute((unused)) nargs,
605 char attribute((unused)) **args,
607 void attribute((unused)) *u) {
611 disorder_random_enabled(dcgi_client, &e);
612 return mx_bool_result(output, e);
615 /* @trackstate{TRACK}
617 * Expands to "playing" if TRACK is currently playing, or "queue" if it is in
618 * the queue, otherwise to nothing.
620 static int exp_trackstate(int attribute((unused)) nargs,
623 void attribute((unused)) *u) {
625 struct queue_entry *q;
629 if(disorder_resolve(dcgi_client, &track, args[0]))
631 dcgi_lookup(DCGI_PLAYING);
632 if(dcgi_playing && !strcmp(track, dcgi_playing->track))
633 return sink_writes(output, "playing") < 0 ? -1 : 0;
634 dcgi_lookup(DCGI_QUEUE);
635 for(q = dcgi_queue; q; q = q->next)
636 if(!strcmp(track, q->track))
637 return sink_writes(output, "queued") < 0 ? -1 : 0;
643 * Expands to an UNQUOTED URL which points back to the current page. (NB it
644 * might not be byte for byte identical - for instance, CGI arguments might be
647 static int exp_thisurl(int attribute((unused)) nargs,
648 char attribute((unused)) **args,
650 void attribute((unused)) *u) {
651 return sink_writes(output, cgi_thisurl(config->url)) < 0 ? -1 : 0;
656 * Expands to an UNQUOTED name for the TRACK that is not an alias, or to
657 * nothing if it is not a valid track.
659 static int exp_resolve(int attribute((unused)) nargs,
662 void attribute((unused)) *u) {
665 if(dcgi_client && !disorder_resolve(dcgi_client, &r, args[0]))
666 return sink_writes(output, r) < 0 ? -1 : 0;
672 * Expands to "true" if the playing track is paused, to "false" if it is
673 * playing (or if there is no playing track at all).
675 static int exp_paused(int attribute((unused)) nargs,
676 char attribute((unused)) **args,
678 void attribute((unused)) *u) {
679 dcgi_lookup(DCGI_PLAYING);
680 return mx_bool_result(output, (dcgi_playing
681 && dcgi_playing->state == playing_paused));
686 * Expands to the current state of track ID.
688 static int exp_state(int attribute((unused)) nargs,
691 void attribute((unused)) *u) {
692 struct queue_entry *q = dcgi_findtrack(args[0]);
695 return sink_writes(output, playing_states[q->state]) < 0 ? -1 : 0;
699 /* @right{RIGHT}{WITH-RIGHT}{WITHOUT-RIGHT}@
701 * Expands to WITH-RIGHT if the current user has right RIGHT, otherwise to
702 * WITHOUT-RIGHT. The WITHOUT-RIGHT argument may be left out.
704 * If both WITH-RIGHT and WITHOUT-RIGHT are left out then expands to "true" if
705 * the user has the right and "false" otherwise.
707 * If there is no connection to the server then expands to nothing (in all
710 static int exp_right(int nargs,
711 const struct mx_node **args,
720 dcgi_lookup(DCGI_RIGHTS);
721 if((rc = mx_expandstr(args[0], &right, u, "argument #0 (RIGHT)")))
723 if(parse_rights(right, &r, 1/*report*/))
725 /* Single-argument form */
727 return mx_bool_result(output, !!(r & dcgi_rights));
728 /* Multiple argument form */
730 return mx_expand(args[1], output, u);
732 return mx_expand(args[2], output, u);
736 /* @userinfo{PROPERTY}
738 * Expands to the named property of the current user.
740 static int exp_userinfo(int attribute((unused)) nargs,
743 void attribute((unused)) *u) {
747 && !disorder_userinfo(dcgi_client, disorder_user(dcgi_client),
749 return sink_writes(output, v) < 0 ? -1 : 0;
755 * Expands to the latest error string.
757 static int exp_error(int attribute((unused)) nargs,
758 char attribute((unused)) **args,
760 void attribute((unused)) *u) {
761 return sink_writes(output, dcgi_error_string ? dcgi_error_string : "")
767 * Expands to the latest status string.
769 static int exp_status(int attribute((unused)) nargs,
770 char attribute((unused)) **args,
772 void attribute((unused)) *u) {
773 return sink_writes(output, dcgi_status_string ? dcgi_status_string : "")
779 * Expands to the URL of the image called NAME.
781 * Firstly if there is a label called images.NAME then the image stem will be
782 * the value of that label. Otherwise the stem will be NAME.png.
784 * If the label url.static exists then it will give the base URL for images.
785 * Otherwise the base url will be /disorder/.
787 static int exp_image(int attribute((unused)) nargs,
790 void attribute((unused)) *u) {
791 const char *url, *stem;
794 /* Compute the stem */
795 byte_xasprintf(&labelname, "images.%s", args[0]);
796 if(option_label_exists(labelname))
797 stem = option_label(labelname);
799 byte_xasprintf((char **)&stem, "%s.png", args[0]);
800 /* If the stem looks like it's reasonalby complete, use that */
802 || !strncmp(stem, "http:", 5)
803 || !strncmp(stem, "https:", 6))
806 /* Compute the URL */
807 if(option_label_exists("url.static"))
808 byte_xasprintf((char **)&url, "%s/%s",
809 option_label("url.static"), stem);
811 /* Default base is /disorder */
812 byte_xasprintf((char **)&url, "/disorder/%s", stem);
814 return sink_writes(output, cgi_sgmlquote(url)) < 0 ? -1 : 0;
817 /** @brief Entry in a list of tracks or directories */
819 /** @brief Track name */
821 /** @brief Sort key */
823 /** @brief Display key */
827 /** @brief Compare two @ref entry objects */
828 static int compare_entry(const void *a, const void *b) {
829 const struct entry *ea = a, *eb = b;
831 return compare_tracks(ea->sort, eb->sort,
832 ea->display, eb->display,
833 ea->track, eb->track);
836 /** @brief Implementation of exp_tracks() and exp_dirs() */
837 static int exp__files_dirs(int nargs,
838 const struct mx_node **args,
842 int (*fn)(disorder_client *client,
847 char **tracks, *dir, *re;
849 const struct mx_node *m;
852 if((rc = mx_expandstr(args[0], &dir, u, "argument #0 (DIR)")))
855 if((rc = mx_expandstr(args[1], &re, u, "argument #1 (RE)")))
865 if(fn(dcgi_client, dir, re, &tracks, &ntracks))
867 /* Sort it. NB trackname_transform() does not go to the server. */
868 e = xcalloc(ntracks, sizeof *e);
869 for(n = 0; n < ntracks; ++n) {
870 e->track = tracks[n];
871 e[n].track = tracks[n];
872 e[n].sort = trackname_transform(type, tracks[n], "sort");
873 e[n].display = trackname_transform(type, tracks[n], "display");
875 qsort(e, ntracks, sizeof (struct entry), compare_entry);
876 /* Expand the subsiduary templates. We chuck in @sort and @display because
877 * it is particularly easy to do so. */
878 for(n = 0; n < ntracks; ++n)
879 if((rc = mx_expand(mx_rewritel(m,
880 "index", make_index(n),
881 "parity", n % 2 ? "odd" : "even",
883 "first", n == 0 ? "true" : "false",
884 "last", n + 1 == ntracks ? "false" : "true",
886 "display", e[n].display,
894 /** @tracks{DIR}{RE}{TEMPLATE}
896 * For each track below DIR, expands TEMPLATE with the
897 * following expansions:
898 * - @track to the UNQUOTED track name
899 * - @index to the track number from 0
900 * - @parity to "even" or "odd" alternately
901 * - @first to "true" on the first track and "false" otherwise
902 * - @last to "true" on the last track and "false" otherwise
903 * - @sort to the sort key for this track
904 * - @display to the UNQUOTED display string for this track
906 * RE is optional and if present is the regexp to match against.
908 static int exp_tracks(int nargs,
909 const struct mx_node **args,
912 return exp__files_dirs(nargs, args, output, u, "track", disorder_files);
915 /** @dirs{DIR}{RE}{TEMPLATE}
917 * For each directory below DIR, expands TEMPLATE with the
918 * following expansions:
919 * - @track to the UNQUOTED directory name
920 * - @index to the directory number from 0
921 * - @parity to "even" or "odd" alternately
922 * - @first to "true" on the first directory and "false" otherwise
923 * - @last to "true" on the last directory and "false" otherwise
924 * - @sort to the sort key for this directory
925 * - @display to the UNQUOTED display string for this directory
927 * RE is optional and if present is the regexp to match against.
929 static int exp_dirs(int nargs,
930 const struct mx_node **args,
933 return exp__files_dirs(nargs, args, output, u, "dir", disorder_directories);
936 static int exp__search_shim(disorder_client *c, const char *terms,
937 const char attribute((unused)) *re,
938 char ***vecp, int *nvecp) {
939 return disorder_search(c, terms, vecp, nvecp);
942 /** @search{KEYWORDS}{TEMPLATE}
944 * For each track matching KEYWORDS, expands TEMPLATE with the
945 * following expansions:
946 * - @track to the UNQUOTED directory name
947 * - @index to the directory number from 0
948 * - @parity to "even" or "odd" alternately
949 * - @first to "true" on the first directory and "false" otherwise
950 * - @last to "true" on the last directory and "false" otherwise
951 * - @sort to the sort key for this track
952 * - @display to the UNQUOTED display string for this track
954 static int exp_search(int nargs,
955 const struct mx_node **args,
958 return exp__files_dirs(nargs, args, output, u, "track", exp__search_shim);
961 static int exp_label(int attribute((unused)) nargs,
964 void attribute((unused)) *u) {
965 return sink_writes(output, option_label(args[0])) < 0 ? -1 : 0;
968 /** @brief Register DisOrder-specific expansions */
969 void dcgi_expansions(void) {
970 mx_register("arg", 1, 1, exp_arg);
971 mx_register("argq", 1, 1, exp_argq);
972 mx_register("enabled", 0, 0, exp_enabled);
973 mx_register("error", 0, 0, exp_error);
974 mx_register("image", 1, 1, exp_image);
975 mx_register("isnew", 0, 0, exp_isnew);
976 mx_register("isplaying", 0, 0, exp_isplaying);
977 mx_register("isqueue", 0, 0, exp_isqueue);
978 mx_register("isrecent", 0, 0, exp_isrecent);
979 mx_register("label", 1, 1, exp_label);
980 mx_register("length", 1, 1, exp_length);
981 mx_register("movable", 1, 2, exp_movable);
982 mx_register("part", 2, 3, exp_part);
983 mx_register("paused", 0, 0, exp_paused);
984 mx_register("pref", 2, 2, exp_pref);
985 mx_register("quote", 1, 1, exp_quote);
986 mx_register("random-enabled", 0, 0, exp_random_enabled);
987 mx_register("removable", 1, 1, exp_removable);
988 mx_register("resolve", 1, 1, exp_resolve);
989 mx_register("server-version", 0, 0, exp_server_version);
990 mx_register("state", 1, 1, exp_state);
991 mx_register("status", 0, 0, exp_status);
992 mx_register("thisurl", 0, 0, exp_thisurl);
993 mx_register("trackstate", 1, 1, exp_trackstate);
994 mx_register("transform", 2, 3, exp_transform);
995 mx_register("url", 0, 0, exp_url);
996 mx_register("user", 0, 0, exp_user);
997 mx_register("userinfo", 1, 1, exp_userinfo);
998 mx_register("version", 0, 0, exp_version);
999 mx_register("volume", 1, 1, exp_volume);
1000 mx_register("when", 1, 1, exp_when);
1001 mx_register("who", 1, 1, exp_who);
1002 mx_register_magic("dirs", 2, 3, exp_dirs);
1003 mx_register_magic("new", 1, 1, exp_new);
1004 mx_register_magic("playing", 0, 1, exp_playing);
1005 mx_register_magic("prefs", 2, 2, exp_prefs);
1006 mx_register_magic("queue", 1, 1, exp_queue);
1007 mx_register_magic("recent", 1, 1, exp_recent);
1008 mx_register_magic("right", 1, 3, exp_right);
1009 mx_register_magic("search", 2, 2, exp_search);
1010 mx_register_magic("tracks", 2, 3, exp_tracks);
1018 indent-tabs-mode:nil