View source
<?php
namespace Drupal\advanced_help\Controller;
use Drupal\Component\Plugin\PluginManagerInterface;
use Drupal\Component\Utility\Xss;
use Drupal\Core\Controller\ControllerBase;
use Drupal\Core\EventSubscriber\MainContentViewSubscriber;
use Drupal\Core\Url;
use Drupal\Core\Link;
use Michelf\MarkdownExtra;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
class AdvancedHelpController extends ControllerBase {
private $advanced_help;
public function __construct(PluginManagerInterface $advanced_help) {
$this->advanced_help = $advanced_help;
}
public static function create(ContainerInterface $container) {
return new static($container
->get('plugin.manager.advanced_help'));
}
public function main() {
$topics = $this->advanced_help
->getTopics();
$settings = $this->advanced_help
->getSettings();
$modules = $this->advanced_help
->getModuleList();
asort($modules);
$items = [];
foreach ($modules as $module => $module_name) {
if (!empty($topics[$module]) && empty($settings[$module]['hide'])) {
if (isset($settings[$module]['index name'])) {
$name = $settings[$module]['index name'];
}
elseif (isset($settings[$module]['name'])) {
$name = $settings[$module]['name'];
}
else {
$name = $this
->t($module_name);
}
$items[] = Link::fromTextAndUrl($name, Url::fromRoute('advanced_help.module_index', [
'module' => $module,
]));
}
}
return [
'help_modules' => [
'#theme' => 'item_list',
'#items' => $items,
'#title' => $this
->t('Module help index'),
],
];
}
private function getTopicHierarchy($topics) {
foreach ($topics as $module => $module_topics) {
foreach ($module_topics as $topic => $info) {
$parent_module = $module;
if (!$topic) {
continue;
}
if (empty($info['parent'])) {
$parent = '';
}
elseif (strpos($info['parent'], '%')) {
list($parent_module, $parent) = explode('%', $info['parent']);
if (empty($topics[$parent_module][$parent])) {
$parent = '';
}
}
else {
$parent = $info['parent'];
if (empty($module_topics[$parent])) {
$parent = '';
}
}
if (!isset($topics[$parent_module][$parent]['children'])) {
$topics[$parent_module][$parent]['children'] = [];
}
$topics[$parent_module][$parent]['children'][] = [
$module,
$topic,
];
$topics[$module][$topic]['_parent'] = [
$parent_module,
$parent,
];
}
}
return $topics;
}
private function helpUasort($id_a, $id_b) {
$topics = $this->advanced_help
->getTopics();
list($module_a, $topic_a) = $id_a;
$a = $topics[$module_a][$topic_a];
list($module_b, $topic_b) = $id_b;
$b = $topics[$module_b][$topic_b];
$a_weight = isset($a['weight']) ? $a['weight'] : 0;
$b_weight = isset($b['weight']) ? $b['weight'] : 0;
if ($a_weight != $b_weight) {
return $a_weight < $b_weight ? -1 : 1;
}
if ($a['title'] != $b['title']) {
return $a['title'] < $b['title'] ? -1 : 1;
}
return 0;
}
private function getTree($topics, $topic_ids, $max_depth = -1, $depth = 0) {
uasort($topic_ids, [
$this,
'helpUasort',
]);
$items = [];
foreach ($topic_ids as $info) {
list($module, $topic) = $info;
$item = Link::fromTextAndUrl($topics[$module][$topic]['title'], Url::fromRoute('advanced_help.help', [
'module' => $module,
'topic' => $topic,
]));
if (!empty($topics[$module][$topic]['children']) && ($max_depth == -1 || $depth < $max_depth)) {
$link = [
'#theme' => 'item_list',
'#items' => advanced_help_get_tree($topics, $topics[$module][$topic]['children'], $max_depth, $depth + 1),
];
$item .= \Drupal::service('renderer')
->render($link, FALSE);
}
$items[] = $item;
}
return $items;
}
public function moduleIndex($module) {
$topics = $this->advanced_help
->getTopics();
if (empty($topics[$module])) {
throw new NotFoundHttpException();
}
$topics = $this
->getTopicHierarchy($topics);
$items = $this
->getTree($topics, $topics[$module]['']['children']);
return [
'index' => [
'#theme' => 'item_list',
'#items' => $items,
],
];
}
public function moduleIndexTitle($module) {
return $this->advanced_help
->getModuleName($module) . ' help index';
}
public function topicPage(Request $request, $module, $topic) {
$is_modal = $request->query
->get(MainContentViewSubscriber::WRAPPER_FORMAT) === 'drupal_modal';
$info = $this->advanced_help
->getTopic($module, $topic);
if (!$info) {
throw new NotFoundHttpException();
}
$parent = $info;
$pmodule = $module;
$checked = [];
while (!empty($parent['parent'])) {
if (strpos($parent['parent'], '%')) {
list($pmodule, $ptopic) = explode('%', $parent['parent']);
}
else {
$ptopic = $parent['parent'];
}
if (!empty($checked[$pmodule][$ptopic])) {
break;
}
$checked[$pmodule][$ptopic] = TRUE;
$parent = $this->advanced_help
->getTopic($pmodule, $ptopic);
if (!$parent) {
break;
}
}
$build = $this
->viewTopic($module, $topic, $is_modal);
if (empty($build['#markup'])) {
$build['#markup'] = $this
->t('Missing help topic.');
}
$build['#attached']['library'][] = 'advanced_help/help';
return $build;
}
public function viewTopic($module, $topic, $is_modal = FALSE) {
$file_info = $this->advanced_help
->getTopicFileInfo($module, $topic);
if ($file_info) {
$info = $this->advanced_help
->getTopic($module, $topic);
$file = "{$file_info['path']}/{$file_info['file']}";
$build = [
'#type' => 'markup',
];
if (!empty($info['css'])) {
$build['#attached']['library'][] = $info['module'] . '/' . $info['css'];
}
$build['#markup'] = file_get_contents($file);
if (isset($info['readme file']) && $info['readme file']) {
$ext = pathinfo($file, PATHINFO_EXTENSION);
if ('md' == $ext) {
$build['#markup'] = '<div class="advanced-help-topic">' . Xss::filterAdmin(MarkdownExtra::defaultTransform($build['#markup'])) . '</div>';
}
return $build;
}
preg_match('/&topic:([^"]+)&/', $build['#markup'], $matches);
if (isset($matches[1]) && preg_match('/[\\w\\-]\\/[\\w\\-]+/', $matches[1])) {
list($umodule, $utopic) = explode('/', $matches[1]);
$path = new Url('advanced_help.help', [
'module' => $umodule,
'topic' => $utopic,
]);
$build['#markup'] = preg_replace('/&topic:([^"]+)&/', $path
->toString(), $build['#markup']);
}
global $base_path;
$build['#markup'] = str_replace('&path&', $base_path . $info['path'] . '/', $build['#markup']);
$build['#markup'] = str_replace('&trans_path&', $base_path . $file_info['path'] . '/', $build['#markup']);
$build['#markup'] = preg_replace('/&base_url&([^"]+)"/', $base_path . '$1' . '"', $build['#markup']);
if (!empty($info['line break'])) {
$build['#markup'] = preg_replace('/^<!--[^\\n]*-->\\n/', '', $build['#markup']);
$build['#markup'] = _filter_autop($build['#markup']);
}
if (!empty($info['navigation']) && !$is_modal) {
$topics = $this->advanced_help
->getTopics();
$topics = $this
->getTopicHierarchy($topics);
if (!empty($topics[$module][$topic]['children'])) {
$items = $this
->getTree($topics, $topics[$module][$topic]['children']);
$links = [
'#theme' => 'item_list',
'#items' => $items,
];
$build['#markup'] .= \Drupal::service('renderer')
->render($links, FALSE);
}
list($parent_module, $parent_topic) = $topics[$module][$topic]['_parent'];
if ($parent_topic) {
$parent = $topics[$module][$topic]['_parent'];
$up = new Url('advanced_help.help', [
'module' => $parent[0],
'topic' => $parent[1],
]);
}
else {
$up = new Url('advanced_help.module_index', [
'module' => $module,
]);
}
$siblings = $topics[$parent_module][$parent_topic]['children'];
uasort($siblings, [
$this,
'helpUasort',
]);
$prev = $next = NULL;
$found = FALSE;
foreach ($siblings as $sibling) {
list($sibling_module, $sibling_topic) = $sibling;
if ($found) {
$next = $sibling;
break;
}
if ($sibling_module == $module && $sibling_topic == $topic) {
$found = TRUE;
continue;
}
$prev = $sibling;
}
if ($prev || $up || $next) {
$navigation = '<div class="help-navigation clear-block">';
if ($prev) {
$navigation .= Link::fromTextAndUrl('«« ' . $topics[$prev[0]][$prev[1]]['title'], Url::fromRoute('advanced_help.help', [
'module' => $prev[0],
'topic' => $prev[1],
], [
'attributes' => [
'class' => 'help-left',
],
]))
->toString();
}
if ($up) {
$navigation .= Link::fromTextAndUrl($this
->t('Up'), $up
->setOption('attributes', [
'class' => $prev ? 'help-up' : 'help-up-noleft',
]))
->toString();
}
if ($next) {
$navigation .= Link::fromTextAndUrl($topics[$next[0]][$next[1]]['title'] . ' »»', Url::fromRoute('advanced_help.help', [
'module' => $next[0],
'topic' => $next[1],
], [
'attributes' => [
'class' => 'help-right',
],
]))
->toString();
}
$navigation .= '</div>';
$build['#markup'] .= $navigation;
}
}
$build['#markup'] = '<div class="advanced-help-topic">' . $build['#markup'] . '</div>';
return $build;
}
}
public function topicPageTitle($module, $topic) {
$info = $this->advanced_help
->getTopic($module, $topic);
if (!$info) {
throw new NotFoundHttpException();
}
return $info['title'];
}
}