* allow to input password interactively in console * added block to simplify overwriting export template parts * prevent installation in PHP 8.1 * composer update * phpunit version to 9 * support negative amounts in excel export * added system configuration actions for calendar, weekly timesheet, users * added method to render text with full markdown support
132 lines
3.1 KiB
PHP
132 lines
3.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Kimai time-tracking app.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace App\Twig\Runtime;
|
|
|
|
use App\Configuration\SystemConfiguration;
|
|
use App\Utils\Markdown;
|
|
use Twig\Extension\RuntimeExtensionInterface;
|
|
|
|
final class MarkdownExtension implements RuntimeExtensionInterface
|
|
{
|
|
/**
|
|
* @var Markdown
|
|
*/
|
|
private $markdown;
|
|
/**
|
|
* @var SystemConfiguration
|
|
*/
|
|
private $configuration;
|
|
/**
|
|
* @var bool|null
|
|
*/
|
|
private $markdownEnabled;
|
|
|
|
public function __construct(Markdown $parser, SystemConfiguration $configuration)
|
|
{
|
|
$this->markdown = $parser;
|
|
$this->configuration = $configuration;
|
|
}
|
|
|
|
private function isMarkdownEnabled(): bool
|
|
{
|
|
if (null === $this->markdownEnabled) {
|
|
$this->markdownEnabled = $this->configuration->isTimesheetMarkdownEnabled();
|
|
}
|
|
|
|
return $this->markdownEnabled;
|
|
}
|
|
|
|
/**
|
|
* Transforms the entities comment (customer, project, activity ...) into HTML.
|
|
*
|
|
* @param string|null $content
|
|
* @param bool $fullLength
|
|
* @return string
|
|
*/
|
|
public function commentContent(?string $content, bool $fullLength = false): string
|
|
{
|
|
if (empty($content)) {
|
|
return '';
|
|
}
|
|
|
|
if (!$fullLength && \strlen($content) > 101) {
|
|
$content = trim(substr($content, 0, 100)) . ' …';
|
|
}
|
|
|
|
if ($this->isMarkdownEnabled()) {
|
|
$content = $this->markdown->toHtml($content);
|
|
} elseif ($fullLength) {
|
|
$content = '<p>' . nl2br($content) . '</p>';
|
|
}
|
|
|
|
return $content;
|
|
}
|
|
|
|
/**
|
|
* Transforms the entities comment (customer, project, activity ...) into a one-liner.
|
|
*
|
|
* @param string|null $content
|
|
* @param bool $fullLength
|
|
* @return string
|
|
*/
|
|
public function commentOneLiner(?string $content, bool $fullLength = true): string
|
|
{
|
|
if (empty($content)) {
|
|
return '';
|
|
}
|
|
|
|
$addHellip = false;
|
|
|
|
if (!$fullLength && \strlen($content) > 52) {
|
|
$content = trim(substr($content, 0, 50));
|
|
$addHellip = true;
|
|
}
|
|
|
|
$content = explode(PHP_EOL, $content);
|
|
$result = $content[0];
|
|
|
|
if (\count($content) > 1 || $addHellip) {
|
|
$result .= ' …';
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* Transforms the timesheet description content into HTML.
|
|
*
|
|
* @param string|null $content
|
|
* @return string
|
|
*/
|
|
public function timesheetContent(?string $content): string
|
|
{
|
|
if (empty($content)) {
|
|
return '';
|
|
}
|
|
|
|
if ($this->isMarkdownEnabled()) {
|
|
return $this->markdown->toHtml($content);
|
|
}
|
|
|
|
return nl2br($content);
|
|
}
|
|
|
|
/**
|
|
* Transforms the given Markdown content into HTML
|
|
*
|
|
* @param string $content
|
|
* @return string
|
|
*/
|
|
public function markdownToHtml(string $content): string
|
|
{
|
|
return $this->markdown->withFullMarkdownSupport($content);
|
|
}
|
|
}
|