LDAPAccountManager/lam/lib/profiles.inc

374 lines
9.8 KiB
PHP
Raw Normal View History

<?php
/*
$Id$
This code is part of LDAP Account Manager (http://www.sourceforge.net/projects/lam)
Copyright (C) 2003 Roland Gruber
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
2004-05-31 17:58:27 +00:00
/**
* This file provides functions to load and save account profiles for users/groups/hosts.
*
* @package configuration
* @author Roland Gruber
*/
2003-04-28 18:06:18 +00:00
2004-05-31 17:58:27 +00:00
/**
* Returns an array of string with all available user profiles (without .pru)
*
* @return array profile names
*/
function getUserProfiles() {
2003-09-20 17:02:21 +00:00
$dir = @dir(substr(__FILE__, 0, strlen(__FILE__) - 17) . "/config/profiles/users");
2003-04-28 18:06:18 +00:00
$ret = array();
$pos = 0;
2003-09-20 17:02:21 +00:00
if ($dir) {
while ($entry = $dir->read()){
$ext = substr($entry, strlen($entry)-4, 4);
$name = substr($entry, 0, strlen($entry)-4);
if ($ext == ".pru") {
$ret[$pos] = $name;
$pos ++;
}
2003-04-28 18:06:18 +00:00
}
}
return $ret;
}
2004-05-31 17:58:27 +00:00
/**
* Returns an array of String with all available group profiles (without .prg)
*
* @return array profile names
*/
function getGroupProfiles() {
2003-09-20 17:02:21 +00:00
$dir = @dir(substr(__FILE__, 0, strlen(__FILE__) - 17) . "/config/profiles/groups");
2003-04-28 18:06:18 +00:00
$ret = array();
$pos = 0;
2003-09-20 17:02:21 +00:00
if ($dir) {
while ($entry = $dir->read()){
$ext = substr($entry, strlen($entry)-4, 4);
$name = substr($entry, 0, strlen($entry)-4);
if ($ext == ".prg") {
$ret[$pos] = $name;
$pos ++;
}
2003-04-28 18:06:18 +00:00
}
}
2003-09-20 17:02:21 +00:00
return $ret;
}
2004-05-31 17:58:27 +00:00
/**
* Returns an array of String with all available host profiles (without .prh)
*
* @return array profile names
*/
function getHostProfiles() {
2003-09-20 17:02:21 +00:00
$dir = @dir(substr(__FILE__, 0, strlen(__FILE__) - 17) . "/config/profiles/hosts");
2003-04-28 18:06:18 +00:00
$ret = array();
$pos = 0;
2003-09-20 17:02:21 +00:00
if ($dir) {
while ($entry = $dir->read()){
$ext = substr($entry, strlen($entry)-4, 4);
$name = substr($entry, 0, strlen($entry)-4);
if ($ext == ".prh") {
$ret[$pos] = $name;
$pos ++;
}
2003-04-28 18:06:18 +00:00
}
}
return $ret;
}
2004-05-31 17:58:27 +00:00
/**
* Loads an user profile
*
* @param string $profile name of the profile (without .pru)
* @return array hash array (attribute => value)
*/
function loadUserProfile($profile) {
if (!eregi("^[0-9a-z_\\-]+$", $profile)) return false;
$settings = array();
2003-05-01 11:37:46 +00:00
$file = substr(__FILE__, 0, strlen(__FILE__) - 17) . "/config/profiles/users/" . $profile . ".pru";
2003-04-30 15:20:40 +00:00
if (is_file($file) == True) {
2003-06-24 15:50:38 +00:00
$file = @fopen($file, "r");
if ($file) {
while (!feof($file)) {
$line = fgets($file, 1024);
if (($line == "\n")||($line[0] == "#")) continue; // ignore comments
// search keywords
$parts = array();
$parts = split(": ", $line);
if (sizeof($parts) != 2) continue; // ignore malformed settings
2004-02-12 15:58:04 +00:00
else {
$option = $parts[0];
$value = $parts[1];
2004-02-12 15:58:04 +00:00
// remove line ends
$value = chop($value);
$settings[$option] = explode("+::+", $value);
2004-02-12 15:58:04 +00:00
}
2003-06-24 15:50:38 +00:00
}
fclose($file);
}
else {
2003-07-30 14:34:33 +00:00
StatusMessage("ERROR", "", _("Unable to load profile!") . " " . $file);
2003-04-30 15:20:40 +00:00
}
}
else {
2003-07-30 14:34:33 +00:00
StatusMessage("ERROR", "", _("Unable to load profile!") . " " . $file);
2003-04-30 15:20:40 +00:00
}
return $settings;
}
2004-05-31 17:58:27 +00:00
/**
* Loads an group profile
*
* @param string $profile name of the profile (without .prg)
* @return array hash array (attribute => value)
*/
function loadGroupProfile($profile) {
if (!eregi("^[0-9a-z_\\-]+$", $profile)) return false;
$settings = array();
2003-09-20 17:02:21 +00:00
$file = substr(__FILE__, 0, strlen(__FILE__) - 17) . "/config/profiles/groups/" . $profile . ".prg";
if (is_file($file) == True) {
$file = @fopen($file, "r");
if ($file) {
while (!feof($file)) {
$line = fgets($file, 1024);
if (($line == "\n")||($line[0] == "#")) continue; // ignore comments
// search keywords
$parts = array();
$parts = split(": ", $line);
if (sizeof($parts) != 2) continue; // ignore malformed settings
2004-02-12 15:58:04 +00:00
else {
$option = $parts[0];
$value = $parts[1];
2004-02-12 15:58:04 +00:00
// remove line ends
$value = chop($value);
$settings[$option] = explode("+::+", $value);
2004-02-12 15:58:04 +00:00
}
2003-09-20 17:02:21 +00:00
}
fclose($file);
}
else {
StatusMessage("ERROR", "", _("Unable to load profile!") . " " . $file);
}
}
else {
StatusMessage("ERROR", "", _("Unable to load profile!") . " " . $file);
}
return $settings;
}
2004-05-31 17:58:27 +00:00
/**
* Loads an host profile
*
* @param string $profile name of the profile (without .prh)
* @return array hash array (attribute => value)
*/
function loadHostProfile($profile) {
if (!eregi("^[0-9a-z_\\-]+$", $profile)) return false;
$settings = array();
2003-05-01 11:37:46 +00:00
$file = substr(__FILE__, 0, strlen(__FILE__) - 17) . "/config/profiles/hosts/" . $profile . ".prh";
2003-04-30 16:50:48 +00:00
if (is_file($file) == True) {
2003-06-24 15:50:38 +00:00
$file = @fopen($file, "r");
if ($file) {
while (!feof($file)) {
$line = fgets($file, 1024);
if (($line == "\n")||($line[0] == "#")) continue; // ignore comments
// search keywords
$parts = array();
$parts = split(": ", $line);
if (sizeof($parts) != 2) continue; // ignore malformed settings
2004-02-12 15:58:04 +00:00
else {
$option = $parts[0];
$value = $parts[1];
2004-02-12 15:58:04 +00:00
// remove line ends
$value = chop($value);
$settings[$option] = explode("+::+", $value);
2004-02-12 15:58:04 +00:00
}
2003-06-24 15:50:38 +00:00
}
fclose($file);
}
else {
2003-07-30 14:34:33 +00:00
StatusMessage("ERROR", "", _("Unable to load profile!") . " " . $file);
2003-04-30 16:50:48 +00:00
}
}
else {
2003-07-30 14:34:33 +00:00
StatusMessage("ERROR", "", _("Unable to load profile!") . " " . $file);
2003-04-30 16:50:48 +00:00
}
return $settings;
}
2004-05-31 17:58:27 +00:00
/**
* Saves an hash array (attribute => value) to an user profile
*
* file is created, if needed
*
* @param string $profile name of the user profile (without .pru)
* @param array $attributes hash array (attribute => value)
* @return boolean true, if saving succeeded
*/
function saveUserProfile($attributes, $profile) {
if (!$_SESSION['loggedIn'] == true) return false;
// check profile name
if (!eregi("^[0-9a-z_-]+$", $profile)) return false;
if (!is_array($attributes)) {
return false;
2003-06-24 15:50:38 +00:00
}
2003-05-01 11:37:46 +00:00
$path = substr(__FILE__, 0, strlen(__FILE__) - 17) . "/config/profiles/users/" . $profile . ".pru";
2003-08-03 11:05:40 +00:00
$file = @fopen($path, "w");
if ($file) {
// write attributes
$keys = array_keys($attributes);
for ($i = 0; $i < sizeof($keys); $i++) {
2004-04-17 14:09:05 +00:00
if (isset($attributes[$keys[$i]])) {
$line = $keys[$i] . ": " . implode("+::+", $attributes[$keys[$i]]) . "\n";
}
else {
$line = $keys[$i] . ": ";
}
fputs($file, $line);
2003-09-20 08:04:38 +00:00
}
2003-08-03 11:05:40 +00:00
// close file
fclose($file);
}
2003-08-03 11:05:40 +00:00
else {
return false;
}
2003-08-03 11:05:40 +00:00
return true;
}
2004-05-31 17:58:27 +00:00
/**
* Saves an hash array (attribute => value) to an group profile
*
* file is created, if needed
*
* @param string $profile name of the group profile (without .prg)
* @param array $attributes hash array (attribute => value)
* @return boolean true, if saving succeeded
*/
function saveGroupProfile($attributes, $profile) {
if (!$_SESSION['loggedIn'] == true) return false;
// check profile name
if (!eregi("^[0-9a-z_-]+$", $profile)) return false;
if (!is_array($attributes)) {
return false;
2003-09-20 17:02:21 +00:00
}
$path = substr(__FILE__, 0, strlen(__FILE__) - 17) . "/config/profiles/groups/" . $profile . ".prg";
$file = @fopen($path, "w");
if ($file) {
// write attributes
$keys = array_keys($attributes);
for ($i = 0; $i < sizeof($keys); $i++) {
$line = $keys[$i] . ": " . implode("+::+", $attributes[$keys[$i]]) . "\n";
fputs($file, $line);
2003-09-20 17:02:21 +00:00
}
// close file
fclose($file);
}
else {
return false;
}
return true;
}
2004-05-31 17:58:27 +00:00
/**
* Saves an hash array (attribute => value) to an host profile
*
* file is created, if needed
*
* @param string $profile name of the host profile (without .prh)
* @param array $attributes hash array (attribute => value)
* @return boolean true, if saving succeeded
*/
function saveHostProfile($attributes, $profile) {
if (!$_SESSION['loggedIn'] == true) return false;
// check profile name
if (!eregi("^[0-9a-z_-]+$", $profile)) return false;
if (!is_array($attributes)) {
return false;
2003-06-24 15:50:38 +00:00
}
2003-05-01 11:37:46 +00:00
$path = substr(__FILE__, 0, strlen(__FILE__) - 17) . "/config/profiles/hosts/" . $profile . ".prh";
2003-08-03 11:05:40 +00:00
$file = @fopen($path, "w");
if ($file) {
// write attributes
$keys = array_keys($attributes);
for ($i = 0; $i < sizeof($keys); $i++) {
$line = $keys[$i] . ": " . implode("+::+", $attributes[$keys[$i]]) . "\n";
fputs($file, $line);
}
2003-08-03 11:05:40 +00:00
// close file
fclose($file);
}
else {
return false;
}
return true;
}
2004-05-31 17:58:27 +00:00
/**
* Deletes a user profile
*
* @param string $file name of profile (Without .pru)
* @return boolean true if profile was deleted
2004-05-31 17:58:27 +00:00
*/
2003-05-25 10:51:10 +00:00
function delUserProfile($file) {
if (!$_SESSION['loggedIn'] == true) return false;
if (!eregi("^[0-9a-z\\-_]+$", $file)) return false;
2003-05-25 10:51:10 +00:00
$prof = substr(__FILE__, 0, strlen(__FILE__) - 16) . "config/profiles/users/".$file.".pru";
if (is_file($prof)) {
return @unlink($prof);
}
else return false;
2003-05-25 10:51:10 +00:00
}
2004-05-31 17:58:27 +00:00
/**
* Deletes a group profile
*
* @param string $file name of profile (Without .prg)
* @return boolean true if profile was deleted
2004-05-31 17:58:27 +00:00
*/
2003-09-20 17:02:21 +00:00
function delGroupProfile($file) {
if (!$_SESSION['loggedIn'] == true) return false;
if (!eregi("^[0-9a-z\\-_]+$", $file)) return false;
2003-09-20 17:02:21 +00:00
$prof = substr(__FILE__, 0, strlen(__FILE__) - 16) . "config/profiles/groups/".$file.".prg";
if (is_file($prof)) {
return @unlink($prof);
}
else return false;
2003-09-20 17:02:21 +00:00
}
2004-05-31 17:58:27 +00:00
/**
* Deletes a host profile
*
* @param string $file name of profile (Without .prh)
* @return boolean true if profile was deleted
2004-05-31 17:58:27 +00:00
*/
2003-05-25 10:51:10 +00:00
function delHostProfile($file) {
if (!$_SESSION['loggedIn'] == true) return false;
if (!eregi("^[0-9a-z\\-_]+$", $file)) return false;
2003-05-25 10:51:10 +00:00
$prof = substr(__FILE__, 0, strlen(__FILE__) - 16) . "config/profiles/hosts/".$file.".prh";
if (is_file($prof)) {
return @unlink($prof);
}
else return false;
2003-05-25 10:51:10 +00:00
}
2003-04-28 18:06:18 +00:00
?>