<?php
namespace App\Manager;
use App\Entity\Configuration;
use App\Entity\ConfigurationItemParent;
use App\Entity\ConfigurationItemValue;
use App\Entity\ConfigurationType;
use Doctrine\ORM\EntityManagerInterface;
class ConfigurationManager
{
public function __construct(private EntityManagerInterface $manager)
{
}
public function createConfiguration(string $type): Configuration
{
$configuration = (new Configuration())
->setType($this->manager->getRepository(ConfigurationType::class)->findOneByCode($type))
->setNotifyLevel(0)
->addItem(new ConfigurationItemValue(name: 'time', value: 0))
->addItem(new ConfigurationItemValue(name: 'step', value: 1))
->addItem(new ConfigurationItemValue(name: 'complete', value: 0))
->addItem(new ConfigurationItemValue(name: 'chrono_number', value: ''))
->addItem(new ConfigurationItemValue(name: 'grc', value: ''))
->addItem(new ConfigurationItemParent(name: 'products', values: [
new ConfigurationItemValue(name: 'identifiers', value: ''),
new ConfigurationItemValue(name: 'names', value: ''),
new ConfigurationItemValue(name: 'configurations', value: ''),
]))
->addItem(new ConfigurationItemParent(name: 'transport', values: []))
->addItem(new ConfigurationItemParent(name: 'project_discovery', values: []))
->addItem(new ConfigurationItemParent('configurator_1', values: []));
$this->manager->persist($configuration);
$this->manager->flush();
return $configuration;
}
}