xref: /webtrees/app/Module/HitCountFooterModule.php (revision 8939e2c24ff4346b8c6b9f3f822a733db666d588)
1<?php
2
3/**
4 * webtrees: online genealogy
5 * Copyright (C) 2022 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 <https://www.gnu.org/licenses/>.
16 */
17
18declare(strict_types=1);
19
20namespace Fisharebest\Webtrees\Module;
21
22use Fisharebest\Webtrees\Http\RequestHandlers\FamilyPage;
23use Fisharebest\Webtrees\Http\RequestHandlers\IndividualPage;
24use Fisharebest\Webtrees\Http\RequestHandlers\MediaPage;
25use Fisharebest\Webtrees\Http\RequestHandlers\NotePage;
26use Fisharebest\Webtrees\Http\RequestHandlers\RepositoryPage;
27use Fisharebest\Webtrees\Http\RequestHandlers\SourcePage;
28use Fisharebest\Webtrees\Http\RequestHandlers\SubmitterPage;
29use Fisharebest\Webtrees\Http\RequestHandlers\TreePage;
30use Fisharebest\Webtrees\Http\RequestHandlers\UserPage;
31use Fisharebest\Webtrees\I18N;
32use Fisharebest\Webtrees\Session;
33use Fisharebest\Webtrees\Tree;
34use Fisharebest\Webtrees\Validator;
35use Illuminate\Database\Capsule\Manager as DB;
36use Psr\Http\Message\ResponseInterface;
37use Psr\Http\Message\ServerRequestInterface;
38use Psr\Http\Server\MiddlewareInterface;
39use Psr\Http\Server\RequestHandlerInterface;
40
41/**
42 * Class HitCountFooterModule - show the number of page hits in the footer.
43 */
44class HitCountFooterModule extends AbstractModule implements ModuleFooterInterface, MiddlewareInterface
45{
46    use ModuleFooterTrait;
47
48    // Which routes do we count?
49    // For historical reasons, we record the names of the original webtrees script and parameter.
50    protected const PAGE_NAMES = [
51        FamilyPage::class     => 'family.php',
52        IndividualPage::class => 'individual.php',
53        MediaPage::class      => 'mediaviewer.php',
54        NotePage::class       => 'note.php',
55        RepositoryPage::class => 'repo.php',
56        SourcePage::class     => 'source.php',
57        SubmitterPage::class  => 'submitter',
58        TreePage::class       => 'index.php',
59        UserPage::class       => 'index.php',
60    ];
61
62    // Count of visits to the current page
63    protected int $page_hits = 0;
64
65    /**
66     * How should this module be labelled on tabs, footers, etc.?
67     *
68     * @return string
69     */
70    public function title(): string
71    {
72        /* I18N: Name of a module */
73        return I18N::translate('Hit counters');
74    }
75
76    /**
77     * A sentence describing what this module does.
78     *
79     * @return string
80     */
81    public function description(): string
82    {
83        /* I18N: Description of the “Hit counters” module */
84        return I18N::translate('Count the visits to each page');
85    }
86
87    /**
88     * The default position for this footer.  It can be changed in the control panel.
89     *
90     * @return int
91     */
92    public function defaultFooterOrder(): int
93    {
94        return 3;
95    }
96
97    /**
98     * A footer, to be added at the bottom of every page.
99     *
100     * @param ServerRequestInterface $request
101     *
102     * @return string
103     */
104    public function getFooter(ServerRequestInterface $request): string
105    {
106        if ($this->page_hits === 0) {
107            return '';
108        }
109
110        $digits = '<span class="odometer">' . I18N::digits($this->page_hits) . '</span>';
111
112        return view('modules/hit-counter/footer', [
113            'hit_counter' => I18N::plural('This page has been viewed %s time.', 'This page has been viewed %s times.', $this->page_hits, $digits),
114        ]);
115    }
116
117    /**
118     * @param ServerRequestInterface  $request
119     * @param RequestHandlerInterface $handler
120     *
121     * @return ResponseInterface
122     */
123    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
124    {
125        $route = Validator::attributes($request)->route();
126        $tree  = Validator::attributes($request)->treeOptional();
127        $user  = Validator::attributes($request)->user();
128
129        if ($tree instanceof Tree && $tree->getPreference('SHOW_COUNTER')) {
130            $page_name = self::PAGE_NAMES[$route->name] ?? '';
131
132            switch ($route->name) {
133                case FamilyPage::class:
134                case IndividualPage::class:
135                case MediaPage::class:
136                case NotePage::class:
137                case RepositoryPage::class:
138                case SourcePage::class:
139                case SubmitterPage::class:
140                    $xref = Validator::attributes($request)->isXref()->string('xref');
141                    $this->page_hits = $this->countHit($tree, $page_name, $xref);
142                    break;
143
144                case TreePage::class:
145                    $this->page_hits = $this->countHit($tree, $page_name, 'gedcom:' . $tree->id());
146                    break;
147
148                case UserPage::class:
149                    $this->page_hits = $this->countHit($tree, $page_name, 'user:' . $user->id());
150                    break;
151            }
152        }
153
154        return $handler->handle($request);
155    }
156
157    /**
158     * Increment the page count.
159     *
160     * @param Tree   $tree
161     * @param string $page
162     * @param string $parameter
163     *
164     * @return int
165     */
166    protected function countHit(Tree $tree, string $page, string $parameter): int
167    {
168        // Don't increment the counter while we stay on the same page.
169        if (
170            Session::get('last_page_name') === $page &&
171            Session::get('last_page_parameter') === $parameter &&
172            Session::get('last_gedcom_id') === $tree->id()
173        ) {
174            return (int) Session::get('last_count');
175        }
176
177        $count = (int) DB::table('hit_counter')
178            ->where('gedcom_id', '=', $tree->id())
179            ->where('page_name', '=', $page)
180            ->where('page_parameter', '=', $parameter)
181            ->value('page_count');
182
183        $count++;
184
185        DB::table('hit_counter')->updateOrInsert([
186            'gedcom_id'      => $tree->id(),
187            'page_name'      => $page,
188            'page_parameter' => $parameter,
189        ], [
190            'page_count' => $count,
191        ]);
192
193        Session::put('last_gedcom_id', $tree->id());
194        Session::put('last_page_name', $page);
195        Session::put('last_page_parameter', $parameter);
196        Session::put('last_count', $count);
197
198        return $count;
199    }
200}
201