2001-01-11 10:52:33 +01:00
|
|
|
<?php
|
|
|
|
/**************************************************************************\
|
2001-01-13 11:18:50 +01:00
|
|
|
* phpGroupWare API - Access Control List *
|
|
|
|
* This file written by Dan Kuykendall <seek3r@phpgroupware.org> *
|
|
|
|
* Security scheme based on ACL design *
|
|
|
|
* Copyright (C) 2000, 2001 Dan Kuykendall *
|
|
|
|
* -------------------------------------------------------------------------*
|
2001-01-16 14:52:32 +01:00
|
|
|
* This library is part of the phpGroupWare API *
|
|
|
|
* http://www.phpgroupware.org/api *
|
|
|
|
* ------------------------------------------------------------------------ *
|
2001-01-13 11:18:50 +01:00
|
|
|
* This library is free software; you can redistribute it and/or modify it *
|
|
|
|
* under the terms of the GNU Lesser General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2.1 of the License, *
|
|
|
|
* or any later version. *
|
|
|
|
* This library 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 Lesser General Public License for more details. *
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License *
|
|
|
|
* along with this library; if not, write to the Free Software Foundation, *
|
|
|
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
|
2001-01-11 10:52:33 +01:00
|
|
|
\**************************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
2001-03-13 05:27:22 +01:00
|
|
|
/*!
|
|
|
|
@class acl
|
|
|
|
@abstract Acces Control List Security System
|
|
|
|
@discussion Author: Seek3r <br>
|
|
|
|
This class provides an ACL security scheme. <br>
|
|
|
|
This can manage rights to 'run' applications, and limit certain features within an application.<br>
|
|
|
|
It is also used for granting a user "membership" to a group, or making a user have the security equivilance of another user.<br>
|
|
|
|
It is also used for granting a user or group rights to various records, such as todo or calendar items of another user.<br>
|
|
|
|
Syntax: CreateObject('phpgwapi.acl',int account_id); <br>
|
|
|
|
Example1: $acl = CreateObject('phpgwapi.acl',5); // 5 is the user id
|
2001-02-13 11:53:18 +01:00
|
|
|
*/
|
2001-01-11 10:52:33 +01:00
|
|
|
class acl
|
2001-03-13 05:27:22 +01:00
|
|
|
{ /*! @var $account_id */
|
2001-02-03 11:48:41 +01:00
|
|
|
var $account_id;
|
2001-03-13 05:27:22 +01:00
|
|
|
/*! @var $account_type */
|
2001-02-03 11:48:41 +01:00
|
|
|
var $account_type;
|
2001-03-13 05:27:22 +01:00
|
|
|
/*! @var $data */
|
2001-02-03 11:48:41 +01:00
|
|
|
var $data = Array();
|
2001-03-13 05:27:22 +01:00
|
|
|
/*! @var $db */
|
2001-01-28 13:07:20 +01:00
|
|
|
var $db;
|
2001-01-20 00:45:37 +01:00
|
|
|
|
2001-03-13 05:27:22 +01:00
|
|
|
/*!
|
|
|
|
@function acl
|
|
|
|
@abstract ACL constructor for setting account id
|
|
|
|
@discussion Author: Seek3r <br>
|
|
|
|
Sets the ID for $acl->account_id. Can be used to change a current instances id as well. <br>
|
|
|
|
Some functions are specific to this account, and others are generic. <br>
|
|
|
|
Syntax: int acl(int account_id) <br>
|
|
|
|
Example1: acl->acl(5); // 5 is the user id <br>
|
|
|
|
@param account_id int-the user id
|
2001-02-13 11:53:18 +01:00
|
|
|
*/
|
2001-03-19 21:25:04 +01:00
|
|
|
function acl($account_id = '')
|
2001-01-28 13:07:20 +01:00
|
|
|
{
|
2001-02-03 11:48:41 +01:00
|
|
|
global $phpgw, $phpgw_info;
|
2001-01-28 13:07:20 +01:00
|
|
|
$this->db = $phpgw->db;
|
2001-03-19 21:25:04 +01:00
|
|
|
$this->account_id = get_account_id($account_id);
|
2001-01-28 13:07:20 +01:00
|
|
|
}
|
2001-01-20 00:45:37 +01:00
|
|
|
|
2001-02-03 11:48:41 +01:00
|
|
|
/**************************************************************************\
|
|
|
|
* These are the standard $this->account_id specific functions *
|
|
|
|
\**************************************************************************/
|
2001-01-20 00:45:37 +01:00
|
|
|
|
2001-03-13 05:27:22 +01:00
|
|
|
/*!
|
|
|
|
@function read_repository
|
|
|
|
@abstract Read acl records from reposity
|
|
|
|
@discussion Author: Seek3r <br>
|
|
|
|
Reads ACL records for $acl->account_id and returns array along with storing it in $acl->data. <br>
|
|
|
|
Syntax: array read_repository() <br>
|
2001-03-19 04:16:56 +01:00
|
|
|
Example1: acl->read_repository(); <br>
|
|
|
|
Should only be called within this class
|
2001-02-13 11:53:18 +01:00
|
|
|
*/
|
2001-02-03 11:48:41 +01:00
|
|
|
function read_repository()
|
|
|
|
{
|
2001-01-28 13:07:20 +01:00
|
|
|
global $phpgw, $phpgw_info;
|
2001-02-11 20:07:56 +01:00
|
|
|
$sql = 'select * from phpgw_acl where (acl_account in ('.$this->account_id.', 0';
|
2001-02-05 23:30:21 +01:00
|
|
|
// $equalto = $phpgw->accounts->security_equals($this->account_id);
|
|
|
|
// if (is_array($equalto) && count($equalto) > 0){
|
|
|
|
// for ($idx = 0; $idx < count($equalto); ++$idx){
|
|
|
|
// $sql .= ",".$equalto[$idx][0];
|
|
|
|
// }
|
|
|
|
// }
|
2001-02-11 20:07:56 +01:00
|
|
|
$sql .= '))';
|
2001-02-03 11:48:41 +01:00
|
|
|
$this->db->query($sql ,__LINE__,__FILE__);
|
|
|
|
$count = $this->db->num_rows();
|
|
|
|
$this->data = Array();
|
|
|
|
for ($idx = 0; $idx < $count; ++$idx){
|
|
|
|
//reset ($this->data);
|
|
|
|
//while(list($idx,$value) = each($this->data)){
|
|
|
|
$this->db->next_record();
|
2001-02-11 20:07:56 +01:00
|
|
|
$this->data[] = array('appname' => $this->db->f('acl_appname'),
|
|
|
|
'location' => $this->db->f('acl_location'),
|
|
|
|
'account' => $this->db->f('acl_account'),
|
|
|
|
'rights' => $this->db->f('acl_rights')
|
2001-02-03 11:48:41 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
reset ($this->data);
|
|
|
|
return $this->data;
|
|
|
|
}
|
|
|
|
|
2001-03-13 05:27:22 +01:00
|
|
|
/*!
|
|
|
|
@function read
|
|
|
|
@abstract Read acl records from $acl->data
|
|
|
|
@discussion Author: Seek3r <br>
|
|
|
|
Returns ACL records from $acl->data. <br>
|
|
|
|
Syntax: array read() <br>
|
2001-03-19 04:16:56 +01:00
|
|
|
Example1: acl->read(); <br>
|
2001-02-13 11:53:18 +01:00
|
|
|
*/
|
2001-02-03 11:48:41 +01:00
|
|
|
function read()
|
|
|
|
{
|
|
|
|
if (count($this->data) == 0){ $this->read_repository(); }
|
|
|
|
reset ($this->data);
|
|
|
|
return $this->data;
|
|
|
|
}
|
|
|
|
|
2001-03-13 05:27:22 +01:00
|
|
|
/*!
|
|
|
|
@function add
|
|
|
|
@abstract Adds ACL record to $acl->data
|
|
|
|
@discussion Adds ACL record to $acl->data. <br>
|
|
|
|
Syntax: array add() <br>
|
|
|
|
Example1: acl->add();
|
2001-03-19 04:16:56 +01:00
|
|
|
@param $appname default False derives value from $phpgw_info['flags']['currentapp']
|
|
|
|
@param $location location
|
|
|
|
@param $rights rights
|
2001-02-13 11:53:18 +01:00
|
|
|
*/
|
2001-02-03 11:48:41 +01:00
|
|
|
function add($appname = False, $location, $rights)
|
|
|
|
{
|
2001-01-11 10:52:33 +01:00
|
|
|
if ($appname == False){
|
2001-02-11 20:07:56 +01:00
|
|
|
$appname = $phpgw_info['flags']['currentapp'];
|
2001-01-11 10:52:33 +01:00
|
|
|
}
|
2001-02-11 20:07:56 +01:00
|
|
|
$this->data[] = array('appname' => $appname, 'location' => $location, 'account' => $this->account_id, 'rights' => $rights);
|
2001-02-03 11:48:41 +01:00
|
|
|
reset($this->data);
|
|
|
|
return $this->data;
|
|
|
|
}
|
2001-01-11 10:52:33 +01:00
|
|
|
|
2001-03-13 05:27:22 +01:00
|
|
|
/*!
|
|
|
|
@function delete
|
|
|
|
@abstract Delete ACL record
|
|
|
|
@discussion
|
|
|
|
Syntax <br>
|
|
|
|
Example: <br>
|
2001-03-19 04:16:56 +01:00
|
|
|
@param $appname optional defaults to $phpgw_info['flags']['currentapp']
|
|
|
|
@param $location app location
|
2001-03-13 05:27:22 +01:00
|
|
|
*/
|
2001-02-03 11:48:41 +01:00
|
|
|
function delete($appname = False, $location)
|
|
|
|
{
|
|
|
|
if ($appname == False){
|
2001-02-11 20:07:56 +01:00
|
|
|
$appname = $phpgw_info['flags']['currentapp'];
|
2001-02-03 11:48:41 +01:00
|
|
|
}
|
|
|
|
$count = count($this->data);
|
|
|
|
reset ($this->data);
|
|
|
|
while(list($idx,$value) = each($this->data)){
|
2001-02-11 20:07:56 +01:00
|
|
|
if ($this->data[$idx]['appname'] == $appname && $this->data[$idx]['location'] == $location && $this->data[$idx]['account'] == $this->account_id){
|
2001-02-03 11:48:41 +01:00
|
|
|
$this->data[$idx] = Array();
|
2001-01-11 10:52:33 +01:00
|
|
|
}
|
|
|
|
}
|
2001-02-03 11:48:41 +01:00
|
|
|
reset($this->data);
|
|
|
|
return $this->data;
|
|
|
|
}
|
|
|
|
|
2001-03-13 05:27:22 +01:00
|
|
|
/*!
|
|
|
|
@function save_repostiory
|
|
|
|
@abstract save repository
|
|
|
|
@discussion save the repository <br>
|
|
|
|
Syntax: save_repository() <br>
|
|
|
|
example: acl->save_repository()
|
|
|
|
*/
|
|
|
|
|
2001-02-03 11:48:41 +01:00
|
|
|
function save_repository(){
|
|
|
|
global $phpgw, $phpgw_info;
|
|
|
|
reset($this->data);
|
|
|
|
|
2001-02-11 20:07:56 +01:00
|
|
|
$sql = 'delete from phpgw_acl where acl_account = '.$this->account_id;
|
2001-01-20 00:45:37 +01:00
|
|
|
$this->db->query($sql ,__LINE__,__FILE__);
|
2001-02-03 11:48:41 +01:00
|
|
|
|
|
|
|
$count = count($this->data);
|
|
|
|
reset ($this->data);
|
|
|
|
while(list($idx,$value) = each($this->data)){
|
2001-02-11 20:07:56 +01:00
|
|
|
if ($this->data[$idx]['account'] == $this->account_id){
|
|
|
|
$sql = 'insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights)';
|
|
|
|
$sql .= " values('".$this->data[$idx]['appname']."', '".$this->data[$idx]['location']."', ".$this->account_id.', '.$this->data[$idx]['rights'].')';
|
2001-02-03 11:48:41 +01:00
|
|
|
$this->db->query($sql ,__LINE__,__FILE__);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
reset($this->data);
|
|
|
|
return $this->data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************\
|
|
|
|
* These are the non-standard $this->account_id specific functions *
|
|
|
|
\**************************************************************************/
|
2001-03-13 05:27:22 +01:00
|
|
|
/*!
|
|
|
|
@function get_rights
|
2001-03-19 04:16:56 +01:00
|
|
|
@abstract get rights from the repository not specific to this->account_id (?)
|
2001-03-13 05:27:22 +01:00
|
|
|
@discussion
|
2001-03-19 04:16:56 +01:00
|
|
|
@param $location app location to get rights from
|
|
|
|
@param $appname optional defaults to $phpgw_info['flags']['currentapp'];
|
2001-03-13 05:27:22 +01:00
|
|
|
*/
|
2001-02-03 11:48:41 +01:00
|
|
|
function get_rights($location,$appname = False){
|
|
|
|
global $phpgw, $phpgw_info;
|
|
|
|
if (count($this->data) == 0){ $this->read_repository(); }
|
|
|
|
reset ($this->data);
|
|
|
|
if ($appname == False){
|
2001-02-11 20:07:56 +01:00
|
|
|
$appname = $phpgw_info['flags']['currentapp'];
|
2001-02-03 11:48:41 +01:00
|
|
|
}
|
|
|
|
$count = count($this->data);
|
2001-02-11 20:07:56 +01:00
|
|
|
if ($count == 0 && $phpgw_info['server']['acl_default'] != 'deny'){ return True; }
|
2001-02-03 11:48:41 +01:00
|
|
|
$rights = 0;
|
|
|
|
// for ($idx = 0; $idx < $count; ++$idx){
|
|
|
|
reset ($this->data);
|
|
|
|
while(list($idx,$value) = each($this->data)){
|
2001-02-11 20:07:56 +01:00
|
|
|
if ($this->data[$idx]['appname'] == $appname) {
|
|
|
|
if ($this->data[$idx]['location'] == $location || $this->data[$idx]['location'] == 'everywhere'){
|
|
|
|
if ($this->data[$idx]['rights'] == 0){ return False; }
|
|
|
|
$rights |= $this->data[$idx]['rights'];
|
2001-02-03 11:48:41 +01:00
|
|
|
}
|
|
|
|
}
|
2001-01-11 10:52:33 +01:00
|
|
|
}
|
2001-01-24 04:21:16 +01:00
|
|
|
return $rights;
|
|
|
|
}
|
2001-03-19 04:16:56 +01:00
|
|
|
/*!
|
|
|
|
@function check
|
|
|
|
@abstract check required rights (not specific to this->account_id?)
|
|
|
|
@param $location app location
|
|
|
|
@param $required required right to check against
|
|
|
|
@param $appname optional defaults to currentapp
|
|
|
|
*/
|
2001-02-03 11:48:41 +01:00
|
|
|
function check($location, $required, $appname = False){
|
2001-01-27 05:07:29 +01:00
|
|
|
global $phpgw, $phpgw_info;
|
2001-02-03 11:48:41 +01:00
|
|
|
$rights = $this->get_rights($location,$appname);
|
2001-01-11 10:52:33 +01:00
|
|
|
return !!($rights & $required);
|
|
|
|
}
|
2001-03-19 04:16:56 +01:00
|
|
|
/*!
|
|
|
|
@function get_specific_rights
|
|
|
|
@abstract get specific rights for this->account_id for an app location
|
|
|
|
@param $location app location
|
|
|
|
@param $appname optional defaults to currentapp
|
|
|
|
@result $rights ?
|
|
|
|
*/
|
2001-02-03 11:48:41 +01:00
|
|
|
function get_specific_rights($location, $appname = False){
|
2001-01-28 13:07:20 +01:00
|
|
|
global $phpgw, $phpgw_info;
|
|
|
|
|
|
|
|
if ($appname == False){
|
2001-02-11 20:07:56 +01:00
|
|
|
$appname = $phpgw_info['flags']['currentapp'];
|
2001-01-28 13:07:20 +01:00
|
|
|
}
|
2001-02-03 11:48:41 +01:00
|
|
|
|
|
|
|
$count = count($this->data);
|
2001-02-11 20:07:56 +01:00
|
|
|
if ($count == 0 && $phpgw_info['server']['acl_default'] != 'deny'){ return True; }
|
2001-02-03 11:48:41 +01:00
|
|
|
$rights = 0;
|
|
|
|
|
|
|
|
reset ($this->data);
|
|
|
|
while(list($idx,$value) = each($this->data)){
|
2001-02-11 20:07:56 +01:00
|
|
|
if ($this->data[$idx]['appname'] == $appname &&
|
|
|
|
($this->data[$idx]['location'] == $location || $this->data[$idx]['location'] == 'everywhere') &&
|
|
|
|
$this->data[$idx]['account'] == $this->account_id) {
|
|
|
|
if ($this->data[$idx]['rights'] == 0){ return False; }
|
|
|
|
$rights |= $this->data[$idx]['rights'];
|
2001-02-03 11:48:41 +01:00
|
|
|
}
|
2001-01-28 13:07:20 +01:00
|
|
|
}
|
2001-02-03 11:48:41 +01:00
|
|
|
return $rights;
|
|
|
|
}
|
2001-03-19 04:16:56 +01:00
|
|
|
/*!
|
|
|
|
@function check_specific
|
|
|
|
@abstract check specific
|
|
|
|
@param $location app location
|
|
|
|
@param $required required rights
|
|
|
|
@param $appname optional defaults to currentapp
|
|
|
|
@result boolean
|
|
|
|
*/
|
2001-02-03 11:48:41 +01:00
|
|
|
function check_specific($location, $required, $appname = False){
|
|
|
|
$rights = $this->get_specific_rights($location,$appname);
|
|
|
|
return !!($rights & $required);
|
|
|
|
}
|
2001-03-19 04:16:56 +01:00
|
|
|
/*!
|
|
|
|
@function get_location_list
|
|
|
|
@abstract ?
|
|
|
|
@param $app appname
|
|
|
|
@param $required ?
|
|
|
|
*/
|
2001-02-03 11:48:41 +01:00
|
|
|
function get_location_list($app, $required){
|
|
|
|
global $phpgw, $phpgw_info;
|
2001-01-28 13:07:20 +01:00
|
|
|
// User piece
|
2001-02-03 11:48:41 +01:00
|
|
|
$sql = "select acl_location, acl_rights from phpgw_acl where acl_appname = '$app' ";
|
|
|
|
$sql .= " and (acl_account in ('".$this->account_id."', 0"; // group 0 covers all users
|
|
|
|
$equalto = $phpgw->accounts->security_equals($this->account_id);
|
|
|
|
if (is_array($equalto) && count($equalto) > 0){
|
|
|
|
for ($idx = 0; $idx < count($equalto); ++$idx){
|
2001-02-11 20:07:56 +01:00
|
|
|
$sql .= ','.$equalto[$idx][0];
|
2001-02-03 11:48:41 +01:00
|
|
|
}
|
|
|
|
}
|
2001-02-11 20:07:56 +01:00
|
|
|
$sql .= ')))';
|
2001-02-03 11:48:41 +01:00
|
|
|
|
2001-01-28 13:07:20 +01:00
|
|
|
$this->db->query($sql ,__LINE__,__FILE__);
|
|
|
|
$rights = 0;
|
2001-02-03 11:48:41 +01:00
|
|
|
if ($this->db->num_rows() == 0 ){ return False; }
|
2001-01-28 13:07:20 +01:00
|
|
|
while ($this->db->next_record()) {
|
2001-02-11 20:07:56 +01:00
|
|
|
if ($this->db->f('acl_rights') == 0){ return False; }
|
|
|
|
$rights |= $this->db->f('acl_rights');
|
2001-02-03 11:48:41 +01:00
|
|
|
if (!!($rights & $required) == True){
|
2001-02-11 20:07:56 +01:00
|
|
|
$locations[] = $this->db->f('acl_location');
|
2001-02-03 11:48:41 +01:00
|
|
|
}else{
|
|
|
|
return False;
|
|
|
|
}
|
2001-01-28 13:07:20 +01:00
|
|
|
}
|
2001-02-03 11:48:41 +01:00
|
|
|
return $locations;
|
2001-01-28 13:07:20 +01:00
|
|
|
}
|
|
|
|
|
2001-02-03 11:48:41 +01:00
|
|
|
/*
|
|
|
|
This is kinda how the function SHOULD work, so that it doesnt need to do its own sql query.
|
|
|
|
It should use the values in the $this->data
|
|
|
|
|
|
|
|
function get_location_list($app, $required){
|
2001-01-28 13:07:20 +01:00
|
|
|
global $phpgw, $phpgw_info;
|
2001-02-03 11:48:41 +01:00
|
|
|
if ($appname == False){
|
2001-02-11 20:07:56 +01:00
|
|
|
$appname = $phpgw_info['flags']['currentapp'];
|
2001-02-03 11:48:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$count = count($this->data);
|
2001-02-11 20:07:56 +01:00
|
|
|
if ($count == 0 && $phpgw_info['server']['acl_default'] != 'deny'){ return True; }
|
2001-02-03 11:48:41 +01:00
|
|
|
$rights = 0;
|
|
|
|
|
|
|
|
reset ($this->data);
|
|
|
|
while(list($idx,$value) = each($this->data)){
|
2001-02-11 20:07:56 +01:00
|
|
|
if ($this->data[$idx]['appname'] == $appname && $this->data[$idx]['rights'] != 0){
|
|
|
|
$location_rights[$this->data[$idx]['location']] |= $this->data[$idx]['rights'];
|
2001-02-03 11:48:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
reset($location_rights);
|
|
|
|
for ($idx = 0; $idx < count($location_rights); ++$idx){
|
|
|
|
if (!!($location_rights[$idx] & $required) == True){
|
2001-02-11 20:07:56 +01:00
|
|
|
$location_rights[] = $this->data[$idx]['location'];
|
2001-02-03 11:48:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return $locations;
|
2001-01-28 13:07:20 +01:00
|
|
|
}
|
2001-02-03 11:48:41 +01:00
|
|
|
*/
|
2001-01-28 13:07:20 +01:00
|
|
|
|
2001-02-03 11:48:41 +01:00
|
|
|
/**************************************************************************\
|
|
|
|
* These are the generic functions. Not specific to $this->account_id *
|
|
|
|
\**************************************************************************/
|
2001-03-19 04:16:56 +01:00
|
|
|
/*!
|
|
|
|
@function add_repository
|
|
|
|
@abstract add repository information for an app
|
|
|
|
@param $app appname
|
|
|
|
@param $location location
|
|
|
|
@param $account_id account id
|
|
|
|
@param $rights rights
|
|
|
|
*/
|
2001-02-21 04:02:20 +01:00
|
|
|
function add_repository($app, $location, $account_id, $rights)
|
2001-02-20 15:06:32 +01:00
|
|
|
{
|
2001-02-03 11:48:41 +01:00
|
|
|
$this->delete_repository($app, $location, $account_id);
|
2001-02-21 04:02:20 +01:00
|
|
|
$sql = 'insert into phpgw_acl (acl_appname, acl_location, acl_account, acl_rights)';
|
|
|
|
$sql .= " values ('" . $app . "','" . $location . "','" . $account_id . "','" . $rights . "')";
|
2001-01-20 00:45:37 +01:00
|
|
|
$this->db->query($sql ,__LINE__,__FILE__);
|
2001-01-11 10:52:33 +01:00
|
|
|
return True;
|
|
|
|
}
|
2001-03-19 21:25:04 +01:00
|
|
|
|
2001-03-19 04:16:56 +01:00
|
|
|
/*!
|
|
|
|
@function delete_repository
|
|
|
|
@abstract delete repository information for an app
|
|
|
|
@param $app appname
|
|
|
|
@param $location location
|
|
|
|
@param $account_id account id
|
|
|
|
*/
|
2001-03-19 21:25:04 +01:00
|
|
|
function delete_repository($app, $location, $accountid = ''){
|
|
|
|
$account_id = get_account_type($accountid,$this->account_id);
|
2001-01-30 03:12:03 +01:00
|
|
|
$sql = "delete from phpgw_acl where acl_appname like '".$app."'"
|
|
|
|
. " and acl_location like '".$location."' and "
|
2001-02-03 11:48:41 +01:00
|
|
|
. " acl_account = ".$account_id;
|
2001-01-20 00:45:37 +01:00
|
|
|
$this->db->query($sql ,__LINE__,__FILE__);
|
2001-01-30 03:12:03 +01:00
|
|
|
return $this->db->num_rows();
|
2001-01-11 10:52:33 +01:00
|
|
|
}
|
|
|
|
|
2001-03-19 04:16:56 +01:00
|
|
|
/*!
|
|
|
|
@function get_app_list_for_id
|
|
|
|
@abstract get application list for an account id
|
|
|
|
@param $location location
|
|
|
|
@param $required ?
|
|
|
|
@param $account_id account id defaults to $phpgw_info['user']['account_id'];
|
|
|
|
*/
|
2001-03-19 21:25:04 +01:00
|
|
|
function get_app_list_for_id($location, $required, $accountid = ''){
|
2001-01-25 02:30:39 +01:00
|
|
|
global $phpgw, $phpgw_info;
|
2001-03-19 21:25:04 +01:00
|
|
|
$account_id = get_account_id($accountid,$this->account_id);
|
2001-01-25 02:30:39 +01:00
|
|
|
$sql = "select acl_appname, acl_rights from phpgw_acl where acl_location = '$location' and ";
|
2001-02-08 07:05:39 +01:00
|
|
|
$sql .= 'acl_account = '.$account_id;
|
2001-01-22 11:35:31 +01:00
|
|
|
$this->db->query($sql ,__LINE__,__FILE__);
|
|
|
|
$rights = 0;
|
|
|
|
if ($this->db->num_rows() == 0 ){ return False; }
|
|
|
|
while ($this->db->next_record()) {
|
2001-02-08 07:05:39 +01:00
|
|
|
if ($this->db->f('acl_rights') == 0){ return False; }
|
|
|
|
$rights |= $this->db->f('acl_rights');
|
2001-01-22 11:35:31 +01:00
|
|
|
if (!!($rights & $required) == True){
|
2001-02-08 07:05:39 +01:00
|
|
|
$apps[] = $this->db->f('acl_appname');
|
2001-01-22 11:35:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return $apps;
|
|
|
|
}
|
2001-03-19 21:25:04 +01:00
|
|
|
|
2001-03-19 04:16:56 +01:00
|
|
|
/*!
|
|
|
|
@function get_location_list_for_id
|
|
|
|
@abstract get location list for id
|
|
|
|
@discussion ?
|
|
|
|
@param $app app
|
|
|
|
@param $required required
|
|
|
|
@param $account_id optional defaults to $phpgw_info['user']['account_id'];
|
|
|
|
*/
|
2001-03-19 21:25:04 +01:00
|
|
|
function get_location_list_for_id($app, $required, $accountid = ''){
|
2001-01-26 12:58:00 +01:00
|
|
|
global $phpgw, $phpgw_info;
|
2001-03-19 21:25:04 +01:00
|
|
|
$account_id = get_account_id($accountid);
|
2001-01-26 12:58:00 +01:00
|
|
|
$sql = "select acl_location, acl_rights from phpgw_acl where acl_appname = '$app' and ";
|
2001-03-19 21:25:04 +01:00
|
|
|
$sql .= "acl_account = ".$account_id;
|
2001-01-22 11:35:31 +01:00
|
|
|
$this->db->query($sql ,__LINE__,__FILE__);
|
|
|
|
$rights = 0;
|
|
|
|
if ($this->db->num_rows() == 0 ){ return False; }
|
|
|
|
while ($this->db->next_record()) {
|
2001-02-11 20:07:56 +01:00
|
|
|
if ($this->db->f('acl_rights')) {
|
|
|
|
$rights |= $this->db->f('acl_rights');
|
2001-01-31 06:51:52 +01:00
|
|
|
if (!!($rights & $required) == True){
|
2001-02-11 20:07:56 +01:00
|
|
|
$locations[] = $this->db->f('acl_location');
|
2001-01-31 06:51:52 +01:00
|
|
|
}
|
2001-01-22 11:35:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return $locations;
|
|
|
|
}
|
2001-03-19 04:16:56 +01:00
|
|
|
/*!
|
|
|
|
@function get_ids_for_location
|
|
|
|
@abstract get ids for location
|
|
|
|
@param $location location
|
|
|
|
@param $required required
|
|
|
|
@param $app app optional defaults to $phpgw_info['flags']['currentapp'];
|
|
|
|
*/
|
2001-02-03 11:48:41 +01:00
|
|
|
function get_ids_for_location($location, $required, $app = False){
|
2001-01-30 11:46:09 +01:00
|
|
|
global $phpgw, $phpgw_info;
|
|
|
|
if ($app == False){
|
2001-02-11 20:07:56 +01:00
|
|
|
$app = $phpgw_info['flags']['currentapp'];
|
2001-01-30 11:46:09 +01:00
|
|
|
}
|
2001-02-01 05:02:01 +01:00
|
|
|
$sql = "select acl_account, acl_rights from phpgw_acl where acl_appname = '$app' and ";
|
2001-02-03 11:48:41 +01:00
|
|
|
$sql .= "acl_location = '".$location."'";
|
2001-01-30 11:46:09 +01:00
|
|
|
$this->db->query($sql ,__LINE__,__FILE__);
|
|
|
|
$rights = 0;
|
|
|
|
if ($this->db->num_rows() == 0 ){ return False; }
|
|
|
|
while ($this->db->next_record()) {
|
2001-03-18 19:31:17 +01:00
|
|
|
$rights = 0;
|
2001-02-11 20:07:56 +01:00
|
|
|
$rights |= $this->db->f('acl_rights');
|
2001-01-30 11:46:09 +01:00
|
|
|
if (!!($rights & $required) == True){
|
2001-03-18 17:29:05 +01:00
|
|
|
$accounts[] = intval($this->db->f('acl_account'));
|
2001-02-11 20:07:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return $accounts;
|
|
|
|
}
|
2001-03-19 21:25:04 +01:00
|
|
|
|
2001-03-19 04:16:56 +01:00
|
|
|
/*!
|
|
|
|
@function get_user_applications
|
|
|
|
@abstract get a list of applications a user has rights to
|
|
|
|
@param $account_id optional defaults to $phpgw_info['user']['account_id'];
|
|
|
|
@result $apps array containing list of apps
|
|
|
|
*/
|
2001-03-19 21:25:04 +01:00
|
|
|
function get_user_applications($accountid = '')
|
2001-03-11 23:38:19 +01:00
|
|
|
{
|
|
|
|
global $phpgw, $phpgw_info;
|
|
|
|
|
|
|
|
$db2 = $this->db;
|
|
|
|
|
2001-03-19 21:25:04 +01:00
|
|
|
$account_id = get_account_id($accountid);
|
2001-03-11 23:38:19 +01:00
|
|
|
$memberships = $phpgw->accounts->memberships($account_id);
|
|
|
|
$sql = "select acl_appname, acl_rights from phpgw_acl where acl_location = 'run' and "
|
|
|
|
. 'acl_account in ';
|
|
|
|
$security = '('.$account_id;
|
2001-03-12 13:01:56 +01:00
|
|
|
while($groups = @each($memberships))
|
2001-03-11 23:38:19 +01:00
|
|
|
{
|
|
|
|
$group = each($groups);
|
|
|
|
$security .= ','.$group[1]['account_id'];
|
|
|
|
}
|
|
|
|
$security .= ')';
|
|
|
|
$db2->query($sql . $security ,__LINE__,__FILE__);
|
|
|
|
|
|
|
|
if ($db2->num_rows() == 0){ return False; }
|
|
|
|
while ($db2->next_record())
|
|
|
|
{
|
|
|
|
if(isset($apps[$db2->f('acl_appname')]))
|
|
|
|
{
|
|
|
|
$rights = $apps[$db2->f('acl_appname')];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$rights = 0;
|
|
|
|
}
|
|
|
|
$rights |= $db2->f('acl_rights');
|
|
|
|
$apps[$db2->f('acl_appname')] |= $rights;
|
|
|
|
}
|
|
|
|
return $apps;
|
|
|
|
}
|
2001-03-19 04:16:56 +01:00
|
|
|
/*!
|
|
|
|
@function get_grants
|
|
|
|
@abstract ?
|
|
|
|
@param $app optional defaults to $phpgw_info['flags']['currentapp'];
|
|
|
|
*/
|
2001-02-11 20:07:56 +01:00
|
|
|
function get_grants($app=False){
|
|
|
|
global $phpgw, $phpgw_info;
|
|
|
|
|
|
|
|
$db2 = $this->db;
|
|
|
|
|
|
|
|
if ($app==False)
|
|
|
|
{
|
|
|
|
$app = $phpgw_info['flags']['currentapp'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$sql = "select acl_account, acl_rights from phpgw_acl where acl_appname = '$app' and "
|
|
|
|
. "acl_location in ";
|
2001-02-13 02:00:16 +01:00
|
|
|
$security = "('". $phpgw_info['user']['account_id'] ."'";
|
2001-03-18 17:29:05 +01:00
|
|
|
$my_memberships = $phpgw->accounts->memberships(intval($phpgw_info['user']['account_id']));
|
2001-02-11 20:07:56 +01:00
|
|
|
while($groups = each($my_memberships))
|
|
|
|
{
|
|
|
|
$group = each($groups);
|
2001-02-13 02:00:16 +01:00
|
|
|
$security .= ",'" . $group[1]['account_id'] . "'";
|
2001-02-11 20:07:56 +01:00
|
|
|
}
|
|
|
|
$security .= ')';
|
|
|
|
$db2->query($sql . $security ,__LINE__,__FILE__);
|
|
|
|
$rights = 0;
|
2001-02-12 05:59:10 +01:00
|
|
|
$accounts = Array();
|
2001-02-18 23:30:16 +01:00
|
|
|
if ($db2->num_rows() == 0){ return False; }
|
2001-02-11 20:07:56 +01:00
|
|
|
while ($db2->next_record())
|
|
|
|
{
|
|
|
|
$grantor = $db2->f('acl_account');
|
|
|
|
$rights = $db2->f('acl_rights');
|
2001-02-12 05:59:10 +01:00
|
|
|
|
|
|
|
// if($grantor == $phpgw_info['user']['account_id'])
|
|
|
|
// {
|
|
|
|
// continue;
|
|
|
|
// }
|
|
|
|
|
|
|
|
if(!isset($accounts[$grantor]))
|
2001-02-11 20:07:56 +01:00
|
|
|
{
|
|
|
|
$accounts[$grantor] = 0;
|
2001-01-30 11:46:09 +01:00
|
|
|
}
|
2001-02-11 20:07:56 +01:00
|
|
|
$accounts[$grantor] |= $rights;
|
2001-01-30 11:46:09 +01:00
|
|
|
}
|
|
|
|
return $accounts;
|
|
|
|
}
|
2001-01-11 10:52:33 +01:00
|
|
|
} //end of acl class
|
2001-01-30 03:12:03 +01:00
|
|
|
?>
|