2008-03-22 14:13:16 +00:00
|
|
|
#!/usr/bin/php
|
|
|
|
<?php
|
|
|
|
|
2010-02-27 14:44:38 +00:00
|
|
|
include("includes/defaults.inc.php");
|
2008-03-22 14:13:16 +00:00
|
|
|
include("config.php");
|
|
|
|
include("includes/functions.php");
|
|
|
|
|
2010-03-06 01:10:05 +00:00
|
|
|
if (file_exists('html/includes/authentication/' . $config['auth_mechanism'] . '.inc.php'))
|
|
|
|
{
|
|
|
|
include('html/includes/authentication/' . $config['auth_mechanism'] . '.inc.php');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
echo "ERROR: no valid auth_mechanism defined.\n";
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (auth_usermanagement())
|
|
|
|
{
|
|
|
|
if($argv[1] && $argv[2] && $argv[3])
|
|
|
|
{
|
|
|
|
if(adduser($argv[1],$argv[2],$argv[3],$argv[4]))
|
|
|
|
{
|
|
|
|
echo("User ".$argv[1]." added successfully\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
echo("Add User Tool\nUsage: ./adduser.php <username> <password> <level 1-10> [email]\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
echo "Auth module does not allow adding users!\n";
|
|
|
|
}
|
2008-03-22 14:13:16 +00:00
|
|
|
|
|
|
|
?>
|