]> git.mxchange.org Git - friendica.git/blob - src/Module/Help.php
Remove uses of profile.marital
[friendica.git] / src / Module / Help.php
1 <?php
2
3 namespace Friendica\Module;
4
5 use Friendica\BaseModule;
6 use Friendica\Content\Nav;
7 use Friendica\Content\Text\Markdown;
8 use Friendica\DI;
9 use Friendica\Network\HTTPException;
10 use Friendica\Util\Strings;
11
12 /**
13  * Shows the friendica help based on the /doc/ directory
14  */
15 class Help extends BaseModule
16 {
17         public static function content(array $parameters = [])
18         {
19                 Nav::setSelected('help');
20
21                 $text = '';
22                 $filename = '';
23
24                 $a = DI::app();
25                 $config = DI::config();
26                 $lang = $config->get('system', 'language');
27
28                 // @TODO: Replace with parameter from router
29                 if ($a->argc > 1) {
30                         $path = '';
31                         // looping through the argv keys bigger than 0 to build
32                         // a path relative to /help
33                         for ($x = 1; $x < $a->argc; $x ++) {
34                                 if (strlen($path)) {
35                                         $path .= '/';
36                                 }
37
38                                 $path .= DI::args()->get($x);
39                         }
40                         $title = basename($path);
41                         $filename = $path;
42                         $text = self::loadDocFile('doc/' . $path . '.md', $lang);
43                         DI::page()['title'] = DI::l10n()->t('Help:') . ' ' . str_replace('-', ' ', Strings::escapeTags($title));
44                 }
45
46                 $home = self::loadDocFile('doc/Home.md', $lang);
47                 if (!$text) {
48                         $text = $home;
49                         $filename = "Home";
50                         DI::page()['title'] = DI::l10n()->t('Help');
51                 } else {
52                         DI::page()['aside'] = Markdown::convert($home, false);
53                 }
54
55                 if (!strlen($text)) {
56                         throw new HTTPException\NotFoundException();
57                 }
58
59                 $html = Markdown::convert($text, false);
60
61                 if ($filename !== "Home") {
62                         // create TOC but not for home
63                         $lines = explode("\n", $html);
64                         $toc = "<h2>TOC</h2><ul id='toc'>";
65                         $lastLevel = 1;
66                         $idNum = [0, 0, 0, 0, 0, 0, 0];
67                         foreach ($lines as &$line) {
68                                 $matches = [];
69                                 if (preg_match('#<h([1-6])>([^<]+?)</h\1>#i', $line, $matches)) {
70                                         $level = $matches[1];
71                                         $anchor = urlencode($matches[2]);
72                                         if ($level < $lastLevel) {
73                                                 for ($k = $level; $k < $lastLevel; $k++) {
74                                                         $toc .= "</ul></li>";
75                                                 }
76
77                                                 for ($k = $level + 1; $k < count($idNum); $k++) {
78                                                         $idNum[$k] = 0;
79                                                 }
80                                         }
81
82                                         if ($level > $lastLevel) {
83                                                 $toc .= "<li><ul>";
84                                         }
85
86                                         $idNum[$level] ++;
87
88                                         $href = DI::baseUrl()->get() . "/help/{$filename}#{$anchor}";
89                                         $toc .= "<li><a href=\"{$href}\">" . strip_tags($line) . "</a></li>";
90                                         $id = implode("_", array_slice($idNum, 1, $level));
91                                         $line = "<a name=\"{$id}\"></a>" . $line;
92                                         $line = "<a name=\"{$anchor}\"></a>" . $line;
93
94                                         $lastLevel = $level;
95                                 }
96                         }
97
98                         for ($k = 0; $k < $lastLevel; $k++) {
99                                 $toc .= "</ul>";
100                         }
101
102                         $html = implode("\n", $lines);
103
104                         DI::page()['aside'] = '<div class="help-aside-wrapper widget"><div id="toc-wrapper">' . $toc . '</div>' . DI::page()['aside'] . '</div>';
105                 }
106
107                 return $html;
108         }
109
110         private static function loadDocFile($fileName, $lang = 'en')
111         {
112                 $baseName = basename($fileName);
113                 $dirName = dirname($fileName);
114                 if (file_exists("$dirName/$lang/$baseName")) {
115                         return file_get_contents("$dirName/$lang/$baseName");
116                 }
117
118                 if (file_exists($fileName)) {
119                         return file_get_contents($fileName);
120                 }
121
122                 return '';
123         }
124 }