]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - application/front/controller/visitor/ShaarliVisitorController.php
Process manage tags page through Slim controller
[github/shaarli/Shaarli.git] / application / front / controller / visitor / ShaarliVisitorController.php
CommitLineData
6c50a6cc
A
1<?php
2
3declare(strict_types=1);
4
2899ebb5 5namespace Shaarli\Front\Controller\Visitor;
6c50a6cc 6
0498b209 7use Shaarli\Bookmark\BookmarkFilter;
6c50a6cc 8use Shaarli\Container\ShaarliContainer;
2899ebb5 9use Slim\Http\Request;
af290059 10use Slim\Http\Response;
6c50a6cc 11
ef00f9d2
A
12/**
13 * Class ShaarliVisitorController
14 *
15 * All controllers accessible by visitors (non logged in users) should extend this abstract class.
16 * Contains a few helper function for template rendering, plugins, etc.
17 *
18 * @package Shaarli\Front\Controller\Visitor
19 */
2899ebb5 20abstract class ShaarliVisitorController
6c50a6cc
A
21{
22 /** @var ShaarliContainer */
27ceea2a 23 protected $container;
6c50a6cc 24
27ceea2a
A
25 /** @param ShaarliContainer $container Slim container (extended for attribute completion). */
26 public function __construct(ShaarliContainer $container)
6c50a6cc 27 {
27ceea2a 28 $this->container = $container;
6c50a6cc
A
29 }
30
31 /**
32 * Assign variables to RainTPL template through the PageBuilder.
33 *
34 * @param mixed $value Value to assign to the template
35 */
36 protected function assignView(string $name, $value): self
37 {
27ceea2a 38 $this->container->pageBuilder->assign($name, $value);
6c50a6cc
A
39
40 return $this;
41 }
0498b209 42
7b2ba6ef
A
43 /**
44 * Assign variables to RainTPL template through the PageBuilder.
45 *
46 * @param mixed $data Values to assign to the template and their keys
47 */
48 protected function assignAllView(array $data): self
49 {
50 foreach ($data as $key => $value) {
51 $this->assignView($key, $value);
52 }
53
54 return $this;
55 }
56
0498b209
A
57 protected function render(string $template): string
58 {
27ceea2a
A
59 $this->assignView('linkcount', $this->container->bookmarkService->count(BookmarkFilter::$ALL));
60 $this->assignView('privateLinkcount', $this->container->bookmarkService->count(BookmarkFilter::$PRIVATE));
61 $this->assignView('plugin_errors', $this->container->pluginManager->getErrors());
0498b209
A
62
63 $this->executeDefaultHooks($template);
64
27ceea2a 65 return $this->container->pageBuilder->render($template);
0498b209
A
66 }
67
68 /**
69 * Call plugin hooks for header, footer and includes, specifying which page will be rendered.
70 * Then assign generated data to RainTPL.
71 */
72 protected function executeDefaultHooks(string $template): void
73 {
74 $common_hooks = [
75 'includes',
76 'header',
77 'footer',
78 ];
79
80 foreach ($common_hooks as $name) {
81 $plugin_data = [];
27ceea2a 82 $this->container->pluginManager->executeHooks(
0498b209
A
83 'render_' . $name,
84 $plugin_data,
85 [
86 'target' => $template,
27ceea2a 87 'loggedin' => $this->container->loginManager->isLoggedIn()
0498b209
A
88 ]
89 );
90 $this->assignView('plugins_' . $name, $plugin_data);
91 }
92 }
af290059
A
93
94 /**
95 * Generates a redirection to the previous page, based on the HTTP_REFERER.
96 * It fails back to the home page.
97 *
98 * @param array $loopTerms Terms to remove from path and query string to prevent direction loop.
99 * @param array $clearParams List of parameter to remove from the query string of the referrer.
100 */
2899ebb5
A
101 protected function redirectFromReferer(
102 Request $request,
103 Response $response,
104 array $loopTerms = [],
105 array $clearParams = []
106 ): Response {
107 $defaultPath = $request->getUri()->getBasePath();
af290059
A
108 $referer = $this->container->environment['HTTP_REFERER'] ?? null;
109
110 if (null !== $referer) {
111 $currentUrl = parse_url($referer);
112 parse_str($currentUrl['query'] ?? '', $params);
113 $path = $currentUrl['path'] ?? $defaultPath;
114 } else {
115 $params = [];
116 $path = $defaultPath;
117 }
118
119 // Prevent redirection loop
120 if (isset($currentUrl)) {
121 foreach ($clearParams as $value) {
122 unset($params[$value]);
123 }
124
125 $checkQuery = implode('', array_keys($params));
126 foreach ($loopTerms as $value) {
127 if (strpos($path . $checkQuery, $value) !== false) {
128 $params = [];
129 $path = $defaultPath;
130 break;
131 }
132 }
133 }
134
135 $queryString = count($params) > 0 ? '?'. http_build_query($params) : '';
136
137 return $response->withRedirect($path . $queryString);
138 }
6c50a6cc 139}