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