318 lines
		
	
	
		
			10 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			318 lines
		
	
	
		
			10 KiB
		
	
	
	
		
			PHP
		
	
	
	
<?php
 | 
						|
/*
 | 
						|
$Id$
 | 
						|
 | 
						|
  This code is part of LDAP Account Manager (http://www.sourceforge.net/projects/lam)
 | 
						|
  Copyright (C) 2004  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
 | 
						|
 | 
						|
*/
 | 
						|
 | 
						|
/**
 | 
						|
* Start page of file upload
 | 
						|
*
 | 
						|
* @author Roland Gruber
 | 
						|
* @package tools
 | 
						|
*/
 | 
						|
 | 
						|
/** access to configuration */
 | 
						|
include_once('../lib/config.inc');
 | 
						|
/** status messages */
 | 
						|
include_once('../lib/status.inc');
 | 
						|
/** account modules */
 | 
						|
include_once('../lib/modules.inc');
 | 
						|
 | 
						|
 | 
						|
// Start session
 | 
						|
session_save_path('../sess');
 | 
						|
@session_start();
 | 
						|
 | 
						|
// Redirect to startpage if user is not loged in
 | 
						|
if (!isset($_SESSION['loggedIn'])) {
 | 
						|
	metaRefresh("login.php");
 | 
						|
	exit;
 | 
						|
}
 | 
						|
 | 
						|
// Set correct language, codepages, ....
 | 
						|
setlanguage();
 | 
						|
 | 
						|
// show CSV if requested
 | 
						|
if (isset($_GET['getCSV'])) {
 | 
						|
	//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: application/msexcel');
 | 
						|
	}
 | 
						|
	Header('Content-disposition: attachment; filename=lam.csv');
 | 
						|
	echo $_SESSION['mass_csv'];
 | 
						|
	exit;
 | 
						|
}
 | 
						|
 | 
						|
$types = $_SESSION['config']->get_ActiveTypes();
 | 
						|
 | 
						|
echo $_SESSION['header'];
 | 
						|
echo "<title>account upload</title>\n";
 | 
						|
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../style/layout.css\">\n";
 | 
						|
for ($i = 0; $i < sizeof($types); $i++) {
 | 
						|
	echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../style/type_" . $types[$i] . ".css\">\n";
 | 
						|
}
 | 
						|
echo "</head>\n";
 | 
						|
echo "<body>\n";
 | 
						|
 | 
						|
// check if account specific page should be shown
 | 
						|
if (isset($_POST['type'])) showMainPage($_POST['type']);
 | 
						|
 | 
						|
// show start page
 | 
						|
