Part-DB-server/src/DataFixtures/DataStructureFixtures.php

113 lines
3.7 KiB
PHP
Raw Normal View History

<?php
2020-02-22 18:14:36 +01:00
/**
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
*
2022-11-29 22:28:53 +01:00
* Copyright (C) 2019 - 2022 Jan Böhmer (https://github.com/jbtronics)
2020-02-22 18:14:36 +01:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2020-01-05 15:46:58 +01:00
declare(strict_types=1);
namespace App\DataFixtures;
use App\Entity\Attachments\AttachmentType;
use App\Entity\Base\AbstractStructuralDBElement;
use App\Entity\ProjectSystem\Project;
use App\Entity\Parts\Category;
use App\Entity\Parts\Footprint;
use App\Entity\Parts\Manufacturer;
use App\Entity\Parts\MeasurementUnit;
use App\Entity\Parts\Storelocation;
use App\Entity\Parts\Supplier;
use Doctrine\Bundle\FixturesBundle\Fixture;
use Doctrine\ORM\EntityManagerInterface;
2020-04-10 13:05:08 +02:00
use Doctrine\Persistence\ObjectManager;
2020-01-05 22:49:00 +01:00
use InvalidArgumentException;
class DataStructureFixtures extends Fixture
{
2022-09-18 22:59:31 +02:00
protected EntityManagerInterface $em;
public function __construct(EntityManagerInterface $entityManager)
{
$this->em = $entityManager;
}
/**
* Load data fixtures with the passed EntityManager.
*/
2020-01-05 15:46:58 +01:00
public function load(ObjectManager $manager): void
{
//Reset autoincrement
$types = [AttachmentType::class, Project::class, Category::class, Footprint::class, Manufacturer::class,
MeasurementUnit::class, Storelocation::class, Supplier::class, ];
foreach ($types as $type) {
$this->createNodesForClass($type, $manager);
}
$manager->flush();
}
/**
* Creates a datafixture with serveral nodes for the given class.
*
* @param string $class The class for which the nodes should be generated (must be a StructuralDBElement child)
* @param ObjectManager $manager The ObjectManager that should be used to persist the nodes
*/
2020-01-05 15:46:58 +01:00
public function createNodesForClass(string $class, ObjectManager $manager): void
{
2020-08-21 21:36:22 +02:00
if (!new $class() instanceof AbstractStructuralDBElement) {
2020-01-05 22:49:00 +01:00
throw new InvalidArgumentException('$class must be a StructuralDBElement!');
}
/** @var AbstractStructuralDBElement $node1 */
$node1 = new $class();
$node1->setName('Node 1');
/** @var AbstractStructuralDBElement $node2 */
$node2 = new $class();
$node2->setName('Node 2');
/** @var AbstractStructuralDBElement $node3 */
$node3 = new $class();
$node3->setName('Node 3');
$node1_1 = new $class();
$node1_1->setName('Node 1.1');
$node1_1->setParent($node1);
$node1_2 = new $class();
$node1_2->setName('Node 1.2');
$node1_2->setParent($node1);
$node2_1 = new $class();
$node2_1->setName('Node 2.1');
$node2_1->setParent($node2);
$node1_1_1 = new $class();
$node1_1_1->setName('Node 1.1.1');
$node1_1_1->setParent($node1_1);
$manager->persist($node1);
$manager->persist($node2);
$manager->persist($node3);
$manager->persist($node1_1);
$manager->persist($node1_2);
$manager->persist($node2_1);
$manager->persist($node1_1_1);
}
}