phpldapadmin/htdocs/add_attr_form.php

195 lines
5.1 KiB
PHP
Raw Normal View History

2009-06-30 09:22:30 +00:00
<?php
2009-06-30 10:41:18 +00:00
// $Header: /cvsroot/phpldapadmin/phpldapadmin/htdocs/add_attr_form.php,v 1.15 2006/10/28 07:22:39 wurley Exp $
2009-06-30 09:22:30 +00:00
2009-06-30 09:29:51 +00:00
/**
2009-06-30 09:22:30 +00:00
* Displays a form for adding an attribute/value to an LDAP entry.
*
2009-06-30 09:29:51 +00:00
* Variables that come in via common.php
* - server_id
2009-06-30 09:22:30 +00:00
* Variables that come in as GET vars:
* - dn (rawurlencoded)
2009-06-30 09:29:51 +00:00
*
* @package phpLDAPadmin
*/
/**
2009-06-30 09:22:30 +00:00
*/
require './common.php';
2009-06-30 10:41:18 +00:00
if ($ldapserver->isReadOnly())
pla_error(_('You cannot perform updates while server is in read-only mode'));
if (! $ldapserver->haveAuthInfo())
pla_error(_('Not enough information to login to server. Please check your configuration.'));
2009-06-30 09:29:51 +00:00
2009-06-30 09:22:30 +00:00
$dn = $_GET['dn'];
2009-06-30 10:41:18 +00:00
$encoded_dn = rawurlencode($dn);
$rdn = get_rdn($dn);
2009-06-30 09:22:30 +00:00
$friendly_attrs = process_friendly_attr_table();
2009-06-30 10:41:18 +00:00
include './header.php';
2009-06-30 09:22:30 +00:00
2009-06-30 10:41:18 +00:00
echo '<body>';
2009-06-30 09:22:30 +00:00
2009-06-30 10:41:18 +00:00
printf('<h3 class="title">%s <b>%s</b></h3>',_('Add new attribute'),htmlspecialchars($rdn));
printf('<h3 class="subtitle">%s: <b>%s</b> &nbsp;&nbsp;&nbsp; %s: <b>%s</b></h3>',
_('Server'),$ldapserver->name,_('Distinguished Name'),htmlspecialchars($dn));
2009-06-30 09:22:30 +00:00
2009-06-30 10:41:18 +00:00
$attrs = $ldapserver->getDNAttrs($dn);
2009-06-30 09:22:30 +00:00
2009-06-30 10:26:08 +00:00
$oclasses = $ldapserver->getDNAttr($dn,'objectClass');
2009-06-30 10:41:18 +00:00
if (! is_array($oclasses))
$oclasses = array($oclasses);
2009-06-30 09:29:51 +00:00
2009-06-30 09:22:30 +00:00
$avail_attrs = array();
2009-06-30 09:29:51 +00:00
2009-06-30 10:41:18 +00:00
if (array_search('extensibleObject',$oclasses) !== FALSE) {
$schema_attrs = $ldapserver->SchemaAttributes();
2009-06-30 09:29:51 +00:00
2009-06-30 10:41:18 +00:00
foreach ($schema_attrs as $attr)
$avail_attrs[]=$attr->getName();
} else {
$schema_oclasses = $ldapserver->SchemaObjectClasses($dn);
foreach ($oclasses as $oclass) {
$schema_oclass = $ldapserver->getSchemaObjectClass($oclass,$dn);
if ($schema_oclass && strcasecmp('objectclass',get_class($schema_oclass)) == 0)
$avail_attrs = array_merge($schema_oclass->getMustAttrNames($schema_oclasses),
$schema_oclass->getMayAttrNames($schema_oclasses),
$avail_attrs);
}
2009-06-30 09:22:30 +00:00
}
2009-06-30 10:41:18 +00:00
$avail_attrs = array_unique($avail_attrs);
$avail_attrs = array_filter($avail_attrs,'not_an_attr');
sort($avail_attrs);
2009-06-30 09:22:30 +00:00
$avail_binary_attrs = array();
2009-06-30 10:41:18 +00:00
foreach ($avail_attrs as $i => $attr) {
2009-06-30 09:29:51 +00:00
2009-06-30 10:26:08 +00:00
if ($ldapserver->isAttrBinary($attr)) {
2009-06-30 09:22:30 +00:00
$avail_binary_attrs[] = $attr;
2009-06-30 10:41:18 +00:00
unset($avail_attrs[$i]);
2009-06-30 09:22:30 +00:00
}
}
2009-06-30 10:41:18 +00:00
echo '<center>';
2009-06-30 09:29:51 +00:00
2009-06-30 10:41:18 +00:00
if (is_array($avail_attrs) && count($avail_attrs) > 0) {
echo '<br />';
echo _('Add new attribute');
echo '<br />';
echo '<br />';
2009-06-30 09:29:51 +00:00
2009-06-30 10:41:18 +00:00
echo '<form action="add_attr.php" method="post">';
printf('<input type="hidden" name="server_id" value="%s" />',$ldapserver->server_id);
printf('<input type="hidden" name="dn" value="%s" />',htmlspecialchars($dn));
2009-06-30 09:22:30 +00:00
2009-06-30 10:41:18 +00:00
echo '<select name="attr">';
2009-06-30 09:22:30 +00:00
2009-06-30 10:41:18 +00:00
$attr_select_html = '';
usort($avail_attrs,'sortAttrs');
2009-06-30 09:22:30 +00:00
2009-06-30 10:41:18 +00:00
foreach ($avail_attrs as $a) {
2009-06-30 09:22:30 +00:00
2009-06-30 10:41:18 +00:00
# is there a user-friendly translation available for this attribute?
if (isset($friendly_attrs[strtolower($a)])) {
$attr_display = sprintf('%s (%s)',
htmlspecialchars($friendly_attrs[strtolower($a)]),
htmlspecialchars($a));
2009-06-30 09:29:51 +00:00
} else {
2009-06-30 10:41:18 +00:00
$attr_display = htmlspecialchars($a);
2009-06-30 09:29:51 +00:00
}
2009-06-30 10:41:18 +00:00
printf('<option value="%s">%s</option>',htmlspecialchars($a),$attr_display);
}
2009-06-30 09:29:51 +00:00
2009-06-30 10:41:18 +00:00
echo '</select>';
2009-06-30 09:29:51 +00:00
2009-06-30 10:41:18 +00:00
echo '<input type="text" name="val" size="20" />';
printf('<input type="submit" name="submit" value="%s" class="update_dn" />',_('Add'));
echo '</form>';
2009-06-30 09:29:51 +00:00
2009-06-30 10:41:18 +00:00
} else {
echo '<br />';
printf('<small>(%s)</small>',_('no new attributes available for this entry'));
}
2009-06-30 09:29:51 +00:00
2009-06-30 10:41:18 +00:00
if (count($avail_binary_attrs) > 0) {
echo '<br />';
echo _('Add new binary attribute');
echo '<br />';
echo '<br />';
2009-06-30 09:29:51 +00:00
2009-06-30 10:41:18 +00:00
echo '<!-- Form to add a new BINARY attribute to this entry -->';
echo '<form action="add_attr.php" method="post" enctype="multipart/form-data">';
printf('<input type="hidden" name="server_id" value="%s" />',$ldapserver->server_id);
printf('<input type="hidden" name="dn" value="%s" />',$dn);
echo '<input type="hidden" name="binary" value="true" />';
2009-06-30 09:29:51 +00:00
2009-06-30 10:41:18 +00:00
echo '<select name="attr">';
2009-06-30 09:29:51 +00:00
2009-06-30 10:41:18 +00:00
$attr_select_html = '';
usort($avail_binary_attrs,'sortAttrs');
2009-06-30 09:29:51 +00:00
2009-06-30 10:41:18 +00:00
foreach ($avail_binary_attrs as $a) {
2009-06-30 09:29:51 +00:00
2009-06-30 10:41:18 +00:00
# is there a user-friendly translation available for this attribute?
if (isset($friendly_attrs[strtolower($a)])) {
$attr_display = sprintf('%s (%s)',
htmlspecialchars($friendly_attrs[strtolower($a)]),
htmlspecialchars($a));
2009-06-30 09:29:51 +00:00
} else {
2009-06-30 10:41:18 +00:00
$attr_display = htmlspecialchars($a);
2009-06-30 09:29:51 +00:00
}
2009-06-30 10:41:18 +00:00
printf('<option value="%s">%s</option>',htmlspecialchars($a),$attr_display);
}
2009-06-30 09:29:51 +00:00
2009-06-30 10:41:18 +00:00
echo '</select>';
2009-06-30 09:29:51 +00:00
2009-06-30 10:41:18 +00:00
echo '<input type="file" name="val" size="20" />';
printf('<input type="submit" name="submit" value="%s" class="update_dn" />',_('Add'));
2009-06-30 09:29:51 +00:00
2009-06-30 10:41:18 +00:00
if (! ini_get('file_uploads'))
printf('<br /><small><b>%s</b></small><br />',
_('Your PHP configuration has disabled file uploads. Please check php.ini before proceeding.'));
2009-06-30 09:29:51 +00:00
else
2009-06-30 10:41:18 +00:00
printf('<br /><small><b>%s: %s</b></small><br />',_('Maximum file size'),ini_get('upload_max_filesize'));
2009-06-30 09:29:51 +00:00
2009-06-30 10:41:18 +00:00
echo '</form>';
2009-06-30 09:29:51 +00:00
2009-06-30 10:41:18 +00:00
} else {
echo '<br />';
printf('<small>(%s)</small>',_('no new binary attributes available for this entry'));
}
2009-06-30 09:22:30 +00:00
2009-06-30 10:41:18 +00:00
echo '</center>';
echo '</body>';
echo '</html>';
2009-06-30 09:22:30 +00:00
/**
* Given an attribute $x, this returns true if it is NOT already specified
* in the current entry, returns false otherwise.
2009-06-30 09:29:51 +00:00
*
* @param attr $x
* @return bool
* @ignore
2009-06-30 09:22:30 +00:00
*/
2009-06-30 10:41:18 +00:00
function not_an_attr($x) {
2009-06-30 09:22:30 +00:00
global $attrs;
2009-06-30 09:29:51 +00:00
2009-06-30 10:41:18 +00:00
foreach($attrs as $attr => $values)
if (strcasecmp($attr,$x) == 0)
2009-06-30 09:22:30 +00:00
return false;
2009-06-30 10:41:18 +00:00
2009-06-30 09:22:30 +00:00
return true;
}
?>