mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 20:47:15 +01:00
57 lines
1.7 KiB
PHP
57 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace Xentral\Components\Sanitizer;
|
|
|
|
use Xentral\Core\DependencyInjection\ContainerInterface;
|
|
|
|
final class Bootstrap
|
|
{
|
|
/**
|
|
* @return array
|
|
*/
|
|
public static function registerServices()
|
|
{
|
|
return [
|
|
'HtmlMailSanitizer' => 'onInitHtmlMailSanitizer',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @param ContainerInterface $container
|
|
*
|
|
* @return HtmlMailSanitizer
|
|
*/
|
|
public function onInitHtmlMailSanitizer(ContainerInterface $container)
|
|
{
|
|
/** @var \Application $app */
|
|
$app = $container->get('LegacyApplication');
|
|
$tempDir = realpath($app->erp->GetTMP()) . DIRECTORY_SEPARATOR . 'HtmlPurifier';
|
|
if (!is_dir($tempDir)) {
|
|
@mkdir($tempDir, 0777);
|
|
}
|
|
|
|
// Administration > Grundeinstellungen > System > Sicherheit > "Externe URL im Ticketsystem nicht laden"
|
|
$externeurlsblockieren = (int)$app->erp->Firmendaten('externeurlsblockieren');
|
|
$disableExternal = $externeurlsblockieren === 1;
|
|
$disableExternalResources = $externeurlsblockieren === 1;
|
|
|
|
$hostname = $_SERVER['HTTP_HOST']; // Hostname ohne http/https
|
|
$redirectUrl = './index.php?module=welcome&action=redirect&url=%s';
|
|
$moduleActionWhitelist = [
|
|
['module' => 'dateien', 'action' => 'send'], // Benötigt für Ticketsystem zur Anzeige von Dateianhängen
|
|
];
|
|
|
|
$config = new SanitizerConfig(
|
|
$disableExternal,
|
|
$disableExternalResources,
|
|
$hostname,
|
|
$redirectUrl,
|
|
$moduleActionWhitelist
|
|
);
|
|
|
|
$config->setTempDir($tempDir);
|
|
|
|
return new HtmlMailSanitizer($config);
|
|
}
|
|
}
|