RELEASE 0.9.5
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
<?php
|
||||
|
||||
require 'common.php';
|
||||
// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/creation/custom.php,v 1.37 2004/10/24 23:51:51 uugdave Exp $
|
||||
|
||||
// Common to all templates
|
||||
$rdn = isset( $_POST['rdn'] ) ? $_POST['rdn'] : null;
|
||||
@@ -10,15 +9,17 @@ $server_id = $_POST['server_id'];
|
||||
// Unique to this template
|
||||
$step = isset( $_POST['step'] ) ? $_POST['step'] : 1;
|
||||
|
||||
check_server_id( $server_id ) or pla_error( "Bad server_id: " . htmlspecialchars( $server_id ) );
|
||||
have_auth_info( $server_id ) or pla_error( "Not enough information to login to server. Please check your configuration." );
|
||||
check_server_id( $server_id ) or pla_error( $lang['bad_server_id'] );
|
||||
have_auth_info( $server_id ) or pla_error( $lang['not_enough_login_info'] );
|
||||
|
||||
if( $step == 1 )
|
||||
{
|
||||
$oclasses = get_schema_objectClasses( $server_id );
|
||||
if( ! $oclasses || ! is_array( $oclasses ) )
|
||||
pla_error( "Unable to retrieve the schema from your LDAP server. Cannot continue with creation." );
|
||||
?>
|
||||
|
||||
<h4>Step 1 of 2: Name and ObjectClass(es)</h4>
|
||||
<h4><?php echo $lang['create_step1']; ?></h4>
|
||||
|
||||
<form action="creation_template.php" method="post" name="creation_form">
|
||||
<input type="hidden" name="step" value="2" />
|
||||
@@ -27,20 +28,22 @@ if( $step == 1 )
|
||||
|
||||
<table class="create">
|
||||
<tr>
|
||||
<td class="heading"><acronym title="Relative Distinguished Name">RDN</acronym>:</td>
|
||||
<td><input type="text" name="rdn" value="" size="20" /> (example: cn=MyNewObject)</td>
|
||||
<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>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="heading">Container:</td>
|
||||
<td class="heading"><?php echo $lang['container']; ?></td>
|
||||
<td><input type="text" name="container" size="40" value="<?php echo htmlspecialchars( $container ); ?>" />
|
||||
<?php draw_chooser_link( 'creation_form.container' ); ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="heading">ObjectClass(es):</td>
|
||||
<td class="heading"><?php echo $lang['objectclasses']; ?></td>
|
||||
<td>
|
||||
<select name="object_classes[]" multiple size="15">
|
||||
<?php foreach( $oclasses as $name => $oclass ) { ?>
|
||||
<option value="<?php echo htmlspecialchars($name); ?>">
|
||||
<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()); ?>">
|
||||
<?php echo htmlspecialchars($oclass->getName()); ?>
|
||||
</option>
|
||||
<?php } ?>
|
||||
@@ -53,7 +56,7 @@ if( $step == 1 )
|
||||
<td></td>
|
||||
<td>
|
||||
<small>
|
||||
<img src="images/light.png" />Hint: You must choose at least one <b>structural</b> objectClass
|
||||
<img src="images/light.png" /><span class="hint"><?php echo $lang['hint_structural_oclass']; ?></span>
|
||||
</small>
|
||||
<br />
|
||||
</td>
|
||||
@@ -62,7 +65,7 @@ if( $step == 1 )
|
||||
|
||||
<tr>
|
||||
<td></td>
|
||||
<td><input type="submit" value="Proceed >>" /></td>
|
||||
<td><input type="submit" value="<?php echo $lang['proceed_gt']; ?>" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
@@ -72,17 +75,16 @@ if( $step == 1 )
|
||||
if( $step == 2 )
|
||||
{
|
||||
strlen( trim( $rdn ) ) != 0 or
|
||||
pla_error( "You left the RDN field blank" );
|
||||
pla_error( $lang['rdn_field_blank'] );
|
||||
|
||||
strlen( trim( $container ) ) == 0 or dn_exists( $server_id, $container ) or
|
||||
pla_error( "The container you specified (" . htmlspecialchars( $container ) . ") does not exist. " .
|
||||
"Please go back and try again." );
|
||||
pla_error( sprintf( $lang['container_does_not_exist'], htmlspecialchars( $container ) ) );
|
||||
|
||||
$friendly_attrs = process_friendly_attr_table();
|
||||
$oclasses = $_POST['object_classes'];
|
||||
$oclasses = isset( $_POST['object_classes'] ) ? $_POST['object_classes'] : null;
|
||||
if( count( $oclasses ) == 0 )
|
||||
pla_error( "You did not select any ObjectClasses for this object. Please go back and do so." );
|
||||
$dn = $rdn . ',' . $container;
|
||||
pla_error( $lang['no_objectclasses_selected'] );
|
||||
$dn = trim( $container ) ? $rdn . ',' . $container : $rdn;
|
||||
|
||||
// incrementally build up the all_attrs and required_attrs arrays
|
||||
$schema_oclasses = get_schema_objectclasses( $server_id );
|
||||
@@ -101,9 +103,28 @@ if( $step == 2 )
|
||||
|
||||
$required_attrs = array_unique( $required_attrs );
|
||||
$all_attrs = array_unique( $all_attrs );
|
||||
remove_aliases( $required_attrs, $server_id );
|
||||
remove_aliases( $all_attrs, $server_id );
|
||||
sort( $required_attrs );
|
||||
sort( $all_attrs );
|
||||
|
||||
|
||||
// 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;
|
||||
}
|
||||
|
||||
// remove binary attributes and add them to the binary_attrs array
|
||||
$binary_attrs = array();
|
||||
foreach( $all_attrs as $i => $attr_name ) {
|
||||
@@ -112,51 +133,26 @@ if( $step == 2 )
|
||||
$binary_attrs[] = $attr_name;
|
||||
}
|
||||
}
|
||||
|
||||
// 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 );
|
||||
|
||||
$attr_select_html = "";
|
||||
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 );
|
||||
}
|
||||
|
||||
$attr_select_html .= "<option value=\"$a\">$attr_display</option>\n";
|
||||
}
|
||||
|
||||
$binary_attr_select_html = "";
|
||||
if( count( $binary_attrs ) > 0 ) {
|
||||
foreach( $binary_attrs as $a ) {
|
||||
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>$attr_display</option>\n";
|
||||
}
|
||||
}
|
||||
|
||||
// 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 ) );
|
||||
$rdn_value = @pla_explode_dn( $rdn );
|
||||
$rdn_value = @explode( '=', $rdn_value[0], 2 );
|
||||
$rdn_value = @$rdn_value[1];
|
||||
if( in_array( $rdn_attr, $all_attrs ) && ! in_array( $rdn_attr, $required_attrs ) )
|
||||
$required_attrs[] = $rdn_attr;
|
||||
?>
|
||||
|
||||
<h4>Step 2 of 2: Specify attributes and values</h4>
|
||||
<h4><?php echo $lang['create_step2']; ?></h4>
|
||||
|
||||
<small><b>Instructions</b>:
|
||||
Enter values for the <?php echo count($required_attrs); ?> required attributes.<br/>
|
||||
Then specify any optional attributes. <?php if( count( $binary_attrs ) > 0 ) { ?>
|
||||
Finally, you may<br />specify optional binary attributes from a file if needed. <?php } ?>
|
||||
</small>
|
||||
|
||||
<form action="create.php" method="post" enctype="multipart/form-data">
|
||||
<input type="hidden" name="step" value="2" />
|
||||
<input type="hidden" name="new_dn" value="<?php echo htmlspecialchars( $dn ); ?>" />
|
||||
@@ -166,22 +162,18 @@ if( $step == 2 )
|
||||
<input type="hidden" name="object_classes" value="<?php echo rawurlencode(serialize($oclasses)); ?>" />
|
||||
|
||||
<table class="edit_dn" cellspacing="0">
|
||||
<tr><th colspan="2">Required Attributes</th></tr>
|
||||
<tr><th colspan="2"><?php echo $lang['required_attrs']; ?></th></tr>
|
||||
<?php if( count( $required_attrs ) == 0 ) {
|
||||
echo "<tr class=\"row1\"><td colspan=\"2\"><center>(none)</center></td></tr>\n";
|
||||
echo "<tr class=\"row1\"><td colspan=\"2\"><center>(" . $lang['none'] . ")</center></td></tr>\n";
|
||||
} else
|
||||
|
||||
foreach( $required_attrs as $count => $attr ) { ?>
|
||||
<?php if( $count % 2 == 0 ) { ?>
|
||||
<tr class="row1">
|
||||
<?php } else { ?>
|
||||
<tr class="row2">
|
||||
<?php } ?>
|
||||
<td class="attr"><b><?php
|
||||
<tr>
|
||||
<td class="attr"><b><?php
|
||||
|
||||
// is there a user-friendly translation available for this attribute?
|
||||
if( isset( $friendly_attrs[ strtolower( $attr ) ] ) ) {
|
||||
$attr_display = "<acronym title=\"Alias for " . htmlspecialchars($attr) . "\">" .
|
||||
$attr_display = "<acronym title=\"" . sprintf( $lang['alias_for'], htmlspecialchars($attr) ) . "\">" .
|
||||
htmlspecialchars( $friendly_attrs[ strtolower( $attr ) ] ) . "</acronym>";
|
||||
} else {
|
||||
$attr_display = htmlspecialchars( $attr );
|
||||
@@ -189,47 +181,121 @@ if( $step == 2 )
|
||||
|
||||
echo $attr_display;
|
||||
|
||||
?></b></td>
|
||||
?></b></td></tr>
|
||||
<tr>
|
||||
<td class="val"><input type="<?php echo (is_attr_binary( $server_id, $attr ) ? "file" : "text"); ?>"
|
||||
name="required_attrs[<?php echo htmlspecialchars($attr); ?>]"
|
||||
value="<?php echo $attr == $rdn_attr ? $rdn_value : '' ?>" size="40" />
|
||||
value="<?php echo ($attr == $rdn_attr ? htmlspecialchars($rdn_value) : '') ?>" size="40" />
|
||||
</tr>
|
||||
<?php } ?>
|
||||
|
||||
<tr><th colspan="2">Optional Attributes</th></tr>
|
||||
<tr><th colspan="2"><?php echo $lang['optional_attrs']; ?></th></tr>
|
||||
|
||||
<?php if( count( $all_attrs ) == 0 ) { ?>
|
||||
<tr class="row1"><td colspan="2"><center>(none)</center></td></tr>
|
||||
<tr><td colspan="2"><center>(<?php echo $lang['none']; ?>)</center></td></tr>
|
||||
<?php } else { ?>
|
||||
<?php for($i=0; $i<min( count( $all_attrs ), 10 ); $i++ ) { ?>
|
||||
<?php if( $i % 2 == 0 ) { ?>
|
||||
<tr class="row1">
|
||||
<?php } else { ?>
|
||||
<tr class="row2">
|
||||
<?php } ?>
|
||||
<td class="attr"><select name="attrs[<?php echo $i; ?>]"><?php echo $attr_select_html; ?></select></td>
|
||||
<?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>
|
||||
<td class="val"><input type="text" name="vals[<?php echo $i; ?>]" value="" size="40" />
|
||||
</tr>
|
||||
</tr>
|
||||
<?php } ?>
|
||||
<?php } ?>
|
||||
|
||||
<?php if( count( $binary_attrs ) > 0 ) { ?>
|
||||
<tr><th colspan="2">Optional Binary Attributes</th></tr>
|
||||
<tr><th colspan="2"><?php echo $lang['optional_binary_attrs']; ?></th></tr>
|
||||
<?php for( $k=$i; $k<$i+count($binary_attrs); $k++ ) { $attr = $binary_attrs[$k-$i]; ?>
|
||||
<?php if( $k % 2 == 0 ) { ?>
|
||||
<tr class="row1">
|
||||
<?php } else { ?>
|
||||
<tr class="row2">
|
||||
<?php } ?>
|
||||
<td class="attr"><select name="attrs[<?php echo $k; ?>]"><?php echo $binary_attr_select_html;?></select></td>
|
||||
<td class="val"><input type="file" name="vals[<?php echo $k; ?>]" value="" size="40" />
|
||||
<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>
|
||||
<?php } ?>
|
||||
<?php } ?>
|
||||
</table>
|
||||
|
||||
|
||||
<tr><td>
|
||||
<center>
|
||||
<input type="submit" name="submit" value="Create Object" />
|
||||
<input type="submit" name="submit" value="<?php echo $lang['createf_create_object']; ?>" />
|
||||
</center>
|
||||
</td></tr>
|
||||
|
||||
<?php } ?>
|
||||
</table>
|
||||
|
||||
<?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)
|
||||
*/
|
||||
function remove_aliases( &$attribute_list, $server_id )
|
||||
{
|
||||
// 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>";
|
||||
$attr1 = get_schema_attribute( $server_id, $attr_name1 );
|
||||
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 );
|
||||
}
|
||||
?>
|
||||
|
||||
|
Reference in New Issue
Block a user