mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Fix coding style part 2
This commit is contained in:
63
adduser.php
63
adduser.php
@@ -1,7 +1,7 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
|
||||
/**
|
||||
/*
|
||||
* Observium
|
||||
*
|
||||
* This file is part of Observium.
|
||||
@@ -15,46 +15,35 @@
|
||||
|
||||
chdir(dirname($argv[0]));
|
||||
|
||||
include("includes/defaults.inc.php");
|
||||
include("config.php");
|
||||
include("includes/definitions.inc.php");
|
||||
include("includes/functions.php");
|
||||
require("html/includes/PasswordHash.php");
|
||||
require 'includes/defaults.inc.php';
|
||||
require 'config.php';
|
||||
require 'includes/definitions.inc.php';
|
||||
require 'includes/functions.php';
|
||||
require 'html/includes/PasswordHash.php';
|
||||
|
||||
if (file_exists('html/includes/authentication/' . $config['auth_mechanism'] . '.inc.php'))
|
||||
{
|
||||
include('html/includes/authentication/' . $config['auth_mechanism'] . '.inc.php');
|
||||
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();
|
||||
else {
|
||||
echo "ERROR: no valid auth_mechanism defined.\n";
|
||||
exit();
|
||||
}
|
||||
|
||||
if (auth_usermanagement())
|
||||
{
|
||||
if (isset($argv[1]) && isset($argv[2]) && isset($argv[3]))
|
||||
{
|
||||
if (!user_exists($argv[1]))
|
||||
{
|
||||
if (adduser($argv[1],$argv[2],$argv[3],@$argv[4]))
|
||||
{
|
||||
echo("User ".$argv[1]." added successfully\n");
|
||||
}
|
||||
if (auth_usermanagement()) {
|
||||
if (isset($argv[1]) && isset($argv[2]) && isset($argv[3])) {
|
||||
if (!user_exists($argv[1])) {
|
||||
if (adduser($argv[1], $argv[2], $argv[3], @$argv[4])) {
|
||||
echo 'User '.$argv[1]." added successfully\n";
|
||||
}
|
||||
}
|
||||
else {
|
||||
echo 'User '.$argv[1]." already exists!\n";
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
echo("User ".$argv[1]." already exists!\n");
|
||||
else {
|
||||
echo "Add User Tool\nUsage: ./adduser.php <username> <password> <level 1-10> [email]\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");
|
||||
}
|
||||
|
||||
?>
|
||||
else {
|
||||
echo "Auth module does not allow adding users!\n";
|
||||
}//end if
|
||||
|
Reference in New Issue
Block a user