PluginProbe ʕ •ᴥ•ʔ
Matomo Analytics – Powerful, Privacy-First Insights for WordPress / trunk
Matomo Analytics – Powerful, Privacy-First Insights for WordPress vtrunk
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 / Logger.php
matomo / classes / WpMatomo Last commit date
Admin 7 hours ago Commands 2 years ago Db 7 hours ago Ecommerce 1 month ago Report 3 months ago Site 3 months ago TrackingCode 4 months ago Updater 4 years ago User 7 hours ago Workarounds 2 years ago WpStatistics 6 months ago views 2 months ago AIBotTracking.php 4 months ago API.php 7 hours ago Access.php 4 years ago AjaxTracker.php 4 months ago Annotations.php 3 months ago Bootstrap.php 10 months ago Capabilities.php 1 month ago Compatibility.php 3 months ago Email.php 2 years ago ErrorNotice.php 2 months ago Feature.php 3 months ago Installer.php 2 months ago Logger.php 1 year ago MinimumRequirementsNotice.php 1 month ago OptOut.php 1 month ago Paths.php 6 months ago PluginActionLinks.php 3 months ago PluginAdminOverrides.php 3 months ago PluginInit.php 3 months ago PrivacyBadge.php 4 years ago RedirectOnActivation.php 3 months ago Referral.php 3 months ago Roles.php 3 months ago ScheduledTasks.php 3 months ago Settings.php 4 months ago Site.php 3 years ago TrackingCode.php 3 months ago Uninstaller.php 6 months ago Updater.php 10 months ago User.php 7 hours ago
Logger.php
124 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 Exception;
13
14 if ( ! defined( 'ABSPATH' ) ) {
15 exit; // if accessed directly
16 }
17
18 class Logger {
19 const LEVEL_NONE = 99;
20 const LEVEL_DEBUG = 1;
21 const LEVEL_INFO = 3;
22 const LEVEL_WARN = 5;
23
24 private $log_level;
25
26 public function __construct() {
27 $this->log_level = $this->detect_log_level();
28 }
29
30 private function detect_log_level() {
31 if ( defined( 'MATOMO_DEBUG' ) ) {
32 if ( MATOMO_DEBUG ) {
33 return self::LEVEL_DEBUG;
34 }
35
36 return self::LEVEL_NONE;
37 }
38
39 if ( defined( 'PIWIK_TEST_MODE' ) && PIWIK_TEST_MODE ) {
40 return self::LEVEL_WARN;
41 }
42
43 return self::LEVEL_INFO;
44 }
45
46 public function log( $message, $mode = 3 ) {
47 if ( $this->log_level > $mode ) {
48 return;
49 }
50
51 if ( defined( 'WP_DEBUG' ) && WP_DEBUG === true ) {
52 if ( is_array( $message ) || is_object( $message ) ) {
53 error_log( 'Matomo: ' . print_r( $message, true ) );
54 } else {
55 error_log( 'Matomo: ' . $message );
56 }
57 }
58 }
59
60 public function clear_logged_exceptions() {
61 delete_option( $this->make_id() );
62 }
63
64 private function persist( $key, $message ) {
65 $id = $this->make_id();
66 $logs = $this->get_last_logged_entries();
67 $logs[] = [
68 'name' => $key,
69 'value' => time(),
70 'comment' => $message,
71 ];
72 $logs = array_slice( $logs, - 6 );
73 update_option( $id, $logs );
74 }
75
76 private function make_id() {
77 return Settings::OPTION_PREFIX . 'errorlogs';
78 }
79
80 public function get_last_logged_entries() {
81 $id = $this->make_id();
82 $logs = get_option( $id );
83 if ( empty( $logs ) ) {
84 $logs = [];
85 }
86
87 // remove any entry older than 1 week
88 $logs = array_filter(
89 $logs,
90 function ( $log ) {
91 $one_week_seconds = 604800;
92
93 return ! empty( $log['value'] ) && is_numeric( $log['value'] ) && ( time() - $log['value'] ) <= $one_week_seconds;
94 }
95 );
96
97 return $logs;
98 }
99
100 public function get_readable_trace( Exception $e ) {
101 $trace = '';
102 if ( $e->getFile() ) {
103 $trace = basename( $e->getFile() ) . ':' . $e->getLine() . '; ';
104 }
105 foreach ( $e->getTrace() as $index => $item ) {
106 if ( ! empty( $item['file'] ) ) {
107 $trace .= basename( $item['file'] ) . ':' . $item['line'] . '; ';
108 }
109 if ( $index > 8 ) {
110 continue;
111 }
112 }
113
114 return trim( $trace );
115 }
116
117 public function log_exception( $key, Exception $e, $prefix = 'Matomo error:' ) {
118 $trace = $this->get_readable_trace( $e );
119 $message = $e->getMessage() . ' => ' . $trace;
120 $this->log( $prefix . ' ' . $message );
121 $this->persist( $key, $message );
122 }
123 }
124