thunderer/Shortcode

View on GitHub
src/Handler/DeclareHandler.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace Thunder\Shortcode\Handler;

use Thunder\Shortcode\HandlerContainer\HandlerContainer;
use Thunder\Shortcode\Shortcode\ShortcodeInterface;

/**
 * @author Tomasz Kowalczyk <tomasz@kowalczyk.cc>
 */
final class DeclareHandler
{
    /** @var HandlerContainer */
    private $handlers;
    /** @var string */
    private $delimiter;

    /** @param string $delimiter */
    public function __construct(HandlerContainer $container, $delimiter = '%')
    {
        $this->handlers = $container;
        $this->delimiter = $delimiter;
    }

    /**
     * [declare name]Your name is %value%[/declare]
     * [name value="Thomas" /]
     *
     * @param ShortcodeInterface $shortcode
     */
    public function __invoke(ShortcodeInterface $shortcode)
    {
        $args = $shortcode->getParameters();
        if(empty($args)) {
            return;
        }
        $keys = array_keys($args);
        $name = array_shift($keys);
        $content = (string)$shortcode->getContent();
        $delimiter = $this->delimiter;

        $this->handlers->add($name, function(ShortcodeInterface $shortcode) use($content, $delimiter) {
            $args = $shortcode->getParameters();
            $keys = array_map(function($key) use($delimiter) { return $delimiter.$key.$delimiter; }, array_keys($args));
            /** @var string[] $values */
            $values = array_values($args);

            return str_replace($keys, $values, $content);
        });
    }
}