checked account.inc, hostedit.php and groupedit.php

for bugs and added comments to make the code
more understandable
This commit is contained in:
katagia 2003-10-21 13:40:13 +00:00
parent 6cdcde26c0
commit 3f1a646797
6 changed files with 455 additions and 493 deletions

View File

@ -624,37 +624,37 @@ function checkid($values, $values_old=false) {
// Store highest id-number // Store highest id-number
$id = $uids[count($uids)-1]; $id = $uids[count($uids)-1];
// Return minimum allowed id-number if all found id-numbers are too low // Return minimum allowed id-number if all found id-numbers are too low
if ($id < $minID) return intval($minID); if ($id < $minID) return implode(':', array($minID, ''));
// Return higesht used id-number + 1 if it's still in valid range // Return higesht used id-number + 1 if it's still in valid range
if ($id < $maxID) return intval($id)+1; if ($id < $maxID) return implode(':', array( $id+1, ''));
/* If this function is still running we have to fid a free id-number between /* If this function is still running we have to fid a free id-number between
* the used id-numbers * the used id-numbers
*/ */
$i = intval($minID); $i = intval($minID);
while (in_array($i, $uids)) $i++; while (in_array($i, $uids)) $i++;
if ($i>$maxID) return _('No free ID-Number!'); if ($i>$maxID) return implode(':', array($values->general_uidNumber , implode(';', array('ERROR', _('ID-Number'), _('No free ID-Number!')))));
else return $i; else return implode(':', array($i, implode(';', array('WARN', _('ID-Number'), _('It\'s possible id-number is reused.')))));
} }
else return intval($minID); else return implode(':', array($minID, ''));
// return minimum allowed id-number if no id-numbers are found // return minimum allowed id-number if no id-numbers are found
} }
else return intval($values_old->general_uidNumber); else return implode(':', array($values_old->general_uidNumber, ''));
// old account -> return id-number which has been used // old account -> return id-number which has been used
} }
else { else {
// Check manual ID // Check manual ID
// id-number is out of valid range // id-number is out of valid range
if ( $values->general_uidNumber < $minID || $values->general_uidNumber > $maxID) return sprintf(_('Please enter a value between %s and %s!'), $minID, $maxID); if ( $values->general_uidNumber < $minID || $values->general_uidNumber > $maxID) return implode(':', array($values->general_uidNumber, implode(';', array('ERROR', _('ID-Number'), sprintf(_('Please enter a value between %s and %s!'), $minID, $maxID)))));
// $uids is allways an array but not if no entries were found // $uids is allways an array but not if no entries were found
if (is_array($uids)) { if (is_array($uids)) {
// id-number is in use and account is a new account // id-number is in use and account is a new account
if ((in_array($values->general_uidNumber, $uids)) && !$values_old) return _('ID is already in use'); if ((in_array($values->general_uidNumber, $uids)) && !$values_old) return implode(':', array($values->general_uidNumber, implode(';', array('ERROR', _('ID-Number'), _('ID is already in use')))));
// id-number is in use, account is existing account and id-number is not used by itself // id-number is in use, account is existing account and id-number is not used by itself
if ((in_array($values->general_uidNumber, $uids)) && $values_old && ($values_old->general_uidNumber != $values->general_uidNumber) ) if ((in_array($values->general_uidNumber, $uids)) && $values_old && ($values_old->general_uidNumber != $values->general_uidNumber) )
return _('ID is already in use'); return implode(':', array($values_old->general_uidNumber, implode(';', array('ERROR', _('ID-Number'), _('ID is already in use')))));
} }
// return id-number if everything is OK // return id-number if everything is OK
return intval($values->general_uidNumber); return implode(':', array($values->general_uidNumber, ''));
} }
} }
@ -874,6 +874,9 @@ function loadhost($dn) {
$return->general_dn = (ldap_get_dn($_SESSION['ldap']->server(), $entry)); $return->general_dn = (ldap_get_dn($_SESSION['ldap']->server(), $entry));
$attr = ldap_get_attributes($_SESSION['ldap']->server(), $entry); $attr = ldap_get_attributes($_SESSION['ldap']->server(), $entry);
// Set host samba flags
$return->smb_flagsW = 1;
$return->smb_flagsX = 1;
// load objectclasses // load objectclasses
$i=0; $i=0;
while (isset($attr['objectClass'][$i])) { while (isset($attr['objectClass'][$i])) {
@ -2088,4 +2091,4 @@ function modifygroup($values,$values_old) {
} }
?> ?>

View File

@ -23,6 +23,7 @@ $Id$
LDAP Account Manager displays table for creating or modifying accounts in LDAP LDAP Account Manager displays table for creating or modifying accounts in LDAP
*/ */
// include all needed files
include_once('../../lib/account.inc'); // File with all account-funtions include_once('../../lib/account.inc'); // File with all account-funtions
include_once('../../lib/config.inc'); // File with configure-functions include_once('../../lib/config.inc'); // File with configure-functions
include_once('../../lib/profiles.inc'); // functions to load and save profiles include_once('../../lib/profiles.inc'); // functions to load and save profiles
@ -30,10 +31,17 @@ include_once('../../lib/status.inc'); // Return error-message
include_once('../../lib/pdf.inc'); // Return a pdf-file include_once('../../lib/pdf.inc'); // Return a pdf-file
include_once('../../lib/ldap.inc'); // LDAP-functions include_once('../../lib/ldap.inc'); // LDAP-functions
// Start session
session_save_path('../../sess'); session_save_path('../../sess');
@session_start(); @session_start();
// Set correct language, codepages, ....
setlanguage(); setlanguage();
/* hostaccount.php is using dynamic session varialenames so
* we can run several copies of hostaccount.php at the same
* time
* $varkey is the dynamic part of the variable name
*/
if (!isset($_POST['varkey'])) $varkey = session_id().time(); if (!isset($_POST['varkey'])) $varkey = session_id().time();
else $varkey = $_POST['varkey']; else $varkey = $_POST['varkey'];
@ -44,44 +52,55 @@ if (!isset($_SESSION['account_'.$varkey.'_final_changegids'])) $_SESSION['accoun
$account_new =& $_SESSION['account_'.$varkey.'_account_new']; $account_new =& $_SESSION['account_'.$varkey.'_account_new'];
$final_changegids =& $_SESSION['account_'.$varkey.'_final_changegids']; $final_changegids =& $_SESSION['account_'.$varkey.'_final_changegids'];
if (is_object($_SESSION['account_'.$varkey.'_account_old'])) $account_old =& $_SESSION['account_'.$varkey.'_account_old']; if (is_object($_SESSION['account_'.$varkey.'_account_old'])) $account_old =& $_SESSION['account_'.$varkey.'_account_old'];
$ldap_intern =& $_SESSION['ldap']; $ldap_intern =& $_SESSION['ldap'];
$config_intern =& $_SESSION['config']; $config_intern =& $_SESSION['config'];
$header_intern =& $_SESSION['header']; $header_intern =& $_SESSION['header'];
$userDN_intern =& $_SESSION['userDN']; $userDN_intern =& $_SESSION['userDN'];
// Register Post-Variables as reference
if (isset($_POST['select'])) $select =& $_POST['select']; // $_GET is only valid if groupedit.php was called from grouplist.php
if (isset($_POST['load'])) $load =& $_POST['load'];
if (isset($_GET['DN']) && $_GET['DN']!='') { if (isset($_GET['DN']) && $_GET['DN']!='') {
// groupedit.php should edit an existing account
// reset variables
if (isset($_SESSION['account_'.$varkey.'_account_old'])) { if (isset($_SESSION['account_'.$varkey.'_account_old'])) {
unset($account_old); unset($account_old);
unset($_SESSION['account_'.$varkey.'_account_old']); unset($_SESSION['account_'.$varkey.'_account_old']);
} }
$_SESSION['account_'.$varkey.'_account_old'] = new account(); $_SESSION['account_'.$varkey.'_account_old'] = new account();
$account_old =& $_SESSION['account_'.$varkey.'_account_old']; $account_old =& $_SESSION['account_'.$varkey.'_account_old'];
// get "real" DN from variable
$DN = str_replace("\'", '',$_GET['DN']); $DN = str_replace("\'", '',$_GET['DN']);
// Load existing group
$account_new = loadgroup($DN); $account_new = loadgroup($DN);
// Get a copy of original host
$account_old = $account_new; $account_old = $account_new;
// Store only DN without cn=$name
$account_new->general_dn = substr($account_new->general_dn, strpos($account_new->general_dn, ',')+1); $account_new->general_dn = substr($account_new->general_dn, strpos($account_new->general_dn, ',')+1);
$final_changegids = ''; $final_changegids = '';
// Display general-page
$select_local = 'general';
} }
// Startcondition. groupedit.php was called from outside to create a new group
else if (count($_POST)==0) { // Startcondition. groupedit.php was called from outside else if (count($_POST)==0) {
// Create new account object with settings from default profile
$account_new = loadGroupProfile('default'); $account_new = loadGroupProfile('default');
$account_new ->type = 'group'; $account_new ->type = 'group';
if ($config_intern->scriptServer) { if ($config_intern->scriptServer) {
// load quotas from profile and check if they are valid // load quotas and check if quotas from profile are valid
$values = getquotas('group'); $values = getquotas('group');
if (isset($account_new->quota[0])) { // check quotas from profile if (isset($account_new->quota[0])) {
// check quotas from profile
$i=0; $i=0;
// check quota settings // check quota settings, loop for every partition with quotas
while (isset($account_new->quota[$i])) { while (isset($account_new->quota[$i])) {
// search if quotas from profile fit to a real quota
$found = (-1); $found = (-1);
for ($j=0; $j<count($values->quota); $j++) for ($j=0; $j<count($values->quota); $j++)
if ($values->quota[$j][0]==$account_new->quota[$i][0]) $found = $j; if ($values->quota[$j][0]==$account_new->quota[$i][0]) $found = $j;
// unset quota from profile if quotas (mointpoint) doesn't exists anymore
if ($found==-1) unset($account_new->quota[$i]); if ($found==-1) unset($account_new->quota[$i]);
else { else {
// Set missing part in quota-array
$account_new->quota[$i][1] = $values->quota[$found][1]; $account_new->quota[$i][1] = $values->quota[$found][1];
$account_new->quota[$i][5] = $values->quota[$found][5]; $account_new->quota[$i][5] = $values->quota[$found][5];
$account_new->quota[$i][4] = $values->quota[$found][4]; $account_new->quota[$i][4] = $values->quota[$found][4];
@ -89,27 +108,31 @@ else if (count($_POST)==0) { // Startcondition. groupedit.php was called from ou
$i++; $i++;
} }
} }
// Beautify array, repair index
$account_new->quota = array_values($account_new->quota); $account_new->quota = array_values($account_new->quota);
} }
else { // No quotas saved in profile else { // No quotas saved in profile
// Display quotas for new users (Quota set to 0)
if (is_object($values)) { if (is_object($values)) {
while (list($key, $val) = each($values)) // Set only defined values while (list($key, $val) = each($values)) // Set only defined values
if (isset($val)) $account_new->$key = $val; if (isset($val)) $account_new->$key = $val;
} }
} }
} }
unset($account_old); // Display general-page
unset($_SESSION['account_'.$varkey.'_account_old']); $select_local = 'general';
} }
switch ($select) { // Select which part of page should be loaded and check values switch ($_POST['select']) {
// general = startpage, general account paramters /* Select which part of page should be loaded and check values
// samba = page with all samba-related parameters e.g. smbpassword * groupmembers = page with all users which are additional members of group
// quota = page with all quota-related parameters e.g. hard file quota * general = startpage, general account paramters
// personal = page with all personal-related parametergs, e.g. phone number * samba = page with all samba-related parameters e.g. smbpassword
// final = last page shown before account is created/modified * quota = page with all quota-related parameters e.g. hard file quota
// if account is modified commands might be ran are shown * personal = page with all personal-related parametergs, e.g. phone number
// finish = page shown after account has been created/modified * final = last page shown before account is created/modified
* finish = page shown after account has been created/modified
*/
case 'groupmembers': case 'groupmembers':
do { // X-Or, only one if() can be true do { // X-Or, only one if() can be true
if (isset($_POST['users']) && isset($_POST['add'])) { // Add users to list if (isset($_POST['users']) && isset($_POST['add'])) { // Add users to list
@ -121,7 +144,6 @@ switch ($select) { // Select which part of page should be loaded and check value
$account_new->unix_memberUid = array_flip($account_new->unix_memberUid); $account_new->unix_memberUid = array_flip($account_new->unix_memberUid);
// sort user // sort user
sort($account_new->unix_memberUid); sort($account_new->unix_memberUid);
// display groupmembers page
break; break;
} }
if (isset($_POST['members']) && isset($_POST['remove'])) { // remove users fromlist if (isset($_POST['members']) && isset($_POST['remove'])) { // remove users fromlist
@ -129,12 +151,12 @@ switch ($select) { // Select which part of page should be loaded and check value
break; break;
} }
} while(0); } while(0);
// display groupmembers page
$select_local = 'groupmembers'; $select_local = 'groupmembers';
break; break;
case 'general': case 'general':
// Write all general values into $account_new if no profile should be loaded // Write all general attributes into $account_new if no profile should be loaded
if (!$load) { if (!$_POST['load']) {
$account_new->general_dn = $_POST['f_general_suffix']; $account_new->general_dn = $_POST['f_general_suffix'];
$account_new->general_username = $_POST['f_general_username']; $account_new->general_username = $_POST['f_general_username'];
$account_new->general_uidNumber = $_POST['f_general_uidNumber']; $account_new->general_uidNumber = $_POST['f_general_uidNumber'];
@ -158,10 +180,20 @@ switch ($select) { // Select which part of page should be loaded and check value
$lastchar = substr($account_new->general_username, strlen($account_new->general_username)-1, 1); $lastchar = substr($account_new->general_username, strlen($account_new->general_username)-1, 1);
// Last character is no number // Last character is no number
if ( !ereg('^([0-9])+$', $lastchar)) if ( !ereg('^([0-9])+$', $lastchar))
/* Last character is no number. Therefore we only have to
* add "2" to it.
*/
$account_new->general_username = $account_new->general_username . '2'; $account_new->general_username = $account_new->general_username . '2';
else { else {
/* Last character is a number -> we have to increase the number until we've
* found a groupname with trailing number which is not in use.
*
* $i will show us were we have to split groupname so we get a part
* with the groupname and a part with the trailing number
*/
$i=strlen($account_new->general_username)-1; $i=strlen($account_new->general_username)-1;
$mark = false; $mark = false;
// Set $i to the last character which is a number in $account_new->general_username
while (!$mark) { while (!$mark) {
if (ereg('^([0-9])+$',substr($account_new->general_username, $i, strlen($account_new->general_username)-$i))) $i--; if (ereg('^([0-9])+$',substr($account_new->general_username, $i, strlen($account_new->general_username)-$i))) $i--;
else $mark=true; else $mark=true;
@ -169,66 +201,57 @@ switch ($select) { // Select which part of page should be loaded and check value
// increase last number with one // increase last number with one
$firstchars = substr($account_new->general_username, 0, $i+1); $firstchars = substr($account_new->general_username, 0, $i+1);
$lastchars = substr($account_new->general_username, $i+1, strlen($account_new->general_username)-$i); $lastchars = substr($account_new->general_username, $i+1, strlen($account_new->general_username)-$i);
// Put groupname together
$account_new->general_username = $firstchars . (intval($lastchars)+1); $account_new->general_username = $firstchars . (intval($lastchars)+1);
} }
} }
// Show warning if lam has changed groupname
if ($account_new->general_username != $_POST['f_general_username']) $errors[] = array('WARN', _('Groupname'), _('Groupname already in use. Selected next free groupname.')); if ($account_new->general_username != $_POST['f_general_username']) $errors[] = array('WARN', _('Groupname'), _('Groupname already in use. Selected next free groupname.'));
// Check if UID is valid. If none value was entered, the next useable value will be inserted // Check if UID is valid. If none value was entered, the next useable value will be inserted
$account_new->general_uidNumber = checkid($account_new, $account_old); $temp = explode(':', checkid($account_new, $account_old));
if (is_string($account_new->general_uidNumber)) { // true if checkid has returned an error $account_new->general_uidNumber = $temp[0];
$errors[] = array('ERROR', _('ID-Number'), $account_new->general_uidNumber); // true if checkid has returned an error
if (isset($account_old)) $account_new->general_uidNumber = $account_old->general_uidNumber; if ($temp[1]!='') $errors[] = explode(';',$temp[1]);
else unset($account_new->general_uidNumber);
}
// Check if Name-length is OK. minLength=3, maxLength=20 // Check if Name-length is OK. minLength=3, maxLength=20
if ( !ereg('.{3,20}', $account_new->general_username)) $errors[] = array('ERROR', _('Name'), _('Name must contain between 3 and 20 characters.')); if ( !ereg('.{3,20}', $account_new->general_username)) $errors[] = array('ERROR', _('Name'), _('Name must contain between 3 and 20 characters.'));
// Check if Name starts with letter // Check if Name starts with letter
if ( !ereg('^([a-z]|[A-Z]).*$', $account_new->general_username)) if ( !ereg('^([a-z]|[A-Z]).*$', $account_new->general_username))
$errors[] = array('ERROR', _('Name'), _('Name contains invalid characters. First character must be a letter')); $errors[] = array('ERROR', _('Name'), _('Name contains invalid characters. First character must be a letter'));
} }
break; break;
case 'samba': case 'samba':
// Write all samba attributes into $account_new
// Get all domains
$samba3domains = $ldap_intern->search_domains($config_intern->get_domainSuffix()); $samba3domains = $ldap_intern->search_domains($config_intern->get_domainSuffix());
foreach ($samba3domains as $domain) // Search the corrct domain in array
if ($_POST['f_smb_domain'] == $domain->name) unset($account_new->smb_domain);
$account_new->smb_domain = $domain; $i = 0;
while (!is_object($account_new->smb_domain) && isset($samba3domains[$i])) {
if ($_POST['f_smb_domain'] == $samba3domains[$i]->name)
$account_new->smb_domain = $samba3domains[$i];
else $i++;
}
$account_new->smb_displayName = $_POST['f_smb_displayName']; $account_new->smb_displayName = $_POST['f_smb_displayName'];
// Check if group SID should be mapped to a well known SID
if ($config_intern->is_samba3()) switch ($_POST['f_smb_mapgroup']) {
switch ($_POST['f_smb_mapgroup']) { case '*'._('Domain Guests'): $account_new->smb_mapgroup = $account_new->smb_domain->SID . "-" . '514'; break;
case '*'._('Domain Guests'): $account_new->smb_mapgroup = $account_new->smb_domain->SID . "-" . '514'; break; case '*'._('Domain Users'): $account_new->smb_mapgroup = $account_new->smb_domain->SID . "-" . '513'; break;
case '*'._('Domain Users'): $account_new->smb_mapgroup = $account_new->smb_domain->SID . "-" . '513'; break; case '*'._('Domain Admins'): $account_new->smb_mapgroup = $account_new->smb_domain->SID . "-" . '512'; break;
case '*'._('Domain Admins'): $account_new->smb_mapgroup = $account_new->smb_domain->SID . "-" . '512'; break; case $account_new->general_username:
case $account_new->general_username: $account_new->smb_mapgroup = $account_new->smb_domain->SID . "-".
$account_new->smb_mapgroup = $account_new->smb_domain->SID . "-". (2 * getgid($account_new->general_username) + $account_new->smb_domain->RIDbase +1);
(2 * getgid($account_new->general_username) + $account_new->smb_domain->RIDbase +1); break;
break; }
} // Check if values are OK and set automatic values. if not error-variable will be set
else
switch ($_POST['f_smb_mapgroup']) {
case '*'._('Domain Guests'): $account_new->smb_mapgroup = '514'; break;
case '*'._('Domain Users'): $account_new->smb_mapgroup = '513'; break;
case '*'._('Domain Admins'): $account_new->smb_mapgroup = '512'; break;
case $account_new->general_username:
$account_new->smb_mapgroup = (2 * getgid($account_new->general_username) + 1001);
break;
}
// Check if value is set
if (($account_new->smb_displayName=='') && isset($account_new->general_gecos)) { if (($account_new->smb_displayName=='') && isset($account_new->general_gecos)) {
$account_new->smb_displayName = $account_new->general_gecos; $account_new->smb_displayName = $account_new->general_gecos;
$errors[] = array('INFO', _('Display name'), _('Inserted gecos-field as display name.')); $errors[] = array('INFO', _('Display name'), _('Inserted gecos-field as display name.'));
} }
break; break;
case 'quota': case 'quota':
// Write all general values into $account_new // Write all general values into $account_new
$i=0; $i=0;
// loop for every mointpoint with quotas
while ($account_new->quota[$i][0]) { while ($account_new->quota[$i][0]) {
$account_new->quota[$i][2] = $_POST['f_quota_'.$i.'_2']; $account_new->quota[$i][2] = $_POST['f_quota_'.$i.'_2'];
$account_new->quota[$i][3] = $_POST['f_quota_'.$i.'_3']; $account_new->quota[$i][3] = $_POST['f_quota_'.$i.'_3'];
@ -246,16 +269,14 @@ switch ($select) { // Select which part of page should be loaded and check value
$i++; $i++;
} }
break; break;
case 'final': case 'final':
// Write all general values into $account_new // Ask if we should change gidNumber of every user which is member of the group
if ($_POST['f_final_changegids']) $final_changegids = $_POST['f_final_changegids'] ; if ($_POST['f_final_changegids']) $final_changegids = $_POST['f_final_changegids'] ;
break; break;
case 'finish': case 'finish':
// Check if pdf-file should be created // Check if pdf-file should be created
if ($_POST['outputpdf']) { if ($_POST['outputpdf']) {
// Quota Settings // Load quotas if not yet done because they are needed for the pdf-file
if ($config_intern->scriptServer && !isset($account_new->quota[0])) { // load quotas if ($config_intern->scriptServer && !isset($account_new->quota[0])) { // load quotas
$values = getquotas('group', $account_old->general_username); $values = getquotas('group', $account_old->general_username);
if (is_object($values)) { if (is_object($values)) {
@ -267,7 +288,9 @@ switch ($select) { // Select which part of page should be loaded and check value
if (isset($val)) $account_old->$key = $val; if (isset($val)) $account_old->$key = $val;
} }
} }
// Create / display PDf-file
createGroupPDF(array($account_new)); createGroupPDF(array($account_new));
// Stop script
die; die;
} }
break; break;
@ -276,54 +299,75 @@ switch ($select) { // Select which part of page should be loaded and check value
do { // X-Or, only one if() can be true do { // X-Or, only one if() can be true
if ($_POST['next_members']) { if ($_POST['next_members']) {
// Go from groupmembers to next page if no error did ocour
if (!is_array($errors)) $select_local='groupmembers'; if (!is_array($errors)) $select_local='groupmembers';
else $select_local=$select; else $select_local=$_POST['select'];
break; break;
} }
if ($_POST['next_general']) { if ($_POST['next_general']) {
// Go from general to next page if no error did ocour
if (!is_array($errors)) $select_local='general'; if (!is_array($errors)) $select_local='general';
else $select_local=$select; else $select_local=$_POST['select'];
break; break;
} }
if ($_POST['next_samba']) { if ($_POST['next_samba']) {
// Go from samba to next page if no error did ocour
if (!is_array($errors)) $select_local='samba'; if (!is_array($errors)) $select_local='samba';
else $select_local=$select; else $select_local=$_POST['select'];
break; break;
} }
if ($_POST['next_quota']) { if ($_POST['next_quota']) {
// Go from quota to next page if no error did ocour
if (!is_array($errors)) $select_local='quota'; if (!is_array($errors)) $select_local='quota';
else $select_local=$select; else $select_local=$_POST['select'];
break; break;
} }
if ($_POST['next_final']) { if ($_POST['next_final']) {
// Check if objectclasses are OK
if ($config_intern->is_samba3() && !isset($account_new->smb_domain)) // Samba page not viewed; can not create group because if missing options
$errors[] = array("ERROR", _("Samba Options not set!"), _("Please check settings on samba page."));
if (isset($account_old->general_objectClass)) {
if (($config_intern->is_samba3()) && (!in_array('sambaGroupMapping', $account_old->general_objectClass)))
$errors[] = array('WARN', _('ObjectClass sambaGroupMapping not found.'), _('Have to add objectClass sambaGroupMapping.'));
if (!in_array('posixGroup', $account_old->general_objectClass))
$errors[] = array('WARN', _('ObjectClass posixGroup not found.'), _('Have to add objectClass posixGroup.'));
}
// Show info if gidNumber has changed
if (($account_old) && ($account_new->general_uidNumber != $account_old->general_uidNumber))
$errors[] = array('INFO', _('GID-number has changed. You have to run the following command as root in order to change existing file-permissions:'),
'find / -gid ' . $account_old->general_uidNumber . ' -exec chgrp ' . $account_new->general_uidNumber . ' {} \;');
// Go from final to next page if no error did ocour
if (!isset($errors)) $select_local='final'; if (!isset($errors)) $select_local='final';
else $select_local=$select; else $select_local=$_POST['select'];
break; break;
} }
// Reset account to original settings if undo-button was pressed
if ($_POST['next_reset']) { if ($_POST['next_reset']) {
$account_new = $account_old; $account_new = $account_old;
$account_new->unix_password='';
$account_new->smb_password='';
$account_new->smb_flagsW = 0;
$account_new->general_dn = substr($account_new->general_dn, strpos($account_new->general_dn, ',')+1); $account_new->general_dn = substr($account_new->general_dn, strpos($account_new->general_dn, ',')+1);
$select_local = $select; $select_local = $_POST['select'];
break; break;
} }
if ( $_POST['create'] ) { // Create-Button was pressed // Create-Button was pressed
if ( $_POST['create'] ) {
// Create or modify an account
if ($account_old) $result = modifygroup($account_new,$account_old); if ($account_old) $result = modifygroup($account_new,$account_old);
else $result = creategroup($account_new); // account.inc else $result = creategroup($account_new); // account.inc
if ( $result==1 || $result==3 ) $select_local = 'finish'; if ( $result==4 || $result==5 ) $select_local = 'final';
else $select_local = 'final'; else $select_local = 'finish';
break; break;
} }
// Reset variables if recreate-button was pressed // Load Profile and reset all attributes to settings in profile
if ($_POST['createagain']) { if ($_POST['createagain']) {
$select_local='general'; $select_local='general';
unset ($_SESSION['account_'.$varkey.'_account_new']);
unset($account_new); unset($account_new);
$account_new = loadGroupProfile('default'); $_SESSION['account_'.$varkey.'_account_new'] = loadGroupProfile('default');
$account_new =& $_SESSION['account_'.$varkey.'_account_new'];
$account_new ->type = 'group'; $account_new ->type = 'group';
break; break;
} }
// Go back to listgroups.php
if ($_POST['backmain']) { if ($_POST['backmain']) {
metaRefresh("../lists/listgroups.php"); metaRefresh("../lists/listgroups.php");
if (isset($_SESSION['account_'.$varkey.'_account_new'])) unset($_SESSION['account_'.$varkey.'_account_new']); if (isset($_SESSION['account_'.$varkey.'_account_new'])) unset($_SESSION['account_'.$varkey.'_account_new']);
@ -332,7 +376,8 @@ do { // X-Or, only one if() can be true
die; die;
break; break;
} }
if ($load) { // Load Profile and reset all attributes to settings in profile
if ($_POST['load']) {
$account_new->general_dn = $_POST['f_general_suffix']; $account_new->general_dn = $_POST['f_general_suffix'];
$account_new->general_username = $_POST['f_general_username']; $account_new->general_username = $_POST['f_general_username'];
$account_new->general_uidNumber = $_POST['f_general_uidNumber']; $account_new->general_uidNumber = $_POST['f_general_uidNumber'];
@ -343,19 +388,22 @@ do { // X-Or, only one if() can be true
while (list($key, $val) = each($values)) // Set only defined values while (list($key, $val) = each($values)) // Set only defined values
if (isset($val)) $account_new->$key = $val; if (isset($val)) $account_new->$key = $val;
} }
if ($config_intern->scriptServer) { if ($config_intern->scriptServer) {
// load quotas from profile and check if they are valid // load quotas and check if quotas from profile are valid
$values = getquotas('group', $account_old->general_username); $values = getquotas('group');
if (isset($account_new->quota[0])) { // check quotas from profile if (isset($account_new->quota[0])) {
// check quotas from profile
$i=0; $i=0;
// check quota settings // check quota settings, loop for every partition with quotas
while (isset($account_new->quota[$i])) { while (isset($account_new->quota[$i])) {
// search if quotas from profile fit to a real quota
$found = (-1); $found = (-1);
for ($j=0; $j<count($values->quota); $j++) for ($j=0; $j<count($values->quota); $j++)
if ($values->quota[$j][0]==$account_new->quota[$i][0]) $found = $j; if ($values->quota[$j][0]==$account_new->quota[$i][0]) $found = $j;
// unset quota from profile if quotas (mointpoint) doesn't exists anymore
if ($found==-1) unset($account_new->quota[$i]); if ($found==-1) unset($account_new->quota[$i]);
else { else {
// Set missing part in quota-array
$account_new->quota[$i][1] = $values->quota[$found][1]; $account_new->quota[$i][1] = $values->quota[$found][1];
$account_new->quota[$i][5] = $values->quota[$found][5]; $account_new->quota[$i][5] = $values->quota[$found][5];
$account_new->quota[$i][4] = $values->quota[$found][4]; $account_new->quota[$i][4] = $values->quota[$found][4];
@ -363,9 +411,11 @@ do { // X-Or, only one if() can be true
$i++; $i++;
} }
} }
// Beautify array, repair index
$account_new->quota = array_values($account_new->quota); $account_new->quota = array_values($account_new->quota);
} }
else { // No quotas saved in profile else { // No quotas saved in profile
// Display quotas for new users (Quota set to 0)
if (is_object($values)) { if (is_object($values)) {
while (list($key, $val) = each($values)) // Set only defined values while (list($key, $val) = each($values)) // Set only defined values
if (isset($val)) $account_new->$key = $val; if (isset($val)) $account_new->$key = $val;
@ -376,9 +426,15 @@ do { // X-Or, only one if() can be true
$select_local='general'; $select_local='general';
break; break;
} }
// Save Profile
if ($_POST['save']) { if ($_POST['save']) {
// save profile // save profile
saveGroupProfile($account_new, $_POST['f_finish_safeProfile']); if ($_POST['f_finish_safeProfile']=='')
$errors[] = array('ERROR', _('Save profile'), _('No profilename given.'));
else {
saveGroupProfile($account_new, $_POST['f_finish_safeProfile']);
$errors[] = array('INFO', _('Save profile'), _('New profile created.'));
}
// select last page displayed before user is created // select last page displayed before user is created
$select_local='final'; $select_local='final';
break; break;
@ -387,8 +443,6 @@ do { // X-Or, only one if() can be true
$select_local='groupmembers'; $select_local='groupmembers';
break; break;
} }
// Set selected page to general if no page was defined. should only true if groupedit.php wasn't called by itself
if (!$select_local) $select_local='general';
} while(0); } while(0);
// Write HTML-Header // Write HTML-Header
@ -403,39 +457,58 @@ echo "</title>\n".
"<form action=\"groupedit.php\" method=\"post\">\n". "<form action=\"groupedit.php\" method=\"post\">\n".
"<input name=\"varkey\" type=\"hidden\" value=\"".$varkey."\">\n"; "<input name=\"varkey\" type=\"hidden\" value=\"".$varkey."\">\n";
// Display errir-messages
if (is_array($errors)) if (is_array($errors))
for ($i=0; $i<sizeof($errors); $i++) StatusMessage($errors[$i][0], $errors[$i][1], $errors[$i][2]); for ($i=0; $i<sizeof($errors); $i++) StatusMessage($errors[$i][0], $errors[$i][1], $errors[$i][2]);
// print_r($account_old); // print_r($account_old);
switch ($select_local) { // Select which part of page will be loaded
// general = startpage, general account paramters
// unix = page with all shadow-options and password switch ($select_local) {
// samba = page with all samba-related parameters e.g. smbpassword /* Select which part of page should be loaded and check values
// quota = page with all quota-related parameters e.g. hard file quota * groupmembers = page with all users which are additional members of group
// personal = page with all personal-related parametergs, e.g. phone number * general = startpage, general account paramters
// final = last page shown before account is created/modified * samba = page with all samba-related parameters e.g. smbpassword
// if account is modified commands might be ran are shown * quota = page with all quota-related parameters e.g. hard file quota
// finish = page shown after account has been created/modified * personal = page with all personal-related parametergs, e.g. phone number
* final = last page shown before account is created/modified
* finish = page shown after account has been created/modified
*/
case 'groupmembers': case 'groupmembers':
// Validate cache-array
ldapreload('user'); ldapreload('user');
// Get copy of cache-array
$temp2 = $userDN_intern; $temp2 = $userDN_intern;
// unset timestamp stored in $temp2[0]
unset($temp2[0]); unset($temp2[0]);
// load list with all users
foreach ($temp2 as $temp) $users[] = $temp['cn']; foreach ($temp2 as $temp) $users[] = $temp['cn'];
// sort users
if (is_array($users)) sort($users, SORT_STRING); if (is_array($users)) sort($users, SORT_STRING);
// remove users which are allready additional members of group
$users = array_delete($account_new->unix_memberUid, $users); $users = array_delete($account_new->unix_memberUid, $users);
/* Now we have to remove all users from list who are primary member of group
* At the moment lam is doing an extra ldap-search. In future this should be done
* via cache-array **** fixme
*/
// Do a ldap-search
if (isset($account_old->general_uidNumber)) if (isset($account_old->general_uidNumber))
$result = ldap_search($_SESSION['ldap']->server(), $_SESSION['config']->get_UserSuffix(), "(&(objectClass=PosixAccount)(gidNumber=$account_old->general_uidNumber))", array('cn')); $result = ldap_search($_SESSION['ldap']->server(), $_SESSION['config']->get_UserSuffix(), "(&(objectClass=PosixAccount)(gidNumber=$account_old->general_uidNumber))", array('cn'));
else $result = ldap_search($_SESSION['ldap']->server(), $_SESSION['config']->get_UserSuffix(), "(&(objectClass=PosixAccount)(gidNumber=$account_new->general_uidNumber))", array('cn')); else $result = ldap_search($_SESSION['ldap']->server(), $_SESSION['config']->get_UserSuffix(), "(&(objectClass=PosixAccount)(gidNumber=$account_new->general_uidNumber))", array('cn'));
$entry = ldap_first_entry($_SESSION['ldap']->server(), $result); $entry = ldap_first_entry($_SESSION['ldap']->server(), $result);
// loop for every user which is primary member of group
while ($entry) { while ($entry) {
$attr = ldap_get_attributes($_SESSION['ldap']->server(), $entry); $attr = ldap_get_attributes($_SESSION['ldap']->server(), $entry);
if (isset($attr['cn'][0])) { if (isset($attr['cn'][0])) {
// Remove user from user list
$users = @array_flip($users); $users = @array_flip($users);
unset ($users[$attr['cn'][0]]); unset ($users[$attr['cn'][0]]);
$users = @array_flip($users); $users = @array_flip($users);
} }
// Go to next entry
$entry = ldap_next_entry($_SESSION['ldap']->server(), $entry); $entry = ldap_next_entry($_SESSION['ldap']->server(), $entry);
} }
echo "<input name=\"select\" type=\"hidden\" value=\"groupmembers\">\n"; echo "<input name=\"select\" type=\"hidden\" value=\"groupmembers\">\n";
echo "<table border=0 width=\"100%\">\n<tr><td valign=\"top\" width=\"15%\" >"; echo "<table border=0 width=\"100%\">\n<tr><td valign=\"top\" width=\"15%\" >";
echo "<table border=0><tr><td><fieldset class=\"groupedit-middle\"><legend class=\"groupedit-bright\"><b>"; echo "<table border=0><tr><td><fieldset class=\"groupedit-middle\"><legend class=\"groupedit-bright\"><b>";
@ -443,6 +516,7 @@ switch ($select_local) { // Select which part of page will be loaded
echo "</b></legend>\n"; echo "</b></legend>\n";
echo "<input name=\"next_general\" type=\"submit\" value=\""; echo _('General'); echo "\">\n<br>"; echo "<input name=\"next_general\" type=\"submit\" value=\""; echo _('General'); echo "\">\n<br>";
echo "<input name=\"next_members\" type=\"submit\" disabled value=\""; echo _('Members'); echo "\">\n<br>"; echo "<input name=\"next_members\" type=\"submit\" disabled value=\""; echo _('Members'); echo "\">\n<br>";
// samba 2.2 doesn't have any settings for groups
if ($config_intern->is_samba3()) { if ($config_intern->is_samba3()) {
echo "<input name=\"next_samba\" type=\"submit\" value=\""; echo _('Samba'); echo "\">\n<br>"; echo "<input name=\"next_samba\" type=\"submit\" value=\""; echo _('Samba'); echo "\">\n<br>";
} }
@ -463,6 +537,7 @@ switch ($select_local) { // Select which part of page will be loaded
echo "<tr><td valign=\"top\"><fieldset class=\"groupedit-middle\"><legend class=\"groupedit-bright\">"; echo "<tr><td valign=\"top\"><fieldset class=\"groupedit-middle\"><legend class=\"groupedit-bright\">";
echo _('Group members'); echo _('Group members');
echo "</legend>"; echo "</legend>";
// display all users which are additional members of group
if (count($account_new->unix_memberUid)!=0) { if (count($account_new->unix_memberUid)!=0) {
echo "<select name=\"members[]\" class=\"groupedit-bright\" size=15 multiple>\n"; echo "<select name=\"members[]\" class=\"groupedit-bright\" size=15 multiple>\n";
for ($i=0; $i<count($account_new->unix_memberUid); $i++) for ($i=0; $i<count($account_new->unix_memberUid); $i++)
@ -477,6 +552,7 @@ switch ($select_local) { // Select which part of page will be loaded
echo "<td valign=\"top\"><fieldset class=\"groupedit-middle\"><legend class=\"groupedit-bright\">"; echo "<td valign=\"top\"><fieldset class=\"groupedit-middle\"><legend class=\"groupedit-bright\">";
echo _('Available users'); echo _('Available users');
echo "</legend>\n"; echo "</legend>\n";
// Display all users which are not member of group in any way
if ((count($users)!=0) && is_array($users)) { if ((count($users)!=0) && is_array($users)) {
echo "<select name=\"users[]\" size=15 multiple class=\"groupedit-bright\">\n"; echo "<select name=\"users[]\" size=15 multiple class=\"groupedit-bright\">\n";
foreach ($users as $temp) foreach ($users as $temp)
@ -485,7 +561,6 @@ switch ($select_local) { // Select which part of page will be loaded
} }
echo "</fieldset></td>\n</tr>\n</table>\n</fieldset></td></tr></table>\n</td></tr>\n</table>\n"; echo "</fieldset></td>\n</tr>\n</table>\n</fieldset></td></tr></table>\n</td></tr>\n</table>\n";
break; break;
case 'general': case 'general':
// General Account Settings // General Account Settings
// load list of profiles // load list of profiles
@ -498,6 +573,7 @@ switch ($select_local) { // Select which part of page will be loaded
echo "</b></legend>\n"; echo "</b></legend>\n";
echo "<input name=\"next_general\" type=\"submit\" disabled value=\""; echo _('General'); echo "\">\n<br>"; echo "<input name=\"next_general\" type=\"submit\" disabled value=\""; echo _('General'); echo "\">\n<br>";
echo "<input name=\"next_members\" type=\"submit\" value=\""; echo _('Members'); echo "\">\n<br>"; echo "<input name=\"next_members\" type=\"submit\" value=\""; echo _('Members'); echo "\">\n<br>";
// samba 2.2 doesn't have any settings for groups
if ($config_intern->is_samba3()) { if ($config_intern->is_samba3()) {
echo "<input name=\"next_samba\" type=\"submit\" value=\""; echo _('Samba'); echo "\">\n<br>"; echo "<input name=\"next_samba\" type=\"submit\" value=\""; echo _('Samba'); echo "\">\n<br>";
} }
@ -529,7 +605,7 @@ switch ($select_local) { // Select which part of page will be loaded
echo "</td>\n<td><input name=\"f_general_gecos\" type=\"text\" size=\"30\" value=\"".$account_new->general_gecos."\"></td>\n". echo "</td>\n<td><input name=\"f_general_gecos\" type=\"text\" size=\"30\" value=\"".$account_new->general_gecos."\"></td>\n".
"<td><a href=\"../help.php?HelpNumber=409\" target=\"lamhelp\">"._('Help')."</a></td>\n</tr>\n<tr>\n<td>"; "<td><a href=\"../help.php?HelpNumber=409\" target=\"lamhelp\">"._('Help')."</a></td>\n</tr>\n<tr>\n<td>";
echo _('Suffix'); echo "</td>\n<td><select name=\"f_general_suffix\">"; echo _('Suffix'); echo "</td>\n<td><select name=\"f_general_suffix\">";
// Display all allowed group suffixes
foreach ($ldap_intern->search_units($config_intern->get_GroupSuffix()) as $suffix) { foreach ($ldap_intern->search_units($config_intern->get_GroupSuffix()) as $suffix) {
if ($account_new->general_dn) { if ($account_new->general_dn) {
if ($account_new->general_dn == $suffix) if ($account_new->general_dn == $suffix)
@ -542,6 +618,7 @@ switch ($select_local) { // Select which part of page will be loaded
"</a></td>\n</tr>\n</table>"; "</a></td>\n</tr>\n</table>";
echo _('Values with * are required'); echo _('Values with * are required');
echo "</fieldset>\n</td></tr><tr><td>"; echo "</fieldset>\n</td></tr><tr><td>";
// Show fieldset with list of all group profiles
if (count($profilelist)!=0) { if (count($profilelist)!=0) {
echo "<fieldset class=\"groupedit-middle\"><legend class=\"groupedit-bright\"><b>"; echo "<fieldset class=\"groupedit-middle\"><legend class=\"groupedit-bright\"><b>";
echo _("Load profile"); echo _("Load profile");
@ -555,9 +632,9 @@ switch ($select_local) { // Select which part of page will be loaded
} }
echo "</td></tr>\n</table>\n</td></tr></table>\n"; echo "</td></tr>\n</table>\n</td></tr></table>\n";
break; break;
case 'samba': case 'samba':
// Samba Settings // Samba Settings
// samba 2.2 doesn't have any settings for groups
$samba3domains = $ldap_intern->search_domains($config_intern->get_domainSuffix()); $samba3domains = $ldap_intern->search_domains($config_intern->get_domainSuffix());
echo "<input name=\"select\" type=\"hidden\" value=\"samba\">\n"; echo "<input name=\"select\" type=\"hidden\" value=\"samba\">\n";
echo "<table border=0 width=\"100%\">\n<tr><td valign=\"top\" width=\"15%\" >"; echo "<table border=0 width=\"100%\">\n<tr><td valign=\"top\" width=\"15%\" >";
@ -587,88 +664,50 @@ switch ($select_local) { // Select which part of page will be loaded
"</td>\n<td><a href=\"../help.php?HelpNumber=420\" target=\"lamhelp\">"._('Help')."</a></td>\n</tr>\n<tr>\n<td>"; "</td>\n<td><a href=\"../help.php?HelpNumber=420\" target=\"lamhelp\">"._('Help')."</a></td>\n</tr>\n<tr>\n<td>";
echo _('Windows groupname'); echo _('Windows groupname');
echo "</td>\n<td><select name=\"f_smb_mapgroup\">"; echo "</td>\n<td><select name=\"f_smb_mapgroup\">";
if ($config_intern->samba3=='yes') { // Display if group SID should be mapped to a well kown SID
if ( $account_new->smb_mapgroup == $account_new->smb_domain->SID . "-". if ( $account_new->smb_mapgroup == $account_new->smb_domain->SID . "-".
(2 * getgid($account_new->general_username) + $values->smb_domain->RIDbase+1)) { (2 * getgid($account_new->general_username) + $values->smb_domain->RIDbase+1)) {
echo '<option selected> '; echo '<option selected> ';
echo $account_new->general_username; echo $account_new->general_username;
echo "</option>\n"; } echo "</option>\n"; }
else { else {
echo '<option> '; echo '<option> ';
echo $account_new->general_username; echo $account_new->general_username;
echo "</option>\n"; echo "</option>\n";
}
if ( $account_new->smb_mapgroup == $account_new->smb_domain->SID . "-" . '514' ) {
echo '<option selected> *';
echo _('Domain Guests');
echo "</option>\n"; }
else {
echo '<option> *';
echo _('Domain Guests');
echo "</option>\n";
}
if ( $account_new->smb_mapgroup == $account_new->smb_domain->SID . "-" . '513' ) {
echo '<option selected> *';
echo _('Domain Users');
echo "</option>\n"; }
else {
echo '<option> *';
echo _('Domain Users');
echo "</option>\n";
}
if ( $account_new->smb_mapgroup == $account_new->smb_domain->SID . "-" . '512' ) {
echo '<option selected> *';
echo _('Domain Admins');
echo "</option>\n"; }
else {
echo '<option> *';
echo _('Domain Admins');
echo "</option>\n";
}
} }
else { if ( $account_new->smb_mapgroup == $account_new->smb_domain->SID . "-" . '514' ) {
if ( $account_new->smb_mapgroup == (2 * getgid($account_new->general_username) +1001)) { echo '<option selected> *';
echo '<option selected> '; echo _('Domain Guests');
echo $account_new->general_username; echo "</option>\n"; }
echo "</option>\n"; } else {
else { echo '<option> *';
echo '<option> '; echo _('Domain Guests');
echo $account_new->general_username; echo "</option>\n";
echo "</option>\n"; }
} if ( $account_new->smb_mapgroup == $account_new->smb_domain->SID . "-" . '513' ) {
if ( $account_new->smb_mapgroup == '514' ) { echo '<option selected> *';
echo '<option selected> *'; echo _('Domain Users');
echo _('Domain Guests'); echo "</option>\n"; }
echo "</option>\n"; } else {
else { echo '<option> *';
echo '<option> *'; echo _('Domain Users');
echo _('Domain Guests'); echo "</option>\n";
echo "</option>\n"; }
} if ( $account_new->smb_mapgroup == $account_new->smb_domain->SID . "-" . '512' ) {
if ( $account_new->smb_mapgroup == '513' ) { echo '<option selected> *';
echo '<option selected> *'; echo _('Domain Admins');
echo _('Domain Users'); echo "</option>\n"; }
echo "</option>\n"; } else {
else { echo '<option> *';
echo '<option> *'; echo _('Domain Admins');
echo _('Domain Users'); echo "</option>\n";
echo "</option>\n";
}
if ( $account_new->smb_mapgroup == '512' ) {
echo '<option selected> *';
echo _('Domain Admins');
echo "</option>\n"; }
else {
echo '<option> *';
echo _('Domain Admins');
echo "</option>\n";
}
} }
echo "</select></td>\n<td>". echo "</select></td>\n<td>".
'<a href="../help.php?HelpNumber=464" target="lamhelp">'._('Help').'</a>'. '<a href="../help.php?HelpNumber=464" target="lamhelp">'._('Help').'</a>'.
'</td></tr>'."\n".'<tr><td>'; '</td></tr>'."\n".'<tr><td>';
echo _('Domain'); echo _('Domain');
echo '</td><td>'; echo '</td><td>';
// select which domain name should be displayed
if (count($samba3domains)!=0) { if (count($samba3domains)!=0) {
echo '<select name="f_smb_domain">'; echo '<select name="f_smb_domain">';
for ($i=0; $i<sizeof($samba3domains); $i++) { for ($i=0; $i<sizeof($samba3domains); $i++) {
@ -684,9 +723,9 @@ switch ($select_local) { // Select which part of page will be loaded
echo "</td>\n<td><a href=\"../help.php?HelpNumber=467\" target=\"lamhelp\">"._('Help')."</a></td></tr>\n"; echo "</td>\n<td><a href=\"../help.php?HelpNumber=467\" target=\"lamhelp\">"._('Help')."</a></td></tr>\n";
echo "</table>\n</fieldset>\n</td></tr></table></td></tr>\n</table>\n"; echo "</table>\n</fieldset>\n</td></tr></table></td></tr>\n</table>\n";
break; break;
case 'quota': case 'quota':
// Quota Settings // Quota Settings
// Load quotas if not yet done
if ($config_intern->scriptServer && !isset($account_new->quota[0]) ) { // load quotas if ($config_intern->scriptServer && !isset($account_new->quota[0]) ) { // load quotas
$values = getquotas('group', $account_new->general_username); $values = getquotas('group', $account_new->general_username);
if (is_object($values)) { if (is_object($values)) {
@ -698,7 +737,6 @@ switch ($select_local) { // Select which part of page will be loaded
if (isset($val)) $account_old->$key = $val; if (isset($val)) $account_old->$key = $val;
} }
} }
echo "<input name=\"select\" type=\"hidden\" value=\"samba\">\n"; echo "<input name=\"select\" type=\"hidden\" value=\"samba\">\n";
echo "<table border=0 width=\"100%\">\n<tr><td valign=\"top\" width=\"15%\" >"; echo "<table border=0 width=\"100%\">\n<tr><td valign=\"top\" width=\"15%\" >";
echo "<table border=0><tr><td><fieldset class=\"groupedit-middle\"><legend class=\"groupedit-bright\"><b>"; echo "<table border=0><tr><td><fieldset class=\"groupedit-middle\"><legend class=\"groupedit-bright\"><b>";
@ -706,6 +744,7 @@ switch ($select_local) { // Select which part of page will be loaded
echo "</b></legend>\n"; echo "</b></legend>\n";
echo "<input name=\"next_general\" type=\"submit\" value=\""; echo _('General'); echo "\">\n<br>"; echo "<input name=\"next_general\" type=\"submit\" value=\""; echo _('General'); echo "\">\n<br>";
echo "<input name=\"next_members\" type=\"submit\" value=\""; echo _('Members'); echo "\">\n<br>"; echo "<input name=\"next_members\" type=\"submit\" value=\""; echo _('Members'); echo "\">\n<br>";
// samba 2.2 doesn't have any settings for groups
if ($config_intern->is_samba3()) { if ($config_intern->is_samba3()) {
echo "<input name=\"next_samba\" type=\"submit\" value=\""; echo _('Samba'); echo "\">\n<br>"; echo "<input name=\"next_samba\" type=\"submit\" value=\""; echo _('Samba'); echo "\">\n<br>";
} }
@ -733,6 +772,7 @@ switch ($select_local) { // Select which part of page will be loaded
'<a href="../help.php?HelpNumber=445" target="lamhelp">'._('Help').'</a></td>'."\n".'<td><a href="../help.php?HelpNumber=446" target="lamhelp">'._('Help').'</a></td>'."\n".'<td>'. '<a href="../help.php?HelpNumber=445" target="lamhelp">'._('Help').'</a></td>'."\n".'<td><a href="../help.php?HelpNumber=446" target="lamhelp">'._('Help').'</a></td>'."\n".'<td>'.
'<a href="../help.php?HelpNumber=447" target="lamhelp">'._('Help').'</a></td></tr>'."\n"; '<a href="../help.php?HelpNumber=447" target="lamhelp">'._('Help').'</a></td></tr>'."\n";
$i=0; $i=0;
// loop for every mointpoint with enabled quotas
while ($account_new->quota[$i][0]) { while ($account_new->quota[$i][0]) {
echo '<tr><td>'.$account_new->quota[$i][0].'</td><td>'.$account_new->quota[$i][1].'</td>'; // used blocks echo '<tr><td>'.$account_new->quota[$i][0].'</td><td>'.$account_new->quota[$i][1].'</td>'; // used blocks
echo '<td><input name="f_quota_'.$i.'_2" type="text" size="12" maxlength="20" value="'.$account_new->quota[$i][2].'"></td>'; // blocks soft limit echo '<td><input name="f_quota_'.$i.'_2" type="text" size="12" maxlength="20" value="'.$account_new->quota[$i][2].'"></td>'; // blocks soft limit
@ -746,15 +786,12 @@ switch ($select_local) { // Select which part of page will be loaded
} }
echo "</table>\n</fieldset>\n</td></tr></table></td></tr>\n</table>\n"; echo "</table>\n</fieldset>\n</td></tr></table></td></tr>\n</table>\n";
break; break;
case 'final': case 'final':
// Final Settings // Final Settings
$disabled = ""; $disabled = "";
if ($config_intern->is_samba3()) { if ($config_intern->is_samba3() && !isset($account_new->smb_domain))
if (!isset($account_new->smb_domain)) { // Samba page nit viewd; can not create group because if missing options // Samba page not viewed; can not create group because if missing options
$disabled = "disabled"; $disabled = "disabled";
}
}
echo '<input name="select" type="hidden" value="final">'; echo '<input name="select" type="hidden" value="final">';
echo "<input name=\"select\" type=\"hidden\" value=\"final\">\n"; echo "<input name=\"select\" type=\"hidden\" value=\"final\">\n";
@ -793,11 +830,8 @@ switch ($select_local) { // Select which part of page will be loaded
else echo _('Create'); else echo _('Create');
echo "</b></legend>\n"; echo "</b></legend>\n";
echo "<table border=0 width=\"100%\">"; echo "<table border=0 width=\"100%\">";
// Ask if gidNumbers of primary group members should be changed
if (($account_old) && ($account_new->general_uidNumber != $account_old->general_uidNumber)) { if (($account_old) && ($account_new->general_uidNumber != $account_old->general_uidNumber)) {
echo '<tr>';
StatusMessage ('INFO', _('GID-number has changed. You have to run the following command as root in order to change existing file-permissions:'),
'find / -gid ' . $account_old->general_uidNumber . ' -exec chgrp ' . $account_new->general_uidNumber . ' {} \;');
echo '</tr>'."\n";
echo '<tr><td>'; echo '<tr><td>';
echo '<input name="f_final_changegids" type="checkbox"'; echo '<input name="f_final_changegids" type="checkbox"';
if ($final_changegids) echo ' checked '; if ($final_changegids) echo ' checked ';
@ -805,23 +839,6 @@ switch ($select_local) { // Select which part of page will be loaded
echo _('Change GID-Number of all users in group to new value'); echo _('Change GID-Number of all users in group to new value');
echo '</td></tr>'."\n"; echo '</td></tr>'."\n";
} }
if ($disabled == "disabled") { // Samba page nit viewd; can not create group because if missing options
echo "<tr>";
StatusMessage("ERROR", _("Samba Options not set!"), _("Please check settings on samba page."));
echo "</tr>";
}
if (isset($account_old->general_objectClass)) {
if (($config_intern->is_samba3()) && (!in_array('sambaGroupMapping', $account_old->general_objectClass))) {
echo '<tr>';
StatusMessage('WARN', _('ObjectClass sambaGroupMapping not found.'), _('Have to add objectClass sambaGroupMapping.'));
echo "</tr>\n";
}
if (!in_array('posixGroup', $account_old->general_objectClass)) {
echo '<tr>';
StatusMessage('WARN', _('ObjectClass posixGroup not found.'), _('Have to add objectClass posixGroup.'));
echo "</tr>\n";
}
}
echo "<tr><td><input name=\"create\" type=\"submit\" $disabled value=\""; echo "<tr><td><input name=\"create\" type=\"submit\" $disabled value=\"";
if ($account_old) echo _('Modify Account'); if ($account_old) echo _('Modify Account');
else echo _('Create Account'); else echo _('Create Account');
@ -831,8 +848,6 @@ switch ($select_local) { // Select which part of page will be loaded
case 'finish': case 'finish':
// Final Settings // Final Settings
if (($config_intern->samba3 =='yes') && !isset($account_new->smb_mapgroup)) $disabled = 'disabled';
else $disabled = '';
echo '<input name="select" type="hidden" value="finish">'; echo '<input name="select" type="hidden" value="finish">';
echo "<fieldset class=\"groupedit-bright\"><legend class=\"groupedit-bright\"><b>"._('Success')."</b></legend>\n"; echo "<fieldset class=\"groupedit-bright\"><legend class=\"groupedit-bright\"><b>"._('Success')."</b></legend>\n";
echo "<table border=0 width=\"100%\">"; echo "<table border=0 width=\"100%\">";

View File

@ -23,6 +23,7 @@ $Id$
LDAP Account Manager displays table for creating or modifying accounts in LDAP LDAP Account Manager displays table for creating or modifying accounts in LDAP
*/ */
// include all needed files
include_once('../../lib/account.inc'); // File with all account-funtions include_once('../../lib/account.inc'); // File with all account-funtions
include_once('../../lib/config.inc'); // File with configure-functions include_once('../../lib/config.inc'); // File with configure-functions
include_once('../../lib/profiles.inc'); // functions to load and save profiles include_once('../../lib/profiles.inc'); // functions to load and save profiles
@ -30,10 +31,17 @@ include_once('../../lib/status.inc'); // Return error-message
include_once('../../lib/pdf.inc'); // Return a pdf-file include_once('../../lib/pdf.inc'); // Return a pdf-file
include_once('../../lib/ldap.inc'); // LDAP-functions include_once('../../lib/ldap.inc'); // LDAP-functions
// Start session
session_save_path('../../sess'); session_save_path('../../sess');
@session_start(); @session_start();
// Set correct language, codepages, ....
setlanguage(); setlanguage();
/* hostedit.php is using dynamic session varialenames so
* we can run several copies of hostedit.php at the same
* time
* $varkey is the dynamic part of the variable name
*/
if (!isset($_POST['varkey'])) $varkey = session_id().time(); if (!isset($_POST['varkey'])) $varkey = session_id().time();
else $varkey = $_POST['varkey']; else $varkey = $_POST['varkey'];
if (!isset($_SESSION['account_'.$varkey.'_account_new'])) $_SESSION['account_'.$varkey.'_account_new'] = new account(); if (!isset($_SESSION['account_'.$varkey.'_account_new'])) $_SESSION['account_'.$varkey.'_account_new'] = new account();
@ -41,51 +49,46 @@ if (!isset($_SESSION['account_'.$varkey.'_account_new'])) $_SESSION['account_'.$
// Register Session-Variables with references so we don't net to change to complete code if names changes // Register Session-Variables with references so we don't net to change to complete code if names changes
$account_new =& $_SESSION['account_'.$varkey.'_account_new']; $account_new =& $_SESSION['account_'.$varkey.'_account_new'];
if (is_object($_SESSION['account_'.$varkey.'_account_old'])) $account_old =& $_SESSION['account_'.$varkey.'_account_old']; if (is_object($_SESSION['account_'.$varkey.'_account_old'])) $account_old =& $_SESSION['account_'.$varkey.'_account_old'];
$ldap_intern =& $_SESSION['ldap']; $ldap_intern =& $_SESSION['ldap'];
$config_intern =& $_SESSION['config']; $config_intern =& $_SESSION['config'];
$header_intern =& $_SESSION['header']; $header_intern =& $_SESSION['header'];
// $_GET is only valid if hostedit.php was called from hostlist.php
if (isset($_GET['DN']) && $_GET['DN']!='') { if (isset($_GET['DN']) && $_GET['DN']!='') {
// hostedit.php should edit an existing account
// reset variables
if (isset($_SESSION['account_'.$varkey.'_account_old'])) { if (isset($_SESSION['account_'.$varkey.'_account_old'])) {
unset($account_old); unset($account_old);
unset($_SESSION['account_'.$varkey.'_account_old']); unset($_SESSION['account_'.$varkey.'_account_old']);
} }
$_SESSION['account_'.$varkey.'_account_old'] = new account(); $_SESSION['account_'.$varkey.'_account_old'] = new account();
$account_old =& $_SESSION['account_'.$varkey.'_account_old']; $account_old =& $_SESSION['account_'.$varkey.'_account_old'];
// get "real" DN from variable
$DN = str_replace("\'", '',$_GET['DN']); $DN = str_replace("\'", '',$_GET['DN']);
// Load existing host
$account_new = loadhost($DN); $account_new = loadhost($DN);
$account_new->smb_flagsW = 1; // Get a copy of original host
$account_new->smb_flagsX = 1;
$account_old = $account_new; $account_old = $account_new;
// Store only DN without uid=$name // Store only DN without uid=$name
$account_new->general_dn = substr($account_new->general_dn, strpos($account_new->general_dn, ',')+1); $account_new->general_dn = substr($account_new->general_dn, strpos($account_new->general_dn, ',')+1);
$_SESSION['final_changegids'] = '';
} }
else if (count($_POST)==0) { // Startcondition. hostedit.php was called from outside // Startcondition. hostedit.php was called from outside to create a new host
else if (count($_POST)==0) {
// Create new account object with settings from default profile
$account_new = loadHostProfile('default'); $account_new = loadHostProfile('default');
$account_new ->type = 'host'; $account_new ->type = 'host';
$account_new->smb_flagsW = 1; $account_new->smb_flagsW = 1;
$account_new->smb_flagsX = 1; $account_new->smb_flagsX = 1;
$account_new->general_homedir = '/dev/null'; $account_new->general_homedir = '/dev/null';
$account_new->general_shell = '/bin/false'; $account_new->general_shell = '/bin/false';
if (isset($_SESSION['account_'.$varkey.'_account_old'])) {
unset($account_old);
unset($_SESSION['account_'.$varkey.'_account_old']);
}
} }
switch ($_POST['select']) { // Select which part of page should be loaded and check values switch ($_POST['select']) {
// general = startpage, general account paramters /* Select which page should be displayed. For hosts we have
// unix = page with all shadow-options and password * only have general and finish
// samba = page with all samba-related parameters e.g. smbpassword * general = page with all settings for hosts
// quota = page with all quota-related parameters e.g. hard file quota * final = page which will be displayed if changes were made
// personal = page with all personal-related parametergs, e.g. phone number */
// final = last page shown before account is created/modified
// if account is modified commands might be ran are shown
// finish = page shown after account has been created/modified
case 'general': case 'general':
// Write all general values into $account_new if no profile should be loaded // Write all general values into $account_new if no profile should be loaded
if (!$_POST['load']) { if (!$_POST['load']) {
@ -94,102 +97,117 @@ switch ($_POST['select']) { // Select which part of page should be loaded and ch
$account_new->general_uidNumber = $_POST['f_general_uidNumber']; $account_new->general_uidNumber = $_POST['f_general_uidNumber'];
$account_new->general_group = $_POST['f_general_group']; $account_new->general_group = $_POST['f_general_group'];
$account_new->general_gecos = $_POST['f_general_gecos']; $account_new->general_gecos = $_POST['f_general_gecos'];
$account_new->smb_displayName = $_POST['f_smb_displayName'];
// Check if values are OK and set automatic values. if not error-variable will be set // Check if values are OK and set automatic values. if not error-variable will be set
// Add $ to end of hostname if hostname doesn't end with "$"
if ( substr($account_new->general_username, strlen($account_new->general_username)-1, strlen($account_new->general_username)) != '$' ) { if ( substr($account_new->general_username, strlen($account_new->general_username)-1, strlen($account_new->general_username)) != '$' ) {
$account_new->general_username = $account_new->general_username . '$'; $account_new->general_username = $account_new->general_username . '$';
$errors[] = array('WARN', _('Host name'), _('Added $ to hostname.')); $errors[] = array('WARN', _('Host name'), _('Added $ to hostname.'));
} }
// Get copy of hostname so we can check if changes were made
$tempname = $account_new->general_username; $tempname = $account_new->general_username;
// Check if Hostname contains only valid characters // Check if Hostname contains only valid characters
if ( !ereg('^([a-z]|[A-Z]|[0-9]|[.]|[-]|[$])*$', $account_new->general_username)) if ( !ereg('^([a-z]|[A-Z]|[0-9]|[.]|[-]|[$])*$', $account_new->general_username))
$errors[] = array('ERROR', _('Host name'), _('Hostname contains invalid characters. Valid characters are: a-z, 0-9 and .-_ !')); $errors[] = array('ERROR', _('Host name'), _('Hostname contains invalid characters. Valid characters are: a-z, A-Z, 0-9 and .-_ !'));
if ($account_new->general_gecos=='') { // Create automatic Hostname with number if original host already exists
$account_new->general_gecos = $account_new->general_username;
$errors[] = array('INFO', _('Gecos'), _('Inserted hostname in gecos-field.'));
}
// Create automatic Hostname with number if original user already exists
// Reset name to original name if new name is in use // Reset name to original name if new name is in use
if (ldapexists($account_new, $account_old) && is_object($account_old)) if (ldapexists($account_new, $account_old) && is_object($account_old))
$account_new->general_username = $account_old->general_username; $account_new->general_username = $account_old->general_username;
while ($temp = ldapexists($account_new, $account_old)) { while ($temp = ldapexists($account_new, $account_old)) {
// get last character of username // Remove "$" at end of hostname
$account_new->general_username = substr($account_new->general_username, 0, $account_new->general_username-1); $account_new->general_username = substr($account_new->general_username, 0, $account_new->general_username-1);
$lastchar = substr($account_new->general_username, strlen($account_new->general_username)-2, 1); // get last character of username
// Last character is no number $lastchar = substr($account_new->general_username, strlen($account_new->general_username)-1, 1);
if ( !ereg('^([0-9])+$', $lastchar)) if ( !ereg('^([0-9])+$', $lastchar)) {
$account_new->general_username = $account_new->general_username . '2'; /* Last character is no number. Therefore we only have to
else { * add "2" to it.
$i=strlen($account_new->general_username)-3; */
$account_new->general_username = $account_new->general_username . '2$';
}
else {
/* Last character is a number -> we have to increase the number until we've
* found a hostname with trailing number which is not in use.
*
* $i will show us were we have to split hostname so we get a part
* with the hostname and a part with the trailing number
*/
$i=strlen($account_new->general_username)-3;
$mark = false; $mark = false;
while (!$mark) { // Set $i to the last character which is a number in $account_new->general_username
while (!$mark) {
if (ereg('^([0-9])+$',substr($account_new->general_username, $i, strlen($account_new->general_username)-1))) $i--; if (ereg('^([0-9])+$',substr($account_new->general_username, $i, strlen($account_new->general_username)-1))) $i--;
else $mark=true; else $mark=true;
} }
// increase last number with one // increase last number with one
$firstchars = substr($account_new->general_username, 0, $i+1); $firstchars = substr($account_new->general_username, 0, $i+2);
$lastchars = substr($account_new->general_username, $i+1, strlen($account_new->general_username)-$i); $lastchars = substr($account_new->general_username, $i+2, strlen($account_new->general_username)-$i);
// Put hostname together
$account_new->general_username = $firstchars . (intval($lastchars)+1). '$'; $account_new->general_username = $firstchars . (intval($lastchars)+1). '$';
} }
$account_new->general_username = $account_new->general_username . "$";
} }
// Show warning if lam has changed hostname
if ($account_new->general_username != $tempname) if ($account_new->general_username != $tempname)
$errors[] = array('WARN', _('Host name'), _('Hostname already in use. Selected next free hostname.')); $errors[] = array('WARN', _('Host name'), _('Hostname already in use. Selected next free hostname.'));
// Check if UID is valid. If none value was entered, the next useable value will be inserted
$account_new->general_uidNumber = checkid($account_new, $account_old);
if (is_string($account_new->general_uidNumber)) { // true if checkid has returned an error
$errors[] = array('ERROR', _('ID-Number'), $account_new->general_uidNumber);
if (isset($account_old)) $account_new->general_uidNumber = $account_old->general_uidNumber;
else unset($account_new->general_uidNumber);
}
// Check if Name-length is OK. minLength=3, maxLength=20 // Check if Name-length is OK. minLength=3, maxLength=20
if ( !ereg('.{3,20}', $account_new->general_username)) $errors[] = array('ERROR', _('Name'), _('Name must contain between 3 and 20 characters.')); if ( !ereg('.{3,20}', $account_new->general_username)) $errors[] = array('ERROR', _('Name'), _('Name must contain between 3 and 20 characters.'));
// Check if Name starts with letter // Check if Name starts with letter
if ( !ereg('^([a-z]|[A-Z]).*$', $account_new->general_username)) if ( !ereg('^([a-z]|[A-Z]).*$', $account_new->general_username))
$errors[] = array('ERROR', _('Name'), _('Name contains invalid characters. First character must be a letter')); $errors[] = array('ERROR', _('Name'), _('Name contains invalid characters. First character must be a letter.'));
// Set gecos-field to hostname if it's empty
} if ($account_new->general_gecos=='') {
break; $account_new->general_gecos = $account_new->general_username;
$errors[] = array('INFO', _('Gecos'), _('Inserted hostname in gecos-field.'));
case 'samba': }
// Write all general values into $account_new // Check if values are OK and set automatic values. if not error-variable will be set
$account_new->smb_displayName = $_POST['f_smb_displayName']; if (($account_new->smb_displayName=='') && isset($account_new->general_gecos)) {
$account_new->smb_displayName = $account_new->general_gecos;
if (isset($_POST['f_smb_flagsD'])) $account_new->smb_flagsD = true; $errors[] = array('INFO', _('Display name'), _('Inserted gecos-field as display name.'));
else $account_new->smb_flagsD = false; }
// Check if UID is valid. If none value was entered, the next useable value will be inserted
if ($config_intern->is_samba3()) { $temp = explode(':', checkid($account_new, $account_old));
$samba3domains = $ldap_intern->search_domains($config_intern->get_domainSuffix()); $account_new->general_uidNumber = $temp[0];
for ($i=0; $i<sizeof($samba3domains); $i++) // true if checkid has returned an error
if ($_POST['f_smb_domain'] == $samba3domains[$i]->name) { if ($temp[1]!='') $errors[] = explode(';',$temp[1]);
$account_new->smb_domain = $samba3domains[$i]; // Set Samba-Domain
if ($config_intern->is_samba3()) {
// Samba 3 used a samba3domain object
// Get all domains
$samba3domains = $ldap_intern->search_domains($config_intern->get_domainSuffix());
// Search the corrct domain in array
unset($account_new->smb_domain);
$i = 0;
while (!is_object($account_new->smb_domain) && isset($samba3domains[$i])) {
if ($_POST['f_smb_domain'] == $samba3domains[$i]->name)
$account_new->smb_domain = $samba3domains[$i];
else $i++;
} }
}
// Samba 2.2 uses only a string as domainname
else {
$account_new->smb_domain = $_POST['f_smb_domain'];
// Check if Domain-name is OK
if ((!$account_new->smb_domain=='') && !ereg('^([a-z]|[A-Z]|[0-9]|[-])+$', $account_new->smb_domain))
$errors[] = array('ERROR', _('Domain name'), _('Domain name contains invalid characters. Valid characters are: a-z, A-Z, 0-9 and -.'));
}
// Reset password if reset button was pressed. Button only vissible if account should be modified
if ($_POST['respass']) {
$account_new->unix_password_no=true;
$account_new->smb_password_no=true;
}
} }
else { // Check Objectclasses. Display Warning if objectclasses don'T fot
$account_new->smb_domain = $_POST['f_smb_domain']; if (isset($account_old->general_objectClass)) {
} if (!in_array('posixAccount', $account_old->general_objectClass)) $errors[] = array('WARN', _('ObjectClass posixAccount not found.'), _('Have to add objectClass posixAccount.'));
// Check if values are OK and set automatic values. if not error-variable will be set if (!in_array('shadowAccount', $account_old->general_objectClass)) $errors[] = array('WARN', _('ObjectClass shadowAccount not found.'), _('Have to add objectClass shadowAccount.'));
if (($account_new->smb_displayName=='') && isset($account_new->general_gecos)) { if ($config_intern->is_samba3()) {
$account_new->smb_displayName = $account_new->general_gecos; if (!in_array('sambaSamAccount', $account_old->general_objectClass)) $errors[] = array('WARN', _('ObjectClass sambaSamAccount not found.'), _('Have to add objectClass sambaSamAccount. Host with sambaAccount will be updated.'));
$errors[] = array('INFO', _('Display name'), _('Inserted gecos-field as display name.')); }
else if (!in_array('sambaAccount', $account_old->general_objectClass)) $errors[] = array('WARN', _('ObjectClass sambaAccount not found.'), _('Have to add objectClass sambaSamAccount. Host with sambaSamAccount will be set back to sambaAccount.'));
} }
if ((!$account_new->smb_domain=='') && !ereg('^([a-z]|[A-Z]|[0-9]|[-])+$', $account_new->smb_domain))
$errors[] = array('ERROR', _('Domain name'), _('Domain name contains invalid characters. Valid characters are: a-z, A-Z, 0-9 and -.'));
// Reset password if reset button was pressed. Button only vissible if account should be modified
if ($_POST['respass']) {
$account_new->unix_password_no=true;
$account_new->smb_password_no=true;
$select_local = 'samba';
}
break; break;
case 'final':
$select_local = 'final';
break;
case 'finish': case 'finish':
// Check if pdf-file should be created // Check if pdf-file should be created
if ($_POST['outputpdf']) { if ($_POST['outputpdf']) {
@ -197,49 +215,35 @@ switch ($_POST['select']) { // Select which part of page should be loaded and ch
die; die;
} }
break; break;
} }
do { // X-Or, only one if() can be true do { // X-Or, only one if() can be true
if ($_POST['next_general']) { // Reset account to original settings if undo-button was pressed
if (!is_array($errors)) $select_local='general';
else $select_local=$_POST['select'];
break;
}
if ($_POST['next_samba']) {
if (!is_array($errors)) $select_local='samba';
else $select_local=$_POST['select'];
break;
}
if ($_POST['next_final']) {
if (!is_array($errors)) $select_local='final';
else $select_local=$_POST['select'];
break;
}
if ($_POST['next_reset']) { if ($_POST['next_reset']) {
$account_new = $account_old; $account_new = $account_old;
$account_new->unix_password='';
$account_new->smb_password='';
$account_new->smb_flagsW = 0;
$account_new->general_dn = substr($account_new->general_dn, strpos($account_new->general_dn, ',')+1); $account_new->general_dn = substr($account_new->general_dn, strpos($account_new->general_dn, ',')+1);
$select_local = $_POST['select'];
break; break;
} }
if ( $_POST['create'] ) { // Create-Button was pressed // Create-Button was pressed
if ( $_POST['create'] && !isset($errors)) {
// Create or modify an account // Create or modify an account
if ($account_old) $result = modifyhost($account_new,$account_old); if ($account_old) $result = modifyhost($account_new,$account_old);
else $result = createhost($account_new); // account.inc else $result = createhost($account_new); // account.inc
if ( $result==1 || $result==3 ) $select_local = 'finish'; if ($result==5 || $result==4) $select_local = 'general';
else $select_local = 'final'; else $select_local = 'finish';
} }
// Back to main-page
if ($_POST['createagain']) { if ($_POST['createagain']) {
$select_local='general'; $select_local='general';
unset ($_SESSION['account_'.$varkey.'_account_new']);
unset($account_new); unset($account_new);
$account_new = loadHostProfile('default'); $_SESSION['account_'.$varkey.'_account_new'] = loadHostProfile('default');
$account_new =& $_SESSION['account_'.$varkey.'_account_new'];
$account_new ->type = 'host'; $account_new ->type = 'host';
break; break;
} }
// Load Profile and reset all attributes to settings in profile
if ($_POST['load']) { if ($_POST['load']) {
$account_new->general_dn = $_POST['f_general_suffix']; $account_new->general_dn = $_POST['f_general_suffix'];
$account_new->general_username = $_POST['f_general_username']; $account_new->general_username = $_POST['f_general_username'];
@ -252,17 +256,21 @@ do { // X-Or, only one if() can be true
while (list($key, $val) = each($values)) // Set only defined values while (list($key, $val) = each($values)) // Set only defined values
if (isset($val)) $account_new->$key = $val; if (isset($val)) $account_new->$key = $val;
} }
// select general page after group has been loaded $errors[] = array('INFO', _('Load profile'), _('Profile loaded.'));
$select_local='general';
break; break;
} }
// Save Profile
if ($_POST['save']) { if ($_POST['save']) {
// save profile // save profile
saveHostProfile($account_new, $_POST['f_finish_safeProfile']); if ($_POST['f_finish_safeProfile']=='')
// select last page displayed before user is created $errors[] = array('ERROR', _('Save profile'), _('No profilename given.'));
$select_local='final'; else {
saveHostProfile($account_new, $_POST['f_finish_safeProfile']);
$errors[] = array('INFO', _('Save profile'), _('New profile created.'));
}
break; break;
} }
// Go back to listhosts.php
if ($_POST['backmain']) { if ($_POST['backmain']) {
metaRefresh("../lists/listhosts.php"); metaRefresh("../lists/listhosts.php");
if (isset($_SESSION['account_'.$varkey.'_account_new'])) unset($_SESSION['account_'.$varkey.'_account_new']); if (isset($_SESSION['account_'.$varkey.'_account_new'])) unset($_SESSION['account_'.$varkey.'_account_new']);
@ -270,8 +278,11 @@ do { // X-Or, only one if() can be true
die; die;
break; break;
} }
if (!$select_local) $select_local='general';
} while(0); } while(0);
// Display main page if nothing else was selected
if (!isset($select_local)) $select_local = 'general';
// Write HTML-Header // Write HTML-Header
echo $header_intern; echo $header_intern;
@ -285,21 +296,19 @@ echo "</title>\n".
"<form action=\"hostedit.php\" method=\"post\">\n". "<form action=\"hostedit.php\" method=\"post\">\n".
"<input name=\"varkey\" type=\"hidden\" value=\"".$varkey."\">\n"; "<input name=\"varkey\" type=\"hidden\" value=\"".$varkey."\">\n";
// Display errir-messages
if (is_array($errors)) if (is_array($errors))
for ($i=0; $i<sizeof($errors); $i++) StatusMessage($errors[$i][0], $errors[$i][1], $errors[$i][2]); for ($i=0; $i<sizeof($errors); $i++) StatusMessage($errors[$i][0], $errors[$i][1], $errors[$i][2]);
// print_r($account_new); // print_r($account_new);
/* Select which part of page will be loaded
switch ($select_local) { // Select which part of page will be loaded * Because hosts have very less settings all are
// general = startpage, general account paramters * on a single page. Only success-message is on a
// unix = page with all shadow-options and password * different page
// samba = page with all samba-related parameters e.g. smbpassword */
// quota = page with all quota-related parameters e.g. hard file quota switch ($select_local) {
// personal = page with all personal-related parametergs, e.g. phone number // general = startpage, all account paramters
// final = last page shown before account is created/modified
// if account is modified commands might be ran are shown
// finish = page shown after account has been created/modified // finish = page shown after account has been created/modified
case 'general': case 'general':
// General Account Settings // General Account Settings
@ -307,54 +316,88 @@ switch ($select_local) { // Select which part of page will be loaded
$groups = findgroups(); $groups = findgroups();
// load list of profiles // load list of profiles
$profilelist = getHostProfiles(); $profilelist = getHostProfiles();
// Get List of all domains
if ($config_intern->is_samba3()) $samba3domains = $ldap_intern->search_domains($config_intern->get_domainSuffix());
// Why this ?? fixme
if ($account_new->smb_password_no) echo '<input name="f_smb_password_no" type="hidden" value="1">';
// Show page info // Show page info
echo '<input name="select" type="hidden" value="general">'; echo '<input name="select" type="hidden" value="general">';
echo "<table border=0 width=\"100%\">\n<tr><td valign=\"top\" width=\"15%\" >"; // Show fieldset with list of all host profiles
echo "<table><tr><td><fieldset class=\"hostedit-dark\"><legend class=\"hostedit-bright\"><b>"; if (count($profilelist)!=0) {
echo _('Please select page:'); echo "<fieldset class=\"hostedit-dark\"><legend class=\"hostedit-bright\"><b>";
echo "</b></legend>\n"; echo _("Load profile");
echo "<input name=\"next_general\" type=\"submit\" disabled value=\""; echo _('General'); echo "\">\n<br>"; echo "</b></legend>\n<table border=0 width=\"100%\">\n<tr>\n<td width=\"50%\">";
echo "<input name=\"next_samba\" type=\"submit\" value=\""; echo _('Samba'); echo "\">\n<br>"; echo "<select name=\"f_general_selectprofile\" >";
echo "<input name=\"next_final\" type=\"submit\" value=\""; echo _('Final'); foreach ($profilelist as $profile) echo " <option>$profile</option>\n";
echo "\">"; echo "</select></td><td width=\"30%\">\n".
if (isset($account_old)) { "<input name=\"load\" type=\"submit\" value=\""; echo _('Load Profile');
echo "<br><br>"; echo "\"></td><td width=\"20\"><a href=\"../help.php?HelpNumber=421\" target=\"lamhelp\">";
echo _("Reset all changes."); echo _('Help')."</a></td>\n</tr>\n</table>\n</fieldset>\n";
echo "<br>";
echo "<input name=\"next_reset\" type=\"submit\" value=\""; echo _('Undo');
echo "\">\n";
} }
echo "</fieldset></td></tr></table></td>\n<td>"; // Show Fieldset with all host settings
echo "<table border=0 width=\"100%\">\n<tr>\n<td>";
echo "<fieldset class=\"hostedit-bright\"><legend class=\"hostedit-bright\"><b>"; echo "<fieldset class=\"hostedit-bright\"><legend class=\"hostedit-bright\"><b>";
echo _("General properties"); echo _("General properties");
echo "</b></legend>\n<table border=0 width=\"100%\">\n<tr>\n<td>"; echo "</b></legend>\n<table border=0 width=\"100%\">\n<tr>\n<td width=\"50%\">";
echo _('Host name').'*'; echo _('Host name').'*';
echo '</td>'."\n".'<td>'. echo "</td>\n<td width=\"30%\">".
'<input name="f_general_username" type="text" size="20" maxlength="20" value="' . $account_new->general_username . '">'. '<input name="f_general_username" type="text" size="20" maxlength="20" value="' . $account_new->general_username . '">'.
'</td><td>'. "</td><td width=\"20%\">".
'<a href="../help.php?HelpNumber=410" target="lamhelp">'._('Help').'</a>'. '<a href="../help.php?HelpNumber=410" target="lamhelp">'._('Help').'</a>'.
'</td></tr>'."\n".'<tr><td>'; "</td></tr>\n<tr><td>";
echo _('UID number'); echo _('UID number');
echo '</td>'."\n".'<td>'. echo "</td>\n<td>".
'<input name="f_general_uidNumber" type="text" size="6" maxlength="6" value="' . $account_new->general_uidNumber . '">'. '<input name="f_general_uidNumber" type="text" size="6" maxlength="6" value="' . $account_new->general_uidNumber . '">'.
'</td>'."\n".'<td>'. "</td>\n<td>".
'<a href="../help.php?HelpNumber=411" target="lamhelp">'._('Help').'</a>'. '<a href="../help.php?HelpNumber=411" target="lamhelp">'._('Help').'</a>'.
'</td></tr>'."\n".'<tr><td>'; "</td></tr>\n<tr><td>";
echo _('Primary group').'*'; echo _('Primary group').'*';
echo '</td>'."\n".'<td><select name="f_general_group">'; echo "</td>\n<td><select name=\"f_general_group\">";
foreach ($groups as $group) { foreach ($groups as $group) {
if ($account_new->general_group == $group) echo '<option selected>' . $group. '</option>'; if ($account_new->general_group == $group) echo '<option selected>' . $group. '</option>';
else echo '<option>' . $group. '</option>'; else echo '<option>' . $group. '</option>';
} }
echo '</select></td><td>'. echo '</select></td><td>'.
'<a href="../help.php?HelpNumber=412" target="lamhelp">'._('Help').'</a>'. '<a href="../help.php?HelpNumber=412" target="lamhelp">'._('Help').'</a>'.
'</td></tr>'."\n".'<tr><td>'; "</td></tr>\n<tr><td>";
echo _('Gecos'); echo _('Gecos');
echo '</td><td><input name="f_general_gecos" type="text" size="30" value="' . $account_new->general_gecos . '">'. echo '</td><td><input name="f_general_gecos" type="text" size="30" value="' . $account_new->general_gecos . '">'.
'</td>'."\n".'<td>'. "</td>\n<td>".
'<a href="../help.php?HelpNumber=413" target="lamhelp">'._('Help').'</a>'. '<a href="../help.php?HelpNumber=413" target="lamhelp">'._('Help').'</a>'.
'</td></tr><tr><td>'; '</td></tr><tr><td>';
echo _("Display name");
echo "</td>\n<td>".
"<input name=\"f_smb_displayName\" type=\"text\" size=\"30\" maxlength=\"50\" value=\"".$account_new->smb_displayName."\">".
"</td>\n<td><a href=\"../help.php?HelpNumber=420\" target=\"lamhelp\">"._('Help')."</a></td>\n</tr>\n<tr>\n<td>";
echo _('Password');
echo '</td><td>';
if (isset($account_old)) {
echo '<input name="respass" type="submit" value="';
echo _('Reset password'); echo '">';
}
echo "</td></tr>\n<tr><td>";
echo _('Domain');
if ($config_intern->is_samba3()) {
// Get Domain-name from domainlist when using samba 3
echo '</td><td><select name="f_smb_domain">';
for ($i=0; $i<sizeof($samba3domains); $i++) {
if ($account_new->smb_domain->name) {
if ($account_new->smb_domain->name == $samba3domains[$i]->name)
echo '<option selected>' . $samba3domains[$i]->name. '</option>';
else echo '<option>' . $samba3domains[$i]->name. '</option>';
}
else echo '<option>' . $samba3domains[$i]->name. '</option>';
}
echo '</select>';
}
else {
// Display a textfield for samba 2.2
echo '</td>'."\n".'<td><input name="f_smb_domain" type="text" size="20" maxlength="80" value="' . $account_new->smb_domain . '">';
}
echo '</td>'."\n".'<td><a href="../help.php?HelpNumber=460" target="lamhelp">'._('Help').'</a></td></tr>'."\n<tr><td>";
// Display all allowed host suffixes
echo _('Suffix'); echo '</td><td><select name="f_general_suffix">'; echo _('Suffix'); echo '</td><td><select name="f_general_suffix">';
foreach ($ldap_intern->search_units($config_intern->get_HostSuffix()) as $suffix) { foreach ($ldap_intern->search_units($config_intern->get_HostSuffix()) as $suffix) {
if ($account_new->general_dn) { if ($account_new->general_dn) {
@ -367,138 +410,35 @@ switch ($select_local) { // Select which part of page will be loaded
echo '</select></td><td><a href="../help.php?HelpNumber=463" target="lamhelp">'._('Help').'</a>'. echo '</select></td><td><a href="../help.php?HelpNumber=463" target="lamhelp">'._('Help').'</a>'.
"</td>\n</tr>\n</table>"; "</td>\n</tr>\n</table>";
echo _('Values with * are required'); echo _('Values with * are required');
echo "</fieldset>\n</td></tr><tr><td>"; echo "</fieldset>\n";
if (count($profilelist)!=0) { // Show fieldset where to save a new profile
echo "<fieldset class=\"hostedit-dark\"><legend class=\"hostedit-bright\"><b>"; echo "<fieldset class=\"hostedit-dark\"><legend class=\"hostedit-bright\"><b>";
echo _("Load profile");
echo "</b></legend>\n<table border=0 width=\"100%\">\n<tr>\n<td>";
echo "<select name=\"f_general_selectprofile\" >";
foreach ($profilelist as $profile) echo " <option>$profile</option>\n";
echo "</select></td><td>\n".
"<input name=\"load\" type=\"submit\" value=\""; echo _('Load Profile');
echo "\"></td><td><a href=\"../help.php?HelpNumber=421\" target=\"lamhelp\">";
echo _('Help')."</a></td>\n</tr>\n</table>\n</fieldset>\n";
}
echo "</td></tr></table>\n</td></tr>\n</table>\n";
break;
case 'samba':
// Samba Settings
if ($config_intern->is_samba3()) $samba3domains = $ldap_intern->search_domains($config_intern->get_domainSuffix());
if ($account_new->smb_password_no) echo '<input name="f_smb_password_no" type="hidden" value="1">';
echo '<input name="select" type="hidden" value="samba">';
echo "<table border=0 width=\"100%\">\n<tr><td valign=\"top\" width=\"15%\" >";
echo "<table><tr><td><fieldset class=\"hostedit-dark\"><legend class=\"hostedit-bright\"><b>";
echo _('Please select page:');
echo "</b></legend>\n";
echo "<input name=\"next_general\" type=\"submit\" value=\""; echo _('General'); echo "\">\n<br>";
echo "<input name=\"next_samba\" type=\"submit\" disabled value=\""; echo _('Samba'); echo "\">\n<br>";
echo "<input name=\"next_final\" type=\"submit\" value=\""; echo _('Final');
echo "\">";
if (isset($account_old)) {
echo "<br><br>";
echo _("Reset all changes.");
echo "<br>";
echo "<input name=\"next_reset\" type=\"submit\" value=\""; echo _('Undo');
echo "\">\n";
}
echo "</fieldset></td></tr></table></td>\n<td>";
echo "<table border=0 width=\"100%\"><tr><td><fieldset class=\"hostedit-bright\"><legend class=\"hostedit-bright\"><b>"._('Samba properties')."</b></legend>\n";
echo "<table border=0 width=\"100%\"><tr><td>";
echo _("Display name");
echo "</td>\n<td>".
"<input name=\"f_smb_displayName\" type=\"text\" size=\"30\" maxlength=\"50\" value=\"".$account_new->smb_displayName."\">".
"</td>\n<td><a href=\"../help.php?HelpNumber=420\" target=\"lamhelp\">"._('Help')."</a></td>\n</tr>\n<tr>\n<td>";
echo _('Password');
echo '</td><td>';
if (isset($account_old)) {
echo '<input name="respass" type="submit" value="';
echo _('Reset password'); echo '">';
}
echo '</td></tr>'."\n".'<tr><td>';
echo _('Domain');
if ($config_intern->is_samba3()) {
echo '</td><td><select name="f_smb_domain">';
for ($i=0; $i<sizeof($samba3domains); $i++) {
if ($account_new->smb_domain->name) {
if ($account_new->smb_domain->name == $samba3domains[$i]->name)
echo '<option selected>' . $samba3domains[$i]->name. '</option>';
else echo '<option>' . $samba3domains[$i]->name. '</option>';
}
else echo '<option>' . $samba3domains[$i]->name. '</option>';
}
echo '</select>';
}
else {
echo '</td>'."\n".'<td><input name="f_smb_domain" type="text" size="20" maxlength="80" value="' . $account_new->smb_domain . '">';
}
echo '</td>'."\n".'<td><a href="../help.php?HelpNumber=460" target="lamhelp">'._('Help').'</a></td></tr>'."\n";
echo "</table>\n</fieldset>\n</td></tr></table></td></tr>\n</table>\n";
break;
case 'final':
// Final Settings
echo '<input name="select" type="hidden" value="final">';
echo "<table border=0 width=\"100%\">\n<tr><td valign=\"top\" width=\"15%\" >";
echo "<table><tr><td><fieldset class=\"hostedit-dark\"><legend class=\"hostedit-bright\"><b>";
echo _('Please select page:');
echo "</b></legend>\n";
echo "<input name=\"next_general\" type=\"submit\" value=\""; echo _('General'); echo "\">\n<br>";
echo "<input name=\"next_samba\" type=\"submit\" value=\""; echo _('Samba'); echo "\">\n<br>";
echo "<input name=\"next_final\" type=\"submit\" disabled value=\""; echo _('Final');
echo "\">";
if (isset($account_old)) {
echo "<br><br>";
echo _("Reset all changes.");
echo "<br>";
echo "<input name=\"next_reset\" type=\"submit\" value=\""; echo _('Undo');
echo "\">\n";
}
echo "</fieldset></td></tr></table></td>\n<td>";
echo "<table border=0 width=\"100%\">\n<tr>\n<td>";
echo "<table border=0 width=\"100%\"><tr><td><fieldset class=\"hostedit-dark\"><legend class=\"hostedit-bright\"><b>";
echo _("Save profile"); echo _("Save profile");
echo "</b></legend>\n<table border=0 width=\"100%\">\n<tr>\n<td>"; echo "</b></legend>\n<table border=0 width=\"100%\">\n<tr>\n<td width=\"50%\">";
echo '<input name="f_finish_safeProfile" type="text" size="30" maxlength="50">'; echo '<input name="f_finish_safeProfile" type="text" size="30" maxlength="50">';
echo '</td><td><input name="save" type="submit" value="'; echo '</td><td width=\"30%\"><input name="save" type="submit" value="';
echo _('Save profile'); echo _('Save profile');
echo '"></td><td><a href="../help.php?HelpNumber=457" target="lamhelp">'._('Help'); echo '"></td><td width="20%"><a href="../help.php?HelpNumber=457" target="lamhelp">'._('Help');
echo "</a></td>\n</tr>\n</table>\n</fieldset>\n</td></tr>\n<tr><td>\n"; echo "</a></td>\n</tr>\n</table>\n</fieldset>";
// Show fieldset with modify, undo and back-button
echo "<fieldset class=\"hostedit-bright\"><legend class=\"hostedit-bright\"><b>"; echo "<fieldset class=\"hostedit-bright\"><legend class=\"hostedit-bright\"><b>";
if ($account_old) echo _('Modify'); if ($account_old) echo _('Modify');
else echo _('Create'); else echo _('Create');
echo "</b></legend>\n"; echo "</b></legend>\n";
echo "<table border=0 width=\"100%\"><tr><td>"; echo "<table border=0 width=\"100%\"><tr><td width=\"50%\">";
if (isset($account_old->general_objectClass)) { // display undo-button when editiing a host
if (!in_array('posixAccount', $account_old->general_objectClass)) { if (isset($account_old)) {
echo '<tr>'; echo "<input name=\"next_reset\" type=\"submit\" value=\""; echo _('Undo changes');
StatusMessage('WARN', _('ObjectClass posixAccount not found.'), _('Have to add objectClass posixAccount.')); echo "\">\n";
echo "</tr>\n";
}
if (!in_array('shadowAccount', $account_old->general_objectClass)) {
echo '<tr>';
StatusMessage('WARN', _('ObjectClass shadowAccount not found.'), _('Have to add objectClass shadowAccount.'));
echo "</tr>\n";
}
if ($config_intern->is_samba3()) {
if (!in_array('sambaSamAccount', $account_old->general_objectClass)) {
echo '<tr>';
StatusMessage('WARN', _('ObjectClass sambaSamAccount not found.'), _('Have to add objectClass sambaSamAccount. Host with sambaAccount will be updated.'));
echo "</tr>\n";
}}
else
if (!in_array('sambaAccount', $account_old->general_objectClass)) {
echo '<tr>';
StatusMessage('WARN', _('ObjectClass sambaAccount not found.'), _('Have to add objectClass sambaSamAccount. Host with sambaSamAccount will be set back to sambaAccount.'));
echo "</tr>\n";
}
} }
echo "</td>\n<td width=\"30%\"></td><td width=\"20%\">";
echo '<input name="create" type="submit" value="'; echo '<input name="create" type="submit" value="';
if ($account_old) echo _('Modify Account'); if ($account_old) echo _('Modify Account');
else echo _('Create Account'); else echo _('Create Account');
echo '">'."\n"; echo '">'."\n";
echo "</td></tr></table></fieldset>\n</td></tr></table></td></tr></table>\n</tr></table>"; echo "</td></tr></table></fieldset>\n";
break; break;
case 'finish': case 'finish':
// Final Settings // Final Settings
echo '<input name="select" type="hidden" value="finish">'; echo '<input name="select" type="hidden" value="finish">';

View File

@ -251,12 +251,11 @@ switch ($_POST['select']) { // Select which part of page should be loaded and ch
if ($account_new->general_username != $_POST['f_general_username']) $errors[] = array('WARN', _('Username'), _('Username in use. Selected next free username.')); if ($account_new->general_username != $_POST['f_general_username']) $errors[] = array('WARN', _('Username'), _('Username in use. Selected next free username.'));
// Check if UID is valid. If none value was entered, the next useable value will be inserted // Check if UID is valid. If none value was entered, the next useable value will be inserted
$account_new->general_uidNumber = checkid($account_new, $account_old); $temp = explode(':', checkid($account_new, $account_old));
if (is_string($account_new->general_uidNumber)) { // true if checkid has returned an error $account_new->general_uidNumber = $temp[0];
$errors[] = array('ERROR', _('ID-Number'), $account_new->general_uidNumber); // true if checkid has returned an error
if (isset($account_old)) $account_new->general_uidNumber = $account_old->general_uidNumber; if ($temp[1]!='') $errors[] = explode(';',$temp[1]);
else unset($account_new->general_uidNumber);
}
// Check if Name-length is OK. minLength=3, maxLength=20 // Check if Name-length is OK. minLength=3, maxLength=20
if ( !ereg('.{3,20}', $account_new->general_username)) $errors[] = array('ERROR', _('Name'), _('Name must contain between 3 and 20 characters.')); if ( !ereg('.{3,20}', $account_new->general_username)) $errors[] = array('ERROR', _('Name'), _('Name must contain between 3 and 20 characters.'));
// Check if Name starts with letter // Check if Name starts with letter

View File

@ -215,6 +215,7 @@ if ($_POST['delete_yes']) {
if ($_POST['delete_no']) { if ($_POST['delete_no']) {
// Delete no accounts // Delete no accounts
echo '<input name="type" type="hidden" value="'.$_POST['type'].'">';
switch ($_POST['type']) { switch ($_POST['type']) {
// Select which page should be displayd if back-button will be pressed // Select which page should be displayd if back-button will be pressed
case 'user': case 'user':

View File

@ -119,7 +119,8 @@ if ($select!='pdf') {
$_SESSION['accounts'][$_SESSION['pointer']]->general_homedir = str_replace('$user', $_SESSION['accounts'][$_SESSION['pointer']]->general_username, $_SESSION['accounts'][$_SESSION['pointer']]->general_homedir); $_SESSION['accounts'][$_SESSION['pointer']]->general_homedir = str_replace('$user', $_SESSION['accounts'][$_SESSION['pointer']]->general_username, $_SESSION['accounts'][$_SESSION['pointer']]->general_homedir);
// Set uid number // Set uid number
$_SESSION['accounts'][$_SESSION['pointer']]->general_uidNumber = checkid($_SESSION['accounts'][$_SESSION['pointer']]); $temp = explode(':', checkid($_SESSION['accounts'][$_SESSION['pointer']]));
$_SESSION['accounts'][$_SESSION['pointer']]->general_uidNumber = $temp[0];
$_SESSION['accounts'][$_SESSION['pointer']]->smb_scriptPath = str_replace('$user', $_SESSION['accounts'][$_SESSION['pointer']]->general_username, $_SESSION['accounts'][$_SESSION['pointer']]->smb_scriptPath); $_SESSION['accounts'][$_SESSION['pointer']]->smb_scriptPath = str_replace('$user', $_SESSION['accounts'][$_SESSION['pointer']]->general_username, $_SESSION['accounts'][$_SESSION['pointer']]->smb_scriptPath);
$_SESSION['accounts'][$_SESSION['pointer']]->smb_scriptPath = str_replace('$group', $_SESSION['accounts'][$_SESSION['pointer']]->general_group, $_SESSION['accounts'][$_SESSION['pointer']]->smb_scriptPath); $_SESSION['accounts'][$_SESSION['pointer']]->smb_scriptPath = str_replace('$group', $_SESSION['accounts'][$_SESSION['pointer']]->general_group, $_SESSION['accounts'][$_SESSION['pointer']]->smb_scriptPath);
@ -163,7 +164,9 @@ if ($select!='pdf') {
} }
$group->general_username=$_SESSION['accounts'][$_SESSION['pointer']]->general_group; $group->general_username=$_SESSION['accounts'][$_SESSION['pointer']]->general_group;
$group->general_uidNumber=checkid($_SESSION['accounts'][$_SESSION['pointer']]); $temp = explode(':', checkid($_SESSION['accounts'][$_SESSION['pointer']]));
$_SESSION['accounts'][$_SESSION['pointer']]->general_uidNumber = $temp[0];
$group->general_gecos=$_SESSION['accounts'][$_SESSION['pointer']]->general_group; $group->general_gecos=$_SESSION['accounts'][$_SESSION['pointer']]->general_group;
$group->general_dn=$_SESSION['group_suffix']; $group->general_dn=$_SESSION['group_suffix'];
$error = creategroup($group); $error = creategroup($group);
@ -179,7 +182,8 @@ if ($select!='pdf') {
} }
} }
$_SESSION['accounts'][$_SESSION['pointer']]->general_uidNumber = checkid($_SESSION['accounts'][$_SESSION['pointer']]); $temp = explode(':', checkid($_SESSION['accounts'][$_SESSION['pointer']]));
$_SESSION['accounts'][$_SESSION['pointer']]->general_uidNumber = $temp[0];
$iv = base64_decode($_COOKIE["IV"]); $iv = base64_decode($_COOKIE["IV"]);
$key = base64_decode($_COOKIE["Key"]); $key = base64_decode($_COOKIE["Key"]);
$_SESSION['accounts'][$_SESSION['pointer']]->unix_password = base64_encode(mcrypt_encrypt( $_SESSION['accounts'][$_SESSION['pointer']]->unix_password = base64_encode(mcrypt_encrypt(