forked from opendocman/opendocman
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dept_Perms_class.php
342 lines (313 loc) · 10.8 KB
/
Dept_Perms_class.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
<?php
/*
Dept_Perms_class.php - Dept_Perms is designed to handle permission settings of each department.
Copyright (C) 2002-2004 Stephen Lawrence, Khoa Nguyen
Copyright (C) 2005-2014 Stephen Lawrence Jr.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
if (!defined('Dept_Perms_class')) {
define('Dept_Perms_class', 'true');
class Dept_Perms extends databaseData
{
public $fid;
public $id;
public $rights;
public $file_obj;
public $error;
public $chosen_mode;
protected $connection;
public $error_flag = false;
public $NONE_RIGHT = 0;
public $VIEW_RIGHT = 1;
public $READ_RIGHT = 2;
public $WRITE_RIGHT = 3;
public $ADMIN_RIGHT = 4;
public $FORBIDDEN_RIGHT = -1;
public $USER_MODE = 0;
public $FILE_MODE = 1;
/**
* @param int $id
* @param PDO $connection
*/
public function Dept_Perms($id, PDO $connection)
{
// this can be fid or uid
$this->id = $id;
$this->connection = $connection;
}
/**
* @param bool $limit
* @return array
*/
public function getCurrentViewOnly($limit = true)
{
return $this->loadData_UserPerm($this->VIEW_RIGHT, $limit);
}
/**
* @param bool $limit
* @return array
*/
public function getCurrentNoneRight($limit = true)
{
return $this->loadData_UserPerm($this->NONE_RIGHT, $limit);
}
/**
* @param bool $limit
* @return array
*/
public function getCurrentReadRight($limit = true)
{
return $this->loadData_UserPerm($this->READ_RIGHT, $limit);
}
/**
* @param bool $limit
* @return array
*/
public function getCurrentWriteRight($limit = true)
{
return $this->loadData_UserPerm($this->WRITE_RIGHT, $limit);
}
/**
* @param bool $limit
* @return array
*/
public function getCurrentAdminRight($limit = true)
{
return $this->loadData_UserPerm($this->ADMIN_RIGHT, $limit);
}
/**
* @return int
*/
public function getId()
{
return $this->id;
}
/**
* Return a list of files that the department that this OBJ represents has authority >= than $right
* @param int $right
* @param bool $limit
* @return array
*/
public function loadData_UserPerm($right, $limit = true)
{
$limit_query = ($limit) ? "LIMIT {$GLOBALS['CONFIG']['max_query']}" : '';
$query = "SELECT deptperms.fid
FROM
{$GLOBALS['CONFIG']['db_prefix']}$this->TABLE_DATA as data,
{$GLOBALS['CONFIG']['db_prefix']}$this->TABLE_DEPT_PERMS as deptperms
WHERE
deptperms.rights >= :right
AND
deptperms.dept_id = :id
AND
data.id=deptperms.fid
AND
data.publishable=1 "
. $limit_query;
$stmt = $this->connection->prepare($query);
$stmt->execute(array(
':id' => $this->id,
':right' => $right
));
$result = $stmt->fetchAll(PDO::FETCH_COLUMN);
return $result;
}
/**
* return a boolean on whether or not this department
* has view right to the file whose ID is $data_id*
* @param int $data_id
* @return bool
*/
public function canView($data_id)
{
$filedata = new FileData($data_id, $this->connection);
//check to see if this department doesn't have a forbidden right or
//if this file is publishable
if (!$this->isForbidden($data_id) and $filedata->isPublishable()) {
// return whether or not this deptartment can view the file
if ($this->canDept($data_id, $this->VIEW_RIGHT)) {
return true;
} else {
false;
}
}
return false;
}
/**
* return a boolean on whether or not this department
* has read right to the file whose ID is $data_id
* @param int $data_id
* @return bool
*/
public function canRead($data_id)
{
$filedata = new FileData($data_id, $this->connection);
//check to see if this department doesn't have a forbidden right or
//if this file is publishable
if (!$this->isForbidden($data_id) or !$filedata->isPublishable()) {
// return whether or not this deptartment can read the file
if ($this->canDept($data_id, $this->READ_RIGHT) or !$filedata->isPublishable($data_id)) {
return true;
} else {
false;
}
}
return false;
}
/**
* return a boolean on whether or not this department
* has modify right to the file whose ID is $data_id
* @param int $data_id
* @return bool
*/
public function canWrite($data_id)
{
$filedata = new FileData($data_id, $this->connection);
//check to see if this department doesn't have a forbidden right or
//if this file is publishable
if (!$this->isForbidden($data_id) or !$filedata->isPublishable()) {
// return whether or not this deptartment can modify the file
if ($this->canDept($data_id, $this->WRITE_RIGHT)) {
return true;
} else {
false;
}
}
}
/**
* return a boolean on whether or not this department
* has admin right to the file whose ID is $data_id
* @param int $data_id
* @return bool
*/
public function canAdmin($data_id)
{
$filedata = new FileData($data_id, $this->connection);
//check to see if this department doesn't have a forbidden right or
//if this file is publishable
if (!$this->isForbidden($data_id) or !$filedata->isPublishable()) {
// return whether or not this deptartment can admin the file
if ($this->canDept($data_id, $this->ADMIN_RIGHT)) {
return true;
} else {
false;
}
}
}
/**
* Return a boolean on whether or not this department has forbidden right to the file whose ID is $data_id
* @param int $data_id
* @return bool
*/
public function isForbidden($data_id)
{
$this->error_flag = true; // reset flag
$query = "
SELECT
rights
FROM
{$GLOBALS['CONFIG']['db_prefix']}$this->TABLE_DEPT_PERMS
WHERE
dept_id = :id
AND
fid = :data_id
";
$stmt = $this->connection->prepare($query);
$stmt->execute(array(
':data_id' => $data_id,
':id' => $this->id
));
$result = $stmt->fetch();
if ($stmt->rowCount() == 1) {
if ($result['rights'] == $this->FORBIDDEN_RIGHT) {
return true;
} else {
return false;
}
} else {
$this->error = "Non-unique database entry found in $this->TABLE_DEPT_PERMS";
$this->error_flag = false;
return 0;
}
}
/**
* return a bool on whether or not this department has $right
* right on file with data id of $data_id
* @param int $data_id
* @param int $right
* @return bool
*/
public function canDept($data_id, $right)
{
$query = "
SELECT
*
FROM
{$GLOBALS['CONFIG']['db_prefix']}$this->TABLE_DEPT_PERMS
WHERE
dept_id = :id
AND
fid = :data_id
AND
rights >= :right
";
$stmt = $this->connection->prepare($query);
$stmt->execute(array(
':data_id' => $data_id,
':right' => $right,
':id' => $this->id
));
$num_results = $stmt->rowCount();
switch ($num_results) {
case 1: return true;
break;
case 0: return false;
break;
default : $this->error = 'non-unique uid: ' . $this->id;
break;
}
}
/**
* Return the numeric permission setting of this department for the file with ID number $data_id
* @param int $data_id
* @return int|string
*/
public function getPermission($data_id)
{
$query = "
SELECT
rights
FROM
{$GLOBALS['CONFIG']['db_prefix']}$this->TABLE_DEPT_PERMS
WHERE
dept_id = :id
AND
fid = :data_id";
$stmt = $this->connection->prepare($query);
$stmt->execute(array(
':data_id' => $data_id,
':id' => $this->id
));
$results = $stmt->fetch();
$num_results = $stmt->rowCount();
if ($num_results == 1) {
$permission = $results['rights'];
return $permission;
} elseif ($num_results == 0) {
return 0;
} else {
return 'Non-unique error';
}
}
}
}