mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
98 lines
3.3 KiB
PHP
98 lines
3.3 KiB
PHP
<?php
|
|
/*
|
|
Flexisip Account Manager is a set of tools to manage SIP accounts.
|
|
Copyright (C) 2020 Belledonne Communications SARL, All rights reserved.
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as
|
|
published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use Illuminate\Console\Command;
|
|
use Illuminate\Support\Str;
|
|
|
|
use App\Account;
|
|
use App\ApiKey;
|
|
use Carbon\Carbon;
|
|
|
|
class CreateAdminAccount extends Command
|
|
{
|
|
protected $signature = 'accounts:create-admin-account {--u|username=} {--p|password=} {--d|domain=}';
|
|
protected $description = 'Create an admin account';
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
public function handle()
|
|
{
|
|
$this->info('Your will create a new admin account in the database, existing accounts with the same credentials will be overwritten');
|
|
|
|
$username = $this->option('username');
|
|
$domain = $this->option('domain');
|
|
$password = $this->option('password');
|
|
|
|
if (!$this->option('username')) {
|
|
$username = $this->ask('What will be the admin username? Default: admin');
|
|
}
|
|
|
|
if (!$this->option('domain')) {
|
|
$domain = $this->ask('What will be the admin domain? Default: ' . config('app.sip_domain'));
|
|
}
|
|
|
|
if (!$this->option('password')) {
|
|
$password = $this->ask('What will be the admin password? Default: changeme');
|
|
}
|
|
|
|
$username = $username ?? 'admin';
|
|
$domain = $domain ?? config('app.sip_domain');
|
|
$password = $password ?? 'change_me';
|
|
|
|
// Delete the account if it already exists
|
|
$account = Account::withoutGlobalScopes()
|
|
->where('username', $username)
|
|
->where('domain', $domain)
|
|
->first();
|
|
|
|
if ($account) {
|
|
$account->delete();
|
|
}
|
|
|
|
$account = new Account;
|
|
$account->username = $username;
|
|
$account->domain = $domain;
|
|
$account->email = 'admin_test@sip.example.org';
|
|
$account->activated = true;
|
|
$account->user_agent = 'Test';
|
|
$account->ip_address = '0.0.0.0';
|
|
$account->admin = true;
|
|
|
|
// Create an "old" account to prevent unwanted deletion on the test server
|
|
$account->created_at = Carbon::now()->subYears(3);
|
|
$account->save();
|
|
|
|
$apiKey = new ApiKey;
|
|
$apiKey->account_id = $account->id;
|
|
$apiKey->last_used_at = Carbon::now();
|
|
$apiKey->key = Str::random(10);
|
|
$apiKey->save();
|
|
|
|
$account->updatePassword($password);
|
|
|
|
$this->info('Admin test account created: "' . $username . '@' . $domain . '" | Password: "' . $password . '" | API Key: "' . $apiKey->key . '"');
|
|
|
|
return 0;
|
|
}
|
|
}
|