2019-05-04 19:05:02 +00:00
|
|
|
<?php
|
2020-02-09 14:45:36 +00:00
|
|
|
/**
|
2023-01-01 14:36:24 +00:00
|
|
|
* @copyright Copyright (C) 2010-2023, the Friendica project
|
2020-02-09 14:45:36 +00:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2019-05-04 19:05:02 +00:00
|
|
|
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Content\Nav;
|
|
|
|
use Friendica\Content\Text\Markdown;
|
2019-12-15 21:34:11 +00:00
|
|
|
use Friendica\DI;
|
2019-05-04 19:05:02 +00:00
|
|
|
use Friendica\Network\HTTPException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shows the friendica help based on the /doc/ directory
|
|
|
|
*/
|
|
|
|
class Help extends BaseModule
|
|
|
|
{
|
2021-11-20 14:38:03 +00:00
|
|
|
protected function content(array $request = []): string
|
2019-05-04 19:05:02 +00:00
|
|
|
{
|
|
|
|
Nav::setSelected('help');
|
|
|
|
|
|
|
|
$text = '';
|
|
|
|
$filename = '';
|
|
|
|
|
2019-12-15 22:44:33 +00:00
|
|
|
$config = DI::config();
|
2021-11-16 06:36:20 +00:00
|
|
|
$lang = DI::session()->get('language', $config->get('system', 'language'));
|
2021-11-16 07:04:39 +00:00
|
|
|
|
2019-05-04 19:05:02 +00:00
|
|
|
// @TODO: Replace with parameter from router
|
2021-07-25 15:23:37 +00:00
|
|
|
if (DI::args()->getArgc() > 1) {
|
2019-05-04 19:05:02 +00:00
|
|
|
$path = '';
|
|
|
|
// looping through the argv keys bigger than 0 to build
|
|
|
|
// a path relative to /help
|
2021-07-25 15:23:37 +00:00
|
|
|
for ($x = 1; $x < DI::args()->getArgc(); $x ++) {
|
2019-05-04 19:05:02 +00:00
|
|
|
if (strlen($path)) {
|
|
|
|
$path .= '/';
|
|
|
|
}
|
|
|
|
|
2019-12-15 23:31:29 +00:00
|
|
|
$path .= DI::args()->get($x);
|
2019-05-04 19:05:02 +00:00
|
|
|
}
|
|
|
|
$title = basename($path);
|
|
|
|
$filename = $path;
|
|
|
|
$text = self::loadDocFile('doc/' . $path . '.md', $lang);
|
2021-11-06 20:25:21 +00:00
|
|
|
DI::page()['title'] = DI::l10n()->t('Help:') . ' ' . str_replace('-', ' ', $title);
|
2019-05-04 19:05:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$home = self::loadDocFile('doc/Home.md', $lang);
|
|
|
|
if (!$text) {
|
|
|
|
$text = $home;
|
|
|
|
$filename = "Home";
|
2020-01-18 19:52:34 +00:00
|
|
|
DI::page()['title'] = DI::l10n()->t('Help');
|
2019-05-04 19:05:02 +00:00
|
|
|
} else {
|
2019-12-30 19:02:09 +00:00
|
|
|
DI::page()['aside'] = Markdown::convert($home, false);
|
2019-05-04 19:05:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!strlen($text)) {
|
|
|
|
throw new HTTPException\NotFoundException();
|
|
|
|
}
|
|
|
|
|
|
|
|
$html = Markdown::convert($text, false);
|
|
|
|
|
|
|
|
if ($filename !== "Home") {
|
|
|
|
// create TOC but not for home
|
|
|
|
$lines = explode("\n", $html);
|
|
|
|
$toc = "<h2>TOC</h2><ul id='toc'>";
|
|
|
|
$lastLevel = 1;
|
|
|
|
$idNum = [0, 0, 0, 0, 0, 0, 0];
|
|
|
|
foreach ($lines as &$line) {
|
2019-12-06 00:46:59 +00:00
|
|
|
$matches = [];
|
2020-01-23 14:13:31 +00:00
|
|
|
if (preg_match('#<h([1-6])>([^<]+?)</h\1>#i', $line, $matches)) {
|
|
|
|
$level = $matches[1];
|
|
|
|
$anchor = urlencode($matches[2]);
|
|
|
|
if ($level < $lastLevel) {
|
|
|
|
for ($k = $level; $k < $lastLevel; $k++) {
|
|
|
|
$toc .= "</ul></li>";
|
2019-05-04 19:05:02 +00:00
|
|
|
}
|
|
|
|
|
2020-01-23 14:13:31 +00:00
|
|
|
for ($k = $level + 1; $k < count($idNum); $k++) {
|
|
|
|
$idNum[$k] = 0;
|
2019-05-04 19:05:02 +00:00
|
|
|
}
|
2020-01-23 14:13:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($level > $lastLevel) {
|
|
|
|
$toc .= "<li><ul>";
|
|
|
|
}
|
2019-05-04 19:05:02 +00:00
|
|
|
|
2020-01-23 14:13:31 +00:00
|
|
|
$idNum[$level] ++;
|
2019-12-06 00:46:59 +00:00
|
|
|
|
2023-02-19 10:12:48 +00:00
|
|
|
$href = "help/{$filename}#{$anchor}";
|
2020-01-23 14:13:31 +00:00
|
|
|
$toc .= "<li><a href=\"{$href}\">" . strip_tags($line) . "</a></li>";
|
|
|
|
$id = implode("_", array_slice($idNum, 1, $level));
|
|
|
|
$line = "<a name=\"{$id}\"></a>" . $line;
|
|
|
|
$line = "<a name=\"{$anchor}\"></a>" . $line;
|
2019-12-06 00:46:59 +00:00
|
|
|
|
2020-01-23 14:13:31 +00:00
|
|
|
$lastLevel = $level;
|
2019-05-04 19:05:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for ($k = 0; $k < $lastLevel; $k++) {
|
|
|
|
$toc .= "</ul>";
|
|
|
|
}
|
|
|
|
|
|
|
|
$html = implode("\n", $lines);
|
|
|
|
|
2019-12-30 19:02:09 +00:00
|
|
|
DI::page()['aside'] = '<div class="help-aside-wrapper widget"><div id="toc-wrapper">' . $toc . '</div>' . DI::page()['aside'] . '</div>';
|
2019-05-04 19:05:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return $html;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static function loadDocFile($fileName, $lang = 'en')
|
|
|
|
{
|
|
|
|
$baseName = basename($fileName);
|
|
|
|
$dirName = dirname($fileName);
|
|
|
|
if (file_exists("$dirName/$lang/$baseName")) {
|
|
|
|
return file_get_contents("$dirName/$lang/$baseName");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (file_exists($fileName)) {
|
|
|
|
return file_get_contents($fileName);
|
|
|
|
}
|
|
|
|
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
}
|