ninecompta/src/Command/InitCommand.php

75 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\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
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\UserPasswordHasher;
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-20 17:09:09 +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-20 17:09:09 +01:00
$io->title("APP:INIT");
$io->text("Initialisation of the app");
$io->text("");
// Création du compte admin
$io->text("> Création du compte admin");
$user = $this->em->getRepository("App\Entity\User")->findOneBy(["username"=>"admin"]);
if(!$user) {
$user=new User;
2024-11-18 17:07:22 +01:00
2024-11-20 17:09:09 +01:00
$hashedPassword = $this->passwordHasher->hashPassword(
$user,
$this->params->get("appSecret")
);
2024-11-18 17:07:22 +01:00
2024-11-20 17:09:09 +01:00
$user->setUsername("admin");
$user->setPassword($hashedPassword);
$this->em->persist($user);
$this->em->flush();
2024-11-18 17:07:22 +01:00
}
2024-11-20 17:09:09 +01:00
// Création d'un company par defaut
$io->text("> Création d'un company par defaut");
$nbcompanys = $this->em->getRepository("App\Entity\Company")->count([]);
if($nbcompanys==0) {
$company=new Company;
$company->setTitle($this->params->get("appName"));
$company->setLogo("logo.png");
$this->em->persist($company);
$this->em->flush();
}
2024-11-18 17:07:22 +01:00
return Command::SUCCESS;
}
}