2001-01-19 05:10:45 +01:00
|
|
|
<?php
|
2008-03-15 16:52:27 +01:00
|
|
|
/**
|
2016-04-26 16:38:08 +02:00
|
|
|
* EGroupware API - Applications
|
2008-08-18 11:00:19 +02:00
|
|
|
*
|
2008-03-15 16:52:27 +01:00
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @author Mark Peters <skeeter@phpgroupware.org>
|
|
|
|
* Copyright (C) 2001 Mark Peters
|
|
|
|
* @license http://opensource.org/licenses/lgpl-license.php LGPL - GNU Lesser General Public License
|
|
|
|
* @package api
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
|
|
|
|
2016-04-26 16:38:08 +02:00
|
|
|
use EGroupware\Api;
|
|
|
|
|
2008-03-15 16:52:27 +01:00
|
|
|
/**
|
|
|
|
* functions for managing and installing apps
|
|
|
|
*
|
|
|
|
* Author: skeeter
|
2016-04-26 16:38:08 +02:00
|
|
|
*
|
|
|
|
* @deprecated use just methods from Api\Egw\Applications
|
2008-03-15 16:52:27 +01:00
|
|
|
*/
|
2016-04-26 16:38:08 +02:00
|
|
|
class applications extends Api\Egw\Applications
|
2008-03-15 16:52:27 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* read from the repository
|
|
|
|
*
|
|
|
|
* pubic function that is used to determine what apps a user has rights to
|
|
|
|
*/
|
|
|
|
function read()
|
|
|
|
{
|
|
|
|
if (!count($this->data))
|
2001-05-02 14:40:33 +02:00
|
|
|
{
|
2008-03-15 16:52:27 +01:00
|
|
|
$this->read_repository();
|
2001-05-02 14:40:33 +02:00
|
|
|
}
|
2008-03-15 16:52:27 +01:00
|
|
|
return $this->data;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* add an app to a user profile
|
|
|
|
*
|
|
|
|
* @discussion
|
|
|
|
* @param $apps array containing apps to add for a user
|
|
|
|
*/
|
|
|
|
function add($apps)
|
|
|
|
{
|
|
|
|
if(is_array($apps))
|
2001-05-02 14:40:33 +02:00
|
|
|
{
|
2008-03-15 16:52:27 +01:00
|
|
|
foreach($apps as $app)
|
2001-05-02 14:40:33 +02:00
|
|
|
{
|
2008-08-18 11:00:19 +02:00
|
|
|
$this->data[$app] =& $GLOBALS['egw_info']['apps'][$app];
|
2001-05-02 14:40:33 +02:00
|
|
|
}
|
|
|
|
}
|
2008-03-15 16:52:27 +01:00
|
|
|
elseif(gettype($apps))
|
2001-05-02 14:40:33 +02:00
|
|
|
{
|
2008-08-18 11:00:19 +02:00
|
|
|
$this->data[$apps] =& $GLOBALS['egw_info']['apps'][$apps];
|
2001-05-02 14:40:33 +02:00
|
|
|
}
|
2008-03-15 16:52:27 +01:00
|
|
|
return $this->data;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* delete an app from a user profile
|
|
|
|
*
|
|
|
|
* @discussion
|
|
|
|
* @param $appname appname to remove
|
|
|
|
*/
|
|
|
|
function delete($appname)
|
|
|
|
{
|
|
|
|
if($this->data[$appname])
|
2001-05-02 14:40:33 +02:00
|
|
|
{
|
2008-03-15 16:52:27 +01:00
|
|
|
unset($this->data[$appname]);
|
2001-05-02 14:40:33 +02:00
|
|
|
}
|
2008-03-15 16:52:27 +01:00
|
|
|
return $this->data;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* update the array(?)
|
|
|
|
*
|
|
|
|
* @discussion
|
|
|
|
* @param $data update the repository array(?)
|
|
|
|
*/
|
|
|
|
function update_data($data)
|
|
|
|
{
|
|
|
|
$this->data = $data;
|
|
|
|
return $this->data;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* save the repository
|
|
|
|
*
|
|
|
|
* @discussion
|
|
|
|
*/
|
|
|
|
function save_repository()
|
|
|
|
{
|
2016-03-31 21:41:39 +02:00
|
|
|
$GLOBALS['egw']->acl->delete_repository("%%", 'run', $this->account_id);
|
2016-04-26 16:38:08 +02:00
|
|
|
foreach(array_keys($this->data) as $app)
|
2001-05-02 14:40:33 +02:00
|
|
|
{
|
2008-03-15 16:52:27 +01:00
|
|
|
if(!$this->is_system_enabled($app))
|
2001-05-02 14:40:33 +02:00
|
|
|
{
|
2008-03-15 16:52:27 +01:00
|
|
|
continue;
|
2001-05-02 14:40:33 +02:00
|
|
|
}
|
2008-03-15 16:52:27 +01:00
|
|
|
$GLOBALS['egw']->acl->add_repository($app,'run',$this->account_id,1);
|
2001-05-02 14:40:33 +02:00
|
|
|
}
|
2008-03-15 16:52:27 +01:00
|
|
|
return $this->data;
|
|
|
|
}
|
2001-05-02 14:40:33 +02:00
|
|
|
|
2008-03-15 16:52:27 +01:00
|
|
|
/**************************************************************************\
|
|
|
|
* These are the non-standard $this->account_id specific functions *
|
|
|
|
\**************************************************************************/
|
2001-02-03 11:48:41 +01:00
|
|
|
|
2008-03-15 16:52:27 +01:00
|
|
|
function app_perms()
|
|
|
|
{
|
|
|
|
if (!count($this->data))
|
2001-05-02 14:40:33 +02:00
|
|
|
{
|
2008-03-15 16:52:27 +01:00
|
|
|
$this->read_repository();
|
2001-05-02 14:40:33 +02:00
|
|
|
}
|
2016-04-26 16:38:08 +02:00
|
|
|
foreach (array_keys($this->data) as $app)
|
2008-03-15 16:52:27 +01:00
|
|
|
{
|
|
|
|
$apps[] = $this->data[$app]['name'];
|
|
|
|
}
|
|
|
|
return $apps;
|
|
|
|
}
|
2001-02-03 11:48:41 +01:00
|
|
|
|
2008-03-15 16:52:27 +01:00
|
|
|
function read_account_specific()
|
|
|
|
{
|
|
|
|
if (!is_array($GLOBALS['egw_info']['apps']))
|
2001-05-02 14:40:33 +02:00
|
|
|
{
|
2008-03-15 16:52:27 +01:00
|
|
|
$this->read_installed_apps();
|
|
|
|
}
|
2016-03-31 21:41:39 +02:00
|
|
|
if (($app_list = $GLOBALS['egw']->acl->get_app_list_for_id('run',1,$this->account_id)))
|
2008-03-15 16:52:27 +01:00
|
|
|
{
|
|
|
|
foreach($app_list as $app)
|
2001-05-02 14:40:33 +02:00
|
|
|
{
|
2008-03-15 16:52:27 +01:00
|
|
|
if ($this->is_system_enabled($app))
|
2001-05-02 14:40:33 +02:00
|
|
|
{
|
2008-08-18 11:00:19 +02:00
|
|
|
$this->data[$app] =& $GLOBALS['egw_info']['apps'][$app];
|
2001-05-02 14:40:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-03-15 16:52:27 +01:00
|
|
|
return $this->data;
|
|
|
|
}
|
2001-01-19 05:10:45 +01:00
|
|
|
|
2008-03-15 16:52:27 +01:00
|
|
|
/**
|
|
|
|
* check if an app is enabled
|
|
|
|
*
|
|
|
|
* @param $appname name of the app to check for
|
|
|
|
*/
|
|
|
|
function is_system_enabled($appname)
|
|
|
|
{
|
|
|
|
if(!is_array($GLOBALS['egw_info']['apps']))
|
2001-05-02 14:40:33 +02:00
|
|
|
{
|
2008-03-15 16:52:27 +01:00
|
|
|
$this->read_installed_apps();
|
2001-05-02 14:40:33 +02:00
|
|
|
}
|
2008-03-15 16:52:27 +01:00
|
|
|
if ($GLOBALS['egw_info']['apps'][$appname]['enabled'])
|
|
|
|
{
|
|
|
|
return True;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return False;
|
|
|
|
}
|
|
|
|
}
|
2003-08-28 16:31:11 +02:00
|
|
|
|
2008-03-15 16:52:27 +01:00
|
|
|
function id2name($id)
|
|
|
|
{
|
|
|
|
foreach($GLOBALS['egw_info']['apps'] as $appname => $app)
|
2001-10-21 12:49:29 +02:00
|
|
|
{
|
2008-03-15 16:52:27 +01:00
|
|
|
if((int)$app['id'] == (int)$id)
|
2001-10-21 12:49:29 +02:00
|
|
|
{
|
2008-03-15 16:52:27 +01:00
|
|
|
return $appname;
|
2001-10-21 12:49:29 +02:00
|
|
|
}
|
|
|
|
}
|
2008-03-15 16:52:27 +01:00
|
|
|
return '';
|
|
|
|
}
|
2004-02-03 07:25:36 +01:00
|
|
|
|
2008-03-15 16:52:27 +01:00
|
|
|
function name2id($appname)
|
|
|
|
{
|
|
|
|
if(is_array($GLOBALS['egw_info']['apps'][$appname]))
|
2001-10-21 12:49:29 +02:00
|
|
|
{
|
2008-03-15 16:52:27 +01:00
|
|
|
return $GLOBALS['egw_info']['apps'][$appname]['id'];
|
2001-10-21 12:49:29 +02:00
|
|
|
}
|
2008-03-15 16:52:27 +01:00
|
|
|
return 0;
|
2001-05-02 14:40:33 +02:00
|
|
|
}
|
2008-03-15 16:52:27 +01:00
|
|
|
}
|