LDAPAccountManager/lam/templates/massBuildAccounts.php

214 lines
7.2 KiB
PHP
Raw Normal View History

2004-09-21 18:39:11 +00:00
<?php
/*
$Id$
2009-10-27 18:47:12 +00:00
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
2010-01-01 17:21:46 +00:00
Copyright (C) 2004 - 2010 Roland Gruber
2004-09-21 18:39:11 +00:00
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
*/
/**
* Creates the accounts by parsing the uploaded file.
*
* @author Roland Gruber
* @package tools
*/
2006-03-26 17:51:25 +00:00
/** security functions */
include_once("../lib/security.inc");
2004-09-21 18:39:11 +00:00
/** access to configuration */
include_once('../lib/config.inc');
/** status messages */
include_once('../lib/status.inc');
/** account modules */
include_once('../lib/modules.inc');
// Start session
2006-03-26 17:51:25 +00:00
startSecureSession();
2004-09-21 18:39:11 +00:00
2007-12-30 13:15:39 +00:00
// die if no write access
if (!checkIfWriteAccessIsAllowed()) die();
2004-09-21 18:39:11 +00:00
// Redirect to startpage if user is not loged in
2008-05-15 17:32:59 +00:00
if (!isset($_SESSION['loggedIn']) || ($_SESSION['loggedIn'] !== true)) {
2004-09-21 18:39:11 +00:00
metaRefresh("login.php");
exit;
}
// Set correct language, codepages, ....
setlanguage();
// show LDIF if requested
if (isset($_GET['showldif'])) {
//download file
if(isset($HTTP_SERVER_VARS['HTTP_USER_AGENT']) and strpos($HTTP_SERVER_VARS['HTTP_USER_AGENT'],'MSIE')) {
Header('Content-Type: application/force-download');
}
else {
Header('Content-Type: text/plain');
}
Header('Content-disposition: attachment; filename=lam.ldif');
$accounts = unserialize($_SESSION['ldap']->decrypt($_SESSION['mass_accounts']));
for ($i = 0; $i < sizeof($accounts); $i++) {
echo "DN: " . $accounts[$i]['dn'] . "\n";
unset($accounts[$i]['dn']);
$keys = array_keys($accounts[$i]);
for ($k = 0; $k < sizeof($keys); $k++) {
if (is_array($accounts[$i][$keys[$k]])) {
for ($x = 0; $x < sizeof($accounts[$i][$keys[$k]]); $x++) {
echo $keys[$k] . ": " . $accounts[$i][$keys[$k]][$x] . "\n";
}
}
else {
echo $keys[$k] . ": " . $accounts[$i][$keys[$k]] . "\n";
}
}
echo "\n";
}
exit;
}
2010-01-01 17:21:46 +00:00
include 'main_header.php';
2010-10-24 13:53:44 +00:00
echo '<div class="userlist-bright smallPaddingContent">';
2004-09-21 18:39:11 +00:00
if ($_FILES['inputfile'] && ($_FILES['inputfile']['size'] > 0)) {
$selectedModules = explode(',', $_POST['selectedModules']);
2004-09-21 18:39:11 +00:00
// check if input file is well formated
$data = array(); // input values without first row
$ids = array(); // <column name> => <column number for $data>
2004-09-21 18:39:11 +00:00
// get input fields from modules
$columns = getUploadColumns($_POST['scope'], $selectedModules);
2004-09-21 18:39:11 +00:00
// read input file
$handle = fopen ($_FILES['inputfile']['tmp_name'], "r");
if (($head = fgetcsv($handle, 2000)) !== false ) { // head row
for ($i = 0; $i < sizeof($head); $i++) {
$ids[$head[$i]] = $i;
}
}
while (($line = fgetcsv($handle, 2000)) !== false ) { // account rows
$data[] = $line;
}
2004-09-21 18:39:11 +00:00
$errors = array();
// check if all required columns are present
2004-09-21 18:39:11 +00:00
$checkcolumns = array();
$columns = call_user_func_array('array_merge', $columns);
for ($i = 0; $i < sizeof($columns); $i++) {
if (isset($columns[$i]['required']) && ($columns[$i]['required'] == true)) {
2004-09-21 18:39:11 +00:00
if (isset($ids[$columns[$i]['name']])) $checkcolumns[] = $ids[$columns[$i]['name']];
else $errors[] = array(_("A required column is missing in your CSV file."), $columns[$i]['name']);
}
}
// check if all required attributes are given
2004-09-21 18:39:11 +00:00
$invalidColumns = array();
$id_names = array_keys($ids);
for ($i = 0; $i < sizeof($checkcolumns); $i++) {
for ($r = 0; $r < sizeof($data); $r++) {
if ($data[$r][$checkcolumns[$i]] == "") {
$invalidColumns[] = $id_names[$checkcolumns[$i]];
break;
}
}
}
for ($i = 0; $i < sizeof($data); $i++) {
if ($data[$i][$ids['dn_rdn']] == "") {
$invalidColumns[] = 'dn_rdn';
break;
}
}
for ($i = 0; $i < sizeof($invalidColumns); $i++) {
$errors[] = array(_("One or more values of the required column \"$invalidColumns[$i]\" are missing."), "");
}
// check if values in unique columns are correct
for ($i = 0; $i < sizeof($columns); $i++) {
2008-09-16 17:12:25 +00:00
if (isset($columns[$i]['unique']) && ($columns[$i]['unique'] == true)) {
$colNumber = $ids[$columns[$i]['name']];
$values_given = array();
for ($r = 0; $r < sizeof($data); $r++) {
$values_given[] = $data[$r][$colNumber];
}
$values_unique = array_unique($values_given);
if (sizeof($values_given) != sizeof($values_unique)) {
$errors[] = array(_("This column is defined to include unique entries but duplicates were found:"), $columns[$i]['name']);
}
}
}
2004-09-27 19:13:06 +00:00
// if input data is invalid just display error messages (max 50)
if (sizeof($errors) > 0) {
for ($i = 0; $i < sizeof($errors); $i++) StatusMessage("ERROR", $errors[$i][0], $errors[$i][1]);
}
2004-09-21 18:39:11 +00:00
// let modules build accounts
2004-09-27 19:13:06 +00:00
else {
$accounts = buildUploadAccounts($_POST['scope'], $data, $ids, $selectedModules);
2004-09-21 18:39:11 +00:00
if ($accounts != false) {
$rdnList = getRDNAttributes($_POST['scope'], $selectedModules);
2009-11-27 18:49:56 +00:00
$suffix = $_SESSION['config']->get_Suffix($_POST['scope']);
2004-09-21 18:39:11 +00:00
// set DN
for ($i = 0; $i < sizeof($accounts); $i++) {
// check against list of possible RDN attributes
2009-11-27 18:49:56 +00:00
if (!in_array($data[$i][$ids['dn_rdn']], $rdnList)) {
$errors[] = array(_('Account %s:') . ' dn_rdn' . $accounts[$i][$data[$i][$ids['dn_rdn']]], _("Invalid RDN attribute!"), array($i));
}
2004-09-21 18:39:11 +00:00
else {
$account_dn = $data[$i][$ids['dn_rdn']] . "=" . $accounts[$i][$data[$i][$ids['dn_rdn']]] . ",";
2009-11-27 18:49:56 +00:00
if ($data[$i][$ids['dn_suffix']] == "") $account_dn = $account_dn . $suffix;
2004-09-21 18:39:11 +00:00
else $account_dn = $account_dn . $data[$i][$ids['dn_suffix']];
$accounts[$i]['dn'] = $account_dn;
}
}
// print errors if DN could not be built
if (sizeof($errors) > 0) {
for ($i = 0; $i < sizeof($errors); $i++) StatusMessage("ERROR", $errors[$i][0], $errors[$i][1], $errors[$i][2]);
}
else {
// store accounts in session
$_SESSION['mass_accounts'] = $_SESSION['ldap']->encrypt(serialize($accounts));
$_SESSION['mass_counter'] = 0;
$_SESSION['mass_errors'] = array();
2004-10-19 18:18:46 +00:00
$_SESSION['mass_failed'] = array();
$_SESSION['mass_postActions'] = array();
$_SESSION['mass_data'] = $_SESSION['ldap']->encrypt(serialize($data));
$_SESSION['mass_ids'] = $ids;
$_SESSION['mass_scope'] = $_POST['scope'];
$_SESSION['mass_selectedModules'] = $selectedModules;
// show links for upload and LDIF export
2010-10-24 13:53:44 +00:00
echo "<div class=\"title\">\n";
echo "<h2 class=\"titleText\">" . _("LAM has checked your input and is now ready to create the accounts.") . "</h2>\n";
echo "</div>";
echo "<p>&nbsp;</p>\n";
2010-10-24 13:53:44 +00:00
echo "<a href=\"massDoUpload.php\">" . _("Upload accounts to LDAP") . "</a>";
echo "&nbsp;&nbsp;&nbsp;&nbsp;";
echo "<a href=\"massBuildAccounts.php?showldif=true\">" . _("Show LDIF file") . "</a>";
}
2004-09-21 18:39:11 +00:00
}
}
}
else {
StatusMessage('ERROR', _('Please provide a file to upload.'));
echo '<br><a href="masscreate.php">' . _('Back') . '</a>';
}
2004-09-21 18:39:11 +00:00
2010-10-24 13:53:44 +00:00
echo '</div>';
2010-08-21 09:43:52 +00:00
include 'main_footer.php';
2004-09-21 18:39:11 +00:00
?>