else {
 | 
						|
	echo "<h1 align=\"center\">" . _("Account creation via file upload") . "</h1>\n";
 | 
						|
	echo "<p> </p>\n";
 | 
						|
	echo "<p> </p>\n";
 | 
						|
	
 | 
						|
	echo "<p>\n";
 | 
						|
		echo _("Here you can create multiple accounts by providing a CSV file.");
 | 
						|
	echo "</p>\n";
 | 
						|
	
 | 
						|
	echo "<p> </p>\n";
 | 
						|
	
 | 
						|
	echo "<p><b>\n";
 | 
						|
	echo _("Please select your account type:");
 | 
						|
	echo "</b></p>\n";
 | 
						|
	
 | 
						|
	echo "<form enctype=\"multipart/form-data\" action=\"masscreate.php\" method=\"post\">\n";
 | 
						|
	echo "<table style=\"border-color: grey\" cellpadding=\"10\" border=\"2\" cellspacing=\"0\">\n";
 | 
						|
	for ($i = 0; $i < sizeof($types); $i++) {
 | 
						|
		echo "<tr>\n";
 | 
						|
		echo "<th class=\"" . $types[$i] . "list-sort\" align=\"center\"><input type=\"radio\" name=\"type\" value=\"" . $types[$i] . "\"></th>\n";
 | 
						|
		echo "<th class=\"" . $types[$i] . "list-sort\" align=\"left\">" . getTypeAlias($types[$i]) . "</th>\n";
 | 
						|
		echo "</tr>\n";
 | 
						|
	}
 | 
						|
	echo "</table>\n";
 | 
						|
	echo "<br><br>\n";
 | 
						|
	echo "<input type=\"submit\" name=\"submit\" value=\"". _("Submit") . "\">\n";
 | 
						|
	echo "</form>\n";
 | 
						|
	
 | 
						|
	echo "</body>\n";
 | 
						|
	echo "</html>\n";
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
/**
 | 
						|
* Displays the acount type specific main page of the upload.
 | 
						|
*
 | 
						|
* @param string $scope account type
 | 
						|
*/
 | 
						|
function showMainPage($scope) {
 | 
						|
	echo "<p>\n";
 | 
						|
		echo _("Please provide a CSV formated file with your account data. The cells in the first row must be filled with the column identifiers. The following rows represent one account for each row.");
 | 
						|
	echo "</p>\n";
 | 
						|
	
 | 
						|
	echo "<p> </p>\n";
 | 
						|
 | 
						|
	echo "<form enctype=\"multipart/form-data\" action=\"massBuildAccounts.php\" method=\"post\">\n";
 | 
						|
	echo "<p>\n";
 | 
						|
	echo "<b>" . _("CSV file:") . "</b> <input name=\"inputfile\" type=\"file\">  ";
 | 
						|
	echo "<input name=\"submitfile\" type=\"submit\" value=\"" . _('Upload file and create accounts') . "\">\n";
 | 
						|
	echo "<input type=\"hidden\" name=\"scope\" value=\"$scope\">\n";
 | 
						|
	echo "</p>\n";
 | 
						|
	echo "</form>\n";
 | 
						|
 | 
						|
	echo "<p> </p>\n";
 | 
						|
 | 
						|
	echo "<p><big><b>" . _("Columns:") . "</b></big></p>\n";
 | 
						|
 | 
						|
	// DN options
 | 
						|
	echo "<fieldset class=\"" . $scope . "edit\">\n<legend><b>" . _("DN settings") . "</b></legend>\n";
 | 
						|
	echo "<table width=\"100%\">\n";
 | 
						|
		echo "<tr valign=\"top\">\n";
 | 
						|
			echo "<td width=\"50%\">\n";
 | 
						|
			echo "<b>" . _("DN suffix") . "</b>\n";
 | 
						|
			// help link
 | 
						|
			echo " <a href=\"help.php?HelpNumber=361\" target=\"lamhelp\">";
 | 
						|
			echo "<img src=\"../graphics/help.png\" alt=\"" . _('Help') . "\" title=\"" . _('Help') . "\">";
 | 
						|
			echo "</a>\n";
 | 
						|
			echo "<br>\n";
 | 
						|
				echo "<ul>\n";
 | 
						|
					echo "<li><b>" . _("Identifier") . ":</b> " . "dn_suffix</li>\n";
 | 
						|
					echo "<li><b>" . _("Example value") . ":</b> " . "ou=accounts,dc=yourdomain,dc=org</li>\n";
 | 
						|
					echo "<li><b>" . _("Default value") . ":</b> " . $_SESSION['config']->get_Suffix($scope) . "</li>\n";
 | 
						|
				echo "</ul>\n";
 | 
						|
			echo "</td>\n";
 | 
						|
			echo "<td width=\"50%\">\n";
 | 
						|
			echo "<b><font color=\"red\">" . _("RDN identifier") . "</font></b>\n";
 | 
						|
			// help link
 | 
						|
			echo " <a href=\"help.php?HelpNumber=301\" target=\"lamhelp\">";
 | 
						|
			echo "<img src=\"../graphics/help.png\" alt=\"" . _('Help') . "\" title=\"" . _('Help') . "\">";
 | 
						|
			echo "</a>\n";
 | 
						|
			echo "<br>\n";
 | 
						|
				echo "<ul>\n";
 | 
						|
					echo "<li><b>" . _("Identifier") . ":</b> " . "dn_rdn</li>\n";
 | 
						|
					echo "<li><b>" . _("Possible values") . ":</b> " . implode(", ", getRDNAttributes($scope)) . "</li>\n";
 | 
						|
				echo "</ul>\n";
 | 
						|
			echo "</td>\n";
 | 
						|
		echo "</tr>\n";
 | 
						|
	echo "</table>\n";
 | 
						|
	echo "</fieldset>\n";
 | 
						|
	
 | 
						|
	// get input fields from modules
 | 
						|
	$columns = getUploadColumns($scope);
 | 
						|
 | 
						|
	// print input fields
 | 
						|
	$modules = array_keys($columns);
 | 
						|
	for ($m = 0; $m < sizeof($modules); $m++) {
 | 
						|
		if (sizeof($columns[$modules[$m]]) < 1) continue;
 | 
						|
		echo "<fieldset class=\"" . $scope . "edit\">\n<legend><b>" . getModuleAlias($modules[$m], $scope) . "</b></legend>\n";
 | 
						|
		echo "<table width=\"100%\">\n";
 | 
						|
		for ($i = 0; $i < sizeof($columns[$modules[$m]]); $i++) {
 | 
						|
			echo "<tr valign=\"top\">\n";
 | 
						|
				echo "<td width=\"33%\">\n";
 | 
						|
					showColumnData($modules[$m], $columns[$modules[$m]][$i], $scope);
 | 
						|
				echo "</td>\n";
 | 
						|
				$i++;
 | 
						|
				if ($i < sizeof($columns[$modules[$m]])) {
 | 
						|
					echo "<td width=\"33%\">\n";
 | 
						|
						showColumnData($modules[$m], $columns[$modules[$m]][$i], $scope);
 | 
						|
					echo "</td>\n";
 | 
						|
					$i++;
 | 
						|
					if ($i < sizeof($columns[$modules[$m]])) {
 | 
						|
						echo "<td width=\"33%\">\n";
 | 
						|
							showColumnData($modules[$m], $columns[$modules[$m]][$i], $scope);
 | 
						|
						echo "</td>\n";
 | 
						|
					}
 | 
						|
					else echo "<td width=\"33%\"></td>"; // empty cell if no more fields
 | 
						|
				}
 | 
						|
				else echo "<td width=\"33%\"></td><td width=\"33%\"></td>"; // empty cell if no more fields
 | 
						|
			echo "</tr>\n";
 | 
						|
		}
 | 
						|
		echo "</table>\n";
 | 
						|
		echo "</fieldset>";
 | 
						|
	}
 | 
						|
 | 
						|
	echo "<p> </p>\n";
 | 
						|
 | 
						|
	// print table example and build sample CSV
 | 
						|
	$sampleCSV = "";
 | 
						|
	$sampleCSV_head = array();
 | 
						|
	$sampleCSV_row = array();
 | 
						|
	echo "<big><b>" . _("This is an example how it would look in your spreadsheet program before you convert to CSV:") . "</b></big><br><br>\n";
 | 
						|
 | 
						|
	echo "<table style=\"border-color: grey\" cellpadding=\"10\" border=\"2\" cellspacing=\"0\">\n";
 | 
						|
		echo "<tr>\n";
 | 
						|
			// DN attributes
 | 
						|
			$sampleCSV_head[] = "\"dn_suffix\"";
 | 
						|
			$sampleCSV_head[] = "\"dn_rdn\"";
 | 
						|
			echo "<td>\n";
 | 
						|
				echo "dn_suffix";
 | 
						|
			echo "</td>\n";
 | 
						|
			echo "<td>\n";
 | 
						|
				echo "dn_rdn";
 | 
						|
			echo "</td>\n";
 | 
						|
			// module attributes
 | 
						|
			for ($m = 0; $m < sizeof($modules); $m++) {
 | 
						|
				if (sizeof($columns[$modules[$m]]) < 1) continue;
 | 
						|
				for ($i = 0; $i < sizeof($columns[$modules[$m]]); $i++) {
 | 
						|
					$sampleCSV_head[] = "\"" . $columns[$modules[$m]][$i]['name'] . "\"";
 | 
						|
					echo "<td>\n";
 | 
						|
						echo $columns[$modules[$m]][$i]['name'];
 | 
						|
					echo "</td>\n";
 | 
						|
				}
 | 
						|
			}
 | 
						|
		echo "</tr>\n";
 | 
						|
		echo "<tr>\n";
 | 
						|
			$RDNs = getRDNAttributes($scope);
 | 
						|
			// DN attributes
 | 
						|
			$sampleCSV_row[] = "\"" . $_SESSION['config']->get_Suffix($scope) . "\"";
 | 
						|
			$sampleCSV_row[] = "\"" . $RDNs[0] . "\"";
 | 
						|
			echo "<td>\n";
 | 
						|
				echo $_SESSION['config']->get_Suffix($scope);
 | 
						|
			echo "</td>\n";
 | 
						|
			echo "<td>\n";
 | 
						|
				echo $RDNs[0];
 | 
						|
			echo "</td>\n";
 | 
						|
			// module attributes
 | 
						|
			for ($m = 0; $m < sizeof($modules); $m++) {
 | 
						|
				if (sizeof($columns[$modules[$m]]) < 1) continue;
 | 
						|
				for ($i = 0; $i < sizeof($columns[$modules[$m]]); $i++) {
 | 
						|
					$sampleCSV_row[] = "\"" . $columns[$modules[$m]][$i]['example'] . "\"";
 | 
						|
					echo "<td>\n";
 | 
						|
						echo $columns[$modules[$m]][$i]['example'];
 | 
						|
					echo "</td>\n";
 | 
						|
				}
 | 
						|
			}
 | 
						|
		echo "</tr>\n";
 | 
						|
	echo "</table>\n";
 | 
						|
	$sampleCSV = implode(",", $sampleCSV_head) . "\n" . implode(",", $sampleCSV_row) . "\n";
 | 
						|
	$_SESSION['mass_csv'] = $sampleCSV;
 | 
						|
	
 | 
						|
	// link to CSV sample
 | 
						|
	echo "<p>\n";
 | 
						|
	echo "<br><br>\n";
 | 
						|
	echo "<a href=\"masscreate.php?getCSV=1\"><b>" . _("Download sample CSV file") . "</b></a>\n";
 | 
						|
	echo "<br><br>\n";
 | 
						|
	echo "<p>\n";
 | 
						|
 | 
						|
	echo "</body>\n";
 | 
						|
	echo "</html>\n";
 | 
						|
	die;
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
* Prints the properties of one input field.
 | 
						|
*
 | 
						|
* @param string $module account module name
 | 
						|
* @param array $data field data from modules
 | 
						|
* @param string $scope account type
 | 
						|
*/
 | 
						|
function showColumnData($module, $data, $scope) {
 | 
						|
	if (isset($data['required']) && ($data['required'] == true)) {
 | 
						|
		echo "<font color=\"red\"><b>\n";
 | 
						|
			echo $data['description'];
 | 
						|
		echo "</b></font>\n";
 | 
						|
	}
 | 
						|
	else {
 | 
						|
		echo "<b>\n";
 | 
						|
			echo $data['description'];
 | 
						|
		echo "</b>\n";
 | 
						|
	}
 | 
						|
	// help link
 | 
						|
	echo " <a href=\"help.php?module=$module&HelpNumber=". $data['help'] . "&scope=" . $scope . "\" target=\"lamhelp\">";
 | 
						|
	echo "<img src=\"../graphics/help.png\" alt=\"" . _('Help') . "\" title=\"" . _('Help') . "\">";
 | 
						|
	echo "</a>\n";
 | 
						|
	echo "<br>\n";
 | 
						|
	echo "<ul>\n";
 | 
						|
		echo "<li>\n";
 | 
						|
			echo "<b>" . _("Identifier") . ":</b> " . $data['name'] . "\n";
 | 
						|
		echo "</li>\n";
 | 
						|
		if (isset($data['values'])) {
 | 
						|
			echo "<li>\n";
 | 
						|
				echo "<b>" . _("Possible values") . ":</b> " . $data['values'] . "\n";
 | 
						|
			echo "</li>\n";
 | 
						|
		}
 | 
						|
		echo "<li>\n";
 | 
						|
			echo "<b>" . _("Example value") . ":</b> " . $data['example'] . "\n";
 | 
						|
		echo "</li>\n";
 | 
						|
		if (isset($data['default'])) {
 | 
						|
			echo "<li>\n";
 | 
						|
				echo "<b>" . _("Default value") . ":</b> " . $data['default'] . "\n";
 | 
						|
			echo "</li>\n";
 | 
						|
		}
 | 
						|
 | 
						|
	echo "</ul>\n";
 | 
						|
}
 | 
						|
 | 
						|
?>
 |