ninewiki/src/Command/InitCommand.php

76 lines
2.5 KiB
PHP
Raw Normal View History

2024-11-18 17:07:22 +01:00
<?php
namespace App\Command;
2024-11-20 17:09:09 +01:00
use App\Entity\Company;
use App\Entity\User;
use Doctrine\ORM\EntityManagerInterface;
2024-11-18 17:07:22 +01:00
use Symfony\Component\Console\Attribute\AsCommand;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Style\SymfonyStyle;
2024-11-20 17:09:09 +01:00
use Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface;
use Symfony\Component\PasswordHasher\Hasher\UserPasswordHasherInterface;
2024-11-18 17:07:22 +01:00
#[AsCommand(
name: 'app:init',
2024-11-20 17:09:09 +01:00
description: 'Initialisation of the app',
2024-11-18 17:07:22 +01:00
)]
class InitCommand extends Command
{
2024-11-20 17:09:09 +01:00
private EntityManagerInterface $em;
private ParameterBagInterface $params;
private UserPasswordHasherInterface $passwordHasher;
2024-11-18 17:07:22 +01:00
2024-11-26 20:42:13 +01:00
public function __construct(EntityManagerInterface $em, ParameterBagInterface $params, UserPasswordHasherInterface $passwordHasher)
2024-11-18 17:07:22 +01:00
{
2024-11-20 17:09:09 +01:00
$this->em = $em;
$this->params = $params;
$this->passwordHasher = $passwordHasher;
parent::__construct();
2024-11-18 17:07:22 +01:00
}
protected function execute(InputInterface $input, OutputInterface $output): int
{
$io = new SymfonyStyle($input, $output);
2024-11-26 20:42:13 +01:00
$io->title('APP:INIT');
$io->text('Initialisation of the app');
$io->text('');
2024-12-24 17:29:37 +01:00
// Création d'un company par defaut
$io->text("> Création d'un company par defaut");
$company = $this->em->getRepository("App\Entity\Company")->findOneBy([], ['id' => 'ASC']);
if (!$company) {
$company = new Company();
$company->setTitle($this->params->get('appName'));
$this->em->persist($company);
$this->em->flush();
}
2024-11-26 20:42:13 +01:00
$user = $this->em->getRepository("App\Entity\User")->findOneBy(['username' => 'admin']);
if (!$user) {
2024-12-24 17:29:37 +01:00
$io->text('> Création du compte admin par defaut');
2024-11-26 20:42:13 +01:00
$user = new User();
2024-11-18 17:07:22 +01:00
2024-11-20 17:09:09 +01:00
$hashedPassword = $this->passwordHasher->hashPassword(
$user,
2024-11-26 20:42:13 +01:00
$this->params->get('appSecret')
2024-11-20 17:09:09 +01:00
);
2024-11-18 17:07:22 +01:00
2024-11-26 20:42:13 +01:00
$user->setUsername('admin');
2024-11-20 17:09:09 +01:00
$user->setPassword($hashedPassword);
2024-11-26 20:42:13 +01:00
$user->setAvatar('medias/avatar/admin.jpg');
$user->setEmail($this->params->get('appNoreply'));
2024-12-24 17:29:37 +01:00
$user->addCompany($company);
$user->setCompany($company);
2024-11-20 17:09:09 +01:00
$this->em->persist($user);
2024-11-18 17:07:22 +01:00
}
2024-11-26 20:42:13 +01:00
$user->setRoles(['ROLE_ADMIN']);
2024-11-22 08:47:33 +01:00
$this->em->flush();
2024-11-18 17:07:22 +01:00
return Command::SUCCESS;
}
}