LDAPAccountManager/lam/lib/types/user.inc

354 lines
10 KiB
PHP
Raw Normal View History

2006-01-01 16:30:05 +00:00
<?php
/*
$Id$
2009-10-27 18:47:12 +00:00
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
2012-02-05 19:03:25 +00:00
Copyright (C) 2005 - 2012 Roland Gruber
2006-01-01 16:30:05 +00:00
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/**
* The account type for user accounts (e.g. Unix, Samba and Kolab).
*
* @package types
* @author Roland Gruber
*/
/**
* The account type for user accounts (e.g. Unix, Samba and Kolab).
2006-02-07 16:05:37 +00:00
*
* @package types
2006-01-01 16:30:05 +00:00
*/
class user extends baseType {
2009-02-18 19:15:56 +00:00
/**
* Constructs a new user type object.
*/
public function __construct() {
parent::__construct();
$this->LABEL_CREATE_ANOTHER_ACCOUNT = _('Create another user');
$this->LABEL_BACK_TO_ACCOUNT_LIST = _('Back to user list');
}
2006-01-01 16:30:05 +00:00
/**
* Returns the alias name of this account type.
*
* @return string alias name
*/
function getAlias() {
return _("Users");
}
/**
* Returns the description of this account type.
*
* @return string description
*/
function getDescription() {
return _("User accounts (e.g. Unix, Samba and Kolab)");
}
/**
* Returns the class name for the list object.
*
* @return string class name
*/
function getListClassName() {
return "lamUserList";
}
/**
* Returns the default attribute list for this account type.
*
* @return string attribute list
*/
function getDefaultListAttributes() {
return "#uid;#givenName;#sn;#uidNumber;#gidNumber";
}
/**
* Returns a list of attributes which have a translated description.
* This is used for the head row in the list view.
*
* @return array list of descriptions
*/
function getListAttributeDescriptions() {
return array (
"uid" => _("User ID"),
"uidnumber" => _("UID number"),
"gidnumber" => _("GID number"),
"cn" => _("User name"),
"host" => _("Allowed hosts"),
"givenname" => _("First name"),
"sn" => _("Last name"),
"homedirectory" => _("Home directory"),
"loginshell" => _("Login shell"),
2010-04-02 11:39:09 +00:00
"mail" => _("Email"),
2007-02-17 16:26:08 +00:00
"gecos" => _("Description"),
2011-04-18 18:27:53 +00:00
"jpegphoto" => _('Photo'),
'shadowexpire' => _('Password expiration'),
'sambakickofftime' => _('Account expiration date')
2006-01-01 16:30:05 +00:00
);
}
/**
* Returns the the title text for the title bar on the new/edit page.
*
* @param array $attributes list of LDAP attributes for the displayed account (null, if new account)
* @return String title text
*/
public function getTitleBarTitle($attributes) {
if ($attributes == null) {
return _("New user");
}
// check if first and last name can be shown
if (isset($attributes['sn'][0]) && isset($attributes['givenName'][0])) {
return htmlspecialchars($attributes['givenName'][0] . ' ' . $attributes['sn'][0]);
}
// check if a display name is set
if (isset($attributes['displayName'][0])) {
return htmlspecialchars($attributes['displayName'][0]);
}
// check if a common name is set
if (isset($attributes['cn'][0])) {
return htmlspecialchars($attributes['cn'][0]);
}
// check if a user name is set
if (isset($attributes['uid'][0])) {
return htmlspecialchars($attributes['uid'][0]);
}
// fall back to default
return parent::getTitleBarTitle($attributes);
}
/**
* Returns the the title text for the title bar on the new/edit page.
*
* @param array $attributes list of LDAP attributes for the displayed account (null, if new account)
* @return String title text
*/
public function getTitleBarSubtitle($attributes) {
if ($attributes == null) {
return null;
}
$subtitle = '';
$spacer = '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;';
// check if an email address can be shown
if (isset($attributes['mail'][0])) {
$subtitle .= '<a href="mailto:' . htmlspecialchars($attributes['mail'][0]) . '">' . htmlspecialchars($attributes['mail'][0]) . '</a>' . $spacer;
}
// check if an telephone number can be shown
if (isset($attributes['telephoneNumber'][0])) {
$subtitle .= _('Telephone number') . ' ' . htmlspecialchars($attributes['telephoneNumber'][0]) . $spacer;
}
// check if an mobile number can be shown
if (isset($attributes['mobile'][0])) {
$subtitle .= _('Mobile number') . ' ' . htmlspecialchars($attributes['mobile'][0]);
}
if ($subtitle == '') {
return null;
}
return $subtitle;
}
2006-01-01 16:30:05 +00:00
}
/**
* Generates the list view.
*
* @package lists
* @author Roland Gruber
*
*/
class lamUserList extends lamList {
/** Controls if GID number is translated to group name */
2007-10-13 17:28:37 +00:00
private $trans_primary = false;
2006-01-01 16:30:05 +00:00
/** translates GID to group name */
2007-10-13 17:28:37 +00:00
private $trans_primary_hash = array();
2006-01-01 16:30:05 +00:00
/** ID for config option */
const TRANS_PRIMARY_OPTION_NAME = "LU_TP";
2006-01-01 16:30:05 +00:00
/**
* Constructor
*
* @param string $type account type
* @return lamList list object
*/
2007-12-28 16:08:56 +00:00
public function __construct($type) {
parent::__construct($type);
2006-01-01 16:30:05 +00:00
$this->labels = array(
2012-02-09 17:08:39 +00:00
'nav' => _("User count: %s"),
2006-01-01 16:30:05 +00:00
'error_noneFound' => _("No users found!"),
'newEntry' => _("New user"),
2012-02-05 19:03:25 +00:00
'deleteEntry' => _("Delete selected users"));
2006-01-01 16:30:05 +00:00
}
2007-06-01 17:25:07 +00:00
/**
* Sets some internal parameters.
*/
protected function listGetParams() {
2007-06-01 17:25:07 +00:00
parent::listGetParams();
2006-01-01 16:30:05 +00:00
// generate hash table for group translation
2007-06-01 17:25:07 +00:00
if ($this->trans_primary == "on" && !$this->refresh && (sizeof($this->trans_primary_hash) == 0)) {
$this->refreshPrimaryGroupTranslation();
}
}
/**
* Rereads the entries from LDAP.
*/
protected function listRefreshData() {
2007-06-01 17:25:07 +00:00
parent::listRefreshData();
if ($this->trans_primary == "on") {
$this->refreshPrimaryGroupTranslation();
2006-01-01 16:30:05 +00:00
}
}
2007-06-01 17:25:07 +00:00
/**
* Refreshes the GID to group name cache.
*/
protected function refreshPrimaryGroupTranslation() {
2007-06-01 17:25:07 +00:00
$this->trans_primary_hash = array();
$grp_suffix = $_SESSION['config']->get_Suffix('group');
$filter = "objectClass=posixGroup";
$attrs = array("cn", "gidNumber");
2010-02-06 11:52:48 +00:00
$entries = searchLDAPByAttribute(null, null, 'posixGroup', $attrs, array('group'));
for ($i = 0; $i < sizeof($entries); $i++) {
$this->trans_primary_hash[$entries[$i]['gidnumber'][0]] = $entries[$i]['cn'][0];
}
2007-06-01 17:25:07 +00:00
}
2006-01-01 16:30:05 +00:00
/**
2007-02-17 16:26:08 +00:00
* Prints the content of a cell in the account list for a given LDAP entry and attribute.
*
* @param array $entry LDAP attributes
* @param string $attribute attribute name
*/
protected function listPrintTableCellContent(&$entry, &$attribute) {
2007-02-17 16:26:08 +00:00
// check if there is something to display at all
2007-10-05 18:09:49 +00:00
if (!isset($entry[$attribute]) || !is_array($entry[$attribute]) || (sizeof($entry[$attribute]) < 1)) return;
2007-02-17 16:26:08 +00:00
// translate GID to group name
if (($attribute == "gidnumber") && ($this->trans_primary == "on")) {
if (isset($this->trans_primary_hash[$entry[$attribute][0]])) {
echo $this->trans_primary_hash[$entry[$attribute][0]];
2006-01-01 16:30:05 +00:00
}
else {
2007-02-17 16:26:08 +00:00
parent::listPrintTableCellContent($entry, $attribute);
2006-01-01 16:30:05 +00:00
}
2007-02-17 16:26:08 +00:00
}
// show user photos
elseif ($attribute == "jpegphoto") {
if (sizeof($entry[$attribute][0]) < 100) {
// looks like we have read broken binary data, reread photo
2010-02-06 11:52:48 +00:00
$result = @ldap_read($_SESSION['ldap']->server(), escapeDN($entry['dn']), $attribute . "=*", array($attribute), 0, 0, 0, LDAP_DEREF_NEVER);
2007-02-17 16:26:08 +00:00
if ($result) {
$tempEntry = @ldap_first_entry($_SESSION['ldap']->server(), $result);
2007-02-18 18:35:25 +00:00
if ($tempEntry) {
$binData = ldap_get_values_len($_SESSION['ldap']->server(), $tempEntry, $attribute);
$entry[$attribute] = $binData;
}
2006-01-01 16:30:05 +00:00
}
}
2010-01-02 13:49:56 +00:00
$imgNumber = $_SESSION['ldap']->new_rand();
$jpeg_filename = 'jpg' . $imgNumber . '.jpg';
2010-04-01 18:12:07 +00:00
$outjpeg = @fopen(dirname(__FILE__) . '/../../tmp/' . $jpeg_filename, "wb");
2007-02-17 16:26:08 +00:00
fwrite($outjpeg, $entry[$attribute][0]);
fclose ($outjpeg);
$photoFile = '../../tmp/' . $jpeg_filename;
2010-01-01 23:26:57 +00:00
$imgSize = getimagesize($photoFile);
$minSize = 64;
if ($imgSize[0] < 64) {
$minSize = $imgSize[0];
}
$imgTitle = _('Click to switch between thumbnail and original size.');
2010-01-02 13:49:56 +00:00
echo "<img id=\"img$imgNumber\" title=\"$imgTitle\" height=$minSize src=\"" . $photoFile . "\" alt=\"" . _('Photo') . "\">";
echo '<script type="text/javascript">';
echo "addResizeHandler(document.getElementById(\"img$imgNumber\"), $minSize, " . $imgSize[1] . ")";
echo '</script>';
2007-02-17 16:26:08 +00:00
}
2008-01-26 13:01:36 +00:00
elseif (($attribute == 'mail') || ($attribute == 'rfc822Mailbox')) {
if (isset($entry[$attribute][0]) && ($entry[$attribute][0] != '')) {
for ($i = 0; $i < sizeof($entry[$attribute]); $i++) {
if ($i > 0) {
echo ", ";
}
echo "<a href=\"mailto:" . $entry[$attribute][$i] . "\">" . $entry[$attribute][$i] . "</a>\n";
}
}
}
2011-04-25 17:47:17 +00:00
// expire dates
elseif ($attribute == 'shadowexpire') {
if (isset($entry[$attribute][0]) && ($entry[$attribute][0] != '')) {
echo date('d. m. Y', $entry[$attribute][0] * 24 * 3600);
}
}
elseif ($attribute == 'sambakickofftime') {
if (isset($entry[$attribute][0]) && ($entry[$attribute][0] != '')) {
if ($entry[$attribute][0] > 2147483648) {
echo "";
}
else {
$date = getdate($entry[$attribute][0]);
echo $date['mday'] . "." . $date['mon'] . "." . $date['year'];
}
}
}
2007-02-17 16:26:08 +00:00
// print all other attributes
else {
parent::listPrintTableCellContent($entry, $attribute);
2006-01-01 16:30:05 +00:00
}
}
2007-02-17 16:26:08 +00:00
2007-11-05 18:15:26 +00:00
/**
* Returns a list of lamListTool objects to display next to the edit/delete buttons.
*
* @return lamListTool[] tools
*/
protected function getAdditionalTools() {
2008-01-08 17:49:50 +00:00
if (isLAMProVersion() && checkIfPasswordChangeIsAllowed()) {
2007-11-05 18:15:26 +00:00
$passwordTool = new lamListTool(_('Change password'), 'key.png', 'changePassword.php');
return array($passwordTool);
}
2008-01-08 17:49:50 +00:00
return array();
2007-11-05 18:15:26 +00:00
}
2006-01-01 16:30:05 +00:00
/**
* Returns a list of possible configuration options.
*
* @return array list of lamListOption objects
*/
protected function listGetAllConfigOptions() {
$options = parent::listGetAllConfigOptions();
$options[] = new lamBooleanListOption(_('Translate GID number to group name'), self::TRANS_PRIMARY_OPTION_NAME);
return $options;
}
/**
* Called when the configuration options changed.
*/
protected function listConfigurationChanged() {
parent::listConfigurationChanged();
$tpOption = $this->listGetConfigOptionByID(self::TRANS_PRIMARY_OPTION_NAME);
$this->trans_primary = $tpOption->isSelected();
}
2010-01-01 23:26:57 +00:00
2006-01-01 16:30:05 +00:00
}
?>