
* Added user registration process * Added user password reset process * Added user email verification proccess * update token id to return custom claims * update access token instrospection to return user custom claims * Migrated to Doctrine ORM ( from eloquent) * Added User CRUD * Added User Groups CRUD * Refactoring * Bug Fixing * added user registration oauth2 endpoint POST /api/v1/user-registration-requests payload * first_name ( required ) * last_name ( required) * email ( required ) * country ( optional ) scope user-registration ( private scope) Change-Id: I36e8cd4473ccad734565051442e2c6033b204f27
89 lines
2.4 KiB
PHP
89 lines
2.4 KiB
PHP
<?php namespace App\Console\Commands;
|
|
/**
|
|
* Copyright 2019 OpenStack Foundation
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
**/
|
|
|
|
use Auth\Group;
|
|
use Auth\User;
|
|
use Illuminate\Console\Command;
|
|
use LaravelDoctrine\ORM\Facades\EntityManager;
|
|
/**
|
|
* Class CreateSuperAdmin
|
|
* @package App\Console\Commands
|
|
*/
|
|
class CreateSuperAdmin extends Command
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'idp:create-super-admin {email} {password}';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Create Super Admin User';
|
|
|
|
/**
|
|
* Create a new command instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function handle()
|
|
{
|
|
//
|
|
$email = trim($this->argument('email'));
|
|
$password = trim($this->argument('password'));
|
|
|
|
$user = EntityManager::getRepository(User::class)->findOneBy(['email' =>$email]);
|
|
if(!is_null($user)) {
|
|
$this->error('email already exists on db !');
|
|
return;
|
|
}
|
|
|
|
$user = new User();
|
|
$user->setEmail($email);
|
|
$user->verifyEmail();
|
|
$user->setPassword($password);
|
|
EntityManager::persist($user);
|
|
EntityManager::flush();
|
|
|
|
$group = EntityManager::getRepository(Group::class)->findOneBy(['name' => 'super admins']);
|
|
if(is_null($group)){
|
|
$group = new Group();
|
|
$group->setName('super admins');
|
|
$group->setSlug('super-admins');
|
|
$group->setDefault(false);
|
|
$group->setActive(true);
|
|
EntityManager::persist($group);
|
|
EntityManager::flush();
|
|
}
|
|
|
|
$user->addToGroup($group);
|
|
EntityManager::persist($user);
|
|
EntityManager::flush();
|
|
}
|
|
}
|