em = $em; $this->params = $params; $this->passwordHasher = $passwordHasher; parent::__construct(); } protected function execute(InputInterface $input, OutputInterface $output): int { $io = new SymfonyStyle($input, $output); $io->title('APP:INIT'); $io->text('Initialisation of the app'); $io->text(''); // 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(); } $user = $this->em->getRepository("App\Entity\User")->findOneBy(['username' => 'admin']); if (!$user) { $io->text('> Création du compte admin par defaut'); $user = new User(); $hashedPassword = $this->passwordHasher->hashPassword( $user, $this->params->get('appSecret') ); $user->setUsername('admin'); $user->setPassword($hashedPassword); $user->setAvatar('medias/avatar/admin.jpg'); $user->setEmail($this->params->get('appNoreply')); $user->addCompany($company); $user->setCompany($company); $this->em->persist($user); } $user->setRoles(['ROLE_ADMIN']); $this->em->flush(); return Command::SUCCESS; } }