egroupware/resources/inc/class.resources_acl_bo.inc.php

276 lines
7.3 KiB
PHP
Raw Normal View History

2005-02-03 17:42:20 +01:00
<?php
2005-11-11 00:35:55 +01:00
/**
* EGroupWare - resources
2005-11-11 00:35:55 +01:00
*
2016-05-05 22:22:04 +02:00
* @license http://www.gnu.org/licenses/gpl.Api\Html GNU General Public License
2005-11-11 00:35:55 +01:00
* @package resources
* @link http://www.egroupware.org
* @version $Id$
*/
2016-05-05 22:22:04 +02:00
use EGroupware\Api;
use EGroupware\Api\Acl;
/**
* ACL business object for resources
*
* Category rights and admins get inherited from parent categories.
* Current rights and the ones inherited from parents get ORed together,
* while for admins the "closest" cat-admin will be used.
*/
2016-05-26 23:32:00 +02:00
class resources_acl_bo
{
var $acl;
var $start = 0;
var $query = '';
var $sort = '';
var $total = 0;
var $cats;
2005-02-03 17:42:20 +01:00
var $debug;
var $use_session = False;
2005-02-03 17:42:20 +01:00
2016-05-26 23:32:00 +02:00
const CAT_ADMIN = 64;
const DIRECT_BOOKING = 128;
const CAL_READ = 256;
/**
* Instance of categories class for resources
*
2016-05-05 22:22:04 +02:00
* @var egw_cats
*/
var $egw_cats;
/**
* Constructor
*
* @param int $user=null account_id of user whos rights to return, or null for current user
* @param boolean $session
*/
function __construct($session=False, $user=null)
{
2016-05-05 22:22:04 +02:00
$this->egw_cats = new Api\Categories($user, 'resources');
$this->debug = False;
//all this is only needed when called from uiacl.
if($session)
{
$this->read_sessiondata();
$this->use_session = True;
foreach(array('start','query','sort','order') as $var)
2005-02-03 17:42:20 +01:00
{
if (isset($_POST[$var]))
2005-02-03 17:42:20 +01:00
{
$this->$var = $_POST[$var];
}
elseif (isset($_GET[$var]))
{
$this->$var = $_GET[$var];
2005-02-03 17:42:20 +01:00
}
}
$this->save_sessiondata();
$this->cats = $this->egw_cats->return_sorted_array(0,false,'','','',true);
2005-02-03 17:42:20 +01:00
}
}
2005-02-03 17:42:20 +01:00
/**
* get list of cats where current user has given rights
*
* @author Cornelius Weiss <egw@von-und-zu-weiss.de>
2016-05-26 23:32:00 +02:00
* @param int $perm_type one of Acl::READ, Acl::ADD, Acl::EDIT, Acl::DELETE, self::DIRECT_BOOKING
* @param int $parent_id=0 cat_id of parent to return only children of that category
* @return array cat_id => cat_name
* TODO mark subcats and so on!
*/
function get_cats($perm_type,$parent_id=0)
{
$cats = $this->egw_cats->return_sorted_array(0,false,'','','',true,$parent_id);
#_debug_array($cats);
if (!is_array($cats)) $cats = array();
$perm_cats = array();
foreach($cats as $key=>$cat) {
#echo "key:$key"._debug_array($value)."<br>";
#_debug_array($cat)."hier<br>";
if($this->is_permitted($cat['id'],$perm_type))
2005-02-03 17:42:20 +01:00
{
2009-11-06 11:00:02 +01:00
$s = str_repeat('&nbsp; ',$cat['level']) . stripslashes($cat['name']);
if ($cat['app_name'] == 'phpgw' || $cat['owner'] == '-1')
2005-05-07 15:08:28 +02:00
{
$s .= ' &#9830;';
2005-05-07 15:08:28 +02:00
}
$perm_cats[$cat['id']] = $s;
2005-05-07 15:08:28 +02:00
}
2005-02-20 18:10:48 +01:00
}
return isset($perm_cats)?$perm_cats:array();
}
/**
* gets name of category
*
* @author Lukas Weiss <wnz.gh05t@users.sourceforge.net>
* @param int $cat_id
* @return mixed name of category
*/
static public function get_cat_name($cat_id)
{
return $GLOBALS['egw']->categories->id2name($cat_id);
}
/**
* gets userid of admin for given category
*
* @author Cornelius Weiss <egw@von-und-zu-weiss.de>
* @param int $cat_id
* @return int|null userid of cat admin or null for none set
*/
static public function get_cat_admin($cat_id)
{
$cat_rights = self::get_rights($cat_id);
foreach ($cat_rights as $userid => $right)
2005-02-20 18:10:48 +01:00
{
2016-05-26 23:32:00 +02:00
if ($right & self::CAT_ADMIN)
{
return $userid;
}
2005-02-20 18:10:48 +01:00
}
// check for an inherited cat admin
if (($parent = $GLOBALS['egw']->categories->id2name($cat_id,'parent')))
{
return self::get_cat_admin($parent);
}
return null;
}
/**
* Permissions including inherited ones
*
* @var array cat_id => rights
*/
static private $permissions;
static private $resource_acl;
/**
* Get permissions of current user on a given category
*
* @param int $cat_id
* @return int
*/
static public function get_permissions($cat_id)
{
if (!isset(self::$permissions[$cat_id]))
{
if (is_null(self::$resource_acl))
{
self::$resource_acl = $GLOBALS['egw']->acl->get_all_location_rights($GLOBALS['egw_info']['user']['account_id'],'resources',true);
}
self::$permissions[$cat_id] = (int)self::$resource_acl['L'.$cat_id];
if (($parent = $GLOBALS['egw']->categories->id2name($cat_id,'parent')))
{
self::$permissions[$cat_id] |= self::get_permissions($parent);
}
}
//echo "<p>".__METHOD__."($cat_id) = ".self::$permissions[$cat_id]."</p>\n";
return self::$permissions[$cat_id];
}
/**
* checks one of the following rights for current user:
*
2016-05-26 23:32:00 +02:00
* Acl::READ, Acl::ADD, Acl::EDIT, Acl::DELETE, self::DIRECT_BOOKING
*
* @param int $cat_id
* @param int $right
* @return boolean user is permitted or not for right
*/
static public function is_permitted($cat_id,$right)
{
if (!isset(self::$permissions[$cat_id]))
{
self::get_permissions($cat_id);
}
//echo "<p>".__METHOD__."($cat_id,$right) = ".self::$permissions[$cat_id]." & $right = ".(self::$permissions[$cat_id] & $right)."</p>\n";
return (boolean) (self::$permissions[$cat_id] & $right);
}
/**
* gets all rights from all user for given cat
*
* @param int $cat_id
* @return array userid => right
*/
static public function get_rights($cat_id)
{
return $GLOBALS['egw']->acl->get_all_rights('L'.$cat_id,'resources');
}
2005-02-20 18:10:48 +01:00
static public function check_calendar_invite($uid)
{
$resources_config = Api\Config::read('resources');
$resources_so = new resources_so();
if ($resources_config['bookingrequests'] === 'disabled') {
$resources_so = new resources_so();
$cat_id = $resources_so->get_value('cat_id', intval(substr($uid, 1)));
return resources_acl_bo::is_permitted($cat_id, resources_acl_bo::DIRECT_BOOKING);
}
else
{
return true;
}
}
2005-02-20 18:50:39 +01:00
// privat functions from here on -------------------------------------------------------------------------
function save_sessiondata()
{
$data = array(
'start' => $this->start,
'query' => $this->query,
'sort' => $this->sort,
'order' => $this->order,
'limit' => $this->limit,
);
if($this->debug) { echo '<br>Read:'; _debug_array($data); }
2016-05-05 22:22:04 +02:00
Api\Cache::setSession('resources_acl', 'session_data', $data);
}
2005-02-03 17:42:20 +01:00
function read_sessiondata()
{
2016-05-05 22:22:04 +02:00
$data = Api\Cache::getSession('resources_acl', 'session_data');
if($this->debug) { echo '<br>Read:'; _debug_array($data); }
2005-02-03 17:42:20 +01:00
$this->start = $data['start'];
$this->query = $data['query'];
$this->sort = $data['sort'];
$this->order = $data['order'];
$this->limit = $data['limit'];
}
2005-02-03 17:42:20 +01:00
2016-05-26 23:32:00 +02:00
public static function set_rights($cat_id,$read,$write,$calread,$calbook,$admin)
{
// Clear cache
unset(self::$permissions[$cat_id]);
$readcat = $read ? $read : array();
$writecat = $write ? $write : array();
$calreadcat = $calread ? $calread : array();
$calbookcat = $calbook ? $calbook : array();
$admincat = $admin ? $admin : array();
2005-02-03 17:42:20 +01:00
$GLOBALS['egw']->acl->delete_repository('resources','L' . $cat_id,false);
2005-06-12 10:20:44 +02:00
foreach(array_unique(array_merge($readcat, $writecat, $calreadcat, $calbookcat, $admincat)) as $account_id)
{
$rights = false;
2016-05-05 22:22:04 +02:00
$rights = in_array($account_id,$readcat) ? ($rights | Acl::READ) : false;
$rights = in_array($account_id,$writecat) ? ($rights | Acl::READ | Acl::ADD | Acl::EDIT | Acl::DELETE): $rights;
2016-05-26 23:32:00 +02:00
$rights = in_array($account_id,$calreadcat) ? ($rights | self::CAL_READ) : $rights;
$rights = in_array($account_id,$calbookcat) ? ($rights | self::DIRECT_BOOKING | self::CAL_READ) : $rights;
$rights = in_array($account_id,$admincat) ? ($rights = 511) : $rights;
if ($rights)
{
$GLOBALS['egw']->acl->add_repository('resources','L'.$cat_id,$account_id,$rights);
2005-02-03 17:42:20 +01:00
}
}
}
}