Actualización

This commit is contained in:
Xes
2025-04-10 12:24:57 +02:00
parent 8969cc929d
commit 45420b6f0d
39760 changed files with 4303286 additions and 0 deletions

View File

@@ -0,0 +1,103 @@
<?php
/*
* This file is part of the Sonata Project package.
*
* (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sonata\AdminBundle\Manipulator;
use Symfony\Component\Yaml\Yaml;
/**
* @author Marek Stipek <mario.dweller@seznam.cz>
* @author Simon Cosandey <simon.cosandey@simseo.ch>
*/
class ServicesManipulator
{
/**
* @var string
*/
private $file;
/**
* @var string
*/
private $template = ' %s:
class: %s
arguments: [~, %s, %s]
tags:
- { name: sonata.admin, manager_type: %s, group: admin, label: %s }
public: true
';
/**
* @param string $file
*/
public function __construct($file)
{
$this->file = (string) $file;
}
/**
* @param string $serviceId
* @param string $modelClass
* @param string $adminClass
* @param string $controllerName
* @param string $managerType
*
* @throws \RuntimeException
*/
public function addResource($serviceId, $modelClass, $adminClass, $controllerName, $managerType)
{
$code = "services:\n";
if (is_file($this->file)) {
$code = rtrim(file_get_contents($this->file));
$data = (array) Yaml::parse($code);
if ($code !== '') {
$code .= "\n";
}
if (array_key_exists('services', $data)) {
if (array_key_exists($serviceId, (array) $data['services'])) {
throw new \RuntimeException(sprintf(
'The service "%s" is already defined in the file "%s".',
$serviceId,
realpath($this->file)
));
}
if ($data['services'] !== null) {
$code .= "\n";
}
} else {
$code .= $code === '' ? '' : "\n"."services:\n";
}
}
$code .= sprintf(
$this->template,
$serviceId,
$adminClass,
$modelClass,
$controllerName,
$managerType,
current(array_slice(explode('\\', $modelClass), -1))
);
@mkdir(dirname($this->file), 0777, true);
if (@file_put_contents($this->file, $code) === false) {
throw new \RuntimeException(sprintf(
'Unable to append service "%s" to the file "%s". You will have to do it manually.',
$serviceId,
$this->file
));
}
}
}