]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - application/front/controller/visitor/ShaarliVisitorController.php
Merge pull request #1540 from ArthurHoaro/fix/metadata-regexes
[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));
0498b209
A
61
62 $this->executeDefaultHooks($template);
63
7e3dc0ba
A
64 $this->assignView('plugin_errors', $this->container->pluginManager->getErrors());
65
9fbc4229 66 return $this->container->pageBuilder->render($template, $this->container->basePath);
0498b209
A
67 }
68
69 /**
70 * Call plugin hooks for header, footer and includes, specifying which page will be rendered.
71 * Then assign generated data to RainTPL.
72 */
73 protected function executeDefaultHooks(string $template): void
74 {
75 $common_hooks = [
76 'includes',
77 'header',
78 'footer',
79 ];
80
80b708a8
A
81 $parameters = $this->buildPluginParameters($template);
82
0498b209 83 foreach ($common_hooks as $name) {
c22fa57a 84 $pluginData = [];
27ceea2a 85 $this->container->pluginManager->executeHooks(
0498b209 86 'render_' . $name,
c22fa57a 87 $pluginData,
80b708a8 88 $parameters
0498b209 89 );
c22fa57a 90 $this->assignView('plugins_' . $name, $pluginData);
0498b209
A
91 }
92 }
af290059 93
9fbc4229
A
94 protected function executePageHooks(string $hook, array &$data, string $template = null): void
95 {
9fbc4229
A
96 $this->container->pluginManager->executeHooks(
97 $hook,
98 $data,
80b708a8 99 $this->buildPluginParameters($template)
9fbc4229
A
100 );
101 }
102
80b708a8
A
103 protected function buildPluginParameters(?string $template): array
104 {
105 return [
106 'target' => $template,
107 'loggedin' => $this->container->loginManager->isLoggedIn(),
108 'basePath' => $this->container->basePath,
109 'bookmarkService' => $this->container->bookmarkService
110 ];
111 }
112
9c75f877
A
113 /**
114 * Simple helper which prepend the base path to redirect path.
115 *
116 * @param Response $response
117 * @param string $path Absolute path, e.g.: `/`, or `/admin/shaare/123` regardless of install directory
118 *
119 * @return Response updated
120 */
121 protected function redirect(Response $response, string $path): Response
122 {
123 return $response->withRedirect($this->container->basePath . $path);
124 }
125
af290059
A
126 /**
127 * Generates a redirection to the previous page, based on the HTTP_REFERER.
128 * It fails back to the home page.
129 *
130 * @param array $loopTerms Terms to remove from path and query string to prevent direction loop.
131 * @param array $clearParams List of parameter to remove from the query string of the referrer.
132 */
2899ebb5
A
133 protected function redirectFromReferer(
134 Request $request,
135 Response $response,
136 array $loopTerms = [],
c22fa57a
A
137 array $clearParams = [],
138 string $anchor = null
2899ebb5 139 ): Response {
818b3193 140 $defaultPath = $this->container->basePath . '/';
af290059
A
141 $referer = $this->container->environment['HTTP_REFERER'] ?? null;
142
143 if (null !== $referer) {
144 $currentUrl = parse_url($referer);
abe033be
A
145 // If the referer is not related to Shaarli instance, redirect to default
146 if (isset($currentUrl['host'])
147 && strpos(index_url($this->container->environment), $currentUrl['host']) === false
148 ) {
149 return $response->withRedirect($defaultPath);
150 }
151
af290059
A
152 parse_str($currentUrl['query'] ?? '', $params);
153 $path = $currentUrl['path'] ?? $defaultPath;
154 } else {
155 $params = [];
156 $path = $defaultPath;
157 }
158
159 // Prevent redirection loop
160 if (isset($currentUrl)) {
161 foreach ($clearParams as $value) {
162 unset($params[$value]);
163 }
164
165 $checkQuery = implode('', array_keys($params));
166 foreach ($loopTerms as $value) {
167 if (strpos($path . $checkQuery, $value) !== false) {
168 $params = [];
169 $path = $defaultPath;
170 break;
171 }
172 }
173 }
174
175 $queryString = count($params) > 0 ? '?'. http_build_query($params) : '';
c22fa57a 176 $anchor = $anchor ? '#' . $anchor : '';
af290059 177
c22fa57a 178 return $response->withRedirect($path . $queryString . $anchor);
af290059 179 }
6c50a6cc 180}