TrackingSettings
5 years ago
views
5 years ago
AccessSettings.php
6 years ago
Admin.php
6 years ago
AdminSettings.php
6 years ago
AdminSettingsInterface.php
6 years ago
AdvancedSettings.php
6 years ago
Dashboard.php
6 years ago
ExclusionSettings.php
6 years ago
GeolocationSettings.php
6 years ago
GetStarted.php
6 years ago
Info.php
6 years ago
Marketplace.php
6 years ago
Menu.php
5 years ago
PrivacySettings.php
5 years ago
SafeModeMenu.php
6 years ago
Summary.php
5 years ago
SystemReport.php
5 years ago
TrackingSettings.php
5 years ago
Summary.php
133 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\Admin; |
| 11 | |
| 12 | use WpMatomo\Capabilities; |
| 13 | use WpMatomo\Report\Dates; |
| 14 | use WpMatomo\Report\Metadata; |
| 15 | use WpMatomo\Report\Renderer; |
| 16 | use WpMatomo\Settings; |
| 17 | |
| 18 | if ( ! defined( 'ABSPATH' ) ) { |
| 19 | exit; // if accessed directly |
| 20 | } |
| 21 | |
| 22 | class Summary { |
| 23 | |
| 24 | const NONCE_DASHBOARD = 'matomo_pin_dashboard'; |
| 25 | |
| 26 | /** |
| 27 | * @var Settings |
| 28 | */ |
| 29 | private $settings; |
| 30 | |
| 31 | /** |
| 32 | * @param Settings $settings |
| 33 | */ |
| 34 | public function __construct( $settings ) { |
| 35 | $this->settings = $settings; |
| 36 | } |
| 37 | |
| 38 | private function pin_if_submitted() { |
| 39 | if ( ! empty( $_GET[ 'pin' ] ) |
| 40 | && ! empty( $_GET[ 'report_uniqueid' ] ) |
| 41 | && ! empty( $_GET[ 'report_date' ] ) |
| 42 | && is_admin() |
| 43 | && check_admin_referer( self::NONCE_DASHBOARD ) |
| 44 | && is_user_logged_in() |
| 45 | && current_user_can( Capabilities::KEY_VIEW ) ) { |
| 46 | $unique_id = $_GET[ 'report_uniqueid' ]; |
| 47 | $date = $_GET[ 'report_date' ]; |
| 48 | |
| 49 | $dashobard = new Dashboard(); |
| 50 | if ($dashobard->is_valid_widget($unique_id, $date)) { |
| 51 | $dashobard->toggle_widget( $unique_id, $date ); |
| 52 | return true; |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | return false; |
| 57 | } |
| 58 | |
| 59 | public function show() { |
| 60 | $matomo_pinned = $this->pin_if_submitted(); |
| 61 | |
| 62 | $settings = $this->settings; |
| 63 | |
| 64 | $reports_to_show = $this->get_reports_to_show(); |
| 65 | $filter_limit = apply_filters( 'matomo_report_summary_filter_limit', 10 ); |
| 66 | |
| 67 | $report_dates_obj = new Dates(); |
| 68 | $report_dates = $report_dates_obj->get_supported_dates(); |
| 69 | |
| 70 | $report_date = Dates::YESTERDAY; |
| 71 | if ( isset( $_GET['report_date'] ) && isset( $report_dates[ $_GET['report_date'] ] ) ) { |
| 72 | $report_date = $_GET['report_date']; |
| 73 | } |
| 74 | |
| 75 | list( $report_period_selected, $report_date_selected ) = $report_dates_obj->detect_period_and_date( $report_date ); |
| 76 | |
| 77 | $is_tracking = $this->settings->is_tracking_enabled(); |
| 78 | |
| 79 | $matomo_dashboard = new Dashboard(); |
| 80 | |
| 81 | $wp_version = get_bloginfo( 'version' ); |
| 82 | $matomo_is_version_pre55 = empty($wp_version) || version_compare($wp_version, '5.5.0') === -1; |
| 83 | |
| 84 | include dirname( __FILE__ ) . '/views/summary.php'; |
| 85 | } |
| 86 | |
| 87 | private function get_reports_to_show() { |
| 88 | $reports_to_show = array( |
| 89 | 'VisitsSummary_get', |
| 90 | 'UserCountry_getCountry', |
| 91 | 'DevicesDetection_getType', |
| 92 | 'Resolution_getResolution', |
| 93 | 'DevicesDetection_getOsFamilies', |
| 94 | 'DevicesDetection_getBrowsers', |
| 95 | 'VisitTime_getVisitInformationPerServerTime', |
| 96 | 'Actions_get', |
| 97 | 'Actions_getPageTitles', |
| 98 | 'Actions_getEntryPageTitles', |
| 99 | 'Actions_getExitPageTitles', |
| 100 | 'Actions_getDownloads', |
| 101 | 'Actions_getOutlinks', |
| 102 | 'Referrers_getAll', |
| 103 | 'Referrers_getSocials', |
| 104 | 'Referrers_getCampaigns', |
| 105 | 'Goals_get', |
| 106 | ); |
| 107 | |
| 108 | if ( $this->settings->get_global_option( 'track_ecommerce' ) ) { |
| 109 | $reports_to_show[] = 'Goals_get_idGoal--ecommerceOrder'; |
| 110 | $reports_to_show[] = 'Goals_getItemsName'; |
| 111 | } |
| 112 | |
| 113 | $reports_to_show[] = Renderer::CUSTOM_UNIQUE_ID_VISITS_OVER_TIME; |
| 114 | $reports_to_show = apply_filters( 'matomo_report_summary_report_ids', $reports_to_show ); |
| 115 | |
| 116 | $report_metadata = array(); |
| 117 | $metadata = new Metadata(); |
| 118 | foreach ( $reports_to_show as $report_unique_id ) { |
| 119 | $report = $metadata->find_report_by_unique_id( $report_unique_id ); |
| 120 | if ( $report ) { |
| 121 | $report_page = $metadata->find_report_page_params_by_report_metadata( $report ); |
| 122 | if ( $report_page ) { |
| 123 | $report['page'] = $report_page; |
| 124 | } |
| 125 | $report_metadata[] = $report; |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | return $report_metadata; |
| 130 | } |
| 131 | |
| 132 | } |
| 133 |