123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484 |
- <?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\Twig\Extension;
- use Doctrine\Common\Util\ClassUtils;
- use Psr\Log\LoggerInterface;
- use Sonata\AdminBundle\Admin\AdminInterface;
- use Sonata\AdminBundle\Admin\FieldDescriptionInterface;
- use Sonata\AdminBundle\Admin\Pool;
- use Sonata\AdminBundle\Exception\NoValueException;
- use Symfony\Component\Translation\TranslatorInterface;
- /**
- * @author Thomas Rabaix <thomas.rabaix@sonata-project.org>
- */
- class SonataAdminExtension extends \Twig_Extension
- {
- /**
- * @var Pool
- */
- protected $pool;
- /**
- * @var LoggerInterface
- */
- protected $logger;
- /**
- * @var TranslatorInterface|null
- */
- protected $translator;
- /**
- * @var string[]
- */
- private $xEditableTypeMapping = array();
- /**
- * @param Pool $pool
- * @param LoggerInterface $logger
- * @param TranslatorInterface $translator
- */
- public function __construct(Pool $pool, LoggerInterface $logger = null, TranslatorInterface $translator = null)
- {
- // NEXT_MAJOR: make the translator parameter required
- if (null === $translator) {
- @trigger_error(
- 'The $translator parameter will be required fields with the 4.0 release.',
- E_USER_DEPRECATED
- );
- }
- $this->pool = $pool;
- $this->logger = $logger;
- $this->translator = $translator;
- }
- /**
- * {@inheritdoc}
- */
- public function getFilters()
- {
- return array(
- new \Twig_SimpleFilter(
- 'render_list_element',
- array($this, 'renderListElement'),
- array(
- 'is_safe' => array('html'),
- 'needs_environment' => true,
- )
- ),
- new \Twig_SimpleFilter(
- 'render_view_element',
- array($this, 'renderViewElement'),
- array(
- 'is_safe' => array('html'),
- 'needs_environment' => true,
- )
- ),
- new \Twig_SimpleFilter(
- 'render_view_element_compare',
- array($this, 'renderViewElementCompare'),
- array(
- 'is_safe' => array('html'),
- 'needs_environment' => true,
- )
- ),
- new \Twig_SimpleFilter(
- 'render_relation_element',
- array($this, 'renderRelationElement')
- ),
- new \Twig_SimpleFilter(
- 'sonata_urlsafeid',
- array($this, 'getUrlsafeIdentifier')
- ),
- new \Twig_SimpleFilter(
- 'sonata_xeditable_type',
- array($this, 'getXEditableType')
- ),
- new \Twig_SimpleFilter(
- 'sonata_xeditable_choices',
- array($this, 'getXEditableChoices')
- ),
- );
- }
- /**
- * {@inheritdoc}
- */
- public function getName()
- {
- return 'sonata_admin';
- }
- /**
- * render a list element from the FieldDescription.
- *
- * @param mixed $object
- * @param FieldDescriptionInterface $fieldDescription
- * @param array $params
- *
- * @return string
- */
- public function renderListElement(
- \Twig_Environment $environment,
- $object,
- FieldDescriptionInterface $fieldDescription,
- $params = array()
- ) {
- $template = $this->getTemplate(
- $fieldDescription,
- $fieldDescription->getAdmin()->getTemplate('base_list_field'),
- $environment
- );
- return $this->output($fieldDescription, $template, array_merge($params, array(
- 'admin' => $fieldDescription->getAdmin(),
- 'object' => $object,
- 'value' => $this->getValueFromFieldDescription($object, $fieldDescription),
- 'field_description' => $fieldDescription,
- )), $environment);
- }
- /**
- * @param FieldDescriptionInterface $fieldDescription
- * @param \Twig_Template $template
- * @param array $parameters
- *
- * @return string
- */
- public function output(
- FieldDescriptionInterface $fieldDescription,
- \Twig_Template $template,
- array $parameters,
- \Twig_Environment $environment
- ) {
- $content = $template->render($parameters);
- if ($environment->isDebug()) {
- $commentTemplate = <<<'EOT'
- <!-- START
- fieldName: %s
- template: %s
- compiled template: %s
- -->
- %s
- <!-- END - fieldName: %s -->
- EOT;
- return sprintf(
- $commentTemplate,
- $fieldDescription->getFieldName(),
- $fieldDescription->getTemplate(),
- $template->getTemplateName(),
- $content,
- $fieldDescription->getFieldName()
- );
- }
- return $content;
- }
- /**
- * return the value related to FieldDescription, if the associated object does no
- * exists => a temporary one is created.
- *
- * @param object $object
- * @param FieldDescriptionInterface $fieldDescription
- * @param array $params
- *
- * @throws \RuntimeException
- *
- * @return mixed
- */
- public function getValueFromFieldDescription(
- $object,
- FieldDescriptionInterface $fieldDescription,
- array $params = array()
- ) {
- if (isset($params['loop']) && $object instanceof \ArrayAccess) {
- throw new \RuntimeException('remove the loop requirement');
- }
- $value = null;
- try {
- $value = $fieldDescription->getValue($object);
- } catch (NoValueException $e) {
- if ($fieldDescription->getAssociationAdmin()) {
- $value = $fieldDescription->getAssociationAdmin()->getNewInstance();
- }
- }
- return $value;
- }
- /**
- * render a view element.
- *
- * @param FieldDescriptionInterface $fieldDescription
- * @param mixed $object
- *
- * @return string
- */
- public function renderViewElement(
- \Twig_Environment $environment,
- FieldDescriptionInterface $fieldDescription,
- $object
- ) {
- $template = $this->getTemplate(
- $fieldDescription,
- 'SonataAdminBundle:CRUD:base_show_field.html.twig',
- $environment
- );
- try {
- $value = $fieldDescription->getValue($object);
- } catch (NoValueException $e) {
- $value = null;
- }
- return $this->output($fieldDescription, $template, array(
- 'field_description' => $fieldDescription,
- 'object' => $object,
- 'value' => $value,
- 'admin' => $fieldDescription->getAdmin(),
- ), $environment);
- }
- /**
- * render a compared view element.
- *
- * @param FieldDescriptionInterface $fieldDescription
- * @param mixed $baseObject
- * @param mixed $compareObject
- *
- * @return string
- */
- public function renderViewElementCompare(
- \Twig_Environment $environment,
- FieldDescriptionInterface $fieldDescription,
- $baseObject,
- $compareObject
- ) {
- $template = $this->getTemplate(
- $fieldDescription,
- 'SonataAdminBundle:CRUD:base_show_field.html.twig',
- $environment
- );
- try {
- $baseValue = $fieldDescription->getValue($baseObject);
- } catch (NoValueException $e) {
- $baseValue = null;
- }
- try {
- $compareValue = $fieldDescription->getValue($compareObject);
- } catch (NoValueException $e) {
- $compareValue = null;
- }
- $baseValueOutput = $template->render(array(
- 'admin' => $fieldDescription->getAdmin(),
- 'field_description' => $fieldDescription,
- 'value' => $baseValue,
- ));
- $compareValueOutput = $template->render(array(
- 'field_description' => $fieldDescription,
- 'admin' => $fieldDescription->getAdmin(),
- 'value' => $compareValue,
- ));
- // Compare the rendered output of both objects by using the (possibly) overridden field block
- $isDiff = $baseValueOutput !== $compareValueOutput;
- return $this->output($fieldDescription, $template, array(
- 'field_description' => $fieldDescription,
- 'value' => $baseValue,
- 'value_compare' => $compareValue,
- 'is_diff' => $isDiff,
- 'admin' => $fieldDescription->getAdmin(),
- ), $environment);
- }
- /**
- * @throws \RuntimeException
- *
- * @param mixed $element
- * @param FieldDescriptionInterface $fieldDescription
- *
- * @return mixed
- */
- public function renderRelationElement($element, FieldDescriptionInterface $fieldDescription)
- {
- if (!is_object($element)) {
- return $element;
- }
- $propertyPath = $fieldDescription->getOption('associated_property');
- if (null === $propertyPath) {
- // For BC kept associated_tostring option behavior
- $method = $fieldDescription->getOption('associated_tostring');
- if ($method) {
- @trigger_error(
- 'Option "associated_tostring" is deprecated since version 2.3 and will be removed in 4.0. '
- .'Use "associated_property" instead.',
- E_USER_DEPRECATED
- );
- } else {
- $method = '__toString';
- }
- if (!method_exists($element, $method)) {
- throw new \RuntimeException(sprintf(
- 'You must define an `associated_property` option or '.
- 'create a `%s::__toString` method to the field option %s from service %s is ',
- get_class($element),
- $fieldDescription->getName(),
- $fieldDescription->getAdmin()->getCode()
- ));
- }
- return call_user_func(array($element, $method));
- }
- if (is_callable($propertyPath)) {
- return $propertyPath($element);
- }
- return $this->pool->getPropertyAccessor()->getValue($element, $propertyPath);
- }
- /**
- * Get the identifiers as a string that is save to use in an url.
- *
- * @param object $model
- * @param AdminInterface $admin
- *
- * @return string string representation of the id that is save to use in an url
- */
- public function getUrlsafeIdentifier($model, AdminInterface $admin = null)
- {
- if (is_null($admin)) {
- $admin = $this->pool->getAdminByClass(ClassUtils::getClass($model));
- }
- return $admin->getUrlsafeIdentifier($model);
- }
- /**
- * @param string[] $xEditableTypeMapping
- */
- public function setXEditableTypeMapping($xEditableTypeMapping)
- {
- $this->xEditableTypeMapping = $xEditableTypeMapping;
- }
- /**
- * @param $type
- *
- * @return string|bool
- */
- public function getXEditableType($type)
- {
- return isset($this->xEditableTypeMapping[$type]) ? $this->xEditableTypeMapping[$type] : false;
- }
- /**
- * Return xEditable choices based on the field description choices options & catalogue options.
- * With the following choice options:
- * ['Status1' => 'Alias1', 'Status2' => 'Alias2']
- * The method will return:
- * [['value' => 'Status1', 'text' => 'Alias1'], ['value' => 'Status2', 'text' => 'Alias2']].
- *
- * @param FieldDescriptionInterface $fieldDescription
- *
- * @return array
- */
- public function getXEditableChoices(FieldDescriptionInterface $fieldDescription)
- {
- $choices = $fieldDescription->getOption('choices', array());
- $catalogue = $fieldDescription->getOption('catalogue');
- $xEditableChoices = array();
- if (!empty($choices)) {
- reset($choices);
- $first = current($choices);
- // the choices are already in the right format
- if (is_array($first) && array_key_exists('value', $first) && array_key_exists('text', $first)) {
- $xEditableChoices = $choices;
- } else {
- foreach ($choices as $value => $text) {
- if ($catalogue) {
- if (null !== $this->translator) {
- $text = $this->translator->trans($text, array(), $catalogue);
- // NEXT_MAJOR: Remove this check
- } elseif (method_exists($fieldDescription->getAdmin(), 'trans')) {
- $text = $fieldDescription->getAdmin()->trans($text, array(), $catalogue);
- }
- }
- $xEditableChoices[] = array(
- 'value' => $value,
- 'text' => $text,
- );
- }
- }
- }
- return $xEditableChoices;
- }
- /**
- * Get template.
- *
- * @param FieldDescriptionInterface $fieldDescription
- * @param string $defaultTemplate
- *
- * @return \Twig_TemplateInterface
- */
- protected function getTemplate(
- FieldDescriptionInterface $fieldDescription,
- $defaultTemplate,
- \Twig_Environment $environment
- ) {
- $templateName = $fieldDescription->getTemplate() ?: $defaultTemplate;
- try {
- $template = $environment->loadTemplate($templateName);
- } catch (\Twig_Error_Loader $e) {
- @trigger_error(
- 'Relying on default template loading on field template loading exception '.
- 'is deprecated since 3.1 and will be removed in 4.0. '.
- 'A \Twig_Error_Loader exception will be thrown instead',
- E_USER_DEPRECATED
- );
- $template = $environment->loadTemplate($defaultTemplate);
- if (null !== $this->logger) {
- $this->logger->warning(sprintf(
- 'An error occured trying to load the template "%s" for the field "%s", '.
- 'the default template "%s" was used instead.',
- $templateName,
- $fieldDescription->getFieldName(),
- $defaultTemplate
- ), array('exception' => $e));
- }
- }
- return $template;
- }
- }
|