mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-09-08 00:59:45 +08:00
100 lines
2.4 KiB
PHP
100 lines
2.4 KiB
PHP
<?php
|
|
|
|
/*
|
|
* (c) Jeroen van den Enden <info@endroid.nl>
|
|
*
|
|
* This source file is subject to the MIT license that is bundled
|
|
* with this source code in the file LICENSE.
|
|
*/
|
|
|
|
namespace Endroid\QrCode\Bundle\Twig\Extension;
|
|
|
|
use Endroid\QrCode\Factory\QrCodeFactory;
|
|
use Symfony\Component\DependencyInjection\ContainerAwareTrait;
|
|
use Symfony\Component\Routing\RouterInterface;
|
|
use Twig_Extension;
|
|
use Symfony\Component\DependencyInjection\ContainerAwareInterface;
|
|
use Twig_SimpleFunction;
|
|
|
|
class QrCodeExtension extends Twig_Extension implements ContainerAwareInterface
|
|
{
|
|
use ContainerAwareTrait;
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getFunctions()
|
|
{
|
|
return [
|
|
new Twig_SimpleFunction('qrcode_url', [$this, 'qrcodeUrlFunction']),
|
|
new Twig_SimpleFunction('qrcode_data_uri', [$this, 'qrcodeDataUriFunction']),
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Creates the QR code URL corresponding to the given message.
|
|
*
|
|
* @param string $text
|
|
* @param array $options
|
|
*
|
|
* @return string
|
|
*/
|
|
public function qrcodeUrlFunction($text, array $options = [])
|
|
{
|
|
$params = $options;
|
|
$params['text'] = $text;
|
|
|
|
// Extension is a mandatory route parameter: if not set retrieve from defaults
|
|
if (!isset($params['extension'])) {
|
|
$defaultOptions = $this->getQrCodeFactory()->getDefaultOptions();
|
|
$params['extension'] = $defaultOptions['extension'];
|
|
}
|
|
|
|
return $this->getRouter()->generate('endroid_qrcode', $params);
|
|
}
|
|
|
|
/**
|
|
* Creates the QR code data corresponding to the given message.
|
|
*
|
|
* @param string $text
|
|
* @param array $options
|
|
*
|
|
* @return string
|
|
*/
|
|
public function qrcodeDataUriFunction($text, array $options = [])
|
|
{
|
|
$qrCode = $this->getQrCodeFactory()->createQrCode($options);
|
|
$qrCode->setText($text);
|
|
|
|
return $qrCode->getDataUri();
|
|
}
|
|
|
|
/**
|
|
* Returns the router.
|
|
*
|
|
* @return RouterInterface
|
|
*/
|
|
protected function getRouter()
|
|
{
|
|
return $this->container->get('router');
|
|
}
|
|
|
|
/**
|
|
* Returns the QR code factory.
|
|
*
|
|
* @return QrCodeFactory
|
|
*/
|
|
protected function getQrCodeFactory()
|
|
{
|
|
return $this->container->get('endroid.qrcode.factory');
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getName()
|
|
{
|
|
return 'endroid_qrcode';
|
|
}
|
|
}
|