phpldapadmin/templates/creation/custom.php

302 lines
11 KiB
PHP
Raw Normal View History

2009-06-30 08:05:37 +00:00
<?php
2009-06-30 09:40:37 +00:00
// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/creation/custom.php,v 1.41.2.2 2005/10/22 04:49:28 wurley Exp $
2009-06-30 08:05:37 +00:00
// Common to all templates
2009-06-30 08:07:14 +00:00
$rdn = isset( $_POST['rdn'] ) ? $_POST['rdn'] : null;
$container = $_POST['container'];
2009-06-30 08:05:37 +00:00
$server_id = $_POST['server_id'];
2009-06-30 09:29:51 +00:00
$ldapserver = $ldapservers->Instance($server_id);
2009-06-30 08:05:37 +00:00
// Unique to this template
2009-06-30 08:10:17 +00:00
$step = isset( $_POST['step'] ) ? $_POST['step'] : 1;
2009-06-30 08:05:37 +00:00
2009-06-30 09:40:37 +00:00
if( ! $ldapserver->haveAuthInfo())
pla_error( $lang['not_enough_login_info'] );
2009-06-30 08:05:37 +00:00
if( $step == 1 )
{
2009-06-30 09:40:37 +00:00
$oclasses = $ldapserver->SchemaObjectClasses();
2009-06-30 09:22:30 +00:00
if( ! $oclasses || ! is_array( $oclasses ) )
pla_error( "Unable to retrieve the schema from your LDAP server. Cannot continue with creation." );
2009-06-30 08:05:37 +00:00
?>
2009-06-30 09:22:30 +00:00
<h4><?php echo $lang['create_step1']; ?></h4>
2009-06-30 08:05:37 +00:00
<form action="creation_template.php" method="post" name="creation_form">
<input type="hidden" name="step" value="2" />
<input type="hidden" name="server_id" value="<?php echo $server_id; ?>" />
2009-06-30 08:09:20 +00:00
<input type="hidden" name="template" value="<?php echo htmlspecialchars( $_POST['template'] ); ?>" />
2009-06-30 08:05:37 +00:00
<table class="create">
<tr>
2009-06-30 09:22:30 +00:00
<td class="heading"><acronym title="<?php echo $lang['relative_distinguished_name']; ?>"><?php echo $lang['rdn']; ?></acronym>:</td>
<td><input type="text" name="rdn" value="<?php echo htmlspecialchars( $rdn ); ?>" size="30" /> <?php echo $lang['rdn_example']; ?></td>
2009-06-30 08:05:37 +00:00
</tr>
<tr>
2009-06-30 09:22:30 +00:00
<td class="heading"><?php echo $lang['container']; ?></td>
2009-06-30 08:07:14 +00:00
<td><input type="text" name="container" size="40" value="<?php echo htmlspecialchars( $container ); ?>" />
2009-06-30 08:05:37 +00:00
<?php draw_chooser_link( 'creation_form.container' ); ?></td>
</tr>
<tr>
2009-06-30 09:22:30 +00:00
<td class="heading"><?php echo $lang['objectclasses']; ?></td>
2009-06-30 08:05:37 +00:00
<td>
2009-06-30 09:22:30 +00:00
<select name="object_classes[]" multiple="true" size="15">
<?php foreach( $oclasses as $name => $oclass ) {
if( 0 == strcasecmp( "top", $name ) ) continue; ?>
<option <?php if( $oclass->getType() == 'structural' ) echo 'style="font-weight: bold" '; ?>
value="<?php echo htmlspecialchars($oclass->getName()); ?>">
2009-06-30 08:09:20 +00:00
<?php echo htmlspecialchars($oclass->getName()); ?>
2009-06-30 08:05:37 +00:00
</option>
<?php } ?>
</select>
</td>
</tr>
2009-06-30 08:09:20 +00:00
2009-06-30 09:40:37 +00:00
<?php if ($config->GetValue('appearance','show_hints')) { ?>
2009-06-30 08:09:20 +00:00
<tr>
<td></td>
<td>
<small>
2009-06-30 09:22:30 +00:00
<img src="images/light.png" /><span class="hint"><?php echo $lang['hint_structural_oclass']; ?></span>
2009-06-30 08:09:20 +00:00
</small>
<br />
</td>
</tr>
<?php } ?>
2009-06-30 08:05:37 +00:00
<tr>
<td></td>
2009-06-30 09:22:30 +00:00
<td><input type="submit" value="<?php echo $lang['proceed_gt']; ?>" /></td>
2009-06-30 08:05:37 +00:00
</tr>
</table>
</form>
<?php
}
if( $step == 2 )
{
strlen( trim( $rdn ) ) != 0 or
2009-06-30 09:22:30 +00:00
pla_error( $lang['rdn_field_blank'] );
2009-06-30 08:05:37 +00:00
2009-06-30 09:29:51 +00:00
strlen( trim( $container ) ) == 0 or dn_exists( $ldapserver, $container ) or
2009-06-30 09:22:30 +00:00
pla_error( sprintf( $lang['container_does_not_exist'], htmlspecialchars( $container ) ) );
2009-06-30 08:05:37 +00:00
$friendly_attrs = process_friendly_attr_table();
2009-06-30 09:22:30 +00:00
$oclasses = isset( $_POST['object_classes'] ) ? $_POST['object_classes'] : null;
2009-06-30 08:05:37 +00:00
if( count( $oclasses ) == 0 )
2009-06-30 09:22:30 +00:00
pla_error( $lang['no_objectclasses_selected'] );
$dn = trim( $container ) ? $rdn . ',' . $container : $rdn;
2009-06-30 08:10:17 +00:00
// incrementally build up the all_attrs and required_attrs arrays
2009-06-30 09:40:37 +00:00
$schema_oclasses = $ldapserver->SchemaObjectClasses();
2009-06-30 08:05:37 +00:00
$required_attrs = array();
$all_attrs = array();
2009-06-30 08:09:20 +00:00
foreach( $oclasses as $oclass_name ) {
2009-06-30 09:40:37 +00:00
$oclass = $ldapserver->getSchemaObjectClass($oclass_name);
2009-06-30 08:10:17 +00:00
if( $oclass ) {
$required_attrs = array_merge( $required_attrs,
$oclass->getMustAttrNames( $schema_oclasses ) );
$all_attrs = array_merge( $all_attrs,
$oclass->getMustAttrNames( $schema_oclasses ),
$oclass->getMayAttrNames( $schema_oclasses ) );
}
2009-06-30 08:05:37 +00:00
}
$required_attrs = array_unique( $required_attrs );
$all_attrs = array_unique( $all_attrs );
2009-06-30 09:29:51 +00:00
remove_aliases( $required_attrs, $ldapserver );
remove_aliases( $all_attrs, $ldapserver );
2009-06-30 08:05:37 +00:00
sort( $required_attrs );
sort( $all_attrs );
2009-06-30 09:22:30 +00:00
// if for some reason "ObjectClass" ends up in the list of
// $all_attrs or $required_attrs, remove it! This is a fix
// for bug 927487
foreach( $all_attrs as $i => $attr_name )
if( 0 == strcasecmp( $attr_name, 'objectClass' ) ) {
unset( $all_attrs[$i] );
$all_attrs = array_values( $all_attrs );
break;
}
foreach( $required_attrs as $i => $attr_name )
if( 0 == strcasecmp( $attr_name, 'objectClass' ) ) {
unset( $required_attrs[$i] );
$required_attrs = array_values( $required_attrs );
break;
}
2009-06-30 08:07:14 +00:00
// remove binary attributes and add them to the binary_attrs array
$binary_attrs = array();
foreach( $all_attrs as $i => $attr_name ) {
2009-06-30 09:29:51 +00:00
if( is_attr_binary( $ldapserver, $attr_name ) ) {
2009-06-30 08:07:14 +00:00
unset( $all_attrs[ $i ] );
$binary_attrs[] = $attr_name;
}
}
2009-06-30 08:05:37 +00:00
2009-06-30 09:22:30 +00:00
// If we trim any attrs out above, then we will have a gap in the index
// sequence and will get an "undefined index" error below. This prevents
// that from happening.
$all_attrs = array_values( $all_attrs );
2009-06-30 08:07:14 +00:00
2009-06-30 08:05:37 +00:00
// add the required attribute based on the RDN provided by the user
// (ie, if the user specifies "cn=Bob" for their RDN, make sure "cn" is
// in the list of required attributes.
$rdn_attr = trim( substr( $rdn, 0, strpos( $rdn, '=' ) ) );
$rdn_value = trim( substr( $rdn, strpos( $rdn, '=' ) + 1 ) );
2009-06-30 09:22:30 +00:00
$rdn_value = @pla_explode_dn( $rdn );
$rdn_value = @explode( '=', $rdn_value[0], 2 );
$rdn_value = @$rdn_value[1];
2009-06-30 08:07:14 +00:00
if( in_array( $rdn_attr, $all_attrs ) && ! in_array( $rdn_attr, $required_attrs ) )
2009-06-30 08:05:37 +00:00
$required_attrs[] = $rdn_attr;
?>
2009-06-30 09:22:30 +00:00
<h4><?php echo $lang['create_step2']; ?></h4>
2009-06-30 08:05:37 +00:00
2009-06-30 08:07:14 +00:00
<form action="create.php" method="post" enctype="multipart/form-data">
2009-06-30 08:05:37 +00:00
<input type="hidden" name="step" value="2" />
<input type="hidden" name="new_dn" value="<?php echo htmlspecialchars( $dn ); ?>" />
<input type="hidden" name="new_rdn" value="<?php echo htmlspecialchars( $rdn ); ?>" />
<input type="hidden" name="container" value="<?php echo htmlspecialchars( $container ); ?>" />
<input type="hidden" name="server_id" value="<?php echo $server_id; ?>" />
<input type="hidden" name="object_classes" value="<?php echo rawurlencode(serialize($oclasses)); ?>" />
<table class="edit_dn" cellspacing="0">
2009-06-30 09:22:30 +00:00
<tr><th colspan="2"><?php echo $lang['required_attrs']; ?></th></tr>
2009-06-30 08:07:14 +00:00
<?php if( count( $required_attrs ) == 0 ) {
2009-06-30 09:22:30 +00:00
echo "<tr class=\"row1\"><td colspan=\"2\"><center>(" . $lang['none'] . ")</center></td></tr>\n";
2009-06-30 08:07:14 +00:00
} else
foreach( $required_attrs as $count => $attr ) { ?>
2009-06-30 09:22:30 +00:00
<tr>
<td class="attr"><b><?php
2009-06-30 08:05:37 +00:00
// is there a user-friendly translation available for this attribute?
if( isset( $friendly_attrs[ strtolower( $attr ) ] ) ) {
2009-06-30 09:22:30 +00:00
$attr_display = "<acronym title=\"" . sprintf( $lang['alias_for'], htmlspecialchars($attr) ) . "\">" .
2009-06-30 08:07:14 +00:00
htmlspecialchars( $friendly_attrs[ strtolower( $attr ) ] ) . "</acronym>";
2009-06-30 08:05:37 +00:00
} else {
$attr_display = htmlspecialchars( $attr );
}
echo $attr_display;
2009-06-30 09:22:30 +00:00
?></b></td></tr>
<tr>
2009-06-30 09:29:51 +00:00
<td class="val"><input type="<?php echo (is_attr_binary( $ldapserver, $attr ) ? "file" : "text"); ?>"
2009-06-30 08:05:37 +00:00
name="required_attrs[<?php echo htmlspecialchars($attr); ?>]"
2009-06-30 09:22:30 +00:00
value="<?php echo ($attr == $rdn_attr ? htmlspecialchars($rdn_value) : '') ?>" size="40" />
2009-06-30 08:05:37 +00:00
</tr>
<?php } ?>
2009-06-30 09:22:30 +00:00
<tr><th colspan="2"><?php echo $lang['optional_attrs']; ?></th></tr>
2009-06-30 08:05:37 +00:00
2009-06-30 08:07:14 +00:00
<?php if( count( $all_attrs ) == 0 ) { ?>
2009-06-30 09:22:30 +00:00
<tr><td colspan="2"><center>(<?php echo $lang['none']; ?>)</center></td></tr>
2009-06-30 08:07:14 +00:00
<?php } else { ?>
2009-06-30 09:22:30 +00:00
<?php for($i=0; $i<min( count( $all_attrs ), 10 ); $i++ ) { $attr = $all_attrs[$i] ?>
<tr>
<td class="attr"><select style="background-color: #ddd; font-weight: bold" name="attrs[<?php echo $i; ?>]"><?php echo get_attr_select_html( $all_attrs, $friendly_attrs, $attr ); ?></select></td>
</tr>
<tr>
2009-06-30 08:07:14 +00:00
<td class="val"><input type="text" name="vals[<?php echo $i; ?>]" value="" size="40" />
2009-06-30 09:22:30 +00:00
</tr>
2009-06-30 08:07:14 +00:00
<?php } ?>
<?php } ?>
<?php if( count( $binary_attrs ) > 0 ) { ?>
2009-06-30 09:22:30 +00:00
<tr><th colspan="2"><?php echo $lang['optional_binary_attrs']; ?></th></tr>
2009-06-30 08:09:20 +00:00
<?php for( $k=$i; $k<$i+count($binary_attrs); $k++ ) { $attr = $binary_attrs[$k-$i]; ?>
2009-06-30 09:22:30 +00:00
<tr><td class="attr"><select style="background-color: #ddd; font-weight: bold" name="attrs[<?php echo $k; ?>]"><?php echo get_binary_attr_select_html( $binary_attrs, $friendly_attrs, $attr );?></select></td></tr>
<tr><td class="val"><input type="file" name="vals[<?php echo $k; ?>]" value="" size="25" /></td></tr>
2009-06-30 08:07:14 +00:00
<?php } ?>
<?php } ?>
2009-06-30 09:22:30 +00:00
<tr><td>
2009-06-30 08:05:37 +00:00
<center>
2009-06-30 09:22:30 +00:00
<input type="submit" name="submit" value="<?php echo $lang['createf_create_object']; ?>" />
2009-06-30 08:05:37 +00:00
</center>
2009-06-30 09:22:30 +00:00
</td></tr>
</table>
2009-06-30 08:05:37 +00:00
2009-06-30 09:22:30 +00:00
<?php }
function get_attr_select_html( $all_attrs, $friendly_attrs, $highlight_attr=null )
{
$attr_select_html = "";
if( ! is_array( $all_attrs ) )
return null;
foreach( $all_attrs as $a ) {
// is there a user-friendly translation available for this attribute?
if( isset( $friendly_attrs[ strtolower( $a ) ] ) ) {
$attr_display = htmlspecialchars( $friendly_attrs[ strtolower( $a ) ] ) . " (" .
htmlspecialchars($a) . ")";
} else {
$attr_display = htmlspecialchars( $a );
}
$a = htmlspecialchars( $a );
$attr_select_html .= "<option value=\"$a\"";
if( 0 == strcasecmp( $highlight_attr, $a ) )
$attr_select_html .= " selected";
$attr_select_html .= ">$attr_display</option>\n";
}
return $attr_select_html;
}
function get_binary_attr_select_html( $binary_attrs, $friendly_attrs, $highlight_attr=null )
{
$binary_attr_select_html = "";
if( ! is_array( $binary_attrs ) )
return null;
if( count( $binary_attrs ) == 0 )
return null;
foreach( $binary_attrs as $a ) {
// is there a user-friendly translation available for this attribute?
if( isset( $friendly_attrs[ strtolower( $a ) ] ) ) {
$attr_display = htmlspecialchars( $friendly_attrs[ strtolower( $a ) ] ) . " (" .
htmlspecialchars( $a ) . ")";
} else {
$attr_display = htmlspecialchars( $a );
}
$binary_attr_select_html .= "<option";
if( 0 == strcasecmp( $highlight_attr, $a ) )
$binary_attr_select_html .= " selected";
$binary_attr_select_html .= ">$attr_display</option>\n";
}
return $binary_attr_select_html;
}
/**
* Removes attributes from the array that are aliases for eachother
* (just removes the second instance of the aliased attr)
*/
2009-06-30 09:29:51 +00:00
function remove_aliases( &$attribute_list, $ldapserver )
2009-06-30 09:22:30 +00:00
{
// remove aliases from the attribute_list array
for( $i=0; $i<count( $attribute_list ); $i++ ) {
if( ! isset( $attribute_list[ $i ] ) )
continue;
$attr_name1 = $attribute_list[ $i ];
for( $k=0; $k<count( $attribute_list ); $k++ ) {
if( ! isset( $attribute_list[ $k ] ) )
continue;
if( $i == $k )
continue;
$attr_name2 = $attribute_list[ $k ];
//echo "Comparing $attr_name1 and $attr_name2<br>";
2009-06-30 09:40:37 +00:00
$attr1 = $ldapserver->getSchemaAttribute($attr_name1);
2009-06-30 09:22:30 +00:00
if( null == $attr1 )
continue;
if( $attr1->isAliasFor( $attr_name2 ) ) {
//echo "* Removing attribute ". $attribute_list[ $k ] . "<br>";
unset( $attribute_list[ $k ] );
}
}
}
$attribute_list = array_values( $attribute_list );
}
?>