1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
|
<?php
/*
This code is part of FusionDirectory (http://www.fusiondirectory.org/)
Copyright (C) 2003-2010 Cajus Pollmeier
Copyright (C) 2011-2013 FusionDirectory
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.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*/
class ScriptAttribute extends FileTextAreaAttribute
{
function renderFormInput ()
{
$this->setValue($this->inputValue($this->getValue()));
return parent::renderFormInput();
}
function applyPostValue ()
{
if (!$this->disabled && $this->isVisible()) {
parent::applyPostValue();
if (is_object($this->plugin)) {
$this->setValue($this->inputValue($this->getValue()));
}
}
}
function inputValue ($value)
{
if (is_object($this->plugin)) {
$value = $this->plugin->generateTemplate().preg_replace('/.*### END HEADER ###/s', '', $value);
}
return $value;
}
function computeLdapValue()
{
$value = parent::computeLdapValue();
if (preg_replace('/.*### END HEADER ###/s', '', $value) == '') {
return '';
} else {
return $value;
}
}
}
class application extends simplePlugin
{
var $objectclasses = array("top", "gosaApplication");
var $mainTab = TRUE;
/* Return plugin informations for acl handling */
static function plInfo()
{
return array(
'plShortName' => _('Generic'),
'plDescription' => _('Application generic'),
'plSelfModify' => FALSE,
'plObjectType' => array('application' => array(
'name' => _('Application'),
'filter' => 'objectClass=gosaApplication',
'ou' => get_ou('applicationRDN'),
'icon' => 'plugins/desktop-management/images/iconMimiApplications.png',
)),
'plProvidedAcls' => parent::generatePlProvidedAcls(self::getAttributesInfo())
);
}
/*!
* \brief The main function : information about attributes
*/
static function getAttributesInfo ()
{
return array(
'main' => array(
'name' => _('Properties'),
'attrs' => array(
new HostNameAttribute (
_('Application name'), _('The name of this application'),
'cn', TRUE
),
new StringAttribute (
_('Display name'), _('The displayed name for this application'),
'gosaApplicationName', FALSE
),
new StringAttribute (
_('Execute'), _('The application to be executed'),
'gosaApplicationExecute', TRUE
),
new StringAttribute (
_('Description'), _('A short description of this application'),
'description', FALSE
),
new BaseSelectorAttribute(get_ou('applicationRDN')),
)
),
'icon' => array(
'name' => _('Icon'),
'attrs' => array(
new ImageAttribute (
'', _('The icon for this application'),
'gosaApplicationIcon', FALSE,
48, 48, 'png', TRUE
),
)
),
'options' => array(
'name' => _('Options'),
'attrs' => array(
new BooleanAttribute(
_('Only executable for member'), _('Only executable by the memebers of the group'),
'flag_group', FALSE, FALSE, '',
'G', ''
),
new BooleanAttribute(
_('Replace user configuration on startup'), _('Replace the user configuration on startup'),
'flag_overwrite', FALSE, FALSE, '',
'O', ''
),
new BooleanAttribute(
_('Place icon on members desktop'), _('Put an icon on the user desktop'),
'flag_desktop', FALSE, FALSE, '',
'D', ''
),
new BooleanAttribute(
_('Place entry in members startmenu'), _('Put an entry in the startup menu'),
'flag_menu', FALSE, FALSE, '',
'M', ''
),
new BooleanAttribute(
_('Place entry in members launch bar'), _('Put an entry in the startup menu'),
'flag_launchbar', FALSE, FALSE, '',
'L', ''
),
new FlagsAttribute(
'gosaApplicationFlags',
array('flag_group','flag_overwrite','flag_desktop','flag_menu','flag_launchbar')
),
)
),
'scripton' => array(
'name' => _('Script'),
'attrs' => array(
new ScriptAttribute(
'', _('Script to run at logon'),
'gotoLogonScript'
),
)
),
'scriptoff' => array(
'name' => _('Log off script'),
'attrs' => array(
new ScriptAttribute(
'', _('Script to run at logoff'),
'gotoLogoffScript'
),
)
),
);
}
function __construct (&$config, $dn = NULL, $object = NULL)
{
parent::__construct($config, $dn, $object);
$this->attributesAccess['cn']->setUnique(TRUE);
$filename = "./plugins/desktop-management/images/default_icon.png";
if (file_exists($filename)) {
$fd = fopen ($filename, "rb");
$this->attributesAccess['gosaApplicationIcon']->setDefaultValue(fread ($fd, filesize ($filename)));
fclose ($fd);
if (empty($this->gosaApplicationIcon)) {
$this->attributesAccess['gosaApplicationIcon']->resetToDefault();
}
}
}
public function compute_dn()
{
return 'cn='.$this->attributesAccess['cn']->getValue().','.get_ou('applicationRDN').$this->base;
}
function generateTemplate()
{
if (!isset($this->parent->by_object['applicationParameters'])) {
return "";
}
$str = "# This code is part of FusionDirectory http://www.fusiondirectory.org/\n#\n";
$values = array();
$names = array();
if ($this->parent->by_object['applicationParameters']->is_account) {
$names = $this->parent->by_object['applicationParameters']->option_name;
$values = $this->parent->by_object['applicationParameters']->option_value;
}
if (count($names)) {
$str .= "# This plugin handles these environment variables:\n";
} else {
$str .= "# This plugin handles no environment variables.\n";
}
foreach ($names as $index => $name) {
// Fix length
for ($i = strlen($name); $i < 30; $i++) {
$name = $name." ";
}
if ((isset($values[$index])) && (!empty($values[$index]))) {
$str .= "# ".$name."\t(e.g. '".$values[$index]."')\n";
} else {
$str .= "# ".$name."\t("._("no example").")\n";
}
}
$str .= "#\n".
"# Don't remove the following tag, it is used for header update.\n".
"### END HEADER ###";
return $str;
}
function remove_from_parent()
{
if (!$this->initially_was_account) {
return;
}
if ($this->acl_is_removeable()) {
/* Parse release out of object dn */
$release = preg_replace("/".preg_quote(get_ou('applicationRDN').$this->base, '/')."$/i", "", $this->dn);
$release = preg_replace("/^cn=[^,]+,/", "", $release);
/* Get a list of all groups
*/
$groups = array();
$ldap = $this->config->get_ldap_link();
$ldap->cd($this->config->current['BASE']);
$ldap->search("(objectClass=posixGroup)", array("dn"));
while ($attrs = $ldap->fetch()) {
$groups[$attrs['dn']] = array();
}
/* Check if there are groups, useing this application
*/
$found = array();
foreach ($groups as $group => $data) {
$ldap->cd($release.$group);
$ldap->search("(objectClass=gotoMenuEntry)", array("dn"));
while ($attrs = $ldap->fetch()) {
$info = preg_replace("/".preg_quote($release.$group, '/')."$/", "", $attrs['dn']);
if (preg_match("/^cn=".$this->cn."/", $info) && !preg_match("/ou=[^,]+,/", $info)) {
$found[] = $attrs['dn'];
}
}
}
/* Create an error message an skip remove, if
this application is still in use.
*/
if (count($found)) {
msg_dialog::display(_("Error"), sprintf(_("Cannot remove application - it is still in use by these objects: %s"), "<br>".msgPool::buildList($found)), ERROR_DIALOG);
return FALSE;
}
parent::remove_from_parent();
/* Delete references to object groups */
$ldap->cd ($this->config->current['BASE']);
$ldap->search ("(&(objectClass=gosaGroupOfNames)(member=".LDAP::prepare4filter($this->dn)."))", array("cn"));
while ($ldap->fetch()) {
$og = new ogroup($this->config, $ldap->getDN());
unset($og->member[$this->dn]);
$og->save();
if (!$ldap->success()) {
msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, 0, get_class()), LDAP_ERROR);
}
}
}
}
}
?>
|