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 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
|
<?php
/**
* FusionForge roles
*
* Copyright 2004, GForge, LLC
* Copyright 2009-2011, Roland Mas
*
* This file is part of FusionForge. FusionForge 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 Licence, or (at your option)
* any later version.
*
* FusionForge 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 FusionForge; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
require_once $gfcommon.'include/rbac_texts.php' ;
require_once $gfcommon.'include/RBAC.php' ;
/**
* TODO: FusionForge roles - Enter description here ...
*
*/
class Role extends RoleExplicit implements PFO_RoleExplicit {
var $data_array;
var $setting_array;
var $perms_array ;
var $Group;
/**
* Role - Constructor.
*
* @param object $group The Group object.
* @param int|bool $role_id The role_id.
* @return bool
*/
function Role($Group, $role_id = false) {
$this->BaseRole();
if (!$Group || !is_object($Group) || $Group->isError()) {
$Group = NULL;
}
$this->Group =& $Group;
$hook_params = array();
$hook_params['role'] =& $this;
plugin_hook("role_get", $hook_params);
if (isset ($GLOBALS['default_roles'])) {
$this->defaults = array_merge_recursive($this->defaults,
$GLOBALS['default_roles']);
foreach ($this->defaults as $k => $v) {
if (!array_key_exists($GLOBALS['default_roles'], $k)) {
unset($this->defaults[$k]);
}
}
}
if (!$role_id) {
//setting up an empty object
//probably going to call create()
return true;
}
return $this->fetchData($role_id);
}
/**
* setName - set the name of this role.
*
* @param string $role_name The new name of this role.
* @return boolean True if updated OK
*/
function setName($role_name) { // From the PFO spec
if ($role_name == '') {
$this->setError(_('Cannot set a role name to empty'));
return false;
}
if ($this->getName() != stripslashes($role_name)) {
db_begin();
if ($this->Group == NULL) {
$res = db_query_params('SELECT role_name FROM pfo_role WHERE home_group_id IS NULL AND role_name=$1',
array(htmlspecialchars($role_name)));
if (db_numrows($res)) {
$this->setError(_('Cannot create a role with this name (already used)'));
db_rollback();
return false;
}
} else {
$res = db_query_params('SELECT role_name FROM pfo_role WHERE home_group_id=$1 AND role_name=$2',
array($this->Group->getID(), htmlspecialchars($role_name)));
if (db_numrows($res)) {
$this->setError(_('Cannot create a role with this name (already used)'));
db_rollback();
return false;
}
}
$res = db_query_params('UPDATE pfo_role SET role_name=$1 WHERE role_id=$2',
array(htmlspecialchars($role_name),
$this->getID()));
if (!$res || db_affected_rows($res) < 1) {
$this->setError('update::name::'.db_error());
return false;
}
db_commit();
}
return true;
}
/**
* isPublic - is this role public (accessible from projects
* other than its home project)?
*
* @return boolean True if public
*/
function isPublic() { // From the PFO spec
return $this->data_array['is_public'];
}
/**
* setPublic - set the public flag for this role.
*
* @param boolean $flag The new value of the flag.
* @return boolean True if updated OK
*/
function setPublic($flag) { // From the PFO spec
$res = db_query_params('UPDATE pfo_role SET is_public=$1 WHERE role_id=$2',
array($flag?'true':'false',
$this->getID()));
if (!$res || db_affected_rows($res) < 1) {
$this->setError('update::is_public::'.db_error());
return false;
}
return true;
}
function getHomeProject() { // From the PFO spec
return $this->Group;
}
/**
* create - create a new role in the database.
*
* @param string $role_name The name of the role.
* @param array $data A multi-dimensional array of data in this format: $data['section_name']['ref_id']=$val
* @param bool $new_project
* @return bool|int The id on success or false on failure.
*/
function create($role_name, $data, $new_project=false) {
if ($this->Group == NULL) {
if (!forge_check_global_perm('forge_admin')) {
$this->setPermissionDeniedError();
return false;
}
}
if ($new_project) {
if (!forge_check_global_perm('approve_projects')) {
$this->setPermissionDeniedError();
return false;
}
} elseif (!forge_check_perm('project_admin', $this->Group->getID())) {
$this->setPermissionDeniedError();
return false;
}
if ($role_name == '') {
$this->setError(_('Cannot create a role with an empty name'));
return false;
}
db_begin();
if ($this->Group == NULL) {
$res = db_query_params('SELECT role_name FROM pfo_role WHERE home_group_id IS NULL AND LOWER(role_name)=LOWER($1)',
array (htmlspecialchars($role_name)));
if (db_numrows($res)) {
$this->setError(_('Cannot create a role with this name (already used)'));
db_rollback () ;
return false;
}
} else {
$res = db_query_params('SELECT role_name FROM pfo_role WHERE home_group_id=$1 AND LOWER(role_name)=LOWER($2)',
array ($this->Group->getID(), htmlspecialchars($role_name)));
if (db_numrows($res)) {
$this->setError(_('Cannot create a role with this name (already used)'));
db_rollback () ;
return false;
}
}
if ($this->Group == NULL) {
$res = db_query_params ('INSERT INTO pfo_role (role_name) VALUES ($1)',
array (htmlspecialchars($role_name))) ;
} else {
$res = db_query_params ('INSERT INTO pfo_role (home_group_id, role_name) VALUES ($1, $2)',
array ($this->Group->getID(),
htmlspecialchars($role_name))) ;
}
if (!$res) {
$this->setError('create::'.db_error());
db_rollback();
return false;
}
$role_id=db_insertid($res,'pfo_role','role_id');
if (!$role_id) {
$this->setError('create::db_insertid::'.db_error());
db_rollback();
return false;
}
$this->data_array['role_id'] = $role_id ;
$this->data_array['role_name'] = $role_name ;
$this->update ($role_name, $data) ;
$this->normalizeData () ;
if (!$this->fetchData($role_id)) {
db_rollback();
return false;
}
db_commit();
return $role_id;
}
/**
* TODO: Enter description here ...
* @param string $name
* @return Ambiguous <number, boolean, contents>|boolean
*/
function createDefault($name) {
if ($this->Group == NULL) {
return $this->create($name,array(),true);
}
if (array_key_exists ($name, $this->defaults)) {
$arr =& $this->defaults[$name];
} else {
$arr = array () ;
}
$data = array();
foreach ($arr as $k => $v) {
$data[$k][$this->Group->getID()]= $v;
if ($k == 'new_forum') {
$res = db_query_params('SELECT group_forum_id FROM forum_group_list WHERE group_id=$1',
array ($this->Group->getID())) ;
if (!$res) {
$this->setError('Error: Forum'.db_error());
return false;
}
for ($j=0; $j<db_numrows($res); $j++) {
$data['forum'][db_result($res, $j, 'group_forum_id')]= $v;
}
} elseif ($k == 'new_pm') {
$res = db_query_params('SELECT group_project_id FROM project_group_list WHERE group_id=$1',
array ($this->Group->getID())) ;
if (!$res) {
$this->setError('Error: TaskMgr'.db_error());
return false;
}
for ($j=0; $j<db_numrows($res); $j++) {
$data['pm'][db_result($res, $j, 'group_project_id')]= $v;
}
} elseif ($k == 'new_tracker') {
$res = db_query_params('SELECT group_artifact_id FROM artifact_group_list WHERE group_id=$1',
array ($this->Group->getID())) ;
if (!$res) {
$this->setError('Error: Tracker'.db_error());
return false;
}
for ($j=0; $j<db_numrows($res); $j++) {
$data['tracker'][db_result($res, $j, 'group_artifact_id')]= $v;
}
}
}
return $this->create($name,$data,false);
}
/**
* delete - delete a role in the database.
*
* @return boolean True on success or false on failure.
*/
function delete() {
if ($this->Group == NULL) {
if (!forge_check_global_perm ('forge_admin')) {
$this->setPermissionDeniedError();
return false;
}
} elseif (!forge_check_perm('project_admin', $this->Group->getID())) {
$this->setPermissionDeniedError();
return false;
}
$res=db_query_params('SELECT user_id FROM pfo_user_role WHERE role_id=$1',
array($this->getID()));
assert($res);
if (db_numrows($res) > 0) {
$this->setError(_('Cannot remove a non empty role.'));
return false;
}
db_begin();
$res=db_query_params('DELETE FROM pfo_user_role WHERE role_id=$1',
array($this->getID())) ;
if (!$res) {
$this->setError('delete::name::'.db_error());
db_rollback();
return false;
}
$res=db_query_params('DELETE FROM role_project_refs WHERE role_id=$1',
array($this->getID()));
if (!$res) {
$this->setError('delete::name::'.db_error());
db_rollback();
return false;
}
$res=db_query_params('DELETE FROM pfo_role_setting WHERE role_id=$1',
array($this->getID()));
if (!$res) {
$this->setError('delete::name::'.db_error());
db_rollback();
return false;
}
$res=db_query_params('DELETE FROM pfo_role WHERE role_id=$1',
array($this->getID()));
if (!$res) {
$this->setError('delete::name::'.db_error());
db_rollback();
return false;
}
db_commit();
return true;
}
/**
* setUser -
*
* @param int User ID
* @return boolean True on success or false on failure.
*/
function setUser($user_id) {
global $SYS;
if ($this->Group == NULL) {
if (!forge_check_global_perm ('forge_admin')) {
$this->setPermissionDeniedError();
return false;
}
} elseif (!forge_check_perm ('project_admin', $this->Group->getID())) {
$this->setPermissionDeniedError();
return false;
}
return $this->addUser (user_get_object($user_id)) ;
}
}
// Local Variables:
// mode: php
// c-file-style: "bsd"
// End:
|