egroupware_official/phpgwapi/inc/class.applications.inc.php

304 lines
8.8 KiB
PHP
Raw Normal View History

2001-01-19 05:10:45 +01:00
<?php
/**************************************************************************\
* phpGroupWare API - Applications manager functions *
* This file written by Mark Peters <skeeter@phpgroupware.org> *
* Copyright (C) 2001 Mark Peters *
* -------------------------------------------------------------------------*
* This library is part of the phpGroupWare API *
* http://www.phpgroupware.org/api *
* ------------------------------------------------------------------------ *
* 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$ */
2001-05-02 14:40:33 +02:00
/*!
@class applicatons
@abstract functions for managing and installing apps
@discussion Author: skeeter
*/
class applications
{
var $account_id;
var $data = Array();
var $db;
2001-01-19 05:10:45 +01:00
2001-05-02 14:40:33 +02:00
/**************************************************************************\
* Standard constructor for setting $this->account_id *
\**************************************************************************/
/*!
@function applications
@abstract standard constructor for setting $this->account_id
@param $account_id account id
*/
function applications($account_id = '')
{
2001-09-02 01:42:16 +02:00
$this->db = $GLOBALS['phpgw']->db;
2001-05-02 14:40:33 +02:00
$this->account_id = get_account_id($account_id);
}
/**************************************************************************\
* These are the standard $this->account_id specific functions *
\**************************************************************************/
2001-01-21 22:34:36 +01:00
2001-03-13 05:58:57 +01:00
/*!
@function read_repository
@abstract read from repository
@discussion private should only be called from withing this class
*/
2001-05-02 14:40:33 +02:00
function read_repository()
{
global $phpgw, $phpgw_info;
2001-09-02 01:42:16 +02:00
if (!isset($GLOBALS['phpgw_info']['apps']) ||
!is_array($GLOBALS['phpgw_info']['apps']))
2001-05-02 14:40:33 +02:00
{
$this->read_installed_apps();
}
$this->data = Array();
if($this->account_id == False) { return False; }
2001-09-02 01:42:16 +02:00
$apps = $GLOBALS['phpgw']->acl->get_user_applications($this->account_id);
reset($GLOBALS['phpgw_info']['apps']);
while ($app = each($GLOBALS['phpgw_info']['apps']))
2001-05-02 14:40:33 +02:00
{
// $check = $phpgw->acl->check('run',1,$app[0]);
$check = (isset($apps[$app[0]])?$apps[$app[0]]:False);
2001-05-02 14:40:33 +02:00
if ($check)
{
$this->data[$app[0]] = array(
2001-09-02 01:42:16 +02:00
'title' => $GLOBALS['phpgw_info']['apps'][$app[0]]['title'],
2001-05-02 14:40:33 +02:00
'name' => $app[0],
'enabled' => True,
'status' => $GLOBALS['phpgw_info']['apps'][$app[0]]['status'],
'id' => $GLOBALS['phpgw_info']['apps'][$app[0]]['id']
2001-05-02 14:40:33 +02:00
);
}
}
reset($this->data);
return $this->data;
}
2001-03-13 05:58:57 +01:00
/*!
@function read()
@abstract read from the repository
@discussion pubic function that is used to determine what apps a user has rights to
*/
2001-05-02 14:40:33 +02:00
function read()
{
if (count($this->data) == 0){ $this->read_repository(); }
reset($this->data);
return $this->data;
}
2001-03-13 05:58:57 +01:00
/*!
@function add
@abstract add an app to a user profile
@discussion
@param $apps array containing apps to add for a user
*/
2001-05-02 14:40:33 +02:00
function add($apps)
{
2001-09-02 01:42:16 +02:00
if(is_array($apps))
2001-05-02 14:40:33 +02:00
{
while($app = each($apps))
{
$this->data[$app[1]] = array(
2001-09-02 01:42:16 +02:00
'title' => $GLOBALS['phpgw_info']['apps'][$app[1]]['title'],
2001-05-02 14:40:33 +02:00
'name' => $app[1],
'enabled' => True,
'status' => $GLOBALS['phpgw_info']['apps'][$app[1]]['status'],
'id' => $GLOBALS['phpgw_info']['apps'][$app[1]]['id']
2001-05-02 14:40:33 +02:00
);
}
}
elseif(gettype($apps))
{
$this->data[$apps] = array(
2001-09-02 01:42:16 +02:00
'title' => $GLOBALS['phpgw_info']['apps'][$apps]['title'],
2001-05-02 14:40:33 +02:00
'name' => $apps,
'enabled' => True,
'status' => $GLOBALS['phpgw_info']['apps'][$apps]['status'],
'id' => $GLOBALS['phpgw_info']['apps'][$app[1]]['id']
2001-05-02 14:40:33 +02:00
);
}
reset($this->data);
return $this->data;
}
2001-03-13 05:58:57 +01:00
/*!
@function delete
@abstract delete an app from a user profile
@discussion
@param $appname appname to remove
*/
2001-05-02 14:40:33 +02:00
function delete($appname)
{
if($this->data[$appname])
{
unset($this->data[$appname]);
}
reset($this->data);
return $this->data;
}
2001-03-13 05:58:57 +01:00
/*!
@function update_data
@abstract update the array(?)
@discussion
@param $data update the repository array(?)
*/
2001-05-02 14:40:33 +02:00
function update_data($data)
{
reset($data);
$this->data = Array();
$this->data = $data;
reset($this->data);
return $this->data;
}
2001-03-13 05:58:57 +01:00
/*!
@function save_repository()
@abstract save the repository
@discussion
2001-05-02 14:40:33 +02:00
*/
function save_repository()
{
2001-09-02 01:42:16 +02:00
$num_rows = $GLOBALS['phpgw']->acl->delete_repository("%%", 'run', $this->account_id);
2001-05-02 14:40:33 +02:00
reset($this->data);
while($app = each($this->data))
{
if(!$this->is_system_enabled($app[0])) { continue; }
2001-09-02 01:42:16 +02:00
$GLOBALS['phpgw']->acl->add_repository($app[0],'run',$this->account_id,1);
2001-05-02 14:40:33 +02:00
}
reset($this->data);
return $this->data;
}
/**************************************************************************\
* These are the non-standard $this->account_id specific functions *
\**************************************************************************/
2001-05-02 14:40:33 +02:00
function app_perms()
{
if (count($this->data) == 0)
{
$this->read_repository();
}
@reset($this->data);
while (list ($key) = each ($this->data))
{
$app[] = $this->data[$key]['name'];
}
return $app;
}
2001-05-02 14:40:33 +02:00
function read_account_specific()
{
2001-09-02 01:42:16 +02:00
if (!is_array($GLOBALS['phpgw_info']['apps']))
2001-05-02 14:40:33 +02:00
{
$this->read_installed_apps();
}
2001-09-02 01:42:16 +02:00
$app_list = $GLOBALS['phpgw']->acl->get_app_list_for_id('run',1,$this->account_id);
2001-05-02 14:40:33 +02:00
if(!$app_list)
{
reset($this->data);
return $this->data;
}
@reset($app_list);
while ($app = each($app_list))
{
if ($this->is_system_enabled($app[1]))
{
$this->data[$app[1]] = array(
2001-09-02 01:42:16 +02:00
'title' => $GLOBALS['phpgw_info']['apps'][$app[1]]['title'],
2001-05-02 14:40:33 +02:00
'name' => $app[1],
'enabled' => True,
'status' => $GLOBALS['phpgw_info']['apps'][$app[1]]['status'],
'id' => $GLOBALS['phpgw_info']['apps'][$app[1]]['id']
2001-05-02 14:40:33 +02:00
);
}
}
reset($this->data);
return $this->data;
}
2001-01-19 05:10:45 +01:00
2001-05-02 14:40:33 +02:00
/**************************************************************************\
* These are the generic functions. Not specific to $this->account_id *
\**************************************************************************/
2001-01-21 02:26:23 +01:00
2001-03-13 05:58:57 +01:00
/*!
@function read_installed_apps()
@abstract populate array with a list of installed apps
*/
2001-05-02 14:40:33 +02:00
function read_installed_apps()
{
2001-09-02 01:42:16 +02:00
$this->db->query('select * from phpgw_applications where app_enabled != 0 order by app_order asc',__LINE__,__FILE__);
2001-05-02 14:40:33 +02:00
if($this->db->num_rows())
{
while ($this->db->next_record())
{
$GLOBALS['phpgw_info']['apps'][$this->db->f('app_name')] = Array(
'title' => $this->db->f('app_title'),
'name' => $this->db->f('app_name'),
2001-05-02 14:40:33 +02:00
'enabled' => True,
'status' => $this->db->f('app_enabled'),
'id' => intval($this->db->f('app_id')),
'order' => intval($this->db->f('app_order'))
2001-05-02 14:40:33 +02:00
);
}
}
}
2001-03-13 05:58:57 +01:00
/*!
@function is_system_enabled
@abstract check if an app is enabled
@param $appname name of the app to check for
*/
2001-05-02 14:40:33 +02:00
function is_system_enabled($appname)
{
2001-09-02 01:42:16 +02:00
if(!is_array($GLOBALS['phpgw_info']['apps']))
2001-05-02 14:40:33 +02:00
{
$this->read_installed_apps();
}
2001-09-02 01:42:16 +02:00
if ($GLOBALS['phpgw_info']['apps'][$appname]['enabled'])
2001-05-02 14:40:33 +02:00
{
return True;
}
else
{
return False;
}
}
function id2name($id)
{
@reset($GLOBALS['phpgw_info']['apps']);
while (list($appname,$app) = each($GLOBALS['phpgw_info']['apps']))
{
if(intval($app['id']) == intval($id))
{
@reset($GLOBALS['phpgw_info']['apps']);
return $appname;
}
}
@reset($GLOBALS['phpgw_info']['apps']);
return '';
}
function name2id($appname)
{
if(is_array($GLOBALS['phpgw_info']['apps'][$appname]))
{
return $GLOBALS['phpgw_info']['apps'][$appname]['id'];
}
else
{
return 0;
}
}
2001-05-02 14:40:33 +02:00
}
2001-02-08 07:05:39 +01:00
?>