permissionutil.inc.php
11.8 KB
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
<?php
require_once(KT_LIB_DIR . "/documentmanagement/Document.inc");
require_once(KT_LIB_DIR . "/foldermanagement/Folder.inc");
require_once(KT_LIB_DIR . "/permissions/permission.inc.php");
require_once(KT_LIB_DIR . "/permissions/permissionassignment.inc.php");
require_once(KT_LIB_DIR . "/permissions/permissiondescriptor.inc.php");
require_once(KT_LIB_DIR . "/permissions/permissionlookup.inc.php");
require_once(KT_LIB_DIR . "/permissions/permissionlookupassignment.inc.php");
require_once(KT_LIB_DIR . "/permissions/permissionobject.inc.php");
require_once(KT_LIB_DIR . "/groups/GroupUtil.php");
class KTPermissionUtil {
function generateDescriptor ($aAllowed) {
$aAllowedSort = array();
// PHP5: clone
$aTmp = $aAllowed;
ksort($aTmp);
$sOutput = "";
foreach ($aTmp as $k => $v) {
if (empty($v)) {
continue;
}
$v = array_unique($v);
$sOutput .= "$k(";
sort($v);
$sOutput .= join(",", $v);
$sOutput .= ")";
}
return $sOutput;
}
function getOrCreateDescriptor ($aAllowed) {
$sDescriptor = KTPermissionUtil::generateDescriptor($aAllowed);
$oDescriptor =& KTPermissionDescriptor::getByDescriptor(md5($sDescriptor));
if (PEAR::isError($oDescriptor)) {
$oDescriptor =& KTPermissionDescriptor::createFromArray(array(
"descriptortext" => $sDescriptor,
));
$oDescriptor->saveAllowed($aAllowed);
}
return $oDescriptor;
}
function getOrCreateAssignment ($sPermission, $iObjectID) {
if (is_string($sPermission)) {
$oPermission =& KTPermission::getByName($sPermission);
} else {
$oPermission =& $sPermission;
}
if (is_numeric($iObjectID)) {
$oObject =& KTPermissionObject::get($iObjectID);
} else {
$oObject =& $iObjectID;
}
$oPA = KTPermissionAssignment::getByPermissionAndObject($oPermission, $oObject);
if (PEAR::isError($oPA)) {
$oPA = KTPermissionAssignment::createFromArray(array(
'permissionid' => $oPermission->getID(),
'permissionobjectid' => $oObject->getID(),
));
}
return $oPA;
}
function setPermissionForID($sPermission, $iObjectID, $aAllowed) {
$oPermissionAssignment = KTPermissionUtil::getOrCreateAssignment($sPermission, $iObjectID);
$oDescriptor = KTPermissionUtil::getOrCreateDescriptor($aAllowed);
$oPermissionAssignment->setPermissionDescriptorID($oDescriptor->getID());
$oPermissionAssignment->update();
}
// {{{ updatePermissionLookupForPO
/**
* Updates permission lookups for all objects of a certain
* permission object.
*
* It may be that you don't have or want to have the root item for a
* permission object that you do have and have updates - then use
* this.
*/
function updatePermissionLookupForPO($oPO) {
$sWhere = 'permission_object_id = ?';
$aParams = array($oPO->getID());
$aFolders =& Folder::getList(array($sWhere, $aParams));
foreach ($aFolders as $oFolder) {
KTPermissionUtil::updatePermissionLookup($oFolder);
}
$aDocuments =& Document::getList(array($sWhere, $aParams));
foreach ($aDocuments as $oDocument) {
KTPermissionUtil::updatePermissionLookup($oDocument);
}
}
// }}}
// {{{ updatePermissionLookupRecursive
/**
* Updates permission lookups for this folder and any ancestors, but
* only if they use the same permission object.
*
* To be used any time a folder permission object is changed.
*/
function updatePermissionLookupRecursive(&$oDocumentOrFolder) {
if (is_a($oDocumentOrFolder, 'Document')) {
// XXX: metadata versions may need attention here
KTPermissionUtil::updatePermissionLookup($oDocumentOrFolder);
return;
}
$iFolderID = $oDocumentOrFolder->getID();
$sFolderIDs = Folder::generateFolderIDs($iFolderID);
$sFolderIDs .= '%';
$sWhere = 'permission_object_id = ? AND parent_folder_ids LIKE ?';
$aParams = array($oDocumentOrFolder->getPermissionObjectID(), $sFolderIDs);
$aFolders =& Folder::getList(array($sWhere, $aParams));
foreach ($aFolders as $oFolder) {
KTPermissionUtil::updatePermissionLookup($oFolder);
}
$aDocuments =& Document::getList(array($sWhere, $aParams));
foreach ($aDocuments as $oDocument) {
KTPermissionUtil::updatePermissionLookup($oDocument);
}
}
// }}}
// {{{ updatePermissionLookup
/**
* Update's the permission lookup on one folder or document,
* non-recursively.
*/
function updatePermissionLookup(&$oFolderOrDocument) {
$oPO = KTPermissionObject::get($oFolderOrDocument->getPermissionObjectID());
$aPAs = KTPermissionAssignment::getByObjectMulti($oPO);
$aMapPermDesc = array();
foreach ($aPAs as $oPA) {
$oPD = KTPermissionDescriptor::get($oPA->getPermissionDescriptorID());
$aGroupIDs = $oPD->getGroups();
$aUserIDs = array();
$aAllowed = array(
"group" => $aGroupIDs,
"user" => $aUserIDs,
);
$oLookupPD = KTPermissionUtil::getOrCreateDescriptor($aAllowed);
$aMapPermDesc[$oPA->getPermissionID()] = $oLookupPD->getID();
}
$oPL = KTPermissionLookupAssignment::findOrCreateLookupByPermissionDescriptorMap($aMapPermDesc);
$oFolderOrDocument->setPermissionLookupID($oPL->getID());
$oFolderOrDocument->update();
}
// }}}
function userHasPermissionOnItem($oUser, $oPermission, $oFolderOrDocument) {
$oPL = KTPermissionLookup::get($oFolderOrDocument->getPermissionLookupID());
$oPLA = KTPermissionLookupAssignment::getByPermissionAndLookup($oPermission, $oPL);
if (PEAR::isError($oPLA)) {
print $oPL->getID();
return false;
}
$oPD = KTPermissionDescriptor::get($oPLA->getPermissionDescriptorID());
$aGroups = GroupUtil::listGroupsForUserExpand($oUser);
return $oPD->hasGroups($aGroups);
}
function findRootObjectForPermissionObject($oPO) {
global $default;
/*
* If there are any folders with the permission object, then it
* is set by _a_ folder. All folders found will have a common
* ancestor folder, which will be the one with:
*
* Potential hack: The shortest parent_folder_ids
*
* Potential non-hack: Choose random folder, check parent for
* permission object recurringly until it changes. Last success
* is the ancestor parent...
*/
$sQuery = "SELECT id FROM $default->folders_table WHERE permission_object_id = ? ORDER BY LENGTH(parent_folder_ids) LIMIT 1";
$aParams = array($oPO->getID());
$res = DBUtil::getResultArrayKey(array($sQuery, $aParams), 'id');
if (is_array($res)) {
return Folder::get($res[0]);
}
return false;
}
function copyPermissionObject(&$oDocumentOrFolder) {
global $default;
$oOrigPO = KTPermissionObject::get($oDocumentOrFolder->getPermissionObjectID());
$aOrigPAs =& KTPermissionAssignment::getByObjectMulti($oOrigPO);
$oNewPO = KTPermissionObject::createFromArray(array());
foreach ($aOrigPAs as $oOrigPA) {
$oNewPA = KTPermissionAssignment::createFromArray(array(
'permissionid' => $oOrigPA->getPermissionID(),
'permissionobjectid' => $oNewPO->getID(),
'permissiondescriptorid' => $oOrigPA->getPermissionDescriptorID(),
));
}
$oDocumentOrFolder->setPermissionObjectID($oNewPO->getID());
$oDocumentOrFolder->update();
if (!is_a($oDocumentOrFolder, 'Folder')) {
KTPermissionUtil::updatePermissionLookup($oDocumentOrFolder);
return;
}
// For a folder - update permission object for all folders and
// documents under this current folder if they're using the old
// permission object id. If they are, then they're getting the
// permission object via this folder. If they are not, then
// they have their own permission object management, and thus
// this folder has no effect on their permissions.
$iFolderID = $oDocumentOrFolder->getID();
$sFolderIDs = Folder::generateFolderIDs($iFolderID);
$sFolderIDs .= '%';
$sQuery = "UPDATE $default->folders_table SET
permission_object_id = ? WHERE permission_object_id = ? AND
parent_folder_ids LIKE ?";
$aParams = array($oNewPO->getID(), $oOrigPO->getID(), $sFolderIDs);
DBUtil::runQuery(array($sQuery, $aParams));
$sQuery = "UPDATE $default->documents_table SET
permission_object_id = ? WHERE permission_object_id = ? AND
parent_folder_ids LIKE ?";
DBUtil::runQuery(array($sQuery, $aParams));
// All objects using this PO must be new and must need their
// lookups updated...
KTPermissionUtil::updatePermissionLookupForPO($oNewPO);
}
function isPermissionOwner(&$oDocumentOrFolder) {
$oPermissionObject = KTPermissionObject::get($oDocumentOrFolder->getPermissionObjectID());
$oParentObject = KTPermissionUtil::findRootObjectForPermissionObject($oPermissionObject);
// Documents might be permission owner, but then they'd be the
// only users of that permission object.
if (is_a($oParentObject, 'Document')) {
return true;
}
// If you're a document and your permission owner isn't a
// document, that means it's some ancestor, and thus not you.
if (is_a($oDocumentOrFolder, 'Document')) {
return false;
}
// We're dealing with folders, so just compare IDs...
if ($oDocumentOrFolder->getID() == $oParentObject->getID()) {
return true;
}
return false;
}
function inheritPermissionObject(&$oDocumentOrFolder) {
global $default;
if (!KTPermissionUtil::isPermissionOwner($oDocumentOrFolder)) {
return PEAR::raiseError("Document or Folder doesn't own its permission object");
}
$oOrigPO =& KTPermissionObject::get($oDocumentOrFolder->getPermissionObjectID());
$oFolder =& Folder::get($oDocumentOrFolder->getParentID());
$iNewPOID = $oFolder->getPermissionObjectID();
$oNewPO =& KTPermissionObject::get($iNewPOID);
$oDocumentOrFolder->setPermissionObjectID($iNewPOID);
$oDocumentOrFolder->update();
if (is_a($oDocumentOrFolder, 'Document')) {
// If we're a document, no niggly children to worry about.
//
// Well, except for document versions, which we don't know
// how to deal with yet, really.
KTPermissionUtil::updatePermissionLookup($oDocumentOrFolder);
return;
}
$iFolderID = $oDocumentOrFolder->getID();
$sFolderIDs = Folder::generateFolderIDs($iFolderID);
$sFolderIDs .= '%';
$sQuery = "UPDATE $default->folders_table SET
permission_object_id = ? WHERE permission_object_id = ? AND
parent_folder_ids LIKE ?";
$aParams = array($oNewPO->getID(), $oOrigPO->getID(), $sFolderIDs);
DBUtil::runQuery(array($sQuery, $aParams));
$sQuery = "UPDATE $default->documents_table SET
permission_object_id = ? WHERE permission_object_id = ? AND
parent_folder_ids LIKE ?";
DBUtil::runQuery(array($sQuery, $aParams));
KTPermissionUtil::updatePermissionLookupForPO($oNewPO);
}
}
?>