xref: /webtrees/app/Module/MatomoAnalyticsModule.php (revision 0ad7d82d6ba18fb602be4dd06ee1bf9a97e0a514)
137eb8894SGreg Roach<?php
23976b470SGreg Roach
337eb8894SGreg Roach/**
437eb8894SGreg Roach * webtrees: online genealogy
537eb8894SGreg Roach * Copyright (C) 2019 webtrees development team
637eb8894SGreg Roach * This program is free software: you can redistribute it and/or modify
737eb8894SGreg Roach * it under the terms of the GNU General Public License as published by
837eb8894SGreg Roach * the Free Software Foundation, either version 3 of the License, or
937eb8894SGreg Roach * (at your option) any later version.
1037eb8894SGreg Roach * This program is distributed in the hope that it will be useful,
1137eb8894SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
1237eb8894SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1337eb8894SGreg Roach * GNU General Public License for more details.
1437eb8894SGreg Roach * You should have received a copy of the GNU General Public License
1537eb8894SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
1637eb8894SGreg Roach */
17fcfa147eSGreg Roach
1837eb8894SGreg Roachdeclare(strict_types=1);
1937eb8894SGreg Roach
2037eb8894SGreg Roachnamespace Fisharebest\Webtrees\Module;
2137eb8894SGreg Roach
2276fa3e53SGreg Roachuse Fisharebest\Webtrees\Auth;
23*0ad7d82dSGreg Roachuse Fisharebest\Webtrees\I18N;
2476fa3e53SGreg Roach
2537eb8894SGreg Roach/**
2637eb8894SGreg Roach * Class MatomoAnalyticsModule - add support for Matomo analytics.
2737eb8894SGreg Roach */
28abafa13cSGreg Roachclass MatomoAnalyticsModule extends AbstractModule implements ModuleAnalyticsInterface, ModuleConfigInterface, ModuleExternalUrlInterface, ModuleGlobalInterface
2937eb8894SGreg Roach{
3037eb8894SGreg Roach    use ModuleAnalyticsTrait;
318e5c5efeSGreg Roach    use ModuleConfigTrait;
328e5c5efeSGreg Roach    use ModuleExternalUrlTrait;
33abafa13cSGreg Roach    use ModuleGlobalTrait;
3437eb8894SGreg Roach
3537eb8894SGreg Roach    /**
360cfd6963SGreg Roach     * How should this module be identified in the control panel, etc.?
3737eb8894SGreg Roach     *
3837eb8894SGreg Roach     * @return string
3937eb8894SGreg Roach     */
4037eb8894SGreg Roach    public function title(): string
4137eb8894SGreg Roach    {
42*0ad7d82dSGreg Roach        return I18N::translate('Matomo™ / Piwik™ analytics');
4337eb8894SGreg Roach    }
4437eb8894SGreg Roach
4537eb8894SGreg Roach    /**
46abafa13cSGreg Roach     * Should this module be enabled when it is first installed?
47abafa13cSGreg Roach     *
48abafa13cSGreg Roach     * @return bool
49abafa13cSGreg Roach     */
50abafa13cSGreg Roach    public function isEnabledByDefault(): bool
51abafa13cSGreg Roach    {
52abafa13cSGreg Roach        return false;
53abafa13cSGreg Roach    }
54abafa13cSGreg Roach
55abafa13cSGreg Roach    /**
5637eb8894SGreg Roach     * Form fields to edit the parameters.
5737eb8894SGreg Roach     *
5837eb8894SGreg Roach     * @return string
5937eb8894SGreg Roach     */
6037eb8894SGreg Roach    public function analyticsFormFields(): string
6137eb8894SGreg Roach    {
628e5c5efeSGreg Roach        return view('modules/matomo-analytics/form', $this->analyticsParameters());
6337eb8894SGreg Roach    }
6437eb8894SGreg Roach
6537eb8894SGreg Roach    /**
6637eb8894SGreg Roach     * Home page for the service.
6737eb8894SGreg Roach     *
6837eb8894SGreg Roach     * @return string
6937eb8894SGreg Roach     */
708e5c5efeSGreg Roach    public function externalUrl(): string
7137eb8894SGreg Roach    {
7237eb8894SGreg Roach        return 'https://matomo.org';
7337eb8894SGreg Roach    }
7437eb8894SGreg Roach
7537eb8894SGreg Roach    /**
7637eb8894SGreg Roach     * The parameters that need to be embedded in the snippet.
7737eb8894SGreg Roach     *
7837eb8894SGreg Roach     * @return string[]
7937eb8894SGreg Roach     */
8037eb8894SGreg Roach    public function analyticsParameters(): array
8137eb8894SGreg Roach    {
8237eb8894SGreg Roach        return [
8326420f84SGreg Roach            'MATOMO_SITE_ID' => $this->getPreference('MATOMO_SITE_ID'),
8426420f84SGreg Roach            'MATOMO_URL'     => $this->getPreference('MATOMO_URL'),
8537eb8894SGreg Roach        ];
8637eb8894SGreg Roach    }
8737eb8894SGreg Roach
8837eb8894SGreg Roach    /**
8937eb8894SGreg Roach     * Embed placeholders in the snippet.
9037eb8894SGreg Roach     *
9137eb8894SGreg Roach     * @param string[] $parameters
9237eb8894SGreg Roach     *
9337eb8894SGreg Roach     * @return string
9437eb8894SGreg Roach     */
9537eb8894SGreg Roach    public function analyticsSnippet(array $parameters): string
9637eb8894SGreg Roach    {
9776fa3e53SGreg Roach        $parameters['user'] = Auth::user();
9876fa3e53SGreg Roach
998e5c5efeSGreg Roach        return view('modules/matomo-analytics/snippet', $parameters);
10037eb8894SGreg Roach    }
101abafa13cSGreg Roach
102abafa13cSGreg Roach    /**
103abafa13cSGreg Roach     * Raw content, to be added at the end of the <head> element.
104abafa13cSGreg Roach     * Typically, this will be <link> and <meta> elements.
105abafa13cSGreg Roach     *
106abafa13cSGreg Roach     * @return string
107abafa13cSGreg Roach     */
108abafa13cSGreg Roach    public function headContent(): string
109abafa13cSGreg Roach    {
110abafa13cSGreg Roach        if ($this->analyticsCanShow()) {
111abafa13cSGreg Roach            return $this->analyticsSnippet($this->analyticsParameters());
112abafa13cSGreg Roach        }
113abafa13cSGreg Roach
114abafa13cSGreg Roach        return '';
115abafa13cSGreg Roach    }
11637eb8894SGreg Roach}
117