Merge pull request #1098 from nupplaphil/feat/check_messages
[friendica-addons.git/.git] / piwik / piwik.php
1 <?php
2 /**
3  * Name: Matomo / Piwik Analytics
4  * Description: Matomo / Piwik Analytics Addon for Friendica
5  * Version: 1.3
6  * Author: Tobias Diekershoff <https://f.diekershoff.de/profile/tobias>
7  * Author: Klaus Weidenbach
8  */
9
10 /*   Piwik Analytics Addon for Friendica
11  *
12  *   Author: Tobias Diekershoff
13  *           tobias.diekershoff@gmx.net
14  *
15  *   License: 3-clause BSD license
16  *
17  *   Configuration:
18  *     Use the administration panel to configure the Piwik tracking addon, or
19  *     in case you don't use this add the following lines to your config/addon.config.php
20  *     file:
21  *
22  *     [piwik]
23  *     baseurl = example.com/piwik/
24  *     sideid = 1
25  *     optout = true ;set to false to disable
26  *     async = false ;set to true to enable
27  *
28  *     Change the siteid to the ID that the Piwik tracker for your Friendica
29  *     installation has. Alter the baseurl to fit your needs, don't care
30  *     about http/https but beware to put the trailing / at the end of your
31  *     setting.
32  */
33
34 use Friendica\Core\Hook;
35 use Friendica\Core\Logger;
36 use Friendica\Core\Renderer;
37 use Friendica\DI;
38 use Friendica\Util\ConfigFileLoader;
39 use Friendica\Util\Strings;
40
41 function piwik_install() {
42         Hook::register('load_config', 'addon/piwik/piwik.php', 'piwik_load_config');
43         Hook::register('page_end', 'addon/piwik/piwik.php', 'piwik_analytics');
44
45         Logger::log("installed piwik addon");
46 }
47
48 function piwik_load_config(\Friendica\App $a, ConfigFileLoader $loader)
49 {
50         $a->getConfigCache()->load($loader->loadAddonConfig('piwik'));
51 }
52
53 function piwik_analytics($a,&$b) {
54
55         /*
56          *   styling of every HTML block added by this addon is done in the
57          *   associated CSS file. We just have to tell Friendica to get it
58          *   into the page header.
59          */
60         DI::page()['htmlhead'] .= '<link rel="stylesheet"  type="text/css" href="' . DI::baseUrl()->get() . '/addon/piwik/piwik.css' . '" media="all" />';
61
62         /*
63          *   Get the configuration variables from the config/addon.config.php file.
64          */
65         $baseurl = DI::config()->get('piwik', 'baseurl');
66         $siteid  = DI::config()->get('piwik', 'siteid');
67         $optout  = DI::config()->get('piwik', 'optout');
68         $async   = DI::config()->get('piwik', 'async');
69
70         /*
71          *   Add the Piwik tracking code for the site.
72          *   If async is set to true use asynchronous tracking
73          */
74         if ($async) {
75           $b .= "<!-- Piwik --> <script type=\"text/javascript\"> var _paq = _paq || []; _paq.push(['trackPageView']); _paq.push(['enableLinkTracking']); (function() { var u=((\"https:\" == document.location.protocol) ? \"https\" : \"http\") + \"://".$baseurl."\"; _paq.push(['setTrackerUrl', u+'piwik.php']); _paq.push(['setSiteId', ".$siteid."]); var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; g.type='text/javascript'; g.defer=true; g.async=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s); })(); </script> <!-- End Piwik Code -->\r\n";
76           $b .= "<div id='piwik-code-block'> <!-- Piwik -->\r\n<noscript><p><img src=\"//".$baseurl."piwik.php?idsite=".$siteid."\" style=\"border:0\" alt=\"\" /></p></noscript>\r\n <!-- End Piwik Tracking Tag --> </div>";
77         } else {
78           $b .= "<!-- Piwik --> <script type=\"text/javascript\"> var _paq = _paq || []; _paq.push(['trackPageView']); _paq.push(['enableLinkTracking']); (function() { var u=((\"https:\" == document.location.protocol) ? \"https\" : \"http\") + \"://".$baseurl."\"; _paq.push(['setTrackerUrl', u+'piwik.php']); _paq.push(['setSiteId', ".$siteid."]); var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; g.type='text/javascript'; g.defer=true; g.async=false; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s); })(); </script> <!-- End Piwik Code -->\r\n";
79         }
80
81         /*
82          *   If the optout variable is set to true then display the notice
83          *   otherwise just include the above code into the page.
84          */
85         if ($optout) {
86                 $b .= "<div id='piwik-optout-link'>";
87                 $b .= DI::l10n()->t("This website is tracked using the <a href='http://www.matomo.org'>Matomo</a> analytics tool.");
88                 $b .= " ";
89                 $the_url =  "http://".$baseurl ."index.php?module=CoreAdminHome&action=optOut";
90                 $b .= DI::l10n()->t("If you do not want that your visits are logged in this way you <a href='%s'>can set a cookie to prevent Matomo / Piwik from tracking further visits of the site</a> (opt-out).", $the_url);
91                 $b .= "</div>";
92         }
93 }
94 function piwik_addon_admin (&$a, &$o) {
95         $t = Renderer::getMarkupTemplate( "admin.tpl", "addon/piwik/" );
96         $o = Renderer::replaceMacros( $t, [
97                 '$submit' => DI::l10n()->t('Save Settings'),
98                 '$piwikbaseurl' => ['baseurl', DI::l10n()->t('Matomo (Piwik) Base URL'), DI::config()->get('piwik','baseurl' ), DI::l10n()->t('Absolute path to your Matomo (Piwik) installation. (without protocol (http/s), with trailing slash)')],
99                 '$siteid' => ['siteid', DI::l10n()->t('Site ID'), DI::config()->get('piwik','siteid' ), ''],
100                 '$optout' => ['optout', DI::l10n()->t('Show opt-out cookie link?'), DI::config()->get('piwik','optout' ), ''],
101                 '$async' => ['async', DI::l10n()->t('Asynchronous tracking'), DI::config()->get('piwik','async' ), ''],
102         ]);
103 }
104 function piwik_addon_admin_post (&$a) {
105         $url = (!empty($_POST['baseurl']) ? Strings::escapeTags(trim($_POST['baseurl'])) : '');
106         $id = (!empty($_POST['siteid']) ? trim($_POST['siteid']) : '');
107         $optout = (!empty($_POST['optout']) ? trim($_POST['optout']) : '');
108         $async = (!empty($_POST['async']) ? trim($_POST['async']) : '');
109         DI::config()->set('piwik', 'baseurl', $url);
110         DI::config()->set('piwik', 'siteid', $id);
111         DI::config()->set('piwik', 'optout', $optout);
112         DI::config()->set('piwik', 'async', $async);
113 }