2009-06-30 09:22:30 +00:00
|
|
|
<?php
|
2009-06-30 11:52:55 +00:00
|
|
|
// $Header: /cvsroot/phpldapadmin/phpldapadmin/htdocs/ldif_import.php,v 1.35.2.4 2008/12/12 12:20:22 wurley Exp $
|
2009-06-30 09:22:30 +00:00
|
|
|
|
2009-06-30 09:29:51 +00:00
|
|
|
/**
|
2009-06-30 08:07:14 +00:00
|
|
|
* Imports an LDIF file to the specified server_id.
|
|
|
|
*
|
|
|
|
* Variables that come in as POST vars:
|
|
|
|
* - ldif_file (as an uploaded file)
|
|
|
|
* - server_id
|
2009-06-30 09:29:51 +00:00
|
|
|
*
|
|
|
|
* @package phpLDAPadmin
|
|
|
|
*/
|
|
|
|
/**
|
2009-06-30 08:07:14 +00:00
|
|
|
*/
|
|
|
|
|
2009-06-30 09:22:30 +00:00
|
|
|
require './common.php';
|
2009-06-30 08:07:14 +00:00
|
|
|
|
2009-06-30 11:46:44 +00:00
|
|
|
if (! $_SESSION[APPCONFIG]->isCommandAvailable('import'))
|
2009-06-30 11:52:55 +00:00
|
|
|
error(sprintf('%s%s %s',_('This operation is not permitted by the configuration'),_(':'),_('import')),'error','index.php');
|
2009-06-30 09:29:51 +00:00
|
|
|
|
2009-06-30 11:52:55 +00:00
|
|
|
$entry = array();
|
2009-06-30 10:46:00 +00:00
|
|
|
$entry['continuous_mode'] = get_request('continuous_mode') ? true : false;
|
|
|
|
$entry['ldif'] = get_request('ldif');
|
2009-06-30 09:29:51 +00:00
|
|
|
|
2009-06-30 10:46:00 +00:00
|
|
|
if ($entry['ldif']) {
|
|
|
|
$entry['remote_file'] = 'STDIN';
|
|
|
|
$entry['size'] = strlen($entry['ldif']);
|
2009-06-30 08:07:14 +00:00
|
|
|
|
2009-06-30 10:26:08 +00:00
|
|
|
} elseif (isset($_FILES['ldif_file'])) {
|
|
|
|
$file = $_FILES['ldif_file']['tmp_name'];
|
2009-06-30 10:46:00 +00:00
|
|
|
$entry['remote_file'] = $_FILES['ldif_file']['name'];
|
|
|
|
$entry['size'] = $_FILES['ldif_file']['size'];
|
2009-06-30 08:07:14 +00:00
|
|
|
|
2009-06-30 10:46:00 +00:00
|
|
|
if (! is_array($_FILES['ldif_file'])) {
|
2009-06-30 11:52:55 +00:00
|
|
|
error(_('Missing uploaded file.'),'error');
|
2009-06-30 10:46:00 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (! file_exists($file)) {
|
2009-06-30 11:52:55 +00:00
|
|
|
error(_('No LDIF file specified. Please try again.'),'error');
|
2009-06-30 10:46:00 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ($entry['size'] <= 0) {
|
2009-06-30 11:52:55 +00:00
|
|
|
error(_('Uploaded LDIF file is empty.'),'error');
|
2009-06-30 10:46:00 +00:00
|
|
|
return;
|
|
|
|
}
|
2009-06-30 08:07:14 +00:00
|
|
|
|
2009-06-30 10:26:08 +00:00
|
|
|
} else {
|
2009-06-30 11:52:55 +00:00
|
|
|
error(_('You must either upload a file or provide an LDIF in the text box.'),'error');
|
2009-06-30 10:46:00 +00:00
|
|
|
return;
|
2009-06-30 10:26:08 +00:00
|
|
|
}
|
2009-06-30 08:07:14 +00:00
|
|
|
|
2009-06-30 10:26:08 +00:00
|
|
|
printf('<h3 class="title">%s</h3>',_('Import LDIF File'));
|
|
|
|
printf('<h3 class="subtitle">%s: <b>%s</b> %s: <b>%s (%s %s)</b></h3>',
|
|
|
|
_('Server'),htmlspecialchars($ldapserver->name),
|
2009-06-30 10:46:00 +00:00
|
|
|
_('File'),htmlspecialchars($entry['remote_file']),number_format($entry['size']),_('bytes'));
|
2009-06-30 10:26:08 +00:00
|
|
|
echo '<br /><br />';
|
2009-06-30 08:07:14 +00:00
|
|
|
|
2009-06-30 09:40:37 +00:00
|
|
|
require LIBDIR.'ldif_functions.php';
|
2009-06-30 10:26:08 +00:00
|
|
|
@set_time_limit(0);
|
2009-06-30 08:07:14 +00:00
|
|
|
|
2009-06-30 10:26:08 +00:00
|
|
|
# String associated to the operation on the ldap server
|
2009-06-30 08:09:20 +00:00
|
|
|
$actionString = array();
|
2009-06-30 10:26:08 +00:00
|
|
|
$actionString['add'] = _('Adding...');
|
|
|
|
$actionString['delete'] = _('Deleting...');
|
|
|
|
$actionString['modrdn'] = _('Renaming...');
|
|
|
|
$actionString['moddn'] = _('Renaming...');
|
|
|
|
$actionString['modify'] = _('Modifying...');
|
2009-06-30 08:09:20 +00:00
|
|
|
|
2009-06-30 10:26:08 +00:00
|
|
|
# String associated with error
|
2009-06-30 08:09:20 +00:00
|
|
|
$actionErrorMsg =array();
|
2009-06-30 10:26:08 +00:00
|
|
|
$actionErrorMsg['add'] = _('Could not add object:');
|
|
|
|
$actionErrorMsg['delete']= _('Could not delete object:');
|
|
|
|
$actionErrorMsg['modrdn']= _('Could not rename object:');
|
|
|
|
$actionErrorMsg['moddn']= _('Could not rename object:');
|
|
|
|
$actionErrorMsg['modify']= _('Could not modify object:');
|
2009-06-30 08:09:20 +00:00
|
|
|
|
2009-06-30 10:26:08 +00:00
|
|
|
# instantiate the reader
|
2009-06-30 10:46:00 +00:00
|
|
|
if (isset($entry['ldif']))
|
|
|
|
$ldifReader = new LdifReaderStdIn($entry['ldif'],$entry['continuous_mode']);
|
2009-06-30 10:26:08 +00:00
|
|
|
else
|
2009-06-30 10:46:00 +00:00
|
|
|
$ldifReader = new LdifReader($file,$entry['continuous_mode']);
|
2009-06-30 08:09:20 +00:00
|
|
|
|
2009-06-30 10:26:08 +00:00
|
|
|
# instantiate the writer
|
|
|
|
$ldapWriter = new LdapWriter($ldapserver);
|
2009-06-30 08:09:20 +00:00
|
|
|
|
2009-06-30 10:26:08 +00:00
|
|
|
# if ldif file has no version number, just display a warning
|
|
|
|
if (!$ldifReader->hasVersionNumber())
|
|
|
|
display_warning($ldifReader->getWarningMessage());
|
2009-06-30 08:09:20 +00:00
|
|
|
|
2009-06-30 09:22:30 +00:00
|
|
|
$i=0;
|
2009-06-30 10:26:08 +00:00
|
|
|
# if .. else not mandatory but should be easier to maintain
|
2009-06-30 10:46:00 +00:00
|
|
|
if ($entry['continuous_mode']) {
|
2009-06-30 10:26:08 +00:00
|
|
|
while ($ldifReader->readEntry()) {
|
|
|
|
$i++;
|
|
|
|
|
|
|
|
# get the entry.
|
|
|
|
$currentEntry = $ldifReader->fetchEntryObject();
|
2009-06-30 10:46:00 +00:00
|
|
|
$edit_href = sprintf('cmd.php?cmd=template_engine&server_id=%s&dn=%s',$ldapserver->server_id,
|
2009-06-30 10:26:08 +00:00
|
|
|
rawurlencode($currentEntry->dn));
|
|
|
|
$changeType = $currentEntry->getChangeType();
|
2009-06-30 10:46:00 +00:00
|
|
|
printf('<small>%s <a href="%s">%s</a>',$actionString[$changeType],$edit_href,$currentEntry->dn);
|
2009-06-30 10:26:08 +00:00
|
|
|
|
|
|
|
if ($ldifReader->hasRaisedException()) {
|
|
|
|
printf(' <span style="color:red;">%s</span></small><br />',_('Failed'));
|
|
|
|
$exception = $ldifReader->getLdapLdifReaderException();
|
|
|
|
printf(' <small><span style="color:red;">%s: %s</span></small><br />',
|
|
|
|
_('Line Number'),$exception->lineNumber);
|
|
|
|
printf(' <small><span style="color:red;">%s: %s</span></small><br />',
|
|
|
|
_('Line'),$exception->currentLine);
|
|
|
|
printf(' <small><span style="color:red;">%s: %s</span></small><br />',
|
|
|
|
_('Description'),$exception->message);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
if ($ldapWriter->ldapModify($currentEntry))
|
|
|
|
printf(' <span style="color:green;">%s</span></small><br />',_('Success'));
|
|
|
|
else {
|
2009-06-30 11:51:50 +00:00
|
|
|
printf(' <span style="color:red;">%s</span></small><br />',_('Failed'));
|
|
|
|
printf(' <small><span style="color:red;">%s: %s</span></small><br />',
|
2009-06-30 10:26:08 +00:00
|
|
|
_('Error code'),$ldapserver->errno());
|
2009-06-30 11:51:50 +00:00
|
|
|
printf(' <small><span style="color:red;">%s: %s</span></small><br />',
|
2009-06-30 10:26:08 +00:00
|
|
|
_('Description'),$ldapserver->error());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} # end while
|
|
|
|
|
|
|
|
} else {
|
|
|
|
# while we have a valid entry,
|
|
|
|
while ($entry = $ldifReader->readEntry()) {
|
|
|
|
$i++;
|
|
|
|
|
2009-06-30 10:46:00 +00:00
|
|
|
$edit_href = sprintf('cmd.php?cmd=template_engine&server_id=%s&dn=%s',$ldapserver->server_id,
|
2009-06-30 10:26:08 +00:00
|
|
|
rawurlencode($entry->dn));
|
|
|
|
$changeType = $entry->getChangeType();
|
|
|
|
printf('<small>%s <a href="%s">%s</a>',$actionString[$changeType],$edit_href,$entry->dn);
|
|
|
|
|
|
|
|
if ($ldapWriter->ldapModify($entry)) {
|
|
|
|
printf(' <span style="color:green;">%s</span></small><br />',_('Success'));
|
|
|
|
|
|
|
|
} else {
|
|
|
|
printf(' <span style="color:red;">%s</span></small><br /><br />',_('Failed'));
|
2009-06-30 10:46:00 +00:00
|
|
|
$ldap_err_no = ('0x'.str_pad(dechex($ldapserver->errno()),2,0,STR_PAD_LEFT));
|
|
|
|
$verbose_error = pla_verbose_error($ldap_err_no);
|
|
|
|
|
|
|
|
$errormsg = sprintf('%s <b>%s</b>',$actionErrorMsg[$changeType],htmlspecialchars($entry->dn));
|
|
|
|
$errormsg .= sprintf('<br />%s: <b>%s</b>',_('LDAP said'),$verbose_error['title']);
|
|
|
|
$errormsg .= sprintf('<br />%s',$verbose_error['desc']);
|
|
|
|
system_message(array(
|
|
|
|
'title'=>_('LDIF text import'),
|
|
|
|
'body'=>$errormsg,
|
|
|
|
'type'=>'warn'));
|
|
|
|
|
|
|
|
break;
|
2009-06-30 10:26:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# if any errors occurs during reading file ,"catch" the exception and display it here.
|
|
|
|
if ($ldifReader->hasRaisedException()) {
|
|
|
|
# get the entry which raise the exception,quick hack here
|
|
|
|
$currentEntry = $ldifReader->fetchEntryObject();
|
|
|
|
|
|
|
|
if ($currentEntry->dn != '') {
|
|
|
|
printf('<small>%s %s <span style="color:red;">%s</span></small><br />',
|
|
|
|
$actionString[$currentEntry->getChangeType()],$currentEntry->dn,_('Failed'));
|
|
|
|
}
|
|
|
|
|
|
|
|
# get the exception wich was raised
|
|
|
|
$exception = $ldifReader->getLdapLdifReaderException();
|
|
|
|
echo '<br /><br />';
|
|
|
|
display_pla_parse_error($exception,$currentEntry);
|
|
|
|
}
|
2009-06-30 08:09:20 +00:00
|
|
|
}
|
|
|
|
|
2009-06-30 10:26:08 +00:00
|
|
|
# close the file
|
2009-06-30 09:22:30 +00:00
|
|
|
$ldifReader->done();
|
2009-06-30 10:26:08 +00:00
|
|
|
|
2009-06-30 08:07:14 +00:00
|
|
|
function display_warning($warning){
|
2009-06-30 10:26:08 +00:00
|
|
|
printf('<div style="color:orange"><small>%s</small></div>',$warning);
|
2009-06-30 08:07:14 +00:00
|
|
|
}
|
|
|
|
|
2009-06-30 10:46:00 +00:00
|
|
|
function display_pla_parse_error($exception,$faultyEntry) {
|
2009-06-30 10:26:08 +00:00
|
|
|
global $actionErrorMsg;
|
|
|
|
|
|
|
|
$errorMessage = $actionErrorMsg[$faultyEntry->getChangeType()];
|
|
|
|
|
|
|
|
echo '<center>';
|
2009-06-30 11:52:55 +00:00
|
|
|
printf('<table class="error"><tr><td class="img"><img src="%s/warning.png" /></td>',IMGDIR);
|
2009-06-30 10:26:08 +00:00
|
|
|
echo '<td>';
|
|
|
|
printf('<center><h2>%s</h2></center>',_('LDIF Parse Error'));
|
|
|
|
echo '<br />';
|
|
|
|
printf('%s %s',$errorMessage,$faultyEntry->dn);
|
|
|
|
printf('<p><b>%s</b>: %s</p>',_('Description'),$exception->message);
|
|
|
|
printf('<p><b>%s</b>: %s</p>',_('Line'),$exception->currentLine);
|
|
|
|
printf('<p><b>%s</b>: %s</p>',_('Line Number'),$exception->lineNumber);
|
|
|
|
echo '<br />';
|
|
|
|
printf('<p><center><small>%s %s</small></center></p>',
|
|
|
|
_('Is this a phpLDAPadmin bug?'),sprintf(_('If so, please <a href="%s">report it</a>.'),get_href('add_bug')));
|
|
|
|
|
|
|
|
echo '</td>';
|
|
|
|
echo '</tr>';
|
|
|
|
echo '<center>';
|
2009-06-30 08:09:20 +00:00
|
|
|
}
|
|
|
|
?>
|