xref: /webtrees/app/Module/StoriesModule.php (revision f4c767fd89cdb62ee54edec032285924cd767af7)
1<?php
2
3/**
4 * webtrees: online genealogy
5 * Copyright (C) 2020 webtrees development team
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18declare(strict_types=1);
19
20namespace Fisharebest\Webtrees\Module;
21
22use Fisharebest\Webtrees\Auth;
23use Fisharebest\Webtrees\Factory;
24use Fisharebest\Webtrees\Http\RequestHandlers\ControlPanel;
25use Fisharebest\Webtrees\I18N;
26use Fisharebest\Webtrees\Individual;
27use Fisharebest\Webtrees\Menu;
28use Fisharebest\Webtrees\Services\HtmlService;
29use Fisharebest\Webtrees\Services\TreeService;
30use Fisharebest\Webtrees\Tree;
31use Illuminate\Database\Capsule\Manager as DB;
32use Psr\Http\Message\ResponseInterface;
33use Psr\Http\Message\ServerRequestInterface;
34use stdClass;
35
36use function assert;
37use function redirect;
38use function route;
39
40/**
41 * Class StoriesModule
42 */
43class StoriesModule extends AbstractModule implements ModuleConfigInterface, ModuleMenuInterface, ModuleTabInterface
44{
45    use ModuleTabTrait;
46    use ModuleConfigTrait;
47    use ModuleMenuTrait;
48
49    /** @var HtmlService */
50    private $html_service;
51
52    /** @var TreeService */
53    private $tree_service;
54
55    /**
56     * StoriesModule constructor.
57     *
58     * @param HtmlService $html_service
59     * @param TreeService $tree_service
60     */
61    public function __construct(HtmlService $html_service, TreeService $tree_service)
62    {
63        $this->html_service = $html_service;
64        $this->tree_service = $tree_service;
65    }
66
67    /** @var int The default access level for this module.  It can be changed in the control panel. */
68    protected $access_level = Auth::PRIV_HIDE;
69
70    /**
71     * A sentence describing what this module does.
72     *
73     * @return string
74     */
75    public function description(): string
76    {
77        /* I18N: Description of the “Stories” module */
78        return I18N::translate('Add narrative stories to individuals in the family tree.');
79    }
80
81    /**
82     * The default position for this menu.  It can be changed in the control panel.
83     *
84     * @return int
85     */
86    public function defaultMenuOrder(): int
87    {
88        return 7;
89    }
90
91    /**
92     * The default position for this tab.  It can be changed in the control panel.
93     *
94     * @return int
95     */
96    public function defaultTabOrder(): int
97    {
98        return 9;
99    }
100
101    /**
102     * Generate the HTML content of this tab.
103     *
104     * @param Individual $individual
105     *
106     * @return string
107     */
108    public function getTabContent(Individual $individual): string
109    {
110        return view('modules/stories/tab', [
111            'is_admin'   => Auth::isAdmin(),
112            'individual' => $individual,
113            'stories'    => $this->getStoriesForIndividual($individual),
114            'tree'       => $individual->tree(),
115        ]);
116    }
117
118    /**
119     * @param Individual $individual
120     *
121     * @return stdClass[]
122     */
123    private function getStoriesForIndividual(Individual $individual): array
124    {
125        $block_ids = DB::table('block')
126            ->where('module_name', '=', $this->name())
127            ->where('xref', '=', $individual->xref())
128            ->where('gedcom_id', '=', $individual->tree()->id())
129            ->pluck('block_id');
130
131        $stories = [];
132        foreach ($block_ids as $block_id) {
133            $block_id = (int) $block_id;
134
135            // Only show this block for certain languages
136            $languages = $this->getBlockSetting($block_id, 'languages');
137            if ($languages === '' || in_array(I18N::languageTag(), explode(',', $languages), true)) {
138                $stories[] = (object) [
139                    'block_id'   => $block_id,
140                    'title'      => $this->getBlockSetting($block_id, 'title'),
141                    'story_body' => $this->getBlockSetting($block_id, 'story_body'),
142                ];
143            }
144        }
145
146        return $stories;
147    }
148
149    /**
150     * Is this tab empty? If so, we don't always need to display it.
151     *
152     * @param Individual $individual
153     *
154     * @return bool
155     */
156    public function hasTabContent(Individual $individual): bool
157    {
158        return Auth::isManager($individual->tree()) || $this->getStoriesForIndividual($individual) !== [];
159    }
160
161    /**
162     * A greyed out tab has no actual content, but may perhaps have
163     * options to create content.
164     *
165     * @param Individual $individual
166     *
167     * @return bool
168     */
169    public function isGrayedOut(Individual $individual): bool
170    {
171        return $this->getStoriesForIndividual($individual) !== [];
172    }
173
174    /**
175     * Can this tab load asynchronously?
176     *
177     * @return bool
178     */
179    public function canLoadAjax(): bool
180    {
181        return false;
182    }
183
184    /**
185     * A menu, to be added to the main application menu.
186     *
187     * @param Tree $tree
188     *
189     * @return Menu|null
190     */
191    public function getMenu(Tree $tree): ?Menu
192    {
193        return new Menu($this->title(), route('module', [
194            'module' => $this->name(),
195            'action' => 'ShowList',
196            'tree'    => $tree->name(),
197        ]), 'menu-story');
198    }
199
200    /**
201     * How should this module be identified in the control panel, etc.?
202     *
203     * @return string
204     */
205    public function title(): string
206    {
207        /* I18N: Name of a module */
208        return I18N::translate('Stories');
209    }
210
211    /**
212     * @param ServerRequestInterface $request
213     *
214     * @return ResponseInterface
215     */
216    public function getAdminAction(ServerRequestInterface $request): ResponseInterface
217    {
218        $this->layout = 'layouts/administration';
219
220        // This module can't run without a tree
221        $tree = $request->getAttribute('tree');
222
223        if (!$tree instanceof Tree) {
224            $tree = $this->tree_service->all()->first();
225            if ($tree instanceof Tree) {
226                return redirect(route('module', ['module' => $this->name(), 'action' => 'Admin', 'tree' => $tree->name()]));
227            }
228
229            return redirect(route(ControlPanel::class));
230        }
231
232        $stories = DB::table('block')
233            ->where('module_name', '=', $this->name())
234            ->where('gedcom_id', '=', $tree->id())
235            ->orderBy('xref')
236            ->get();
237
238        foreach ($stories as $story) {
239            $block_id = (int) $story->block_id;
240            $xref     = (string) $story->xref;
241
242            $story->individual = Factory::individual()->make($xref, $tree);
243            $story->title      = $this->getBlockSetting($block_id, 'title');
244            $story->languages  = $this->getBlockSetting($block_id, 'languages');
245        }
246
247        $tree_names = $this->tree_service->all()->map(static function (Tree $tree): string {
248            return $tree->title();
249        });
250
251        return $this->viewResponse('modules/stories/config', [
252            'module'     => $this->name(),
253            'stories'    => $stories,
254            'title'      => $this->title() . ' — ' . $tree->title(),
255            'tree'       => $tree,
256            'tree_names' => $tree_names,
257        ]);
258    }
259
260    /**
261     * @param ServerRequestInterface $request
262     *
263     * @return ResponseInterface
264     */
265    public function postAdminAction(ServerRequestInterface $request): ResponseInterface
266    {
267        $params = (array) $request->getParsedBody();
268
269        return redirect(route('module', [
270            'module' => $this->name(),
271            'action' => 'Admin',
272            'tree'   => $params['tree'] ?? '',
273        ]));
274    }
275
276    /**
277     * @param ServerRequestInterface $request
278     *
279     * @return ResponseInterface
280     */
281    public function getAdminEditAction(ServerRequestInterface $request): ResponseInterface
282    {
283        $this->layout = 'layouts/administration';
284
285        $tree = $request->getAttribute('tree');
286        assert($tree instanceof Tree);
287
288        $block_id = (int) ($request->getQueryParams()['block_id'] ?? 0);
289
290        if ($block_id === 0) {
291            // Creating a new story
292            $story_title = '';
293            $story_body  = '';
294            $languages   = [];
295            $xref = $request->getQueryParams()['xref'] ?? '';
296
297            $title = I18N::translate('Add a story') . ' — ' . e($tree->title());
298        } else {
299            // Editing an existing story
300            $xref = (string) DB::table('block')
301                ->where('block_id', '=', $block_id)
302                ->value('xref');
303
304            $story_title = $this->getBlockSetting($block_id, 'title');
305            $story_body  = $this->getBlockSetting($block_id, 'story_body');
306            $languages   = explode(',', $this->getBlockSetting($block_id, 'languages'));
307
308            $title = I18N::translate('Edit the story') . ' — ' . e($tree->title());
309        }
310
311        $individual  = Factory::individual()->make($xref, $tree);
312
313        return $this->viewResponse('modules/stories/edit', [
314            'block_id'    => $block_id,
315            'languages'   => $languages,
316            'story_body'  => $story_body,
317            'story_title' => $story_title,
318            'title'       => $title,
319            'tree'        => $tree,
320            'individual'  => $individual,
321        ]);
322    }
323
324    /**
325     * @param ServerRequestInterface $request
326     *
327     * @return ResponseInterface
328     */
329    public function postAdminEditAction(ServerRequestInterface $request): ResponseInterface
330    {
331        $tree = $request->getAttribute('tree');
332        assert($tree instanceof Tree);
333
334        $block_id = (int) ($request->getQueryParams()['block_id'] ?? 0);
335
336        $params = (array) $request->getParsedBody();
337
338        $xref        = $params['xref'];
339        $story_body  = $params['story_body'];
340        $story_title = $params['story_title'];
341        $languages   = $params['languages'] ?? [];
342
343        $story_body  = $this->html_service->sanitize($story_body);
344        $story_title = $this->html_service->sanitize($story_title);
345
346        if ($block_id !== 0) {
347            DB::table('block')
348                ->where('block_id', '=', $block_id)
349                ->update([
350                    'gedcom_id' => $tree->id(),
351                    'xref'      => $xref,
352                ]);
353        } else {
354            DB::table('block')->insert([
355                'gedcom_id'   => $tree->id(),
356                'xref'        => $xref,
357                'module_name' => $this->name(),
358                'block_order' => 0,
359            ]);
360
361            $block_id = (int) DB::connection()->getPdo()->lastInsertId();
362        }
363
364        $this->setBlockSetting($block_id, 'story_body', $story_body);
365        $this->setBlockSetting($block_id, 'title', $story_title);
366        $this->setBlockSetting($block_id, 'languages', implode(',', $languages));
367
368        $url = route('module', [
369            'module' => $this->name(),
370            'action' => 'Admin',
371            'tree'    => $tree->name(),
372        ]);
373
374        return redirect($url);
375    }
376
377    /**
378     * @param ServerRequestInterface $request
379     *
380     * @return ResponseInterface
381     */
382    public function postAdminDeleteAction(ServerRequestInterface $request): ResponseInterface
383    {
384        $tree = $request->getAttribute('tree');
385        assert($tree instanceof Tree);
386
387        $block_id = $request->getQueryParams()['block_id'];
388
389        DB::table('block_setting')
390            ->where('block_id', '=', $block_id)
391            ->delete();
392
393        DB::table('block')
394            ->where('block_id', '=', $block_id)
395            ->delete();
396
397        $url = route('module', [
398            'module' => $this->name(),
399            'action' => 'Admin',
400            'tree'    => $tree->name(),
401        ]);
402
403        return redirect($url);
404    }
405
406    /**
407     * @param ServerRequestInterface $request
408     *
409     * @return ResponseInterface
410     */
411    public function getShowListAction(ServerRequestInterface $request): ResponseInterface
412    {
413        $tree = $request->getAttribute('tree');
414        assert($tree instanceof Tree);
415
416        $stories = DB::table('block')
417            ->where('module_name', '=', $this->name())
418            ->where('gedcom_id', '=', $tree->id())
419            ->get()
420            ->map(function (stdClass $story) use ($tree): stdClass {
421                $block_id = (int) $story->block_id;
422                $xref     = (string) $story->xref;
423
424                $story->individual = Factory::individual()->make($xref, $tree);
425                $story->title      = $this->getBlockSetting($block_id, 'title');
426                $story->languages  = $this->getBlockSetting($block_id, 'languages');
427
428                return $story;
429            })->filter(static function (stdClass $story): bool {
430                // Filter non-existant and private individuals.
431                return $story->individual instanceof Individual && $story->individual->canShow();
432            })->filter(static function (stdClass $story): bool {
433                // Filter foreign languages.
434                return $story->languages === '' || in_array(I18N::languageTag(), explode(',', $story->languages), true);
435            });
436
437        return $this->viewResponse('modules/stories/list', [
438            'stories' => $stories,
439            'title'   => $this->title(),
440            'tree'    => $tree,
441        ]);
442    }
443}
444