chiark / gitweb /
Document that 'confirm' logs user in
[disorder] / lib / client-stubs.h
CommitLineData
7788b7c7
RK
1/*
2 * This file is part of DisOrder.
3 * Copyright (C) 2010 Richard Kettlewell
4 *
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 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18#ifndef CLIENT_STUBS_H
19#define CLIENT_STUBS_H
20
21/** @brief Adopt a track
22 *
23 * Makes the calling user owner of a randomly picked track.
24 *
25 * @param id Track ID
26 * @return 0 on success, non-0 on error
27 */
28int disorder_adopt(disorder_client *c, const char *id);
29
30/** @brief Create a user
31 *
32 * Create a new user. Requires the 'admin' right. Email addresses etc must be filled in in separate commands.
33 *
34 * @param user New username
35 * @param password Initial password
36 * @param rights Initial rights (optional)
37 * @return 0 on success, non-0 on error
38 */
39int disorder_adduser(disorder_client *c, const char *user, const char *password, const char *rights);
40
3680ef53
RK
41/** @brief List files and directories in a directory
42 *
43 * See 'files' and 'dirs' for more specific lists.
44 *
45 * @param dir Directory to list (optional)
46 * @param re Regexp that results must match (optional)
47 * @param filesp List of matching files and directories
48 * @param nfilesp Number of elements in filesp
49 * @return 0 on success, non-0 on error
50 */
51int disorder_allfiles(disorder_client *c, const char *dir, const char *re, char ***filesp, int *nfilesp);
52
7788b7c7
RK
53/** @brief Confirm registration
54 *
55 * The confirmation string must have been created with 'register'. The username is returned so the caller knows who they are.
56 *
57 * @param confirmation Confirmation string
58 * @return 0 on success, non-0 on error
59 */
60int disorder_confirm(disorder_client *c, const char *confirmation);
61/** @brief Log in with a cookie
62 *
63 * The cookie must have been created with 'make-cookie'. The username is returned so the caller knows who they are.
64 *
65 * @param cookie Cookie string
66 * @return 0 on success, non-0 on error
67 */
68int disorder_cookie(disorder_client *c, const char *cookie);
69/** @brief Delete user
70 *
71 * Requires the 'admin' right.
72 *
73 * @param user User to delete
74 * @return 0 on success, non-0 on error
75 */
76int disorder_deluser(disorder_client *c, const char *user);
77
3680ef53
RK
78/** @brief List directories in a directory
79 *
80 *
81 *
82 * @param dir Directory to list (optional)
83 * @param re Regexp that results must match (optional)
84 * @param filesp List of matching directories
85 * @param nfilesp Number of elements in filesp
86 * @return 0 on success, non-0 on error
87 */
88int disorder_dirs(disorder_client *c, const char *dir, const char *re, char ***filesp, int *nfilesp);
89
7788b7c7
RK
90/** @brief Disable play
91 *
92 * Play will stop at the end of the current track, if one is playing. Requires the 'global prefs' right.
93 *
94 * @return 0 on success, non-0 on error
95 */
96int disorder_disable(disorder_client *c);
97
98/** @brief Set a user property
99 *
100 * With the 'admin' right you can do anything. Otherwise you need the 'userinfo' right and can only set 'email' and 'password'.
101 *
102 * @param username User to modify
103 * @param property Property name
104 * @param value New property value
105 * @return 0 on success, non-0 on error
106 */
107int disorder_edituser(disorder_client *c, const char *username, const char *property, const char *value);
108
109/** @brief Enable play
110 *
111 * Requires the 'global prefs' right.
112 *
113 * @return 0 on success, non-0 on error
114 */
115int disorder_enable(disorder_client *c);
116
117/** @brief Detect whether play is enabled
118 *
119 *
120 *
121 * @param enabledp 1 if play is enabled and 0 otherwise
122 * @return 0 on success, non-0 on error
123 */
124int disorder_enabled(disorder_client *c, int *enabledp);
125
126/** @brief Test whether a track exists
127 *
128 *
129 *
130 * @param track Track name
131 * @param existsp 1 if the track exists and 0 otherwise
132 * @return 0 on success, non-0 on error
133 */
134int disorder_exists(disorder_client *c, const char *track, int *existsp);
135
3680ef53
RK
136/** @brief List files in a directory
137 *
138 *
139 *
140 * @param dir Directory to list (optional)
141 * @param re Regexp that results must match (optional)
142 * @param filesp List of matching files
143 * @param nfilesp Number of elements in filesp
144 * @return 0 on success, non-0 on error
145 */
146int disorder_files(disorder_client *c, const char *dir, const char *re, char ***filesp, int *nfilesp);
147
7788b7c7
RK
148/** @brief Get a track preference
149 *
150 * If the track does not exist that is an error. If the track exists but the preference does not then a null value is returned.
151 *
152 * @param track Track name
153 * @param pref Preference name
154 * @param valuep Preference value
155 * @return 0 on success, non-0 on error
156 */
157int disorder_get(disorder_client *c, const char *track, const char *pref, char **valuep);
158
159/** @brief Get a global preference
160 *
161 * If the preference does exist not then a null value is returned.
162 *
163 * @param pref Global preference name
164 * @param valuep Preference value
165 * @return 0 on success, non-0 on error
166 */
167int disorder_get_global(disorder_client *c, const char *pref, char **valuep);
168
169/** @brief Create a login cookie for this user
170 *
171 * The cookie may be redeemed via the 'cookie' command
172 *
173 * @param cookiep Newly created cookie
174 * @return 0 on success, non-0 on error
175 */
176int disorder_make_cookie(disorder_client *c, char **cookiep);
177
178/** @brief Do nothing
179 *
180 * Used as a keepalive. No authentication required.
181 *
182 * @return 0 on success, non-0 on error
183 */
184int disorder_nop(disorder_client *c);
185
186/** @brief Get a track name part
187 *
188 * If the name part cannot be constructed an empty string is returned.
189 *
190 * @param track Track name
191 * @param context Context ("sort" or "display")
192 * @param part Name part ("artist", "album" or "title")
193 * @param partp Value of name part
194 * @return 0 on success, non-0 on error
195 */
196int disorder_part(disorder_client *c, const char *track, const char *context, const char *part, char **partp);
197
198/** @brief Pause the currently playing track
199 *
200 * Requires the 'pause' right.
201 *
202 * @return 0 on success, non-0 on error
203 */
204int disorder_pause(disorder_client *c);
205
206/** @brief Delete a playlist
207 *
208 * Requires the 'play' right and permission to modify the playlist.
209 *
210 * @param playlist Playlist to delete
211 * @return 0 on success, non-0 on error
212 */
213int disorder_playlist_delete(disorder_client *c, const char *playlist);
214
3680ef53 215/** @brief List the contents of a playlist
7788b7c7 216 *
3680ef53 217 * Requires the 'read' right and oermission to read the playlist.
7788b7c7 218 *
3680ef53
RK
219 * @param playlist Playlist name
220 * @param tracksp List of tracks in playlist
221 * @param ntracksp Number of elements in tracksp
7788b7c7
RK
222 * @return 0 on success, non-0 on error
223 */
3680ef53 224int disorder_playlist_get(disorder_client *c, const char *playlist, char ***tracksp, int *ntracksp);
7788b7c7
RK
225
226/** @brief Get a playlist's sharing status
227 *
228 * Requires the 'read' right and permission to read the playlist.
229 *
230 * @param playlist Playlist to read
231 * @param sharep Sharing status ("public", "private" or "shared")
232 * @return 0 on success, non-0 on error
233 */
234int disorder_playlist_get_share(disorder_client *c, const char *playlist, char **sharep);
235
3680ef53
RK
236/** @brief Lock a playlist
237 *
238 * Requires the 'play' right and permission to modify the playlist. A given connection may lock at most one playlist.
239 *
240 * @param playlist Playlist to delete
241 * @return 0 on success, non-0 on error
242 */
243int disorder_playlist_lock(disorder_client *c, const char *playlist);
244
7788b7c7
RK
245/** @brief Set a playlist's sharing status
246 *
247 * Requires the 'play' right and permission to modify the playlist.
248 *
249 * @param playlist Playlist to modify
250 * @param share New sharing status ("public", "private" or "shared")
251 * @return 0 on success, non-0 on error
252 */
253int disorder_playlist_set_share(disorder_client *c, const char *playlist, const char *share);
254
255/** @brief Unlock the locked playlist playlist
256 *
257 * The playlist to unlock is implicit in the connection.
258 *
259 * @return 0 on success, non-0 on error
260 */
261int disorder_playlist_unlock(disorder_client *c);
262
3680ef53
RK
263/** @brief List playlists
264 *
265 * Requires the 'read' right. Only playlists that you have permission to read are returned.
266 *
267 * @param playlistsp Playlist names
268 * @param nplaylistsp Number of elements in playlistsp
269 * @return 0 on success, non-0 on error
270 */
271int disorder_playlists(disorder_client *c, char ***playlistsp, int *nplaylistsp);
272
7788b7c7
RK
273/** @brief Disable random play
274 *
275 * Requires the 'global prefs' right.
276 *
277 * @return 0 on success, non-0 on error
278 */
279int disorder_random_disable(disorder_client *c);
280
281/** @brief Enable random play
282 *
283 * Requires the 'global prefs' right.
284 *
285 * @return 0 on success, non-0 on error
286 */
287int disorder_random_enable(disorder_client *c);
288
289/** @brief Detect whether random play is enabled
290 *
291 * Random play counts as enabled even if play is disabled.
292 *
293 * @param enabledp 1 if random play is enabled and 0 otherwise
294 * @return 0 on success, non-0 on error
295 */
296int disorder_random_enabled(disorder_client *c, int *enabledp);
297
298/** @brief Re-read configuraiton file.
299 *
300 * Requires the 'admin' right.
301 *
302 * @return 0 on success, non-0 on error
303 */
304int disorder_reconfigure(disorder_client *c);
305
306/** @brief Register a new user
307 *
308 * Requires the 'register' right which is usually only available to the 'guest' user. Redeem the confirmation string via 'confirm' to complete registration.
309 *
310 * @param username Requested new username
311 * @param password Requested initial password
312 * @param email New user's email address
313 * @param confirmationp Confirmation string
314 * @return 0 on success, non-0 on error
315 */
316int disorder_register(disorder_client *c, const char *username, const char *password, const char *email, char **confirmationp);
317
318/** @brief Send a password reminder.
319 *
320 * If the user has no valid email address, or no password, or a reminder has been sent too recently, then no reminder will be sent.
321 *
322 * @param username User to remind
323 * @return 0 on success, non-0 on error
324 */
325int disorder_reminder(disorder_client *c, const char *username);
326
327/** @brief Remove a track form the queue.
328 *
329 * Requires one of the 'remove mine', 'remove random' or 'remove any' rights depending on how the track came to be added to the queue.
330 *
331 * @param id Track ID
332 * @return 0 on success, non-0 on error
333 */
334int disorder_remove(disorder_client *c, const char *id);
335
336/** @brief Rescan all collections for new or obsolete tracks.
337 *
338 * Requires the 'rescan' right.
339 *
340 * @return 0 on success, non-0 on error
341 */
342int disorder_rescan(disorder_client *c);
343
344/** @brief Resolve a track name
345 *
346 * Converts aliases to non-alias track names
347 *
348 * @param track Track name (might be an alias)
349 * @param resolvedp Resolve track name (definitely not an alias)
350 * @return 0 on success, non-0 on error
351 */
352int disorder_resolve(disorder_client *c, const char *track, char **resolvedp);
353
354/** @brief Resume the currently playing track
355 *
356 * Requires the 'pause' right.
357 *
358 * @return 0 on success, non-0 on error
359 */
360int disorder_resume(disorder_client *c);
361
362/** @brief Revoke a cookie.
363 *
364 * It will not subsequently be possible to log in with the cookie.
365 *
366 * @return 0 on success, non-0 on error
367 */
368int disorder_revoke(disorder_client *c);
369
370/** @brief Terminate the playing track.
371 *
372 * Requires one of the 'scratch mine', 'scratch random' or 'scratch any' rights depending on how the track came to be added to the queue.
373 *
374 * @param id Track ID (optional)
375 * @return 0 on success, non-0 on error
376 */
377int disorder_scratch(disorder_client *c, const char *id);
378
379/** @brief Delete a scheduled event.
380 *
381 * Users can always delete their own scheduled events; with the admin right you can delete any event.
382 *
383 * @param event ID of event to delete
384 * @return 0 on success, non-0 on error
385 */
386int disorder_schedule_del(disorder_client *c, const char *event);
387
3680ef53
RK
388/** @brief List scheduled events
389 *
390 * This just lists IDs. Use 'schedule-get' to retrieve more detail
391 *
392 * @param idsp List of event IDs
393 * @param nidsp Number of elements in idsp
394 * @return 0 on success, non-0 on error
395 */
396int disorder_schedule_list(disorder_client *c, char ***idsp, int *nidsp);
397
398/** @brief Search for tracks
399 *
400 * Terms are either keywords or tags formatted as 'tag:TAG-NAME'.
401 *
402 * @param terms List of search terms
403 * @param tracksp List of matching tracks
404 * @param ntracksp Number of elements in tracksp
405 * @return 0 on success, non-0 on error
406 */
407int disorder_search(disorder_client *c, const char *terms, char ***tracksp, int *ntracksp);
408
7788b7c7
RK
409/** @brief Set a track preference
410 *
411 * Requires the 'prefs' right.
412 *
413 * @param track Track name
414 * @param pref Preference name
415 * @param value New value
416 * @return 0 on success, non-0 on error
417 */
418int disorder_set(disorder_client *c, const char *track, const char *pref, const char *value);
419
420/** @brief Set a global preference
421 *
422 * Requires the 'global prefs' right.
423 *
424 * @param pref Preference name
425 * @param value New value
426 * @return 0 on success, non-0 on error
427 */
428int disorder_set_global(disorder_client *c, const char *pref, const char *value);
429
3680ef53
RK
430/** @brief Get server statistics
431 *
432 * The details of what the server reports are not really defined. The returned strings are intended to be printed out one to a line..
433 *
434 * @param statsp List of server information strings.
435 * @param nstatsp Number of elements in statsp
436 * @return 0 on success, non-0 on error
437 */
438int disorder_stats(disorder_client *c, char ***statsp, int *nstatsp);
439
440/** @brief Get a list of known tags
441 *
442 * Only tags which apply to at least one track are returned.
443 *
444 * @param tagsp List of tags
445 * @param ntagsp Number of elements in tagsp
446 * @return 0 on success, non-0 on error
447 */
448int disorder_tags(disorder_client *c, char ***tagsp, int *ntagsp);
449
7788b7c7
RK
450/** @brief Unset a track preference
451 *
452 * Requires the 'prefs' right.
453 *
454 * @param track Track name
455 * @param pref Preference name
456 * @return 0 on success, non-0 on error
457 */
458int disorder_unset(disorder_client *c, const char *track, const char *pref);
459
460/** @brief Set a global preference
461 *
462 * Requires the 'global prefs' right.
463 *
464 * @param pref Preference name
465 * @return 0 on success, non-0 on error
466 */
467int disorder_unset_global(disorder_client *c, const char *pref);
468
469/** @brief Get a user property.
470 *
471 * If the user does not exist an error is returned, if the user exists but the property does not then a null value is returned.
472 *
473 * @param username User to read
474 * @param property Property to read
475 * @param valuep Value of property
476 * @return 0 on success, non-0 on error
477 */
478int disorder_userinfo(disorder_client *c, const char *username, const char *property, char **valuep);
479
3680ef53
RK
480/** @brief Get a list of users
481 *
482 *
483 *
484 * @param usersp List of users
485 * @param nusersp Number of elements in usersp
486 * @return 0 on success, non-0 on error
487 */
488int disorder_users(disorder_client *c, char ***usersp, int *nusersp);
489
7788b7c7
RK
490/** @brief Get the server version
491 *
492 *
493 *
494 * @param versionp Server version string
495 * @return 0 on success, non-0 on error
496 */
497int disorder_version(disorder_client *c, char **versionp);
498
499#endif