diff options
author | ArthurHoaro <arthur@hoa.ro> | 2020-06-06 14:01:03 +0200 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2020-07-23 21:19:21 +0200 |
commit | c22fa57a5505fe95fd01860e3d3dfbb089f869cd (patch) | |
tree | a72b57e49b7b2b995ace278bad00fc47d5b6d61d /application/front/controller/admin/PostBookmarkController.php | |
parent | 8eac2e54882d8adae8cbb45386dca1b465242632 (diff) | |
download | Shaarli-c22fa57a5505fe95fd01860e3d3dfbb089f869cd.tar.gz Shaarli-c22fa57a5505fe95fd01860e3d3dfbb089f869cd.tar.zst Shaarli-c22fa57a5505fe95fd01860e3d3dfbb089f869cd.zip |
Handle shaare creation/edition/deletion through Slim controllers
Diffstat (limited to 'application/front/controller/admin/PostBookmarkController.php')
-rw-r--r-- | application/front/controller/admin/PostBookmarkController.php | 258 |
1 files changed, 258 insertions, 0 deletions
diff --git a/application/front/controller/admin/PostBookmarkController.php b/application/front/controller/admin/PostBookmarkController.php new file mode 100644 index 00000000..dbe570e2 --- /dev/null +++ b/application/front/controller/admin/PostBookmarkController.php | |||
@@ -0,0 +1,258 @@ | |||
1 | <?php | ||
2 | |||
3 | declare(strict_types=1); | ||
4 | |||
5 | namespace Shaarli\Front\Controller\Admin; | ||
6 | |||
7 | use Shaarli\Bookmark\Bookmark; | ||
8 | use Shaarli\Bookmark\Exception\BookmarkNotFoundException; | ||
9 | use Shaarli\Formatter\BookmarkMarkdownFormatter; | ||
10 | use Shaarli\Thumbnailer; | ||
11 | use Slim\Http\Request; | ||
12 | use Slim\Http\Response; | ||
13 | |||
14 | /** | ||
15 | * Class PostBookmarkController | ||
16 | * | ||
17 | * Slim controller used to handle Shaarli create or edit bookmarks. | ||
18 | */ | ||
19 | class PostBookmarkController extends ShaarliAdminController | ||
20 | { | ||
21 | /** | ||
22 | * GET /add-shaare - Displays the form used to create a new bookmark from an URL | ||
23 | */ | ||
24 | public function addShaare(Request $request, Response $response): Response | ||
25 | { | ||
26 | $this->assignView( | ||
27 | 'pagetitle', | ||
28 | t('Shaare a new link') .' - '. $this->container->conf->get('general.title', 'Shaarli') | ||
29 | ); | ||
30 | |||
31 | return $response->write($this->render('addlink')); | ||
32 | } | ||
33 | |||
34 | /** | ||
35 | * GET /shaare - Displays the bookmark form for creation. | ||
36 | * Note that if the URL is found in existing bookmarks, then it will be in edit mode. | ||
37 | */ | ||
38 | public function displayCreateForm(Request $request, Response $response): Response | ||
39 | { | ||
40 | $url = cleanup_url($request->getParam('post')); | ||
41 | |||
42 | $linkIsNew = false; | ||
43 | // Check if URL is not already in database (in this case, we will edit the existing link) | ||
44 | $bookmark = $this->container->bookmarkService->findByUrl($url); | ||
45 | if (null === $bookmark) { | ||
46 | $linkIsNew = true; | ||
47 | // Get shaare data if it was provided in URL (e.g.: by the bookmarklet). | ||
48 | $title = $request->getParam('title'); | ||
49 | $description = $request->getParam('description'); | ||
50 | $tags = $request->getParam('tags'); | ||
51 | $private = filter_var($request->getParam('private'), FILTER_VALIDATE_BOOLEAN); | ||
52 | |||
53 | // If this is an HTTP(S) link, we try go get the page to extract | ||
54 | // the title (otherwise we will to straight to the edit form.) | ||
55 | if (empty($title) && strpos(get_url_scheme($url) ?: '', 'http') !== false) { | ||
56 | $retrieveDescription = $this->container->conf->get('general.retrieve_description'); | ||
57 | // Short timeout to keep the application responsive | ||
58 | // The callback will fill $charset and $title with data from the downloaded page. | ||
59 | $this->container->httpAccess->getHttpResponse( | ||
60 | $url, | ||
61 | $this->container->conf->get('general.download_timeout', 30), | ||
62 | $this->container->conf->get('general.download_max_size', 4194304), | ||
63 | $this->container->httpAccess->getCurlDownloadCallback( | ||
64 | $charset, | ||
65 | $title, | ||
66 | $description, | ||
67 | $tags, | ||
68 | $retrieveDescription | ||
69 | ) | ||
70 | ); | ||
71 | if (! empty($title) && strtolower($charset) !== 'utf-8') { | ||
72 | $title = mb_convert_encoding($title, 'utf-8', $charset); | ||
73 | } | ||
74 | } | ||
75 | |||
76 | if (empty($url) && empty($title)) { | ||
77 | $title = $this->container->conf->get('general.default_note_title', t('Note: ')); | ||
78 | } | ||
79 | |||
80 | $link = escape([ | ||
81 | 'title' => $title, | ||
82 | 'url' => $url ?? '', | ||
83 | 'description' => $description ?? '', | ||
84 | 'tags' => $tags ?? '', | ||
85 | 'private' => $private, | ||
86 | ]); | ||
87 | } else { | ||
88 | $formatter = $this->container->formatterFactory->getFormatter('raw'); | ||
89 | $link = $formatter->format($bookmark); | ||
90 | } | ||
91 | |||
92 | return $this->displayForm($link, $linkIsNew, $request, $response); | ||
93 | } | ||
94 | |||
95 | /** | ||
96 | * GET /shaare-{id} - Displays the bookmark form in edition mode. | ||
97 | */ | ||
98 | public function displayEditForm(Request $request, Response $response, array $args): Response | ||
99 | { | ||
100 | $id = $args['id']; | ||
101 | try { | ||
102 | if (false === ctype_digit($id)) { | ||
103 | throw new BookmarkNotFoundException(); | ||
104 | } | ||
105 | $bookmark = $this->container->bookmarkService->get($id); // Read database | ||
106 | } catch (BookmarkNotFoundException $e) { | ||
107 | $this->saveErrorMessage(t('Bookmark not found')); | ||
108 | |||
109 | return $response->withRedirect('./'); | ||
110 | } | ||
111 | |||
112 | $formatter = $this->container->formatterFactory->getFormatter('raw'); | ||
113 | $link = $formatter->format($bookmark); | ||
114 | |||
115 | return $this->displayForm($link, false, $request, $response); | ||
116 | } | ||
117 | |||
118 | /** | ||
119 | * POST /shaare | ||
120 | */ | ||
121 | public function save(Request $request, Response $response): Response | ||
122 | { | ||
123 | $this->checkToken($request); | ||
124 | |||
125 | // lf_id should only be present if the link exists. | ||
126 | $id = $request->getParam('lf_id') ? intval(escape($request->getParam('lf_id'))) : null; | ||
127 | if (null !== $id && true === $this->container->bookmarkService->exists($id)) { | ||
128 | // Edit | ||
129 | $bookmark = $this->container->bookmarkService->get($id); | ||
130 | } else { | ||
131 | // New link | ||
132 | $bookmark = new Bookmark(); | ||
133 | } | ||
134 | |||
135 | $bookmark->setTitle($request->getParam('lf_title')); | ||
136 | $bookmark->setDescription($request->getParam('lf_description')); | ||
137 | $bookmark->setUrl($request->getParam('lf_url'), $this->container->conf->get('security.allowed_protocols', [])); | ||
138 | $bookmark->setPrivate(filter_var($request->getParam('lf_private'), FILTER_VALIDATE_BOOLEAN)); | ||
139 | $bookmark->setTagsString($request->getParam('lf_tags')); | ||
140 | |||
141 | if ($this->container->conf->get('thumbnails.mode', Thumbnailer::MODE_NONE) !== Thumbnailer::MODE_NONE | ||
142 | && false === $bookmark->isNote() | ||
143 | ) { | ||
144 | $bookmark->setThumbnail($this->container->thumbnailer->get($bookmark->getUrl())); | ||
145 | } | ||
146 | $this->container->bookmarkService->addOrSet($bookmark, false); | ||
147 | |||
148 | // To preserve backward compatibility with 3rd parties, plugins still use arrays | ||
149 | $formatter = $this->container->formatterFactory->getFormatter('raw'); | ||
150 | $data = $formatter->format($bookmark); | ||
151 | $data = $this->executeHooks('save_link', $data); | ||
152 | |||
153 | $bookmark->fromArray($data); | ||
154 | $this->container->bookmarkService->set($bookmark); | ||
155 | |||
156 | // If we are called from the bookmarklet, we must close the popup: | ||
157 | if ($request->getParam('source') === 'bookmarklet') { | ||
158 | return $response->write('<script>self.close();</script>'); | ||
159 | } | ||
160 | |||
161 | if (!empty($request->getParam('returnurl'))) { | ||
162 | $this->container->environment['HTTP_REFERER'] = escape($request->getParam('returnurl')); | ||
163 | } | ||
164 | |||
165 | return $this->redirectFromReferer( | ||
166 | $request, | ||
167 | $response, | ||
168 | ['add-shaare', 'shaare'], ['addlink', 'post', 'edit_link'], | ||
169 | $bookmark->getShortUrl() | ||
170 | ); | ||
171 | } | ||
172 | |||
173 | public function deleteBookmark(Request $request, Response $response): Response | ||
174 | { | ||
175 | $this->checkToken($request); | ||
176 | |||
177 | $ids = escape(trim($request->getParam('lf_linkdate'))); | ||
178 | if (strpos($ids, ' ') !== false) { | ||
179 | // multiple, space-separated ids provided | ||
180 | $ids = array_values(array_filter(preg_split('/\s+/', $ids), 'strlen')); | ||
181 | } else { | ||
182 | $ids = [$ids]; | ||
183 | } | ||
184 | |||
185 | // assert at least one id is given | ||
186 | if (0 === count($ids)) { | ||
187 | $this->saveErrorMessage(t('Invalid bookmark ID provided.')); | ||
188 | |||
189 | return $this->redirectFromReferer($request, $response, [], ['delete-shaare']); | ||
190 | } | ||
191 | |||
192 | $formatter = $this->container->formatterFactory->getFormatter('raw'); | ||
193 | foreach ($ids as $id) { | ||
194 | $id = (int) $id; | ||
195 | // TODO: check if it exists | ||
196 | $bookmark = $this->container->bookmarkService->get($id); | ||
197 | $data = $formatter->format($bookmark); | ||
198 | $this->container->pluginManager->executeHooks('delete_link', $data); | ||
199 | $this->container->bookmarkService->remove($bookmark, false); | ||
200 | } | ||
201 | |||
202 | $this->container->bookmarkService->save(); | ||
203 | |||
204 | // If we are called from the bookmarklet, we must close the popup: | ||
205 | if ($request->getParam('source') === 'bookmarklet') { | ||
206 | return $response->write('<script>self.close();</script>'); | ||
207 | } | ||
208 | |||
209 | // Don't redirect to where we were previously because the datastore has changed. | ||
210 | return $response->withRedirect('./'); | ||
211 | } | ||
212 | |||
213 | protected function displayForm(array $link, bool $isNew, Request $request, Response $response): Response | ||
214 | { | ||
215 | $tags = $this->container->bookmarkService->bookmarksCountPerTag(); | ||
216 | if ($this->container->conf->get('formatter') === 'markdown') { | ||
217 | $tags[BookmarkMarkdownFormatter::NO_MD_TAG] = 1; | ||
218 | } | ||
219 | |||
220 | $data = [ | ||
221 | 'link' => $link, | ||
222 | 'link_is_new' => $isNew, | ||
223 | 'http_referer' => escape($this->container->environment['HTTP_REFERER'] ?? ''), | ||
224 | 'source' => $request->getParam('source') ?? '', | ||
225 | 'tags' => $tags, | ||
226 | 'default_private_links' => $this->container->conf->get('privacy.default_private_links', false), | ||
227 | ]; | ||
228 | |||
229 | $data = $this->executeHooks('render_editlink', $data); | ||
230 | |||
231 | foreach ($data as $key => $value) { | ||
232 | $this->assignView($key, $value); | ||
233 | } | ||
234 | |||
235 | $editLabel = false === $isNew ? t('Edit') .' ' : ''; | ||
236 | $this->assignView( | ||
237 | 'pagetitle', | ||
238 | $editLabel . t('Shaare') .' - '. $this->container->conf->get('general.title', 'Shaarli') | ||
239 | ); | ||
240 | |||
241 | return $response->write($this->render('editlink')); | ||
242 | } | ||
243 | |||
244 | /** | ||
245 | * @param mixed[] $data Variables passed to the template engine | ||
246 | * | ||
247 | * @return mixed[] Template data after active plugins render_picwall hook execution. | ||
248 | */ | ||
249 | protected function executeHooks(string $hook, array $data): array | ||
250 | { | ||
251 | $this->container->pluginManager->executeHooks( | ||
252 | $hook, | ||
253 | $data | ||
254 | ); | ||
255 | |||
256 | return $data; | ||
257 | } | ||
258 | } | ||