mirror of
https://github.com/resources-manager/resources-manager-webui.git
synced 2024-11-21 07:29:20 +01:00
register OK
This commit is contained in:
parent
8a0e27a287
commit
c486d83d3f
|
@ -1,16 +1,16 @@
|
|||
index:
|
||||
path: /
|
||||
controller: App\Controller\HomeController::index
|
||||
|
||||
login:
|
||||
path: /login
|
||||
controller: App\Controller\SecurityController::login
|
||||
methods: GET|POST
|
||||
|
||||
register:
|
||||
registerForm:
|
||||
path: /register
|
||||
controller: App\Controller\SecurityController::show_register_form
|
||||
methods: GET|POST
|
||||
controller: App\Controller\SecurityController::showRegisterForm
|
||||
methods: GET
|
||||
|
||||
register:
|
||||
path: /register
|
||||
controller: App\Controller\SecurityController::register
|
||||
|
|
|
@ -11,14 +11,13 @@ use Symfony\Component\Form\Extension\Core\Type\SubmitType;
|
|||
use Symfony\Component\HttpFoundation\Request;
|
||||
use Symfony\Component\Routing\Annotation\Route;
|
||||
use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
|
||||
use Symfony\Component\Security\Core\Encoder\UserPasswordEncoderInterface;
|
||||
use App\Entity\User;
|
||||
|
||||
|
||||
class SecurityController extends AbstractController
|
||||
{
|
||||
/**
|
||||
* @Route("/login", name="app_login")
|
||||
*/
|
||||
|
||||
public function login(AuthenticationUtils $authenticationUtils): Response
|
||||
{
|
||||
// get the login error if there is one
|
||||
|
@ -29,26 +28,19 @@ class SecurityController extends AbstractController
|
|||
return $this->render('security/login.html.twig', ['last_username' => $lastUsername, 'error' => $error]);
|
||||
}
|
||||
|
||||
/**
|
||||
* @Route("/logout", name="app_logout")
|
||||
*/
|
||||
public function logout()
|
||||
{
|
||||
throw new \Exception('This method can be blank - it will be intercepted by the logout key on your firewall');
|
||||
}
|
||||
|
||||
/**
|
||||
* @Route("/register", name="register")
|
||||
*/
|
||||
|
||||
public function show_register_form()
|
||||
public function showRegisterForm()
|
||||
{
|
||||
return $this->render('security/register.html.twig', [
|
||||
'form' => $this->get_registerform()->createView()
|
||||
'form' => $this->getRegisterForm()->createView()
|
||||
]);
|
||||
}
|
||||
|
||||
private function get_registerform()
|
||||
private function getRegisterForm()
|
||||
{
|
||||
return $this->createFormBuilder()
|
||||
->add('email', EmailType::class)
|
||||
|
@ -59,11 +51,46 @@ class SecurityController extends AbstractController
|
|||
|
||||
}
|
||||
|
||||
public function getNbUsersActives() {
|
||||
|
||||
$em = $this->getDoctrine()->getManager();
|
||||
$repoUser = $em->getRepository(User::class);
|
||||
|
||||
$totalUsers = $repoUser->createQueryBuilder('u')
|
||||
->select('count(u.id)')
|
||||
->where('u.active= 1')
|
||||
->getQuery()
|
||||
->getSingleScalarResult();
|
||||
return $totalUsers;
|
||||
}
|
||||
|
||||
public function register(Request $request, UserPasswordEncoderInterface $passwordEncoder)
|
||||
{
|
||||
$form = $this->get_registerform();
|
||||
$form = $this->getRegisterForm();
|
||||
$form->handleRequest($request);
|
||||
echo "hey";
|
||||
if ($form->isSubmitted() && $form->isValid())
|
||||
{
|
||||
$data = $form->getData();
|
||||
$entityManager = $this->getDoctrine()->getManager();
|
||||
$user = new User();
|
||||
$user ->setEmail($data["email"])
|
||||
->setPassword( $passwordEncoder->encodePassword($user,$data["password"]) )
|
||||
->setDisplayName( $data["display_name"] );
|
||||
|
||||
if( $this->getNbUsersActives() == 0 )
|
||||
{
|
||||
//it's the first user, he will be activated and added to group SUPER_ADMIN
|
||||
$user->setActive(true)
|
||||
->setRoles( array('SUPER_ADMIN'));
|
||||
}else{
|
||||
$user->setActive(false);
|
||||
}
|
||||
|
||||
$entityManager->persist($user);
|
||||
$entityManager->flush();
|
||||
return $this->redirectToRoute('index',[]);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -1,33 +0,0 @@
|
|||
<?php
|
||||
|
||||
namespace App\DataFixtures;
|
||||
|
||||
use Doctrine\Bundle\FixturesBundle\Fixture;
|
||||
use Doctrine\Common\Persistence\ObjectManager;
|
||||
use Symfony\Component\Security\Core\Encoder\UserPasswordEncoderInterface;
|
||||
|
||||
|
||||
|
||||
class UserFixtures extends Fixture
|
||||
{
|
||||
|
||||
private $passwordEncoder;
|
||||
|
||||
public function __construct(UserPasswordEncoderInterface $passwordEncoder)
|
||||
{
|
||||
$this->passwordEncoder = $passwordEncoder;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public function load(ObjectManager $manager)
|
||||
{
|
||||
$user = new User();
|
||||
$user->setPassword($this->passwordEncoder->encodePassword(
|
||||
$user,
|
||||
'the_new_password'
|
||||
));
|
||||
|
||||
$manager->flush();
|
||||
}
|
||||
}
|
|
@ -99,6 +99,6 @@ class LoginFormAuthentificatorAuthenticator extends AbstractFormLoginAuthenticat
|
|||
|
||||
protected function getLoginUrl()
|
||||
{
|
||||
return $this->urlGenerator->generate('app_login');
|
||||
return $this->urlGenerator->generate('login');
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user