mirror of
https://github.com/wheelybird/ldap-user-manager.git
synced 2025-01-18 23:42:54 +01:00
57af7c4e9c
* Custom email body (#51) * get email body from ENV * read subject from env * html mail * replace special string with username and password * missing ; * more str_replace * utf8 in mail * typo * docs * fix var * count accounts * fix print * Add the ability to set the server path. Get directed to the appropriate module when you log in. * Fixes to allow overriding attribute labels properly * Fix server_path in various places, update to cookies use 'samesite', include boostrap and queryjs files so LUM can run without internet access. * Add support for consuming docker / kubernetes secrets passed as _FILE environment variables (#136) * mod: condense Dockerfile * add: _FILE feature add: list of sensitive env_vars * mod: sorted env_var list * add: complete current env_var list * fix: formatting * mod: revert Dockerfile to prev. version * mod: updated comment to be more descriptive mod: rename variables to be more descriptive * rem: list of env_var; no longer needed. mod: env_file_replace function ^ search for all <env_var>_FILE variables and replace ^ <env_var> if the file exists and is not empty mod: env_file_replace comment Co-authored-by: pyunramura <jeremy.cummings@live.com> * Update the README with information on using _FILE * Change username regex variables * Named server certs, as suggested by @huzvar * Update LDAP filter method as suggested by @xgaia * Feature/http header username (#120) * Implement Remote Headers Auth * Hide Logout on Remote Sessions * Add Explanation for REMOTRE_HTTP_HEADERS_LOGIN settiing Co-authored-by: Damian Galli <damian.galli@galli.site> * Updated Readme, fixed random number generation for ARM systems, fixed JS to generate the username * Fix issues #124 and #126 * Change badges to buttons for list counts * Don't secretly set displayName * Add Group Additional (#113) * Add doku Group additional. * Read Group additional configuration. * New group add Additional objectclasses * Allow for attributes that take multiple values. * Updated README * Formatting fixes, fix parsing params from account requests, initial code for the simple interface flag. * Add attribute fields for groups and allow user-defined attributes to be displayed. Move alert banner JS to a function. * Update entries with any missing additional objectclasses when updating entries. Update README to describe changes. Initial work to allow file uploads for attributes. * Functionality to upload binary files and display them in the form it's a JPEG. Added a new page to download existing binary content. * Bugfixes for compatibility with older osixia/openldap versions. Change SIMPLE_INTERFACE to SHOW_POSIX_ATTRIBUTES. * Update version number in README. Co-authored-by: Monsieur X <xgaia@gmx.com> Co-authored-by: pyunramura <35285259+pyunramura@users.noreply.github.com> Co-authored-by: pyunramura <jeremy.cummings@live.com> Co-authored-by: Damian Galli <da.ga@live.de> Co-authored-by: Damian Galli <damian.galli@galli.site> Co-authored-by: huzvar <89766648+huzvar@users.noreply.github.com>
82 lines
2.4 KiB
PHP
82 lines
2.4 KiB
PHP
<?php
|
|
|
|
set_include_path( ".:" . __DIR__ . "/../includes/");
|
|
|
|
include_once "web_functions.inc.php";
|
|
include_once "ldap_functions.inc.php";
|
|
include_once "module_functions.inc.php";
|
|
set_page_access("admin");
|
|
|
|
render_header("$ORGANISATION_NAME account manager");
|
|
render_submenu();
|
|
|
|
$ldap_connection = open_ldap_connection();
|
|
|
|
if (isset($_POST['delete_user'])) {
|
|
|
|
$this_user = $_POST['delete_user'];
|
|
$this_user = urldecode($this_user);
|
|
|
|
$del_user = ldap_delete_account($ldap_connection,$this_user);
|
|
|
|
if ($del_user) {
|
|
render_alert_banner("User <strong>$this_user</strong> was deleted.");
|
|
}
|
|
else {
|
|
render_alert_banner("User <strong>$this_user</strong> wasn't deleted. See the logs for more information.","danger",15000);
|
|
}
|
|
|
|
|
|
}
|
|
|
|
$people = ldap_get_user_list($ldap_connection);
|
|
|
|
?>
|
|
<div class="container">
|
|
<form action="<?php print $THIS_MODULE_PATH; ?>/new_user.php" method="post">
|
|
<button type="button" class="btn btn-light"><?php print count($people);?> account<?php if (count($people) != 1) { print "s"; }?></button> <button id="add_group" class="btn btn-default" type="submit">New user</button>
|
|
</form>
|
|
<input class="form-control" id="search_input" type="text" placeholder="Search..">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Account name</th>
|
|
<th>First name</th>
|
|
<th>Last name</th>
|
|
<th>Email</th>
|
|
<th>Member of</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="userlist">
|
|
<script>
|
|
$(document).ready(function(){
|
|
$("#search_input").on("keyup", function() {
|
|
var value = $(this).val().toLowerCase();
|
|
$("#userlist tr").filter(function() {
|
|
$(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
<?php
|
|
foreach ($people as $account_identifier => $attribs){
|
|
|
|
$group_membership = ldap_user_group_membership($ldap_connection,$account_identifier);
|
|
|
|
print " <tr>\n <td><a href='${THIS_MODULE_PATH}/show_user.php?account_identifier=" . urlencode($account_identifier) . "'>$account_identifier</a></td>\n";
|
|
print " <td>" . $people[$account_identifier]['givenname'] . "</td>\n";
|
|
print " <td>" . $people[$account_identifier]['sn'] . "</td>\n";
|
|
print " <td>" . $people[$account_identifier]['mail'] . "</td>\n";
|
|
print " <td>" . implode(", ", $group_membership) . "</td>\n";
|
|
print " </tr>\n";
|
|
}
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<?php
|
|
|
|
ldap_close($ldap_connection);
|
|
render_footer();
|
|
?>
|