mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2026-01-21 17:49:34 +00:00
Some checks failed
Build assets artifact / Build assets artifact (push) Has been cancelled
Docker Image Build / docker (push) Has been cancelled
Docker Image Build (FrankenPHP) / docker (push) Has been cancelled
Static analysis / Static analysis (push) Has been cancelled
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.2, mysql) (push) Has been cancelled
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.3, mysql) (push) Has been cancelled
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.4, mysql) (push) Has been cancelled
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.5, mysql) (push) Has been cancelled
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.2, postgres) (push) Has been cancelled
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.3, postgres) (push) Has been cancelled
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.4, postgres) (push) Has been cancelled
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.5, postgres) (push) Has been cancelled
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.2, sqlite) (push) Has been cancelled
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.3, sqlite) (push) Has been cancelled
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.4, sqlite) (push) Has been cancelled
PHPUnit Tests / PHPUnit and coverage Test (PHP 8.5, sqlite) (push) Has been cancelled
* Benutzerdefinierten Bauteilstatus einführen * PartCustomStateController hinzufügen * Umstellung Migrationen bzgl. Multi-Plattform-Support. Zunächst MySQL, SQLite Statements integrieren. * Postgre Statements integrieren * Semikolon in Migration entfernen * Migration für PartCustomState aktualisieren * Benutzerdefinierten Bauteilstatus in TableSettings aufnehmen * PartCustomStateControllerTest: Attribute für PHPUnit-Gruppen umgestellt * PartCustomState: Mapping für Parameter korrigieren * PartCustomState: Darstellung und Zuordnung von Anhängen ergänzt Die Sidebar wurde um die Anzeige des benutzerdefinierten Bauteilstatus erweitert, inklusive Vorschaubild, sofern vorhanden. * Migrationen zusammenführen * PartCustomState: Anpassungen bzgl. Tests * PartCustomStateEndpoint hinzufügen * Made custom part states plural for consistency with other entity captions * Fixed phpunit error * Fixed phpstan issues --------- Co-authored-by: Marcel Diegelmann <marcel.diegelmann@gmail.com> Co-authored-by: Jan Böhmer <mail@jan-boehmer.de>
125 lines
4.2 KiB
PHP
125 lines
4.2 KiB
PHP
<?php
|
|
/**
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
|
*
|
|
* Copyright (C) 2019 - 2022 Jan Böhmer (https://github.com/jbtronics)
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\DataFixtures;
|
|
|
|
use App\Entity\Attachments\AttachmentType;
|
|
use App\Entity\Base\AbstractStructuralDBElement;
|
|
use App\Entity\Parts\PartCustomState;
|
|
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\StorageLocation;
|
|
use App\Entity\Parts\Supplier;
|
|
use Doctrine\Bundle\FixturesBundle\Fixture;
|
|
use Doctrine\Common\DataFixtures\DependentFixtureInterface;
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
use Doctrine\Persistence\ObjectManager;
|
|
use InvalidArgumentException;
|
|
|
|
class DataStructureFixtures extends Fixture implements DependentFixtureInterface
|
|
{
|
|
public function __construct(protected EntityManagerInterface $em)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Load data fixtures with the passed EntityManager.
|
|
*/
|
|
public function load(ObjectManager $manager): void
|
|
{
|
|
//Reset autoincrement
|
|
$types = [AttachmentType::class, Project::class, Category::class, Footprint::class, Manufacturer::class,
|
|
MeasurementUnit::class, StorageLocation::class, Supplier::class, PartCustomState::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
|
|
*/
|
|
public function createNodesForClass(string $class, ObjectManager $manager): void
|
|
{
|
|
if (!new $class() instanceof AbstractStructuralDBElement) {
|
|
throw new InvalidArgumentException('$class must be a StructuralDBElement!');
|
|
}
|
|
|
|
/** @var AbstractStructuralDBElement $node1 */
|
|
$node1 = new $class();
|
|
$node1->setName('Node 1');
|
|
$this->addReference($class . '_1', $node1);
|
|
|
|
/** @var AbstractStructuralDBElement $node2 */
|
|
$node2 = new $class();
|
|
$node2->setName('Node 2');
|
|
$this->addReference($class . '_2', $node2);
|
|
|
|
/** @var AbstractStructuralDBElement $node3 */
|
|
$node3 = new $class();
|
|
$node3->setName('Node 3');
|
|
$this->addReference($class . '_3', $node3);
|
|
|
|
$node1_1 = new $class();
|
|
$node1_1->setName('Node 1.1');
|
|
$node1_1->setParent($node1);
|
|
$this->addReference($class . '_4', $node1_1);
|
|
|
|
$node1_2 = new $class();
|
|
$node1_2->setName('Node 1.2');
|
|
$node1_2->setParent($node1);
|
|
$this->addReference($class . '_5', $node1_2);
|
|
|
|
$node2_1 = new $class();
|
|
$node2_1->setName('Node 2.1');
|
|
$node2_1->setParent($node2);
|
|
$this->addReference($class . '_6', $node2_1);
|
|
|
|
$node1_1_1 = new $class();
|
|
$node1_1_1->setName('Node 1.1.1');
|
|
$node1_1_1->setParent($node1_1);
|
|
$this->addReference($class . '_7', $node1_1_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);
|
|
}
|
|
|
|
public function getDependencies(): array
|
|
{
|
|
return [
|
|
UserFixtures::class
|
|
];
|
|
}
|
|
}
|