mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
236 lines
8.1 KiB
PHP
236 lines
8.1 KiB
PHP
|
<?php
|
||
|
/**************************************************************************\
|
||
|
* eGroupWare - Adressbook - General business object *
|
||
|
* http://www.egroupware.org *
|
||
|
* Written and (c) 2005 by Cornelius_weiss <egw@von-und-zu-weiss.de> *
|
||
|
* -------------------------------------------- *
|
||
|
* This program 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 License, or (at your *
|
||
|
* option) any later version. *
|
||
|
\**************************************************************************/
|
||
|
|
||
|
/* $Id$ */
|
||
|
|
||
|
require_once(EGW_INCLUDE_ROOT.'/addressbook/inc/class.socontacts.inc.php');
|
||
|
|
||
|
/**
|
||
|
* General business object of the adressbook
|
||
|
*
|
||
|
* @package adressbook
|
||
|
* @author Cornelius Weiss <egw@von-und-zu-weiss.de>
|
||
|
* @copyright (c) 2005 by Cornelius Weiss <egw@von-und-zu-weiss.de>
|
||
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
||
|
*/
|
||
|
class bocontacts extends socontacts
|
||
|
{
|
||
|
/**
|
||
|
* @var $grants array with grants
|
||
|
*/
|
||
|
var $grants;
|
||
|
|
||
|
/**
|
||
|
* @var $user userid of current user
|
||
|
*/
|
||
|
var $user;
|
||
|
|
||
|
function bocontacts($contact_app='addressbook')
|
||
|
{
|
||
|
$this->socontacts($contact_app);
|
||
|
$this->grants = $GLOBALS['egw']->acl->get_grants($contact_app);
|
||
|
$this->user = $GLOBALS['egw_info']['user']['account_id'];
|
||
|
/* foreach(array(
|
||
|
'so' => $appname. 'soadb',
|
||
|
) as $my => $app_class)
|
||
|
{
|
||
|
list(,$class) = explode('.',$app_class);
|
||
|
|
||
|
if (!is_object($GLOBALS['egw']->$class))
|
||
|
{
|
||
|
$GLOBALS['egw']->$class =& CreateObject($app_class);
|
||
|
}
|
||
|
$this->$my = &$GLOBALS['egw']->$class;
|
||
|
}*/
|
||
|
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* deletes contact in db
|
||
|
*
|
||
|
* @param array &contact contact array from etemplate::exec
|
||
|
* @return bool false if all went right
|
||
|
*/
|
||
|
function delete(&$contact)
|
||
|
{
|
||
|
// multiple delete from advanced search
|
||
|
if(isset($contact[0]))
|
||
|
{
|
||
|
foreach($contact as $single)
|
||
|
{
|
||
|
if($this->check_perms(EGW_ACL_DELETE,$single['id']))
|
||
|
{
|
||
|
if(parent::delete($single))
|
||
|
{
|
||
|
$msg .= lang('Something went wrong by deleting %1', $single['n_given'].$single['n_family']);
|
||
|
}
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
$msg .= lang('You are not permitted to delete contact %1', $single['n_given'].$single['n_family']);
|
||
|
}
|
||
|
}
|
||
|
return $msg;
|
||
|
}
|
||
|
if(isset($contact['id']) && !$this->check_perms(EGW_ACL_DELETE,$contact['id']))
|
||
|
{
|
||
|
$contact['msg'] = lang('You are not permittet to delete this contact');
|
||
|
return 1;
|
||
|
}
|
||
|
if(parent::delete($contact))
|
||
|
{
|
||
|
$contact['msg'] = lang('Something went wrong by deleting this contact');
|
||
|
return 1;
|
||
|
}
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* saves contact to db
|
||
|
*
|
||
|
* @param array &contact contact array from etemplate::exec
|
||
|
* @return array $contact
|
||
|
* TODO make fullname format choosable at best with selectbox and javascript in edit dialoge
|
||
|
*/
|
||
|
function save(&$contact)
|
||
|
{
|
||
|
if($contact['id'] && !$this->check_perms(EGW_ACL_EDIT,$contact['id']))
|
||
|
{
|
||
|
$contact['msg'] = lang('You are not permittet to edit this contact');
|
||
|
return $contact;
|
||
|
}
|
||
|
|
||
|
// new contact
|
||
|
if($contact['id'] == 0)
|
||
|
{
|
||
|
$contact['owner'] = $this->user;
|
||
|
// we create a normal contact
|
||
|
$contact['tid'] = 'n';
|
||
|
}
|
||
|
|
||
|
// convert categories
|
||
|
$contact['cat_id'] = $contact['cat_id'] ? implode(',',$contact['cat_id']) : '';
|
||
|
// last modified
|
||
|
$contact['last_mod'] = time();
|
||
|
// only owner can set access status
|
||
|
$contact['access'] = $contact['owner'] == $this->user ? (!empty($contact['access']) ? $contact['access'] : 'public') : 'public';
|
||
|
$contact['private'] = $contact['owner'] == $this->user ? $contact['private'] : 0;
|
||
|
// convert bithdate format
|
||
|
$tmp_bday = $contact['bday'];
|
||
|
$contact['bday'] = $contact['bday'] ? date('m/d/Y',$contact['bday']) : '';
|
||
|
// create fullname
|
||
|
$contact['fn'] = $contact['prefix'].
|
||
|
($contact['n_given'] ? ' '.$contact['n_given'] : '').
|
||
|
($contact['n_middle'] ? ' '.$contact['n_middle'] : '').
|
||
|
($contact['n_family'] ? ' '.$contact['n_family'] : '').
|
||
|
($contact['n_suffix'] ? ' '.$contact['n_suffix'] : '');
|
||
|
|
||
|
$error_nr = parent::save($contact);
|
||
|
|
||
|
//reconvert bday as we are dealing with references
|
||
|
$contact['bday'] = $tmp_bday;
|
||
|
|
||
|
$contact['msg'] = $error_nr ?
|
||
|
lang('Something went wrong by saving this contact. Errorcode %1',$error_nr) :
|
||
|
lang('Contact saved');
|
||
|
|
||
|
return $contact;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* reads contacts matched by key and puts all cols in the data array
|
||
|
*
|
||
|
* @param array $keys array with keys in form internalName => value, may be a scalar value if only one key
|
||
|
* @param string/array $extra_cols string or array of strings to be added to the SELECT, eg. "count(*) as num"
|
||
|
* @param string $join='' sql to do a join, added as is after the table-name, eg. ", table2 WHERE x=y" or
|
||
|
* @return array with data or errormessage
|
||
|
*/
|
||
|
function read($keys,$extra_cols='',$join='')
|
||
|
{
|
||
|
$data = parent::read($keys,$extra_cols,$join);
|
||
|
if (!$data)
|
||
|
{
|
||
|
return $content['msg'] = lang('something went wrong by reading this contact');
|
||
|
}
|
||
|
if(!$this->check_perms(EGW_ACL_READ,$data))
|
||
|
{
|
||
|
return $content['msg'] = lang('you are not permittet to view this contact');
|
||
|
}
|
||
|
|
||
|
// convert birthday format
|
||
|
|
||
|
list($m,$d,$y) = explode('/',$data['bday']);
|
||
|
$data['bday'] = strpos($data['bday'],'/') ? mktime(0,0,0,$m,$d,$y) : '';
|
||
|
// convert access into private for historical reasons
|
||
|
$data['private'] = $data['access'] == 'private' ? 1 : $data['private'];
|
||
|
$data['access'] = $data['private'] ? 'private' : 'public';
|
||
|
|
||
|
return $data;
|
||
|
}
|
||
|
/**
|
||
|
* searches contacts for rows matching searchcriteria
|
||
|
*
|
||
|
* @param array/string $criteria array of key and data cols, OR a SQL query (content for WHERE), fully quoted (!)
|
||
|
* @param boolean/string $only_keys=true True returns only keys, False returns all cols. comma seperated list of keys to return
|
||
|
* @param string $order_by='' fieldnames + {ASC|DESC} separated by colons ',', can also contain a GROUP BY (if it contains ORDER BY)
|
||
|
* @param string/array $extra_cols='' string or array of strings to be added to the SELECT, eg. "count(*) as num"
|
||
|
* @param string $wildcard='' appended befor and after each criteria
|
||
|
* @param boolean $empty=false False=empty criteria are ignored in query, True=empty have to be empty in row
|
||
|
* @param string $op='AND' defaults to 'AND', can be set to 'OR' too, then criteria's are OR'ed together
|
||
|
* @param mixed $start=false if != false, return only maxmatch rows begining with start, or array($start,$num)
|
||
|
* @param array $filter=null if set (!=null) col-data pairs, to be and-ed (!) into the query without wildcards
|
||
|
* @param string $join='' sql to do a join, added as is after the table-name, eg. ", table2 WHERE x=y" or
|
||
|
* "LEFT JOIN table2 ON (x=y)", Note: there's no quoting done on $join!
|
||
|
* @param boolean $need_full_no_count=false If true an unlimited query is run to determine the total number of rows, default false
|
||
|
* @return array of matching rows (the row is an array of the cols) or False
|
||
|
*/
|
||
|
function search($criteria,$only_keys=True,$order_by='',$extra_cols='',$wildcard='',$empty=False,$op='AND',$start=false,$filter=null,$join='',$need_full_no_count=false)
|
||
|
{
|
||
|
// convert bday format
|
||
|
if(isset($criteria['bday']))
|
||
|
{
|
||
|
$criteria['bday'] = date('m/d/Y',$criteria['bday']);
|
||
|
}
|
||
|
$filter = array(
|
||
|
'owner' => array_keys($this->grants),
|
||
|
);
|
||
|
return parent::search($criteria,$only_keys,$order_by,$extra_cols,$wildcard,$empty,$op,$start,$filter,$join,$need_full_no_count);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Checks if the current user has the necessary ACL rights
|
||
|
*
|
||
|
* @param int $needed necessary ACL right: EGW_ACL_{READ|EDIT|DELETE}
|
||
|
* @param mixed $contact contact as array or the contact-id
|
||
|
* @return boolean true permission granted or false for permission denied
|
||
|
*/
|
||
|
function check_perms($needed,&$contact)
|
||
|
{
|
||
|
if (is_array($contact))
|
||
|
{
|
||
|
$owner = $contact['owner'];
|
||
|
$access = $contact['access'];
|
||
|
}
|
||
|
elseif (is_numeric($contact))
|
||
|
{
|
||
|
$read_contact = parent::read($contact);
|
||
|
$owner = $read_contact['owner'];
|
||
|
$access = $read_contact['access'];
|
||
|
}
|
||
|
if($owner == $this->user)
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
$access = $access ? $access : 'public';
|
||
|
return $access == 'private' ? false : $this->grants[$owner] & $needed;
|
||
|
}
|
||
|
}
|