import full entries
This commit is contained in:
parent
c9cff54937
commit
33b35fa23b
|
@ -1,5 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
namespace LAM\TOOLS\IMPORT_EXPORT;
|
namespace LAM\TOOLS\IMPORT_EXPORT;
|
||||||
|
use \htmlStatusMessage;
|
||||||
|
use \LAMException;
|
||||||
/*
|
/*
|
||||||
|
|
||||||
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
||||||
|
@ -39,50 +41,139 @@ include_once('ldap.inc');
|
||||||
*/
|
*/
|
||||||
class Importer {
|
class Importer {
|
||||||
|
|
||||||
const SESSION_KEY_ENTRIES = 'import_entries';
|
const SESSION_KEY_TASKS = 'import_tasks';
|
||||||
const SESSION_KEY_COUNT = 'import_count';
|
const SESSION_KEY_COUNT = 'import_count';
|
||||||
const STATUS = 'status';
|
const STATUS = 'status';
|
||||||
const PROGRESS = 'progress';
|
const PROGRESS = 'progress';
|
||||||
const DATA = 'data';
|
const DATA = 'data';
|
||||||
const TIME_LIMIT = 10;
|
const TIME_LIMIT = 10;
|
||||||
|
const KEY = 0;
|
||||||
|
const VALUE = 1;
|
||||||
|
const CHANGETYPE = 'changeType';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Extracts the single entries in the file.
|
||||||
|
*
|
||||||
|
* @param string[] $lines LDIF lines
|
||||||
|
* @return string|array array of string[]
|
||||||
|
* @throws LAMException invalid format
|
||||||
|
*/
|
||||||
|
private function extractImportChunks($lines) {
|
||||||
|
$entries = array();
|
||||||
|
$currentEntry = array();
|
||||||
|
foreach ($lines as $line) {
|
||||||
|
if (substr(trim($line), 0, 1) === '#') {
|
||||||
|
// skip comments
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (empty(trim($line))) {
|
||||||
|
// end of entry
|
||||||
|
if (!empty($currentEntry)) {
|
||||||
|
$entries[] = $currentEntry;
|
||||||
|
$currentEntry = array();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
elseif (substr($line, 0, 1) === ' ') {
|
||||||
|
// append to last line if starting with a space
|
||||||
|
if (empty($currentEntry)) {
|
||||||
|
throw new LAMException(_('Invalid data'), htmlspecialchars($line));
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$currentEntry[sizeof($currentEntry) - 1] .= substr($line, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$parts = explode(':', $line, 2);
|
||||||
|
if (sizeof($parts) < 2) {
|
||||||
|
throw new LAMException(_('Invalid data'), htmlspecialchars($line));
|
||||||
|
}
|
||||||
|
$currentEntry[] = $line;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!empty($currentEntry)) {
|
||||||
|
$entries[] = $currentEntry;
|
||||||
|
}
|
||||||
|
return $entries;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Converts the lines to LDAP import tasks.
|
||||||
|
*
|
||||||
|
* @param string[] $lines import lines
|
||||||
|
* @throws LAMException if invalid format was found
|
||||||
|
* @return ImporterTask[] tasks
|
||||||
|
*/
|
||||||
|
public function getTasks($lines) {
|
||||||
|
$chunks = $this->extractImportChunks($lines);
|
||||||
|
$tasks = $this->convertToTasks($chunks);
|
||||||
|
return $tasks;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Processes the import data stored in session.
|
* Processes the import data stored in session.
|
||||||
*/
|
*/
|
||||||
public function doImport() {
|
public function doImport() {
|
||||||
$entries = &$_SESSION[Importer::SESSION_KEY_ENTRIES];
|
$data = '';
|
||||||
|
$tasks = &$_SESSION[Importer::SESSION_KEY_TASKS];
|
||||||
// check if any actions are needed at all
|
// check if any actions are needed at all
|
||||||
if (empty($entries)) {
|
if (empty($tasks)) {
|
||||||
return $this->getStatus();
|
return $this->getStatus($data);
|
||||||
}
|
}
|
||||||
$endTime = $this->getEndTime();
|
$endTime = $this->getEndTime();
|
||||||
while ((!empty($entries)) && ($endTime > time())) {
|
while ((!empty($tasks)) && ($endTime > time())) {
|
||||||
$this->continueImport($entries);
|
$task = array_shift($tasks);
|
||||||
|
try {
|
||||||
|
$data .= $task->run();
|
||||||
}
|
}
|
||||||
return $this->getStatus();
|
catch (LAMException $e) {
|
||||||
|
return $this->stopImport($data, $e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return $this->getStatus($data);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Stops the import process because of an exception.
|
||||||
|
*
|
||||||
|
* @param string $data HTML output
|
||||||
|
* @param LAMException $e exception
|
||||||
|
* @return string JSON status
|
||||||
|
*/
|
||||||
|
private function stopImport($data, LAMException $e) {
|
||||||
|
$data .= Importer::formatMessage('ERROR', $e->getTitle(), $e->getMessage());
|
||||||
|
if (isset($_SESSION[Importer::SESSION_KEY_TASKS])) {
|
||||||
|
unset($_SESSION[Importer::SESSION_KEY_TASKS]);
|
||||||
|
}
|
||||||
|
$status = array(
|
||||||
|
Importer::STATUS => 'failed',
|
||||||
|
Importer::DATA => $data
|
||||||
|
);
|
||||||
|
return json_encode($status);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the current status as JSON.
|
* Returns the current status as JSON.
|
||||||
*
|
*
|
||||||
|
* @param string $data HTML output to display
|
||||||
* @return string JSON status
|
* @return string JSON status
|
||||||
*/
|
*/
|
||||||
private function getStatus() {
|
private function getStatus($data) {
|
||||||
if (empty($entries)) {
|
if (empty($_SESSION[Importer::SESSION_KEY_TASKS])) {
|
||||||
if (isset($_SESSION[Importer::SESSION_KEY_ENTRIES])) {
|
if (isset($_SESSION[Importer::SESSION_KEY_TASKS])) {
|
||||||
unset($_SESSION[Importer::SESSION_KEY_ENTRIES]);
|
unset($_SESSION[Importer::SESSION_KEY_TASKS]);
|
||||||
}
|
}
|
||||||
$status = array(
|
$status = array(
|
||||||
Importer::STATUS => 'done'
|
Importer::STATUS => 'done',
|
||||||
|
Importer::DATA => $data
|
||||||
);
|
);
|
||||||
return json_encode($status);
|
return json_encode($status);
|
||||||
}
|
}
|
||||||
$progress = (sizeof($_SESSION[Importer::SESSION_KEY_ENTRIES]) / $_SESSION[Importer::SESSION_KEY_COUNT]) * 100.0;
|
$progress = (sizeof($_SESSION[Importer::SESSION_KEY_TASKS]) / $_SESSION[Importer::SESSION_KEY_COUNT]) * 100.0;
|
||||||
$progress = floor(100 - $progress);
|
$progress = floor(100 - $progress);
|
||||||
$status = array(
|
$status = array(
|
||||||
Importer::STATUS => 'inProgress',
|
Importer::STATUS => 'inProgress',
|
||||||
Importer::PROGRESS => $progress,
|
Importer::PROGRESS => $progress,
|
||||||
Importer::DATA => ''
|
Importer::DATA => $data
|
||||||
);
|
);
|
||||||
return json_encode($status);
|
return json_encode($status);
|
||||||
}
|
}
|
||||||
|
@ -108,9 +199,159 @@ class Importer {
|
||||||
* Continues the import with processing of a single entry.
|
* Continues the import with processing of a single entry.
|
||||||
*
|
*
|
||||||
* @param array[] $entries import entries
|
* @param array[] $entries import entries
|
||||||
|
* @return ImporterTask[] tasks
|
||||||
*/
|
*/
|
||||||
private function continueImport(&$entries) {
|
private function convertToTasks($entries) {
|
||||||
$entry = array_shift($entries);
|
$tasks = array();
|
||||||
|
$count = sizeof($entries);
|
||||||
|
for ($i = 0; $i < $count; $i++) {
|
||||||
|
$entry = $entries[$i];
|
||||||
|
$firstParts = explode(':', $entry[0], 2);
|
||||||
|
if ($firstParts[Importer::KEY] == 'version') {
|
||||||
|
if ($i > 0) {
|
||||||
|
// allow version only as first chunk
|
||||||
|
throw new LAMException(_('Invalid data'), _('Duplicate version entry found.'));
|
||||||
|
}
|
||||||
|
$this->processVersion($entry);
|
||||||
|
}
|
||||||
|
elseif ($firstParts[Importer::KEY] == 'dn') {
|
||||||
|
$tasks[] = $this->processDnEntry($entry);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
throw new LAMException(_('A valid dn line is required'), htmlspecialchars($entry[0]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return $tasks;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks a version entry.
|
||||||
|
*
|
||||||
|
* @param string[] $entry entry
|
||||||
|
* @throws LAMException if version is invalid
|
||||||
|
*/
|
||||||
|
private function processVersion($entry) {
|
||||||
|
$keyValue = $this->getLineKeyValue($entry[0]);
|
||||||
|
if (($keyValue[Importer::VALUE] != '1') || (sizeof($entry) > 1)) {
|
||||||
|
$escapedLines = array_map('htmlspecialchars', $entry);
|
||||||
|
throw new LAMException(_('LDIF import only supports version 1.'), implode('<br>', $escapedLines));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks a dn entry.
|
||||||
|
*
|
||||||
|
* @param string[] $entry entry
|
||||||
|
* @return ImporterTask task
|
||||||
|
* @throws LAMException if invalid format
|
||||||
|
*/
|
||||||
|
private function processDnEntry($entry) {
|
||||||
|
$dnLine = array_shift($entry);
|
||||||
|
$keyValue = $this->getLineKeyValue($dnLine);
|
||||||
|
$dn = $keyValue[Importer::VALUE];
|
||||||
|
if (empty($entry)) {
|
||||||
|
throw new LAMException(_('Invalid data'), htmlspecialchars($dnLine));
|
||||||
|
}
|
||||||
|
$firstAttributeLine = array_shift($entry);
|
||||||
|
$firstAttribute = $this->getLineKeyValue($firstAttributeLine);
|
||||||
|
if ($firstAttribute[Importer::KEY] != Importer::CHANGETYPE) {
|
||||||
|
// complete DN
|
||||||
|
$attributes = array(
|
||||||
|
$firstAttribute[Importer::KEY] => array($firstAttribute[Importer::VALUE])
|
||||||
|
);
|
||||||
|
foreach ($entry as $attributeLine) {
|
||||||
|
$attribute = $this->getLineKeyValue($attributeLine);
|
||||||
|
$attributes[$attribute[Importer::KEY]][] = $attribute[Importer::VALUE];
|
||||||
|
}
|
||||||
|
return new AddEntryTask($dn, $attributes);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the HTML for an error message.
|
||||||
|
*
|
||||||
|
* @param string $type message type (e.g. INFO)
|
||||||
|
* @param string $title title
|
||||||
|
* @param string $message message
|
||||||
|
* @return string HTML
|
||||||
|
*/
|
||||||
|
public static function formatMessage($type, $title, $message) {
|
||||||
|
$msg = new htmlStatusMessage($type, $title, $message);
|
||||||
|
$tabindex = 0;
|
||||||
|
ob_start();
|
||||||
|
$msg->generateHTML(null, array($msg), array(), true, $tabindex, 'user');
|
||||||
|
$data = ob_get_contents();
|
||||||
|
ob_clean();
|
||||||
|
return $data;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the key and value part of the line.
|
||||||
|
*
|
||||||
|
* @param string $line line
|
||||||
|
* @return string[] array(key, value)
|
||||||
|
*/
|
||||||
|
private function getLineKeyValue($line) {
|
||||||
|
$parts = explode(':', $line, 2);
|
||||||
|
if (substr($parts[Importer::VALUE], 0, 1) == ':') {
|
||||||
|
$value = base64_decode(trim(substr($parts[Importer::VALUE], 1)));
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$value = trim($parts[Importer::VALUE]);
|
||||||
|
}
|
||||||
|
return array($parts[Importer::KEY], $value);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A single import task.
|
||||||
|
*
|
||||||
|
* @author Roland Gruber
|
||||||
|
*/
|
||||||
|
interface ImporterTask {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Runs the task.
|
||||||
|
*
|
||||||
|
* @return string HTML output or LAMException if error occured
|
||||||
|
*/
|
||||||
|
public function run();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Adds a complete LDAP entry.
|
||||||
|
*
|
||||||
|
* @author Roland Gruber
|
||||||
|
*/
|
||||||
|
class AddEntryTask implements ImporterTask {
|
||||||
|
|
||||||
|
private $dn = '';
|
||||||
|
private $attributes = array();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*
|
||||||
|
* @param string $dn DN
|
||||||
|
* @param array[string[]] $attributes list of attributes
|
||||||
|
*/
|
||||||
|
public function __construct($dn, $attributes) {
|
||||||
|
$this->dn = $dn;
|
||||||
|
$this->attributes = $attributes;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
* @see \LAM\TOOLS\IMPORT_EXPORT\ImporterTask::run()
|
||||||
|
*/
|
||||||
|
public function run() {
|
||||||
|
$ldap = $_SESSION['ldap']->server();
|
||||||
|
$success = @ldap_add($ldap, $this->dn, $this->attributes);
|
||||||
|
if ($success) {
|
||||||
|
return Importer::formatMessage('INFO', _('Entry created'), htmlspecialchars($this->dn));
|
||||||
|
}
|
||||||
|
throw new LAMException(sprintf(_('Was unable to create DN: %s.'), $this->dn), getExtendedLDAPErrorMessage($ldap));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -911,6 +911,7 @@ window.lam.import = window.lam.import || {};
|
||||||
*/
|
*/
|
||||||
window.lam.import.startImport = function(tokenName, tokenValue) {
|
window.lam.import.startImport = function(tokenName, tokenValue) {
|
||||||
jQuery(document).ready(function() {
|
jQuery(document).ready(function() {
|
||||||
|
jQuery('#progressbarImport').progressbar();
|
||||||
var output = jQuery('#importResults');
|
var output = jQuery('#importResults');
|
||||||
var data = {
|
var data = {
|
||||||
jsonInput: ''
|
jsonInput: ''
|
||||||
|
@ -922,11 +923,21 @@ window.lam.import.startImport = function(tokenName, tokenValue) {
|
||||||
data: data
|
data: data
|
||||||
})
|
})
|
||||||
.done(function(jsonData){
|
.done(function(jsonData){
|
||||||
|
if (jsonData.data && (jsonData.data != '')) {
|
||||||
|
output.append(jsonData.data);
|
||||||
|
}
|
||||||
if (jsonData.status == 'done') {
|
if (jsonData.status == 'done') {
|
||||||
jQuery('#progressbarImport').hide();
|
jQuery('#progressbarImport').hide();
|
||||||
jQuery('#btn_submitImportCancel').hide();
|
jQuery('#btn_submitImportCancel').hide();
|
||||||
jQuery('#statusImportInprogress').hide();
|
jQuery('#statusImportInprogress').hide();
|
||||||
jQuery('#statusImportDone').show();
|
jQuery('#statusImportDone').show();
|
||||||
|
jQuery('.newimport').show();
|
||||||
|
}
|
||||||
|
else if (jsonData.status == 'failed') {
|
||||||
|
jQuery('#btn_submitImportCancel').hide();
|
||||||
|
jQuery('#statusImportInprogress').hide();
|
||||||
|
jQuery('#statusImportFailed').show();
|
||||||
|
jQuery('.newimport').show();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
jQuery('#progressbarImport').progressbar({
|
jQuery('#progressbarImport').progressbar({
|
||||||
|
|
|
@ -31,6 +31,8 @@ use \LAM\TOOLS\IMPORT_EXPORT\Importer;
|
||||||
|
|
||||||
/** security functions */
|
/** security functions */
|
||||||
include_once("../../lib/security.inc");
|
include_once("../../lib/security.inc");
|
||||||
|
/** LDIF import */
|
||||||
|
include_once("../../lib/import.inc");
|
||||||
|
|
||||||
// start session
|
// start session
|
||||||
if (isset($_GET['selfservice'])) {
|
if (isset($_GET['selfservice'])) {
|
||||||
|
|
|
@ -10,6 +10,8 @@ use \htmlStatusMessage;
|
||||||
use \htmlDiv;
|
use \htmlDiv;
|
||||||
use \htmlOutputText;
|
use \htmlOutputText;
|
||||||
use \htmlJavaScript;
|
use \htmlJavaScript;
|
||||||
|
use \LAMException;
|
||||||
|
use \htmlLink;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
||||||
|
@ -66,8 +68,8 @@ if (!empty($_POST)) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// clean old data
|
// clean old data
|
||||||
if (isset($_SESSION[Importer::SESSION_KEY_ENTRIES])) {
|
if (isset($_SESSION[Importer::SESSION_KEY_TASKS])) {
|
||||||
unset($_SESSION[Importer::SESSION_KEY_ENTRIES]);
|
unset($_SESSION[Importer::SESSION_KEY_TASKS]);
|
||||||
}
|
}
|
||||||
if (isset($_SESSION[Importer::SESSION_KEY_COUNT])) {
|
if (isset($_SESSION[Importer::SESSION_KEY_COUNT])) {
|
||||||
unset($_SESSION[Importer::SESSION_KEY_COUNT]);
|
unset($_SESSION[Importer::SESSION_KEY_COUNT]);
|
||||||
|
@ -157,13 +159,14 @@ function printImportTabContent(&$tabindex) {
|
||||||
* @param int $tabindex tabindex
|
* @param int $tabindex tabindex
|
||||||
*/
|
*/
|
||||||
function printImportTabProcessing(&$tabindex) {
|
function printImportTabProcessing(&$tabindex) {
|
||||||
$message = checkImportData();
|
try {
|
||||||
if (!empty($message)) {
|
checkImportData();
|
||||||
|
}
|
||||||
|
catch (LAMException $e) {
|
||||||
$container = new htmlResponsiveRow();
|
$container = new htmlResponsiveRow();
|
||||||
$container->add(new htmlStatusMessage('ERROR', $message), 12);
|
$container->add(new htmlStatusMessage('ERROR', $e->getTitle(), $e->getMessage()), 12);
|
||||||
parseHtml(null, $container, array(), false, $tabindex, 'user');
|
parseHtml(null, $container, array(), false, $tabindex, 'user');
|
||||||
printImportTabContent($tabindex);
|
printImportTabContent($tabindex);
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
echo "<form enctype=\"multipart/form-data\" action=\"importexport.php\" method=\"post\">\n";
|
echo "<form enctype=\"multipart/form-data\" action=\"importexport.php\" method=\"post\">\n";
|
||||||
$container = new htmlResponsiveRow();
|
$container = new htmlResponsiveRow();
|
||||||
|
@ -171,17 +174,23 @@ function printImportTabProcessing(&$tabindex) {
|
||||||
|
|
||||||
$container->add(new htmlDiv('statusImportInprogress', new htmlOutputText(_('Status') . ': ' . _('in progress'))), 12);
|
$container->add(new htmlDiv('statusImportInprogress', new htmlOutputText(_('Status') . ': ' . _('in progress'))), 12);
|
||||||
$container->add(new htmlDiv('statusImportDone', new htmlOutputText(_('Status') . ': ' . _('done')), array('hidden')), 12);
|
$container->add(new htmlDiv('statusImportDone', new htmlOutputText(_('Status') . ': ' . _('done')), array('hidden')), 12);
|
||||||
|
$container->add(new htmlDiv('statusImportFailed', new htmlOutputText(_('Status') . ': ' . _('failed')), array('hidden')), 12);
|
||||||
|
$container->addVerticalSpacer('1rem');
|
||||||
$container->add(new htmlDiv('progressbarImport', new htmlOutputText('')), 12);
|
$container->add(new htmlDiv('progressbarImport', new htmlOutputText('')), 12);
|
||||||
|
$container->addVerticalSpacer('3rem');
|
||||||
|
$button = new htmlButton('submitImportCancel', _('Cancel'));
|
||||||
|
$container->add($button, 12, 12, 12, 'text-center');
|
||||||
|
|
||||||
|
$newImportButton = new htmlLink(_('New import'), null, null, true);
|
||||||
|
$container->add($newImportButton, 12, 12, 12, 'text-center hidden newimport');
|
||||||
|
|
||||||
|
$container->addVerticalSpacer('3rem');
|
||||||
|
|
||||||
$container->add(new htmlDiv('importResults', new htmlOutputText('')), 12);
|
$container->add(new htmlDiv('importResults', new htmlOutputText('')), 12);
|
||||||
$container->add(new htmlJavaScript(
|
$container->add(new htmlJavaScript(
|
||||||
'window.lam.import.startImport(\'' . getSecurityTokenName() . '\', \'' . getSecurityTokenValue() . '\');'
|
'window.lam.import.startImport(\'' . getSecurityTokenName() . '\', \'' . getSecurityTokenValue() . '\');'
|
||||||
), 12);
|
), 12);
|
||||||
|
|
||||||
$container->addVerticalSpacer('3rem');
|
|
||||||
|
|
||||||
$button = new htmlButton('submitImportCancel', _('Cancel'));
|
|
||||||
$container->add($button, 12, 12, 12, 'text-center');
|
|
||||||
|
|
||||||
addSecurityTokenToMetaHTML($container);
|
addSecurityTokenToMetaHTML($container);
|
||||||
|
|
||||||
parseHtml(null, $container, array(), false, $tabindex, 'user');
|
parseHtml(null, $container, array(), false, $tabindex, 'user');
|
||||||
|
@ -191,7 +200,7 @@ function printImportTabProcessing(&$tabindex) {
|
||||||
/**
|
/**
|
||||||
* Checks if the import data is ok.
|
* Checks if the import data is ok.
|
||||||
*
|
*
|
||||||
* @return string error message if not valid
|
* @throws LAMException error message if not valid
|
||||||
*/
|
*/
|
||||||
function checkImportData() {
|
function checkImportData() {
|
||||||
$source = $_POST['source'];
|
$source = $_POST['source'];
|
||||||
|
@ -205,59 +214,13 @@ function checkImportData() {
|
||||||
fclose($handle);
|
fclose($handle);
|
||||||
}
|
}
|
||||||
if (empty($ldif)) {
|
if (empty($ldif)) {
|
||||||
return _('You must either upload a file or provide an import in the text box.');
|
throw new LAMException(_('You must either upload a file or provide an import in the text box.'));
|
||||||
}
|
}
|
||||||
$lines = preg_split("/\n|\r\n|\r/", $ldif);
|
$lines = preg_split("/\n|\r\n|\r/", $ldif);
|
||||||
$entriesData = extractImportEntries($lines);
|
$importer = new Importer();
|
||||||
if (!is_array($entriesData)) {
|
$tasks = $importer->getTasks($lines);
|
||||||
return $entriesData;
|
$_SESSION[Importer::SESSION_KEY_TASKS] = $tasks;
|
||||||
}
|
$_SESSION[Importer::SESSION_KEY_COUNT] = sizeof($tasks);
|
||||||
$_SESSION[Importer::SESSION_KEY_ENTRIES] = $entriesData;
|
|
||||||
$_SESSION[Importer::SESSION_KEY_COUNT] = sizeof($entriesData);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Extracts the single entries in the file.
|
|
||||||
*
|
|
||||||
* @param string[] $lines LDIF lines
|
|
||||||
* @return string|array array of string[]
|
|
||||||
*/
|
|
||||||
function extractImportEntries($lines) {
|
|
||||||
$entries = array();
|
|
||||||
$currentEntry = array();
|
|
||||||
foreach ($lines as $line) {
|
|
||||||
if (substr(trim($line), 0, 1) === '#') {
|
|
||||||
// skip comments
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (empty(trim($line))) {
|
|
||||||
// end of entry
|
|
||||||
if (!empty($currentEntry)) {
|
|
||||||
$entries[] = $currentEntry;
|
|
||||||
$currentEntry = array();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
elseif (substr($line, 0, 1) === ' ') {
|
|
||||||
// append to last line if starting with a space
|
|
||||||
if (empty($currentEntry)) {
|
|
||||||
return _('Invalid data:') . ' ' . htmlspecialchars($line);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
$currentEntry[sizeof($currentEntry) - 1] .= substr($line, 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
$parts = explode(':', $line, 2);
|
|
||||||
if (sizeof($parts) < 2) {
|
|
||||||
return _('Invalid data:') . ' ' . htmlspecialchars($line);
|
|
||||||
}
|
|
||||||
$currentEntry[] = $line;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!empty($currentEntry)) {
|
|
||||||
$entries[] = $currentEntry;
|
|
||||||
}
|
|
||||||
return $entries;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
include '../../lib/adminFooter.inc';
|
include '../../lib/adminFooter.inc';
|
||||||
|
|
|
@ -0,0 +1,125 @@
|
||||||
|
<?php
|
||||||
|
use \LAM\TOOLS\IMPORT_EXPORT\Importer;
|
||||||
|
/*
|
||||||
|
|
||||||
|
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
||||||
|
Copyright (C) 2018 Roland Gruber
|
||||||
|
|
||||||
|
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
require_once 'lam/lib/import.inc';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks the LDIF importer.
|
||||||
|
*
|
||||||
|
* @author Roland Gruber
|
||||||
|
*/
|
||||||
|
class ImporterTest extends PHPUnit_Framework_TestCase {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* No LDIF at all.
|
||||||
|
*/
|
||||||
|
public function testCompletelyInvalid() {
|
||||||
|
$lines = array(
|
||||||
|
"this is no LDIF"
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->setExpectedException(LAMException::class, 'this is no LDIF');
|
||||||
|
|
||||||
|
$importer = new Importer();
|
||||||
|
$importer->getTasks($lines);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Wrong format version.
|
||||||
|
*/
|
||||||
|
public function testWrongVersion() {
|
||||||
|
$lines = array(
|
||||||
|
"version: 3"
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->setExpectedException(LAMException::class, 'version: 3');
|
||||||
|
|
||||||
|
$importer = new Importer();
|
||||||
|
$importer->getTasks($lines);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Multiple versions.
|
||||||
|
*/
|
||||||
|
public function testMultipleVersions() {
|
||||||
|
$lines = array(
|
||||||
|
"version: 1",
|
||||||
|
"",
|
||||||
|
"version: 1"
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->setExpectedException(LAMException::class);
|
||||||
|
|
||||||
|
$importer = new Importer();
|
||||||
|
$importer->getTasks($lines);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Data after version.
|
||||||
|
*/
|
||||||
|
public function testDataAfterVersion() {
|
||||||
|
$lines = array(
|
||||||
|
"version: 1",
|
||||||
|
"some: data"
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->setExpectedException(LAMException::class);
|
||||||
|
|
||||||
|
$importer = new Importer();
|
||||||
|
$importer->getTasks($lines);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DN line without any data.
|
||||||
|
*/
|
||||||
|
public function testDnNoData() {
|
||||||
|
$lines = array(
|
||||||
|
"version: 1",
|
||||||
|
"",
|
||||||
|
"dn: uid=test,dc=example,dc=com"
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->setExpectedException(LAMException::class, 'dn: uid=test,dc=example,dc=com');
|
||||||
|
|
||||||
|
$importer = new Importer();
|
||||||
|
$importer->getTasks($lines);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* One complete entry.
|
||||||
|
*/
|
||||||
|
public function testSingleFullEntry() {
|
||||||
|
$lines = array(
|
||||||
|
"version: 1",
|
||||||
|
"",
|
||||||
|
"dn: uid=test,dc=example,dc=com",
|
||||||
|
"objectClass: inetOrgPerson",
|
||||||
|
"uid: test",
|
||||||
|
);
|
||||||
|
|
||||||
|
$importer = new Importer();
|
||||||
|
$tasks = $importer->getTasks($lines);
|
||||||
|
$this->assertEquals(1, sizeof($tasks));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue