PluginProbe ʕ •ᴥ•ʔ
Matomo Analytics – Powerful, Privacy-First Insights for WordPress / 5.13.0
Matomo Analytics – Powerful, Privacy-First Insights for WordPress v5.13.0
5.13.0 5.12.1 5.12.0 5.11.1 5.11.0 5.10.2 5.10.1 trunk 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.1.0 1.1.1 1.1.2 1.1.3 1.2.0 1.3.0 1.3.1 1.3.2 4.0.0 4.0.1 4.0.2 4.0.3 4.0.4 4.1.0 4.1.1 4.1.2 4.1.3 4.10.0 4.11.0 4.12.0 4.13.0 4.13.2 4.13.3 4.13.4 4.13.5 4.14.0 4.14.1 4.14.2 4.15.0 4.15.1 4.15.2 4.15.3 4.2.0 4.3.0 4.3.1 4.4.1 4.4.2 4.5.0 4.6.0 5.0.1 5.0.2 5.0.3 5.0.4 5.0.5 5.0.6 5.0.7 5.0.8 5.1.0 5.1.1 5.1.2 5.1.3 5.1.4 5.1.5 5.1.6 5.1.7 5.10.0 5.2.0 5.2.1 5.2.2 5.3.0 5.3.1 5.3.2 5.3.3 5.6.0 5.6.1 5.7.0 5.7.1 5.8.0 5.8.1 5.8.2
matomo / classes / WpMatomo / OptOut.php
matomo / classes / WpMatomo Last commit date
Admin 4 days ago Commands 4 days ago Db 4 days ago Ecommerce 1 month ago Report 1 month ago Site 4 days ago TrackingCode 4 days ago Updater 4 years ago User 4 days ago Workarounds 2 years ago WpStatistics 1 month ago views 1 month ago AIBotTracking.php 1 month ago API.php 1 month ago Access.php 4 days ago AjaxTracker.php 6 months ago Annotations.php 1 month ago Bootstrap.php 1 year ago Capabilities.php 4 days ago Compatibility.php 1 month ago Email.php 1 month ago ErrorNotice.php 1 month ago Feature.php 4 months ago Installer.php 1 month ago Logger.php 1 year ago MinimumRequirements.php 4 days ago MinimumRequirementsNotice.php 4 days ago MinimumRequirementsUpdateGuard.php 4 days ago OptOut.php 3 months ago Paths.php 1 month ago PluginActionLinks.php 4 months ago PluginAdminOverrides.php 1 month ago PluginInit.php 1 month ago PrivacyBadge.php 4 years ago RedirectOnActivation.php 4 months ago Referral.php 4 months ago Request.php 4 days ago Roles.php 4 months ago ScheduledTasks.php 1 month ago Settings.php 4 days ago Site.php 4 days ago TrackingCode.php 1 month ago Uninstaller.php 4 days ago Updater.php 1 month ago User.php 4 days ago
OptOut.php
144 lines
1 <?php
2 /**
3 * Matomo - free/libre analytics platform
4 *
5 * @link https://matomo.org
6 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
7 * @package matomo
8 */
9
10 namespace WpMatomo;
11
12 use Piwik\Piwik;
13 use Piwik\Plugins\PrivacyManager\DoNotTrackHeaderChecker;
14 use Throwable;
15
16 if ( ! defined( 'ABSPATH' ) ) {
17 exit; // if accessed directly
18 }
19
20 class OptOut extends Feature {
21
22 const OPT_OUT_DIV_ID = 'matomo-opt-out-form-embed';
23
24 private $language = null;
25
26 public function register_hooks() {
27 add_shortcode( 'matomo_opt_out', [ $this, 'show_classic_opt_out' ] );
28 add_shortcode( 'matomo_opt_out_form', [ $this, 'show_opt_out' ] );
29 add_action( 'wp_enqueue_scripts', array( $this, 'load_scripts' ) );
30 add_action( 'init', [ $this, 'load_block' ] );
31 }
32
33 public function load_scripts() {
34 if ( ! is_admin() ) {
35 wp_register_script( 'matomo_opt_out_js', plugins_url( 'assets/js/optout.js', MATOMO_ANALYTICS_FILE ), [], matomo_get_asset_version(), true );
36 }
37 }
38
39 private function translate( $id ) {
40 return esc_html( Piwik::translate( $id, [], $this->language ) );
41 }
42
43 public function show_opt_out( $atts ) {
44 $this->language = $this->get_language_from_atts( $atts );
45 $this->language = isset( $this->language ) ? $this->language : 'auto';
46
47 $div_id = self::OPT_OUT_DIV_ID;
48
49 $url = 'app/index.php?module=CoreAdminHome&action=optOutJS&divId=' . $div_id . '&language=' . rawurlencode( $this->language ) . '&showIntro=1';
50 $url = plugins_url( $url, MATOMO_ANALYTICS_FILE );
51
52 wp_enqueue_script( 'matomo_opt_out_form_js', $url, [], matomo_get_asset_version(), true ); // output in the footer
53
54 // phpcs:disable WordPress.WP.EnqueuedResources.NonEnqueuedScript
55 $content = "<div id=\"$div_id\"></div>";
56 return $content;
57 }
58
59 public function show_classic_opt_out( $atts ) {
60 $this->language = $this->get_language_from_atts( $atts );
61
62 try {
63 Bootstrap::do_bootstrap();
64 } catch ( Throwable $e ) {
65 $logger = new Logger();
66 $logger->log_exception( 'optout', $e );
67
68 return '<p>An error occurred. Please check Matomo system report in WP-Admin.</p>';
69 }
70
71 $dnt_checker = new DoNotTrackHeaderChecker();
72 $dnt_enabled = $dnt_checker->isDoNotTrackFound();
73
74 if ( ! empty( $dnt_enabled ) ) {
75 return '<p>' . $this->translate( 'CoreAdminHome_OptOutDntFound' ) . '</p>';
76 }
77
78 wp_enqueue_script( 'matomo_opt_out_js' );
79
80 $track_visits = empty( $_COOKIE['mtm_consent_removed'] );
81
82 $style_tracking_enabled = '';
83 $style_tracking_disabled = '';
84 $checkbox_attr = '';
85 if ( $track_visits ) {
86 $style_tracking_enabled = 'style="display:none;"';
87 $checkbox_attr = 'checked="checked"';
88 } else {
89 $style_tracking_disabled = 'style="display:none;"';
90 }
91
92 $content = '<p id="matomo_opted_out_intro" ' . $style_tracking_enabled . '>' . $this->translate( 'CoreAdminHome_OptOutComplete' ) . ' ' . $this->translate( 'CoreAdminHome_OptOutCompleteBis' ) . '</p>';
93 $content .= '<p id="matomo_opted_in_intro" ' . $style_tracking_disabled . '>' . $this->translate( 'CoreAdminHome_YouMayOptOut2' ) . ' ' . $this->translate( 'CoreAdminHome_YouMayOptOut3' ) . '</p>';
94
95 $content .= '<form>
96 <input type="checkbox" id="matomo_optout_checkbox" ' . $checkbox_attr . '/>
97 <label for="matomo_optout_checkbox"><strong>
98 <span id="matomo_opted_in_label" ' . $style_tracking_disabled . '>' . $this->translate( 'CoreAdminHome_YouAreNotOptedOut' ) . ' ' . $this->translate( 'CoreAdminHome_UncheckToOptOut' ) . '</span>
99 <span id="matomo_opted_out_label" ' . $style_tracking_enabled . '>' . $this->translate( 'CoreAdminHome_YouAreOptedOut' ) . ' ' . $this->translate( 'CoreAdminHome_CheckToOptIn' ) . '</span>
100 </strong></label></form>';
101 $content .= '<noscript><p><strong style="color: #ff0000;">This opt out feature requires JavaScript.</strong></p></noscript>';
102 $content .= '<p id="matomo_outout_err_cookies" style="display: none;"><strong>' . $this->translate( 'CoreAdminHome_OptOutErrorNoCookies' ) . '</strong></p>';
103
104 return $content;
105 }
106
107 public function load_block() {
108 // before WordPress 5.0
109 if ( ! function_exists( 'register_block_type' ) ) {
110 // Gutenberg is not active.
111 return;
112 }
113
114 wp_register_script(
115 'matomo-opt-out',
116 plugins_url( '/assets/js/blocks/matomo_opt_out.js', MATOMO_ANALYTICS_FILE ),
117 array( 'wp-blocks', 'wp-i18n', 'wp-element' ),
118 filemtime( plugin_dir_path( MATOMO_ANALYTICS_FILE ) . '/assets/js/blocks/matomo_opt_out.js' ),
119 true
120 );
121
122 register_block_type(
123 'matomo/matomo-opt-out',
124 array(
125 'editor_script' => 'matomo-opt-out',
126 'api_version' => 3,
127 )
128 );
129 }
130
131 private function get_language_from_atts( $atts ) {
132 $a = shortcode_atts(
133 [
134 'language' => null,
135 ],
136 $atts
137 );
138 if ( ! empty( $a['language'] ) && strlen( $a['language'] ) < 6 ) {
139 return $a['language'];
140 }
141 return null;
142 }
143 }
144