egroupware_official/mail/inc/class.mail_acl.inc.php

397 lines
11 KiB
PHP
Raw Normal View History

2013-11-15 18:22:46 +01:00
<?php
/**
* EGroupware - Mail Folder ACL- interface class
*
* @link http://www.egroupware.org
* @package mail
* @author Hadi Nategh [hn@stylite.de]
* @copyright (c) 2013 by Stylite AG <info-AT-stylite.de>
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @version
*/
class mail_acl
{
/**
* Methods callable via menuaction
*
* @var array
*/
var $public_functions = array(
'edit' => True,
);
2013-11-28 16:08:41 +01:00
/**
* static used define abbrevations for common access rights
*
* @array
*
*/
var $aclRightsAbbrvs = array(
'lrs' => array('label'=>'readable','title'=>'Allows a user to read the contents of the mailbox.'),
'lprs' => array('label'=>'post','title'=>'Allows a user to read the mailbox and post to it through the delivery system by sending mail to the submission address of the mailbox.'),
'ilprs' => array('label'=>'append','title'=>'Allows a user to read the mailbox and append messages to it, either via IMAP or through the delivery system.'),
'ilprws' => array('label'=>'write','title'=>'Allows a user to read the maibox, post to it, append messages to it, and delete messages or the mailbox itself. The only right not given is the right to change the ACL of the mailbox.'),
'akxeilprwts'=> array('label'=>'all','title'=>'The user has all possible rights on the mailbox. This is usually granted to users only on the mailboxes they own.'),
2013-11-28 16:08:41 +01:00
'custom' => array('label'=>'custom','title'=>'User defined combination of rights for the ACL'),
);
2013-11-15 18:22:46 +01:00
/**
* instance of mail_bo
*
* @var mail_bo
*/
var $mail_bo;
/**
*
* @var mail_account
*/
var $current_account;
2013-11-28 16:08:41 +01:00
2013-11-15 18:22:46 +01:00
/**
* Constructor
*
*
*/
function __construct()
{
$acc_id = $_GET['acc_id']?$_GET['acc_id']:$GLOBALS['egw_info']['user']['preferences']['mail']['ActiveProfileID'];
$this->mail_bo = mail_bo::getInstance(false, $acc_id);
2013-11-28 16:08:41 +01:00
2013-11-15 18:22:46 +01:00
}
/**
* Edit folder ACLs for account(s)
*
* @param string $msg
* @param array $content
2013-11-28 16:08:41 +01:00
*
2013-11-15 18:22:46 +01:00
*/
function edit(array $content=null ,$msg='')
{
2013-11-28 16:08:41 +01:00
$tmpl = new etemplate_new('mail.acl');
$mailbox = base64_decode($_GET['mailbox']);
2013-11-15 18:22:46 +01:00
if (!is_array($content))
{
if (!empty($mailbox))
{
$content['mailbox'] = $mailbox;
2013-11-28 16:08:41 +01:00
$acl = (array)$this->retrive_acl($mailbox, $msg);
$n = 1;
foreach ($acl as $keys => $value)
{
$virtuals = array_pop(array_values((array)$value));
$rights = array_shift(array_values((array)$value));
2013-11-28 16:08:41 +01:00
foreach ($rights as $right)
2013-11-28 16:08:41 +01:00
{
$content['grid'][$n]['acl_'. $right] = true;
}
$virtualD = array('e','t');
$content['grid'][$n]['acl_c'] = array_diff($virtuals['c'],array_intersect($rights,$virtuals['c']))? false: true; //c=kx more information rfc4314, Obsolote Rights
$content['grid'][$n]['acl_d'] = array_diff($virtualD,array_intersect($rights,$virtuals['d']))? false: true; //d=et more information rfc4314, Obsolote Rights
$acl_abbrvs = implode('',$rights);
2013-11-28 16:08:41 +01:00
if (array_key_exists($acl_abbrvs, $this->aclRightsAbbrvs))
{
$content['grid'][$n]['acl'] = $acl_abbrvs;
}
else
{
$content['grid'][$n]['acl'] = 'custom';
}
$content['grid'][$n++]['acc_id'] = $keys;
2013-11-15 18:22:46 +01:00
2013-11-28 16:08:41 +01:00
}
2013-11-15 18:22:46 +01:00
}
2013-11-28 16:08:41 +01:00
array_push($content['grid'], array('acc_id'=>''));
2013-11-15 18:22:46 +01:00
}
2013-11-28 16:08:41 +01:00
else
{
list($button) = @each($content['button']);
if (!empty ($content['grid']['delete']))
{
$button = 'delete';
}
switch ($button)
{
case 'save':
case 'apply':
if ($content)
{
$validation_err = $this->update_acl($content,$msg);
if ($validation_err)
{
foreach ($validation_err as &$row)
{
$tmpl->set_validation_error('grid['.$row.']'.'[acc_id]', "You must fill this field!");
}
}
else
{
$msg .= lang("The Folder %1 's ACLs saved!", $content['mailbox']);
}
//Add new row at the end
if ($content['grid'][count($content['grid'])]['acc_id'])
array_push($content['grid'], array('acc_id'=>''));
2013-11-15 18:22:46 +01:00
2013-11-28 16:08:41 +01:00
}
else
{
$msg .= "\n".lang("Error: Could not save ACL").' '.lang("reason!");
}
//Send message
egw_framework::refresh_opener($msg, 'mail', 'update');
if ($button == "apply") break;
case 'cancel':
egw_framework::window_close();
common::egw_exit();
break;
case 'delete':
$aclRvmCnt = $this->remove_acl($content, $msg);
if (is_array($aclRvmCnt))
{
$content['grid'] = $aclRvmCnt;
}
else
{
error_log(__METHOD__.__LINE__. "()" . "The remove_acl suppose to return an array back, something is wrong there");
}
egw_framework::refresh_opener($msg, 'mail', 'update');
2013-11-28 16:08:41 +01:00
}
}
$sel_options['acl'] = $this->aclRightsAbbrvs;
$readonlys['grid']['delete[1]'] = true;
$preserv ['mailbox'] = $content['mailbox'];
2013-11-28 16:08:41 +01:00
$content['msg'] = $msg;
$tmpl->exec('mail.mail_acl.edit', $content, $sel_options, $readonlys, $preserv,2);
2013-11-15 18:22:46 +01:00
}
/**
2013-11-28 16:08:41 +01:00
* Update ACL rights of a folder or including subfolders for an account(s)
2013-11-15 18:22:46 +01:00
*
2013-11-28 16:08:41 +01:00
* @param array $content content including the acl rights
* @param Boolean $recursive boolean flag FALSE|TRUE. If it is FALSE, only the folder take in to account, but in case of TRUE
* the mailbox including all its subfolders will be considered.
* @param string $msg Message
*
2013-11-15 18:22:46 +01:00
*/
2013-11-28 16:08:41 +01:00
function update_acl ($content, &$msg)
2013-11-15 18:22:46 +01:00
{
2013-11-28 16:08:41 +01:00
$validator = array();
2013-11-15 18:22:46 +01:00
2013-11-28 16:08:41 +01:00
foreach ($content['grid'] as $keys => $value)
{
$recursive = $value['acl_recursive'];
2013-11-28 16:08:41 +01:00
unset($value['acc_id']);
unset($value['acl_recursive']);
unset($value['acl']);
2013-11-28 16:08:41 +01:00
$options = array();
foreach ($value as $key => $val)
{
if ($value[$key] == true)
{
$right = explode("acl_" ,$key);
if ($right[1] === 'c') $right[1] = 'kx'; // c = kx , rfc 4314
if ($right[1] === 'd') $right[1] = 'et'; // d = et , rfc 4314
2013-11-28 16:08:41 +01:00
$options['rights'] .= $right[1];
}
}
if (!empty($content['grid'][$keys]['acc_id'][0]))
{
$this->setACL($content['mailbox'], $content['grid'][$keys]['acc_id'][0], $options,$recursive);
2013-11-28 16:08:41 +01:00
}
else
{
if($keys !== count($content['grid']))
{
array_push($validator, $keys);
$msg = lang("Error:Could not save the ACL! Because some names are empty!");
2013-11-28 16:08:41 +01:00
}
}
}
if (is_array($validator)) return $validator;
2013-11-15 18:22:46 +01:00
}
/**
* Retrive Folder ACL rights
2013-11-28 16:08:41 +01:00
* @todo rights 'c' and 'd' should be fixed
2013-11-15 18:22:46 +01:00
*/
function retrive_acl ($mailbox, &$msg)
{
2013-11-28 16:08:41 +01:00
if (($acl = $this->getACL($mailbox)))
2013-11-15 18:22:46 +01:00
{
2013-11-28 16:08:41 +01:00
$msg = lang('ACL rights retrived successfully!');
return $acl;
2013-11-15 18:22:46 +01:00
}
else
{
2013-11-28 16:08:41 +01:00
$msg = lang('Get ACL rights failed from IMAP server!');
2013-11-15 18:22:46 +01:00
}
}
2013-11-28 16:08:41 +01:00
/**
* remove_acl
* This method take content of acl rights, and will delete the one from ACL IMAP,
* for selected folder and/or its subfolders
2013-11-28 16:08:41 +01:00
*
* @param Array $content content array of popup window
* @param string $msg message
*
* @return Array An array as new content for grid
2013-11-28 16:08:41 +01:00
*/
function remove_acl($content, &$msg)
2013-11-28 16:08:41 +01:00
{
$row_num = array_keys($content['grid']['delete'],"pressed");
$row_num = $row_num[0];
$recursive = $content['grid'][$row_num]['acl_recursive'];
2013-11-28 16:08:41 +01:00
$identifier = $content['grid'][$row_num]['acc_id'][0];
if(($res = $this->deleteACL($content['mailbox'], $identifier,$recursive)))
{
unset($content['grid'][$row_num]);
unset($content['grid']['delete']);
if ($recursive)
{
$msg = lang("The %1 's acl, including its subfolders, removed from the %2!",$content['mailbox'],$identifier);
}
else
{
$msg = lang("The %1 's acl removed from the %2!",$content['mailbox'],$identifier);
}
return array_combine(range(1, count($content['grid'])), array_values($content['grid']));
}
else
{
$msg = lang("An error happend while trying to remove ACL rights from the account %1.",$identifier);
return false;
}
2013-11-28 16:08:41 +01:00
}
/**
* Delete ACL rights of a folder or including subfolders from an account
*
* @param String $mailbox folder name that needs to be edited
* @param String $identifier The identifier to delete.
* @param Boolean $recursive boolean flag FALSE|TRUE. If it is FALSE, only the folder take in to account, but in case of TRUE
* the mailbox including all its subfolders will be considered.
*
* @return Boolean FALSE in case of any exceptions and TRUE in case of success
2013-11-28 16:08:41 +01:00
*/
function deleteACL ($mailbox, $identifier, $recursive)
{
if ($recursive)
2013-11-28 16:08:41 +01:00
{
$folders = $this->getSubfolders($mailbox);
2013-11-28 16:08:41 +01:00
}
else
2013-11-28 16:08:41 +01:00
{
$folders = explode(' ',$mailbox);
}
foreach($folders as $sbFolders)
{
try
{
$this->mail_bo->icServer->deleteACL($sbFolders, $identifier);
}
catch (Exception $e)
{
error_log(__METHOD__. "Could not delete ACL rights of folder " . $mailbox . " for account ". $identifier ." because of " .$e->getMessage());
return false;
}
2013-11-28 16:08:41 +01:00
}
return true;
}
2013-11-28 16:08:41 +01:00
/**
* Get subfolders of a mailbox
*
* @param string $mailbox structural folder name
*
* @return Array an array including all subfolders of given mailbox| returns an empty array in case of no subfolders
*
*/
function getSubfolders($mailbox)
{
$delimiter = $this->mail_bo->getHierarchyDelimiter();
$nameSpace = $this->mail_bo->_getNameSpaces();
$prefix = $this->mail_bo->getFolderPrefixFromNamespace($nameSpace, $mailbox);
if (($subFolders = $this->mail_bo->getMailBoxesRecursive($mailbox, $delimiter, $prefix)))
{
return $subFolders;
}
else
{
return array();
}
2013-11-28 16:08:41 +01:00
}
/**
* Set ACL rights of a folder or including subfolders to an account
* @param String $mailbox folder name that needs to be edited
* @param String $Identifier The identifier to set.
* @param Array $options Additional options:
* - rights: (string) The rights to alter or set.
* - action: (string, optional) If 'add' or 'remove', adds or removes the
* specified rights. Sets the rights otherwise.
* @param Boolean $recursive boolean flag FALSE|TRUE. If it is FALSE, only the folder take in to account, but in case of TRUE
* the mailbox including all its subfolders will be considered.
* @param String $msg message
* @return Boolean FALSE in case of any exceptions and TRUE in case of success,
2013-11-28 16:08:41 +01:00
*
*/
function setACL($mailbox, $identifier,$options, $recursive)
2013-11-28 16:08:41 +01:00
{
if ($recursive)
2013-11-28 16:08:41 +01:00
{
$folders = $this->getSubfolders($mailbox);
2013-11-28 16:08:41 +01:00
}
else
2013-11-28 16:08:41 +01:00
{
$folders = explode(' ',$mailbox);
}
foreach($folders as $sbFolders)
{
try
{
$this->mail_bo->icServer->setACL($sbFolders,$identifier,$options);
}
catch (Exception $e)
{
error_log(__METHOD__. "Could not set ACL rights on folder " . $mailbox . " for account ". $identifier . " because of " .$e->getMessage());
return false;
}
2013-11-28 16:08:41 +01:00
}
return true;
2013-11-28 16:08:41 +01:00
}
/**
* Get ACL rights of a folder from an account
*
* @param String $mailbox folder name that needs to be read
* @return Boolean FALSE in case of any exceptions and if TRUE in case of success,
*/
function getACL ($mailbox)
{
if(($acl =$this->mail_bo->icServer->getACL($mailbox)))
{
try
{
$acl = $this->mail_bo->icServer->getACL($mailbox);
return $acl;
} catch (Exception $e) {
error_log(__METHOD__. "Could not get ACL rights from folder " . $mailbox . " because of " .$e->getMessage());
return false;
}
}
}
}