xref: /webtrees/app/Module/UserWelcomeModule.php (revision 6ccdf4f0fd1b65a5d54259c969912382ce49629d)
1<?php
2/**
3 * webtrees: online genealogy
4 * Copyright (C) 2019 webtrees development team
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16declare(strict_types=1);
17
18namespace Fisharebest\Webtrees\Module;
19
20use Fisharebest\Webtrees\Auth;
21use Fisharebest\Webtrees\I18N;
22use Fisharebest\Webtrees\Individual;
23use Fisharebest\Webtrees\Services\ModuleService;
24use Fisharebest\Webtrees\Tree;
25use Illuminate\Support\Str;
26use Psr\Http\Message\ServerRequestInterface;
27
28/**
29 * Class UserWelcomeModule
30 */
31class UserWelcomeModule extends AbstractModule implements ModuleBlockInterface
32{
33    use ModuleBlockTrait;
34
35    /**
36     * @var ModuleService
37     */
38    private $module_service;
39
40    /**
41     * UserWelcomeModule constructor.
42     *
43     * @param ModuleService $module_service
44     */
45    public function __construct(ModuleService $module_service)
46    {
47        $this->module_service = $module_service;
48    }
49
50    /**
51     * How should this module be identified in the control panel, etc.?
52     *
53     * @return string
54     */
55    public function title(): string
56    {
57        /* I18N: Name of a module */
58        return I18N::translate('My page');
59    }
60
61    /**
62     * A sentence describing what this module does.
63     *
64     * @return string
65     */
66    public function description(): string
67    {
68        /* I18N: Description of the “My page” module */
69        return I18N::translate('A greeting message and useful links for a user.');
70    }
71
72    /**
73     * Generate the HTML content of this block.
74     *
75     * @param Tree     $tree
76     * @param int      $block_id
77     * @param string   $ctype
78     * @param string[] $cfg
79     *
80     * @return string
81     */
82    public function getBlock(Tree $tree, int $block_id, string $ctype = '', array $cfg = []): string
83    {
84        $gedcomid   = $tree->getUserPreference(Auth::user(), 'gedcomid');
85        $individual = Individual::getInstance($gedcomid, $tree);
86        $links      = [];
87
88        $pedigree_chart = $this->module_service->findByComponent(ModuleChartInterface::class, $tree, Auth::user())
89            ->filter(static function (ModuleInterface $module): bool {
90                return $module instanceof PedigreeChartModule;
91            });
92
93        if ($individual instanceof Individual) {
94            if ($pedigree_chart instanceof PedigreeChartModule) {
95                $links[] = [
96                    'url'   => route('pedigree', [
97                        'xref' => $individual->xref(),
98                        'ged'  => $individual->tree()->name(),
99                    ]),
100                    'title' => I18N::translate('Default chart'),
101                    'icon'  => 'icon-pedigree',
102                ];
103            }
104
105            $links[] = [
106                'url'   => $individual->url(),
107                'title' => I18N::translate('My individual record'),
108                'icon'  => 'icon-indis',
109            ];
110        }
111
112        $links[] = [
113            'url'   => route('my-account', []),
114            'title' => I18N::translate('My account'),
115            'icon'  => 'icon-mypage',
116        ];
117        $content = view('modules/user_welcome/welcome', ['links' => $links]);
118
119        $real_name = '<span dir="auto">' . e(Auth::user()->realName()) . '</span>';
120
121        /* I18N: A %s is the user’s name */
122        $title = I18N::translate('Welcome %s', $real_name);
123
124        if ($ctype !== '') {
125            return view('modules/block-template', [
126                'block'      => Str::kebab($this->name()),
127                'id'         => $block_id,
128                'config_url' => '',
129                'title'      => $title,
130                'content'    => $content,
131            ]);
132        }
133
134        return $content;
135    }
136
137    /** {@inheritdoc} */
138    public function loadAjax(): bool
139    {
140        return false;
141    }
142
143    /** {@inheritdoc} */
144    public function isUserBlock(): bool
145    {
146        return true;
147    }
148
149    /** {@inheritdoc} */
150    public function isTreeBlock(): bool
151    {
152        return false;
153    }
154
155    /**
156     * Update the configuration for a block.
157     *
158     * @param ServerRequestInterface $request
159     * @param int     $block_id
160     *
161     * @return void
162     */
163    public function saveBlockConfiguration(ServerRequestInterface $request, int $block_id): void
164    {
165    }
166
167    /**
168     * An HTML form to edit block settings
169     *
170     * @param Tree $tree
171     * @param int  $block_id
172     *
173     * @return void
174     */
175    public function editBlockConfiguration(Tree $tree, int $block_id): void
176    {
177    }
178}
179