librenms-librenms/adduser.php

44 lines
1.1 KiB
PHP
Raw Normal View History

#!/usr/bin/env php
<?php
2015-07-13 20:10:26 +02:00
/*
* LibreNMS
*
* This file is part of LibreNMS.
*
* @package LibreNMS
* @subpackage cli
* @copyright (C) 2006 - 2012 Adam Armstrong
*
*/
chdir(__DIR__); // cwd to the directory containing this script
2015-07-13 20:10:26 +02:00
require 'includes/defaults.inc.php';
require 'config.php';
require 'includes/definitions.inc.php';
require 'includes/functions.php';
2015-07-13 20:10:26 +02:00
if (file_exists('html/includes/authentication/'.$config['auth_mechanism'].'.inc.php')) {
include 'html/includes/authentication/'.$config['auth_mechanism'].'.inc.php';
} else {
2015-07-13 20:10:26 +02:00
echo "ERROR: no valid auth_mechanism defined.\n";
exit();
}
2015-07-13 20:10:26 +02:00
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 {
2015-07-13 20:10:26 +02:00
echo 'User '.$argv[1]." already exists!\n";
}
} else {
2015-07-13 20:10:26 +02:00
echo "Add User Tool\nUsage: ./adduser.php <username> <password> <level 1-10> [email]\n";
}
} else {
2015-07-13 20:10:26 +02:00
echo "Auth module does not allow adding users!\n";
}//end if