chiark / gitweb /
more docs catchup
[disorder] / lib / rights.c
CommitLineData
5df73aeb
RK
1/*
2 * This file is part of DisOrder
3 * Copyright (C) 2007 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 2 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, 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.
14 *
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
18 * USA
19 */
20/** @file lib/rights.c
21 * @brief User rights
22 */
23
24#include <config.h>
25#include "types.h"
26
27#include <string.h>
28
29#include "mem.h"
30#include "log.h"
31#include "configuration.h"
32#include "rights.h"
33#include "vector.h"
34
35static const struct {
36 rights_type bit;
37 const char *name;
38} rights_names[] = {
39 { RIGHT_READ, "read" },
40 { RIGHT_PLAY, "play" },
41 { RIGHT_MOVE_ANY, "move any" },
42 { RIGHT_MOVE_MINE, "move mine" },
43 { RIGHT_MOVE_RANDOM, "move random" },
44 { RIGHT_REMOVE_ANY, "remove any" },
45 { RIGHT_REMOVE_MINE, "remove mine" },
46 { RIGHT_REMOVE_RANDOM, "remove random" },
47 { RIGHT_SCRATCH_ANY, "scratch any" },
48 { RIGHT_SCRATCH_MINE, "scratch mine" },
49 { RIGHT_SCRATCH_RANDOM, "scratch random" },
50 { RIGHT_VOLUME, "volume" },
51 { RIGHT_ADMIN, "admin" },
52 { RIGHT_RESCAN, "rescan" },
53 { RIGHT_REGISTER, "register" },
54 { RIGHT_USERINFO, "userinfo" },
55 { RIGHT_PREFS, "prefs" },
eb5dc014
RK
56 { RIGHT_GLOBAL_PREFS, "global prefs" },
57 { RIGHT_PAUSE, "pause" }
5df73aeb
RK
58};
59#define NRIGHTS (sizeof rights_names / sizeof *rights_names)
60
61/** @brief Convert a rights word to a string */
62char *rights_string(rights_type r) {
63 struct dynstr d[1];
64 size_t n;
65
66 dynstr_init(d);
67 for(n = 0; n < NRIGHTS; ++n) {
68 if(r & rights_names[n].bit) {
69 if(d->nvec)
70 dynstr_append(d, ',');
71 dynstr_append_string(d, rights_names[n].name);
72 }
73 }
74 dynstr_terminate(d);
75 return d->vec;
76}
77
78/** @brief Compute default rights for a new user
79 * @return Default rights value
80 */
81rights_type default_rights(void) {
82 /* TODO get rights from config */
83 rights_type r = RIGHTS__MASK & ~(RIGHT_ADMIN|RIGHT_REGISTER
84 |RIGHT_MOVE__MASK
85 |RIGHT_SCRATCH__MASK
86 |RIGHT_REMOVE__MASK);
87 if(config->restrictions & RESTRICT_SCRATCH)
88 r |= RIGHT_SCRATCH_MINE|RIGHT_SCRATCH_RANDOM;
89 else
90 r |= RIGHT_SCRATCH_ANY;
91 if(!(config->restrictions & RESTRICT_MOVE))
92 r |= RIGHT_MOVE_ANY;
93 if(config->restrictions & RESTRICT_REMOVE)
94 r |= RIGHT_REMOVE_MINE;
95 else
96 r |= RIGHT_REMOVE_ANY;
97 return r;
98}
99
100/** @brief Parse a rights list
101 * @param s Rights list in string form
102 * @param rp Where to store rights, or NULL to just validate
103 * @return 0 on success, non-0 if @p s is not valid
104 */
105int parse_rights(const char *s, rights_type *rp) {
106 rights_type r = 0;
107 const char *t;
108 size_t n, l;
109
110 if(!*s) {
111 /* You can't have no rights */
112 error(0, "empty rights string");
113 return -1;
114 }
115 while(*s) {
116 t = strchr(s, ',');
117 if(!t)
118 t = s + strlen(s);
119 l = (size_t)(t - s);
120 if(l == 3 && !strncmp(s, "all", 3))
121 r = RIGHTS__MASK;
122 else {
123 for(n = 0; n < NRIGHTS; ++n)
124 if(strlen(rights_names[n].name) == l
125 && !strncmp(rights_names[n].name, s, l))
126 break;
127 if(n >= NRIGHTS) {
128 error(0, "unknown user right '%.*s'", (int)l, s);
129 return -1;
130 }
131 r |= rights_names[n].bit;
132 }
133 s = t;
134 if(*s == ',')
135 ++s;
136 }
137 if(rp)
138 *rp = r;
139 return 0;
140}
141
142/*
143Local Variables:
144c-basic-offset:2
145comment-column:40
146fill-column:79
147indent-tabs-mode:nil
148End:
149*/