mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-01 21:19:11 -06:00
108 lines
2.5 KiB
PHP
108 lines
2.5 KiB
PHP
<?php
|
|
declare(strict_types = 1);
|
|
namespace FireflyIII\Helpers\Help;
|
|
|
|
use Cache;
|
|
use League\CommonMark\CommonMarkConverter;
|
|
use Log;
|
|
use Requests;
|
|
use Route;
|
|
|
|
/**
|
|
* Class Help
|
|
*
|
|
* @package FireflyIII\Helpers\Help
|
|
*/
|
|
class Help implements HelpInterface
|
|
{
|
|
|
|
/**
|
|
* @codeCoverageIgnore
|
|
*
|
|
* @param string $key
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getFromCache(string $key): string
|
|
{
|
|
return Cache::get($key);
|
|
}
|
|
|
|
/**
|
|
* @param string $language
|
|
* @param string $route
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getFromGithub(string $language, string $route): array
|
|
{
|
|
|
|
$uri = sprintf('https://raw.githubusercontent.com/JC5/firefly-iii-help/master/%s/%s.md', $language, $route);
|
|
$routeIndex = str_replace('.', '-', $route);
|
|
$title = trans('help.' . $routeIndex);
|
|
$content = [
|
|
'text' => '<p>' . strval(trans('firefly.route_has_no_help')) . '</p>',
|
|
'title' => $title,
|
|
];
|
|
|
|
Log::debug('Going to get from Github: ' . $uri);
|
|
|
|
$result = Requests::get($uri);
|
|
|
|
Log::debug('Status code was ' . $result->status_code . '.');
|
|
|
|
if ($result->status_code === 200) {
|
|
$content['text'] = $result->body;
|
|
}
|
|
|
|
|
|
if (strlen(trim($content['text'])) == 0) {
|
|
Log::debug('No actual help text for this route (even though a page was found).');
|
|
$content['text'] = '<p>' . strval(trans('firefly.route_has_no_help')) . '</p>';
|
|
}
|
|
$converter = new CommonMarkConverter();
|
|
$content['text'] = $converter->convertToHtml($content['text']);
|
|
|
|
return $content;
|
|
|
|
}
|
|
|
|
/**
|
|
* @codeCoverageIgnore
|
|
*
|
|
* @param string $route
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function hasRoute(string $route):bool
|
|
{
|
|
return Route::has($route);
|
|
}
|
|
|
|
/**
|
|
* @codeCoverageIgnore
|
|
*
|
|
* @param string $route
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function inCache(string $route):bool
|
|
{
|
|
return Cache::has('help.' . $route . '.title') && Cache::has('help.' . $route . '.text');
|
|
}
|
|
|
|
/**
|
|
* @codeCoverageIgnore
|
|
*
|
|
* @param string $route
|
|
* @param array $content
|
|
*
|
|
* @internal param $title
|
|
*/
|
|
public function putInCache(string $route, array $content)
|
|
{
|
|
Cache::put('help.' . $route . '.text', $content['text'], 10080); // a week.
|
|
Cache::put('help.' . $route . '.title', $content['title'], 10080);
|
|
}
|
|
}
|