mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-05 07:07:51 +02:00
289 lines
6.2 KiB
PHP
289 lines
6.2 KiB
PHP
<?php
|
|
/**
|
|
*
|
|
* This file is part of the phpBB Forum Software package.
|
|
*
|
|
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
|
* @license GNU General Public License, version 2 (GPL-2.0)
|
|
*
|
|
* For full copyright and license information, please see
|
|
* the docs/CREDITS.txt file.
|
|
*
|
|
*/
|
|
|
|
namespace phpbb\textformatter\s9e;
|
|
|
|
/**
|
|
* s9e\TextFormatter\Renderer adapter
|
|
*/
|
|
class renderer implements \phpbb\textformatter\renderer_interface
|
|
{
|
|
/**
|
|
* @var \s9e\TextFormatter\Plugins\Censor\Helper
|
|
*/
|
|
protected $censor;
|
|
|
|
/**
|
|
* @var \phpbb\event\dispatcher_interface
|
|
*/
|
|
protected $dispatcher;
|
|
|
|
/**
|
|
* @var \s9e\TextFormatter\Renderer
|
|
*/
|
|
protected $renderer;
|
|
|
|
/**
|
|
* @var bool Status of the viewcensors option
|
|
*/
|
|
protected $viewcensors = false;
|
|
|
|
/**
|
|
* @var bool Status of the viewflash option
|
|
*/
|
|
protected $viewflash = false;
|
|
|
|
/**
|
|
* @var bool Status of the viewimg option
|
|
*/
|
|
protected $viewimg = false;
|
|
|
|
/**
|
|
* @var bool Status of the viewsmilies option
|
|
*/
|
|
protected $viewsmilies = false;
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @param \phpbb\cache\driver\driver_interface $cache
|
|
* @param string $cache_dir Path to the cache dir
|
|
* @param string $key Cache key
|
|
* @param factory $factory
|
|
* @param \phpbb\event\dispatcher_interface $dispatcher
|
|
*/
|
|
public function __construct(\phpbb\cache\driver\driver_interface $cache, $cache_dir, $key, factory $factory, \phpbb\event\dispatcher_interface $dispatcher)
|
|
{
|
|
$renderer_data = $cache->get($key);
|
|
if ($renderer_data)
|
|
{
|
|
$class = $renderer_data['class'];
|
|
if (!class_exists($class, false))
|
|
{
|
|
// Try to load the renderer class from its cache file
|
|
$cache_file = $cache_dir . $class . '.php';
|
|
|
|
if (file_exists($cache_file))
|
|
{
|
|
include($cache_file);
|
|
}
|
|
}
|
|
if (class_exists($class, false))
|
|
{
|
|
$renderer = new $class;
|
|
}
|
|
if (isset($renderer_data['censor']))
|
|
{
|
|
$censor = $renderer_data['censor'];
|
|
}
|
|
}
|
|
if (!isset($renderer))
|
|
{
|
|
$objects = $factory->regenerate();
|
|
$renderer = $objects['renderer'];
|
|
}
|
|
$self = $this;
|
|
|
|
/**
|
|
* Configure the renderer service
|
|
*
|
|
* @event core.text_formatter_s9e_renderer_setup
|
|
* @var \s9e\TextFormatter\Renderer renderer s9e\TextFormatter renderer instance
|
|
* @var \phpbb\textformatter\s9e\renderer self This renderer service
|
|
* @since 3.2.0-a1
|
|
*/
|
|
$vars = array('renderer', 'self');
|
|
extract($dispatcher->trigger_event('core.text_formatter_s9e_renderer_setup', compact($vars)));
|
|
|
|
if (isset($censor))
|
|
{
|
|
$this->censor = $censor;
|
|
}
|
|
$this->dispatcher = $dispatcher;
|
|
$this->renderer = $renderer;
|
|
}
|
|
|
|
/**
|
|
* Automatically set the smilies path based on config
|
|
*
|
|
* @param \phpbb\config\config $config
|
|
* @param \phpbb\path_helper $path_helper
|
|
* @return null
|
|
*/
|
|
public function configure_smilies_path(\phpbb\config\config $config, \phpbb\path_helper $path_helper)
|
|
{
|
|
/**
|
|
* @see smiley_text()
|
|
*/
|
|
$root_path = (defined('PHPBB_USE_BOARD_URL_PATH') && PHPBB_USE_BOARD_URL_PATH) ? generate_board_url() . '/' : $path_helper->get_web_root_path();
|
|
|
|
$this->set_smilies_path($root_path . $config['smilies_path']);
|
|
}
|
|
|
|
/**
|
|
* Configure this renderer as per the user's settings
|
|
*
|
|
* Should set the locale as well as the viewcensor/viewflash/viewimg/viewsmilies options.
|
|
*
|
|
* @param \phpbb\user $user
|
|
* @param \phpbb\config\config $config
|
|
* @param \phpbb\auth\auth $auth
|
|
* @return null
|
|
*/
|
|
public function configure_user(\phpbb\user $user, \phpbb\config\config $config, \phpbb\auth\auth $auth)
|
|
{
|
|
$censor = $user->optionget('viewcensors') || !$config['allow_nocensors'] || !$auth->acl_get('u_chgcensors');
|
|
|
|
$this->set_viewcensors($censor);
|
|
$this->set_viewflash($user->optionget('viewflash'));
|
|
$this->set_viewimg($user->optionget('viewimg'));
|
|
$this->set_viewsmilies($user->optionget('viewsmilies'));
|
|
|
|
// Set the stylesheet parameters
|
|
foreach (array_keys($this->renderer->getParameters()) as $param_name)
|
|
{
|
|
if (substr($param_name, 0, 2) === 'L_')
|
|
{
|
|
// L_FOO is set to $user->lang('FOO')
|
|
$this->renderer->setParameter($param_name, $user->lang(substr($param_name, 2)));
|
|
}
|
|
}
|
|
|
|
// Set the style id
|
|
$this->renderer->setParameter('STYLE_ID', $user->style['style_id']);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function get_viewcensors()
|
|
{
|
|
return $this->viewcensors;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function get_viewflash()
|
|
{
|
|
return $this->viewflash;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function get_viewimg()
|
|
{
|
|
return $this->viewimg;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function get_viewsmilies()
|
|
{
|
|
return $this->viewsmilies;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function render($text)
|
|
{
|
|
if (isset($this->censor) && $this->viewcensors)
|
|
{
|
|
// NOTE: censorHtml() is XML-safe
|
|
$text = $this->censor->censorHtml($text, true);
|
|
}
|
|
|
|
$html = $this->renderer->render($text);
|
|
|
|
/**
|
|
* @see bbcode::bbcode_second_pass_code()
|
|
*/
|
|
$html = preg_replace_callback(
|
|
'#(<code[^>]*>)(.*?)(</code>)#is',
|
|
function ($captures)
|
|
{
|
|
$code = $captures[2];
|
|
|
|
$code = str_replace("\t", ' ', $code);
|
|
$code = str_replace(' ', ' ', $code);
|
|
$code = str_replace(' ', ' ', $code);
|
|
$code = str_replace("\n ", "\n ", $code);
|
|
|
|
// keep space at the beginning
|
|
if (!empty($code) && $code[0] == ' ')
|
|
{
|
|
$code = ' ' . substr($code, 1);
|
|
}
|
|
|
|
// remove newline at the beginning
|
|
if (!empty($code) && $code[0] == "\n")
|
|
{
|
|
$code = substr($code, 1);
|
|
}
|
|
|
|
return $captures[1] . $code . $captures[3];
|
|
},
|
|
$html
|
|
);
|
|
|
|
return $html;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function set_smilies_path($path)
|
|
{
|
|
$this->renderer->setParameter('T_SMILIES_PATH', $path);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function set_viewcensors($value)
|
|
{
|
|
$this->viewcensors = $value;
|
|
$this->renderer->setParameter('S_VIEWCENSORS', $value);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function set_viewflash($value)
|
|
{
|
|
$this->viewflash = $value;
|
|
$this->renderer->setParameter('S_VIEWFLASH', $value);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function set_viewimg($value)
|
|
{
|
|
$this->viewimg = $value;
|
|
$this->renderer->setParameter('S_VIEWIMG', $value);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function set_viewsmilies($value)
|
|
{
|
|
$this->viewsmilies = $value;
|
|
$this->renderer->setParameter('S_VIEWSMILIES', $value);
|
|
}
|
|
}
|