* * and Bettina Gille [ceb@phpgroupware.org] * * Category manager * * Copyright (C) 2000, 2001 Joseph Engo, Bettina Gille * * Copyright (C) 2002, 2003 Bettina Gille * * Reworked 11/2005 by RalfBecker-AT-outdoor-training.de * * ------------------------------------------------------------------------ * * This library is part of the eGroupWare API * * http://www.egroupware.org * * ------------------------------------------------------------------------ * * 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 * \**************************************************************************/ /* $Id$ */ /** * class to manage categories in eGroupWare * * @license LGPL * @package api * @subpackage categories */ class categories { var $account_id; var $app_name; var $db; var $total_records; var $grants; var $table = 'egw_categories'; var $cache_id2cat_data = array(); // a little bit of caching for id2name and return_single /** * constructor for categories class * * @param int/string $accountid='' account id or lid, default to current user * @param string $app_name='' app name defaults to current app */ function categories($accountid='',$app_name = '') { if (!$app_name) $app_name = $GLOBALS['egw_info']['flags']['currentapp']; $this->account_id = (int) get_account_id($accountid); $this->app_name = $app_name; $this->db = clone($GLOBALS['egw']->db); $this->db->set_app('phpgwapi'); $this->grants = $GLOBALS['egw']->acl->get_grants($app_name); } /** * return sql for predifined filters * * @param string $type eiterh subs, mains, appandmains, appandsubs, noglobal or noglobalapp * @return string with sql to add to the where clause */ function filter($type) { switch ($type) { case 'subs': $where = 'cat_parent != 0'; break; case 'mains': $where = 'cat_parent = 0'; break; case 'appandmains': $where = 'cat_appname='.$this->db->quote($this->app_name).' AND cat_parent = 0'; break; case 'appandsubs': $where = 'cat_appname='.$this->db->quote($this->app_name).' AND cat_parent != 0'; break; case 'noglobal': $where = 'cat_appname != '.$this->db->quote($this->app_name); break; case 'noglobalapp': $where = 'cat_appname='.$this->db->quote($this->app_name).' AND cat_owner != '.(int)$this->account_id; break; default: return False; } return $where; } /** * returns the total number of categories for app, subs or mains * * @param $for one of either 'app' 'subs' or 'mains' * @return integer count of categories */ function total($for = 'app') { switch($for) { case 'app': $where = array('cat_appname' => $this->app_name); break; case 'appandmains': $where = array('cat_appname' => $this->app_name,'cat_parent' => 0); break; case 'appandsubs': $where = array('cat_appname' => $this->app_name,'cat_parent != 0'); break; case 'subs': $where = 'cat_parent != 0'; break; case 'mains': $where = 'cat_parent = 0'; break; default: return False; } $this->db->select($this->table,'COUNT(*)',$where,__LINE__,__FILE__); return $this->db->next_record() ? $this->db->f(0) : 0; } /** * return_all_children * returns array with id's of all children from $cat_id and $cat_id itself! * * @param $cat_id integer cat-id to search for * @return array of cat-id's */ function return_all_children($cat_id) { $all_children = array($cat_id); $children = $this->return_array('subs',0,False,'','','',True,$cat_id,-1,'id'); if (is_array($children) && count($children)) { foreach($children as $child) { $all_children = array_merge($all_children,$this->return_all_children($child['id'])); } } //echo "
categories::return_all_children($cat_id)=(".implode(',',$all_children).")
\n"; return $all_children; } /** * return an array populated with categories * * @param string $type defaults to 'all' * @param int $start see $limit * @param boolean $limit if true limited query starting with $start * @param string $query='' query-pattern * @param string $sort='' sort order, either defaults to 'ASC' * @param string $order='' order by * @param boolean $globals includes the global egroupware categories or not * @param int $parent_id=0 if > 0 return subcats or $parent_id * @param int $lastmod = -1 if > 0 return only cats modified since then * @param string $column='' if column-name given only that column is returned, not the full array with all cat-data * @return array or cats */ function return_array($type,$start,$limit = True,$query = '',$sort = '',$order = '',$globals = False, $parent_id = '', $lastmod = -1, $column = '') { if ($globals) { $global_cats = " OR cat_appname='phpgw'"; } if (($filter = $this->filter($type))) $filter = ' AND '.$filter; if (!$sort) $sort = 'ASC'; if (!empty($order) && preg_match('/^[a-zA-Z_(), ]+$/',$order) && (empty($sort) || preg_match('/^(ASC|DESC|asc|desc)$/',$sort))) { $ordermethod = 'ORDER BY '.$order.' '.$sort; } else { $ordermethod = 'ORDER BY cat_main, cat_level, cat_name ASC'; } if ($this->account_id == '-1') { $grant_cats = ' cat_owner=-1 '; } else { if (is_array($this->grants)) { $grant_cats = ' (cat_owner=' . $this->account_id . " OR cat_owner=-1 OR cat_access='public' AND cat_owner IN (" . implode(',',array_keys($this->grants)) . ')) '; } else { $grant_cats = ' cat_owner=' . $this->account_id . ' OR cat_owner=-1 '; } } if ($parent_id > 0) { $parent_filter = ' AND cat_parent=' . (int)$parent_id; } if ($query) { $query = $this->db->quote('%'.$query.'%'); $querymethod = " AND (cat_name LIKE $query OR cat_description LIKE $query) "; } if($lastmod > 0) { $querymethod .= ' AND last_mod > ' . (int)$lastmod; } $where = '(cat_appname=' . $this->db->quote($this->app_name) . ' AND ' . $grant_cats . $global_cats . ')' . $parent_filter . $querymethod . $filter; $this->db->select($this->table,'COUNT(*)',$where,__LINE__,__FILE__); $this->total_records = $this->db->next_record() ? $this->db->f(0) : 0; if (!$this->total_records) return false; $this->db->select($this->table,'*',$where,__LINE__,__FILE__,$limit ? (int) $start : false,$ordermethod); while (($cat = $this->db->row(true,'cat_'))) { $cat['app_name'] = $cat['appname']; $this->cache_id2cat_data[$cat['id']] = $cat; if ($column) { $cats[] = array($column => isset($cat[$column]) ? $cat[$column] : $cat['id']); } else { $cats[] = $cat; } } return $cats; } /** * return a sorted array populated with categories * * @param int $start see $limit * @param boolean $limit if true limited query starting with $start * @param string $query='' query-pattern * @param string $sort='' sort order, either defaults to 'ASC' * @param string $order='' order by * @param boolean $globals includes the global egroupware categories or not * @param int $parent_id=0 if > 0 return subcats or $parent_id * @return array with cats */ function return_sorted_array($start,$limit=True,$query='',$sort='',$order='',$globals=False, $parent_id=0) { if ($globals) { $global_cats = " OR cat_appname='phpgw'"; } if (!$sort) $sort = 'ASC'; if (!empty($order) && preg_match('/^[a-zA-Z_, ]+$/',$order) && (empty($sort) || preg_match('/^(ASC|DESC|asc|desc)$/',$sort))) { $ordermethod = 'ORDER BY '.$order.' '.$sort; } else { $ordermethod = ' ORDER BY cat_name ASC'; } if ($this->account_id == '-1') { $grant_cats = " cat_owner='-1' "; } else { if (is_array($this->grants)) { $grant_cats = " (cat_owner='" . $this->account_id . "' OR cat_owner='-1' OR cat_access='public' AND cat_owner IN (" . implode(',',array_keys($this->grants)) . ")) "; } else { $grant_cats = " cat_owner='" . $this->account_id . "' OR cat_owner='-1' "; } } $parent_select = ' AND cat_parent=' . (int)$parent_id; if ($query) { $query = $this->db->quote('%'.$query.'%'); $querymethod = " AND (cat_name LIKE $query OR cat_description LIKE $query) "; } $where = '(cat_appname=' . $this->db->quote($this->app_name) . ' AND ' . $grant_cats . $global_cats . ')' . $querymethod; $parents = $cats = array(); $this->db->select($this->table,'*',$where . $parent_select,__LINE__,__FILE__,false,$ordermethod); while (($cat = $this->db->row(true,'cat_'))) { $cat['app_name'] = $cat['appname']; $this->cache_id2cat_data[$cat['id']] = $cat; $cats[] = $cat; $parents[] = $cat['id']; } while (count($parents)) { $sub_select = ' AND cat_parent IN (' . implode(',',$parents) . ')'; $parents = $children = array(); $this->db->select($this->table,'*',$where . $sub_select,__LINE__,__FILE__,false, $ordermethod); while (($cat = $this->db->row(true,'cat_'))) { $cat['app_name'] = $cat['appname']; $this->cache_id2cat_data[$cat['id']] = $cat; $parents[] = $cat['id']; $children[$cat['parent']][] = $cat; } // sort the cats into the mains if (count($children)) { $cats2 = $cats; $cats = array(); foreach($cats2 as $cat) { $cats[] = $cat; if (isset($children[$cat['id']])) { foreach($children[$cat['id']] as $child) { $cats[] = $child; } } } } } $this->total_records = count($cats); if ($limit) { return array_slice($cats,(int)$start,$GLOBALS['egw_info']['user']['preferences']['common']['maxmatchs']); } return $cats; } /** * read a single category * * We use a shared cache together with id2name * * @param int $id id of category * @return array/boolean array with one array of cat-data or false if cat not found */ function return_single($id = '') { if (!isset($this->cache_id2cat_data[$id])) { $this->db->select($this->table,'*',array('cat_id' => $id),__LINE__,__FILE__); if(($cat = $this->db->row(true,'cat_'))) { $cat['app_name'] = $cat['appname']; } $this->cache_id2cat_data[$id] = $cat; } return $this->cache_id2cat_data[$id] ? array($this->cache_id2cat_data[$id]) : false; } /** * return into a select box, list or other formats * * @param string/array $format string 'select' or 'list', or array with all params * @param string $type='' subs or mains * @param int/array $selected - cat_id or array with cat_id values * @param boolean $globals True or False, includes the global egroupware categories or not * @return string populated with categories */ function formatted_list($format,$type='',$selected = '',$globals = False,$site_link = 'site') { if(is_array($format)) { $type = ($format['type']?$format['type']:'all'); $selected = (isset($format['selected'])?$format['selected']:''); $self = (isset($format['self'])?$format['self']:''); $globals = (isset($format['globals'])?$format['globals']:True); $site_link = (isset($format['site_link'])?$format['site_link']:'site'); $format = $format['format'] ? $format['format'] : 'select'; } if (!is_array($selected)) { $selected = explode(',',$selected); } if ($type != 'all') { $cats = $this->return_array($type,0,False,'','','',$globals); } else { $cats = $this->return_sorted_array(0,False,'','','',$globals); } if (!$cats) return ''; if($self) { foreach($cats as $key => $cat) { if ($cat['id'] == $self) { unset($cats[$key]); } } } switch ($format) { case 'select': foreach($cats as $cat) { $s .= '' . "\n"; } break; case 'list': $space = ' '; $s = '' . $image_set . ' | ' . "\n"; $s .= '' . $space_set . '' . $GLOBALS['egw']->strip_html($cat['name']) . ' | ' . "\n" . '