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
|
<?php
/*
This code is part of FusionDirectory (http://www.fusiondirectory.org/)
Copyright (C) 2012-2016 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.
*/
/*! \brief This class allow to handle easily a Boolean LDAP attribute
*
*/
class BooleanAttribute extends Attribute
{
public $trueValue;
public $falseValue;
/*! \brief The constructor of BooleanAttribute
*
* \param string $label The label to show for this attribute
* \param string $description A more detailed description for the attribute
* \param string $ldapName The name of the attribute in the LDAP (If it's not in the ldap, still provide a unique name)
* \param boolean $required Is this attribute mandatory or not
* \param mixed $defaultValue The default value for this attribute
* \param string $acl The name of the acl for this attribute if he does not use its own. (Leave empty if he should use its own like most attributes do)
* \param mixed $trueValue The value to store in LDAP when this boolean is TRUE. (For weird schemas that uses string or integer to store a boolean)
* \param mixed $falseValue The value to store in LDAP when this boolean is FALSE. (For weird schemas that uses string or integer to store a boolean)
*/
function __construct ($label, $description, $ldapName, $required = FALSE, $defaultValue = FALSE, $acl = "", $trueValue = "TRUE", $falseValue = "FALSE")
{
parent::__construct($label, $description, $ldapName, $required, $defaultValue, $acl);
$this->trueValue = $trueValue;
$this->falseValue = $falseValue;
}
function inputValue ($value)
{
return ($value == $this->trueValue);
}
function loadPostValue ()
{
if ($this->isVisible()) {
$this->setPostValue(isset($_POST[$this->getHtmlId()]));
}
}
function computeLdapValue ()
{
return ($this->value?$this->trueValue:$this->falseValue);
}
function renderFormInput ()
{
$id = $this->getHtmlId();
$attributes = ($this->value?array('checked' => 'checked'): array());
if ($this->submitForm) {
$js = 'document.mainform.submit();';
$attributes['onChange'] = 'javascript:'.htmlentities($js, ENT_COMPAT, 'UTF-8');
} elseif (!empty($this->managedAttributes)) {
$js = $this->managedAttributesJS();
$attributes['onChange'] = 'javascript:'.htmlentities($js, ENT_COMPAT, 'UTF-8');
}
$display = $this->renderInputField('checkbox', $id, $attributes);
return $this->renderAcl($display);
}
protected function managedAttributesJS ()
{
$js = '';
$id = $this->getHtmlId();
foreach ($this->managedAttributes as $array) {
foreach ($array as $value => $attributes) {
if (isset($this->managedAttributesMultipleValues[$value])) {
trigger_error('Multiple values are not available for boolean attributes');
} else {
$js .= 'disableAttributes = (document.getElementById('.json_encode($id).').checked == '.($value?'true':'false').');'."\n";
}
foreach ($attributes as $attribute) {
foreach ($this->plugin->attributesAccess[$attribute]->htmlIds() as $htmlId) {
$js .= 'if (document.getElementById('.json_encode($htmlId).')) { document.getElementById('.json_encode($htmlId).').disabled = disableAttributes; }'."\n";
}
}
}
}
return $js;
}
}
/*! \brief This class allow to handle easily a Boolean LDAP attribute that triggers a set of objectclasses
*
*/
class ObjectClassBooleanAttribute extends BooleanAttribute
{
private $objectclasses;
/*! \brief The constructor of ObjectClassBooleanAttribute
*
* \param string $label The label to show for this attribute
* \param string $description A more detailed description for the attribute
* \param string $ldapName The name of the attribute in the LDAP (If it's not in the ldap, still provide a unique name)
* \param boolean $required Is this attribute mandatory or not
* \param mixed $objectclasses objectClass or array of objectClasses that this boolean should add/remove depending on its state
* \param mixed $defaultValue The default value for this attribute
* \param string $acl The name of the acl for this attribute if he does not use its own. (Leave empty if he should use its own like most attributes do)
*/
function __construct ($label, $description, $ldapName, $required, $objectclasses, $defaultValue = FALSE, $acl = "")
{
if (is_array($objectclasses)) {
$this->objectclasses = $objectclasses;
} else {
$this->objectclasses = array($objectclasses);
}
parent::__construct($label, $description, $ldapName, $required, $defaultValue, $acl);
$this->setInLdap(FALSE);
}
function loadValue ($attrs)
{
if (isset($attrs['objectClass'])) {
$missing_oc = array_udiff($this->objectclasses, $attrs['objectClass'], 'strcasecmp');
$this->setValue(empty($missing_oc));
} else {
$this->resetToDefault();
}
$this->initialValue = $this->value;
}
function fillLdapValue (&$attrs)
{
if ($this->getValue()) {
$attrs['objectClass'] = array_merge_unique($this->objectclasses, $attrs['objectClass']);
} else {
$attrs['objectClass'] = array_remove_entries($this->objectclasses, $attrs['objectClass']);
}
}
}
|