View source
<?php
namespace Drupal\matomo\Form;
use Drupal\Component\Utility\UrlHelper;
use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\Url;
use Drupal\matomo\MatomoInterface;
use GuzzleHttp\Exception\RequestException;
use GuzzleHttp\Client;
use Symfony\Component\DependencyInjection\ContainerInterface;
class MatomoAdminSettingsForm extends ConfigFormBase {
protected $moduleHandler;
protected $currentUser;
protected $httpClient;
public function __construct(ConfigFactoryInterface $config_factory, AccountInterface $currentUser, ModuleHandlerInterface $moduleHandler, Client $httpClient) {
parent::__construct($config_factory);
$this->currentUser = $currentUser;
$this->moduleHandler = $moduleHandler;
$this->httpClient = $httpClient;
}
public function getFormId() {
return 'matomo_admin_settings';
}
protected function getEditableConfigNames() {
return [
'matomo.settings',
];
}
public function buildForm(array $form, FormStateInterface $form_state) {
$config = $this
->config('matomo.settings');
$form['general'] = [
'#type' => 'details',
'#title' => $this
->t('General settings'),
'#open' => TRUE,
];
$form['general']['matomo_site_id'] = [
'#default_value' => $config
->get('site_id'),
'#description' => $this
->t('The user account number is unique to the websites domain. Click the <strong>Settings</strong> link in your Matomo account, then the <strong>Websites</strong> tab and enter the appropriate site <strong>ID</strong> into this field.'),
'#maxlength' => 20,
'#required' => TRUE,
'#size' => 15,
'#title' => $this
->t('Matomo site ID'),
'#type' => 'textfield',
];
$form['general']['matomo_url_http'] = [
'#default_value' => $config
->get('url_http'),
'#description' => $this
->t('The URL to your Matomo base directory. Example: "http://www.example.com/matomo/".'),
'#maxlength' => 255,
'#required' => TRUE,
'#size' => 80,
'#title' => $this
->t('Matomo HTTP URL'),
'#type' => 'textfield',
];
$form['general']['matomo_url_https'] = [
'#default_value' => $config
->get('url_https'),
'#description' => $this
->t('The URL to your Matomo base directory with SSL certificate installed. Required if you track a SSL enabled website. Example: "https://www.example.com/matomo/".'),
'#maxlength' => 255,
'#size' => 80,
'#title' => $this
->t('Matomo HTTPS URL'),
'#type' => 'textfield',
];
$form['general']['matomo_url_skiperror'] = [
'#type' => 'hidden',
'#default_value' => FALSE,
];
$form['tracking_scope'] = [
'#type' => 'vertical_tabs',
'#title' => $this
->t('Tracking scope'),
'#attached' => [
'library' => [
'matomo/matomo.admin',
],
],
];
$form['tracking']['domain_tracking'] = [
'#type' => 'details',
'#title' => $this
->t('Domains'),
'#group' => 'tracking_scope',
];
global $cookie_domain;
$multiple_sub_domains = [];
foreach ([
'www',
'app',
'shop',
] as $subdomain) {
if (count(explode('.', $cookie_domain)) > 2 && !is_numeric(str_replace('.', '', $cookie_domain))) {
$multiple_sub_domains[] = $subdomain . $cookie_domain;
}
else {
$multiple_sub_domains[] = $subdomain . '.example.com';
}
}
$form['tracking']['domain_tracking']['matomo_domain_mode'] = [
'#type' => 'radios',
'#title' => $this
->t('What are you tracking?'),
'#options' => [
0 => $this
->t('A single domain (default)'),
1 => $this
->t('One domain with multiple subdomains'),
],
0 => [
'#description' => $this
->t('Domain: @domain', [
'@domain' => $_SERVER['HTTP_HOST'],
]),
],
1 => [
'#description' => $this
->t('Examples: @domains', [
'@domains' => implode(', ', $multiple_sub_domains),
]),
],
'#default_value' => $config
->get('domain_mode'),
];
$account = $this->currentUser;
$php_access = $account
->hasPermission('use php for matomo tracking visibility');
$visibility_request_path_pages = $config
->get('visibility.request_path_pages');
$form['tracking']['page_visibility_settings'] = [
'#type' => 'details',
'#title' => $this
->t('Pages'),
'#group' => 'tracking_scope',
];
if ($config
->get('visibility.request_path_mode') == 2 && !$php_access) {
$form['tracking']['page_visibility_settings'] = [];
$form['tracking']['page_visibility_settings']['matomo_visibility_request_path_mode'] = [
'#type' => 'value',
'#value' => 2,
];
$form['tracking']['page_visibility_settings']['matomo_visibility_request_path_pages'] = [
'#type' => 'value',
'#value' => $visibility_request_path_pages,
];
}
else {
$options = [
$this
->t('Every page except the listed pages'),
$this
->t('The listed pages only'),
];
$description = $this
->t("Specify pages by using their paths. Enter one path per line. The '*' character is a wildcard. Example paths are %blog for the blog page and %blog-wildcard for every personal blog. %front is the front page.", [
'%blog' => '/blog',
'%blog-wildcard' => '/blog/*',
'%front' => '<front>',
]);
if ($this->moduleHandler
->moduleExists('php') && $php_access) {
$options[] = $this
->t('Pages on which this PHP code returns <code>TRUE</code> (experts only)');
$title = $this
->t('Pages or PHP code');
$description .= ' ' . $this
->t('If the PHP option is chosen, enter PHP code between %php. Note that executing incorrect PHP code can break your Drupal site.', [
'%php' => '<?php ?>',
]);
}
else {
$title = $this
->t('Pages');
}
$form['tracking']['page_visibility_settings']['matomo_visibility_request_path_mode'] = [
'#type' => 'radios',
'#title' => $this
->t('Add tracking to specific pages'),
'#options' => $options,
'#default_value' => $config
->get('visibility.request_path_mode'),
];
$form['tracking']['page_visibility_settings']['matomo_visibility_request_path_pages'] = [
'#type' => 'textarea',
'#title' => $title,
'#title_display' => 'invisible',
'#default_value' => !empty($visibility_request_path_pages) ? $visibility_request_path_pages : '',
'#description' => $description,
'#rows' => 10,
];
}
$visibility_user_role_roles = $config
->get('visibility.user_role_roles');
$form['tracking']['role_visibility_settings'] = [
'#type' => 'details',
'#title' => $this
->t('Roles'),
'#group' => 'tracking_scope',
];
$form['tracking']['role_visibility_settings']['matomo_visibility_user_role_mode'] = [
'#type' => 'radios',
'#title' => $this
->t('Add tracking for specific roles'),
'#options' => [
$this
->t('Add to the selected roles only'),
$this
->t('Add to every role except the selected ones'),
],
'#default_value' => $config
->get('visibility.user_role_mode'),
];
$form['tracking']['role_visibility_settings']['matomo_visibility_user_role_roles'] = [
'#type' => 'checkboxes',
'#title' => $this
->t('Roles'),
'#default_value' => !empty($visibility_user_role_roles) ? $visibility_user_role_roles : [],
'#options' => array_map('\\Drupal\\Component\\Utility\\Html::escape', user_role_names()),
'#description' => $this
->t('If none of the roles are selected, all users will be tracked. If a user has any of the roles checked, that user will be tracked (or excluded, depending on the setting above).'),
];
$visibility_user_account_mode = $config
->get('visibility.user_account_mode');
$form['tracking']['user_visibility_settings'] = [
'#type' => 'details',
'#title' => $this
->t('Users'),
'#group' => 'tracking_scope',
];
$t_permission = [
'%permission' => $this
->t('Opt-in or out of tracking'),
];
$form['tracking']['user_visibility_settings']['matomo_visibility_user_account_mode'] = [
'#type' => 'radios',
'#title' => $this
->t('Allow users to customize tracking on their account page'),
'#options' => [
0 => $this
->t('No customization allowed'),
1 => $this
->t('Tracking on by default, users with %permission permission can opt out', $t_permission),
2 => $this
->t('Tracking off by default, users with %permission permission can opt in', $t_permission),
],
'#default_value' => !empty($visibility_user_account_mode) ? $visibility_user_account_mode : 0,
];
$form['tracking']['user_visibility_settings']['matomo_trackuserid'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Track User ID'),
'#default_value' => $config
->get('track.userid'),
'#description' => $this
->t('User ID enables the analysis of groups of sessions, across devices, using a unique, persistent, and non-personally identifiable ID string representing a user. <a href=":url">Learn more about the benefits of using User ID</a>.', [
':url' => 'https://matomo.org/docs/user-id/',
]),
];
$form['tracking']['linktracking'] = [
'#type' => 'details',
'#title' => $this
->t('Links and downloads'),
'#group' => 'tracking_scope',
];
$form['tracking']['linktracking']['matomo_trackmailto'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Track clicks on mailto links'),
'#default_value' => $config
->get('track.mailto'),
];
$form['tracking']['linktracking']['matomo_trackfiles'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Track clicks on outbound links and downloads (clicks on file links) for the following extensions'),
'#default_value' => $config
->get('track.files'),
];
$form['tracking']['linktracking']['matomo_trackfiles_extensions'] = [
'#title' => $this
->t('List of download file extensions'),
'#title_display' => 'invisible',
'#type' => 'textfield',
'#default_value' => $config
->get('track.files_extensions'),
'#description' => $this
->t('A file extension list separated by the | character that will be tracked as download when clicked. Regular expressions are supported. For example: @extensions', [
'@extensions' => MatomoInterface::MATOMO_TRACKFILES_EXTENSIONS,
]),
'#maxlength' => 500,
'#states' => [
'enabled' => [
':input[name="matomo_trackfiles"]' => [
'checked' => TRUE,
],
],
'required' => [
':input[name="matomo_trackfiles"]' => [
'checked' => TRUE,
],
],
],
];
$colorbox_dependencies = '<div class="admin-requirements">';
$colorbox_dependencies .= $this
->t('Requires: @module-list', [
'@module-list' => $this->moduleHandler
->moduleExists('colorbox') ? $this
->t('@module (<span class="admin-enabled">enabled</span>)', [
'@module' => 'Colorbox',
]) : $this
->t('@module (<span class="admin-missing">disabled</span>)', [
'@module' => 'Colorbox',
]),
]);
$colorbox_dependencies .= '</div>';
$form['tracking']['linktracking']['matomo_trackcolorbox'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Track content in colorbox modal dialogs'),
'#description' => $this
->t('Enable to track the content shown in colorbox modal windows.') . $colorbox_dependencies,
'#default_value' => $config
->get('track.colorbox'),
'#disabled' => $this->moduleHandler
->moduleExists('colorbox') ? FALSE : TRUE,
];
$form['tracking']['messagetracking'] = [
'#type' => 'details',
'#title' => $this
->t('Messages'),
'#group' => 'tracking_scope',
];
$track_messages = $config
->get('track.messages');
$form['tracking']['messagetracking']['matomo_trackmessages'] = [
'#type' => 'checkboxes',
'#title' => $this
->t('Track messages of type'),
'#default_value' => !empty($track_messages) ? $track_messages : [],
'#description' => $this
->t('This will track the selected message types shown to users. Tracking of form validation errors may help you identifying usability issues in your site. Every message is tracked as one individual event. Messages from excluded pages cannot be tracked.'),
'#options' => [
'status' => $this
->t('Status message'),
'warning' => $this
->t('Warning message'),
'error' => $this
->t('Error message'),
],
];
$form['tracking']['search'] = [
'#type' => 'details',
'#title' => $this
->t('Search'),
'#group' => 'tracking_scope',
];
$site_search_dependencies = '<div class="admin-requirements">';
$site_search_dependencies .= $this
->t('Requires: @module-list', [
'@module-list' => $this->moduleHandler
->moduleExists('search') ? $this
->t('@module (<span class="admin-enabled">enabled</span>)', [
'@module' => 'Search',
]) : $this
->t('@module (<span class="admin-missing">disabled</span>)', [
'@module' => 'Search',
]),
]);
$site_search_dependencies .= '</div>';
$form['tracking']['search']['matomo_site_search'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Track internal search'),
'#description' => $this
->t('If checked, internal search keywords are tracked.') . $site_search_dependencies,
'#default_value' => $config
->get('track.site_search'),
'#disabled' => $this->moduleHandler
->moduleExists('search') ? FALSE : TRUE,
];
$form['tracking']['privacy'] = [
'#type' => 'details',
'#title' => $this
->t('Privacy'),
'#group' => 'tracking_scope',
];
$form['tracking']['privacy']['matomo_privacy_donottrack'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Universal web tracking opt-out'),
'#description' => $this
->t('If enabled and your Matomo server receives the <a href=":donottrack">Do-Not-Track</a> header from the client browser, the Matomo server will not track the user. Compliance with Do Not Track could be purely voluntary, enforced by industry self-regulation, or mandated by state or federal law. Please accept your visitors privacy. If they have opt-out from tracking and advertising, you should accept their personal decision.', [
':donottrack' => 'https://www.eff.org/issues/do-not-track',
]),
'#default_value' => $config
->get('privacy.donottrack'),
];
$form['tracking']['privacy']['matomo_privacy_disablecookies'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Disable cookies'),
'#description' => $this
->t('Matomo uses <a href=":cookie">cookies</a> to store some information about visitors between visits. Enable to disable all Matomo tracking cookies. When cookies are disabled, some data in Matomo will be <a href=":disablecookies">less accurate</a>.', [
':cookie' => Url::fromUri('https://en.wikipedia.org/wiki/HTTP_cookie')
->toString(),
':disablecookies' => Url::fromUri('https://matomo.org/faq/general/faq_156/')
->toString(),
]),
'#default_value' => $config
->get('privacy.disablecookies'),
];
$form['page_title_hierarchy'] = [
'#type' => 'details',
'#title' => $this
->t('Page titles hierarchy'),
'#description' => $this
->t('This functionality enables a dynamically expandable tree view of your site page titles in your Matomo statistics. See in Matomo statistics under <em>Actions</em> > <em>Page titles</em>.'),
'#group' => 'tracking_scope',
];
$form['page_title_hierarchy']['matomo_page_title_hierarchy'] = [
'#type' => 'checkbox',
'#title' => $this
->t("Show page titles as hierarchy like breadcrumbs"),
'#description' => $this
->t('By default Matomo tracks the current page title and shows you a flat list of the most popular titles. This enables a breadcrumbs like tree view.'),
'#default_value' => $config
->get('page_title_hierarchy'),
];
$form['page_title_hierarchy']['matomo_page_title_hierarchy_exclude_home'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Hide home page from hierarchy'),
'#description' => $this
->t('If enabled, the "Home" item will be removed from the hierarchy to flatten the structure in the Matomo statistics. Hits to the home page will still be counted, but for other pages the hierarchy will start at level Home+1.'),
'#default_value' => $config
->get('page_title_hierarchy_exclude_home'),
];
$form['matomo_custom_var'] = [
'#description' => $this
->t('You can add Matomos <a href=":custom_var_documentation">Custom Variables</a> here. These will be added to every page that Matomo tracking code appears on. Custom variable names and values are limited to 200 characters in length. Keep the names and values as short as possible and expect long values to get trimmed. You may use tokens in custom variable names and values. Global and user tokens are always available; on node pages, node tokens are also available.', [
':custom_var_documentation' => 'https://matomo.org/docs/custom-variables/',
]),
'#title' => $this
->t('Custom variables'),
'#tree' => TRUE,
'#type' => 'details',
];
$form['matomo_custom_var']['slots'] = [
'#type' => 'table',
'#header' => [
[
'data' => $this
->t('Slot'),
],
[
'data' => $this
->t('Name'),
],
[
'data' => $this
->t('Value'),
],
[
'data' => $this
->t('Scope'),
],
],
];
$matomo_custom_vars = $config
->get('custom.variable');
for ($i = 1; $i < 6; $i++) {
$form['matomo_custom_var']['slots'][$i]['slot'] = [
'#default_value' => $i,
'#description' => $this
->t('Slot number'),
'#disabled' => TRUE,
'#size' => 1,
'#title' => $this
->t('Custom variable slot #@slot', [
'@slot' => $i,
]),
'#title_display' => 'invisible',
'#type' => 'textfield',
];
$form['matomo_custom_var']['slots'][$i]['name'] = [
'#default_value' => isset($matomo_custom_vars[$i]['name']) ? $matomo_custom_vars[$i]['name'] : '',
'#description' => $this
->t('The custom variable name.'),
'#maxlength' => 100,
'#size' => 20,
'#title' => $this
->t('Custom variable name #@slot', [
'@slot' => $i,
]),
'#title_display' => 'invisible',
'#type' => 'textfield',
];
$form['matomo_custom_var']['slots'][$i]['value'] = [
'#default_value' => isset($matomo_custom_vars[$i]['value']) ? $matomo_custom_vars[$i]['value'] : '',
'#description' => $this
->t('The custom variable value.'),
'#maxlength' => 255,
'#title' => $this
->t('Custom variable value #@slot', [
'@slot' => $i,
]),
'#title_display' => 'invisible',
'#type' => 'textfield',
'#element_validate' => [
[
get_class($this),
'tokenElementValidate',
],
],
'#token_types' => [
'node',
],
];
if ($this->moduleHandler
->moduleExists('token')) {
$form['matomo_custom_var']['slots'][$i]['value']['#element_validate'][] = 'token_element_validate';
}
$form['matomo_custom_var']['slots'][$i]['scope'] = [
'#default_value' => isset($matomo_custom_vars[$i]['scope']) ? $matomo_custom_vars[$i]['scope'] : '',
'#description' => $this
->t('The scope for the custom variable.'),
'#title' => $this
->t('Custom variable slot #@slot', [
'@slot' => $i,
]),
'#title_display' => 'invisible',
'#type' => 'select',
'#options' => [
'visit' => $this
->t('Visit'),
'page' => $this
->t('Page'),
],
];
}
$form['matomo_custom_var']['matomo_custom_var_description'] = [
'#type' => 'item',
'#description' => $this
->t("You can supplement Matomos' basic IP address tracking of visitors by segmenting users based on custom variables. Make sure you will not associate (or permit any third party to associate) any data gathered from your websites (or such third parties' websites) with any personally identifying information from any source as part of your use (or such third parties' use) of the Matomo' service."),
];
if ($this->moduleHandler
->moduleExists('token')) {
$form['matomo_custom_var']['matomo_custom_var_token_tree'] = [
'#theme' => 'token_tree_link',
'#token_types' => [
'node',
],
];
}
$form['advanced'] = [
'#type' => 'details',
'#title' => $this
->t('Advanced settings'),
'#open' => FALSE,
];
$form['advanced']['matomo_cache'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Locally cache tracking code file'),
'#description' => $this
->t('If checked, the tracking code file is retrieved from your Matomo site and cached locally. It is updated daily to ensure updates to tracking code are reflected in the local copy.'),
'#default_value' => $config
->get('cache'),
];
if ($this->moduleHandler
->moduleExists('content_translation')) {
$form['advanced']['matomo_translation_set'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Track translation sets as one unit'),
'#description' => $this
->t('When a node is part of a translation set, record statistics for the originating node instead. This allows for a translation set to be treated as a single unit.'),
'#default_value' => $config
->get('translation_set'),
];
}
$user_access_add_js_snippets = !$this
->currentUser()
->hasPermission('add js snippets for matomo');
$user_access_add_js_snippets_permission_warning = $user_access_add_js_snippets ? ' <em>' . $this
->t('This field has been disabled because you do not have sufficient permissions to edit it.') . '</em>' : '';
$form['advanced']['codesnippet'] = [
'#type' => 'details',
'#title' => $this
->t('Custom JavaScript code'),
'#open' => TRUE,
'#description' => $this
->t('You can add custom Matomo <a href=":snippets">code snippets</a> here. These will be added to every page that Matomo appears on. <strong>Do not include the <script> tags</strong>, and always end your code with a semicolon (;).', [
':snippets' => 'https://matomo.org/docs/javascript-tracking/',
]),
];
$form['advanced']['codesnippet']['matomo_codesnippet_before'] = [
'#type' => 'textarea',
'#title' => $this
->t('Code snippet (before)'),
'#default_value' => $config
->get('codesnippet.before'),
'#disabled' => $user_access_add_js_snippets,
'#rows' => 5,
'#description' => $this
->t('Code in this textarea will be added <strong>before</strong> _paq.push(["trackPageView"]).') . $user_access_add_js_snippets_permission_warning,
];
$form['advanced']['codesnippet']['matomo_codesnippet_after'] = [
'#type' => 'textarea',
'#title' => $this
->t('Code snippet (after)'),
'#default_value' => $config
->get('codesnippet.after'),
'#disabled' => $user_access_add_js_snippets,
'#rows' => 5,
'#description' => $this
->t('Code in this textarea will be added <strong>after</strong> _paq.push(["trackPageView"]). This is useful if you\'d like to track a site in two accounts.') . $user_access_add_js_snippets_permission_warning,
];
return parent::buildForm($form, $form_state);
}
public function validateForm(array &$form, FormStateInterface $form_state) {
parent::validateForm($form, $form_state);
foreach ($form_state
->getValue([
'matomo_custom_var',
'slots',
]) as $custom_var) {
$form_state
->setValue([
'matomo_custom_var',
'slots',
$custom_var['slot'],
'name',
], trim($custom_var['name']));
$form_state
->setValue([
'matomo_custom_var',
'slots',
$custom_var['slot'],
'value',
], trim($custom_var['value']));
if (empty($custom_var['name']) && !empty($custom_var['value'])) {
$form_state
->setErrorByName("matomo_custom_var][slots][" . $custom_var['slot'] . "][name", $this
->t('The custom variable @slot-number requires a <em>Name</em> if a <em>Value</em> has been provided.', [
'@slot-number' => $custom_var['slot'],
]));
}
elseif (!empty($custom_var['name']) && empty($custom_var['value'])) {
$form_state
->setErrorByName("matomo_custom_var][slots][" . $custom_var['slot'] . "][value", $this
->t('The custom variable @slot-number requires a <em>Value</em> if a <em>Name</em> has been provided.', [
'@slot-number' => $custom_var['slot'],
]));
}
}
$form_state
->setValue('matomo_custom_var', $form_state
->getValue([
'matomo_custom_var',
'slots',
]));
$form_state
->setValue('matomo_site_id', trim($form_state
->getValue('matomo_site_id')));
$form_state
->setValue('matomo_visibility_request_path_pages', trim($form_state
->getValue('matomo_visibility_request_path_pages')));
$form_state
->setValue('matomo_codesnippet_before', trim($form_state
->getValue('matomo_codesnippet_before')));
$form_state
->setValue('matomo_codesnippet_after', trim($form_state
->getValue('matomo_codesnippet_after')));
$form_state
->setValue('matomo_visibility_user_role_roles', array_filter($form_state
->getValue('matomo_visibility_user_role_roles')));
$form_state
->setValue('matomo_trackmessages', array_filter($form_state
->getValue('matomo_trackmessages')));
if (!preg_match('/^\\d{1,}$/', $form_state
->getValue('matomo_site_id'))) {
$form_state
->setErrorByName('matomo_site_id', $this
->t('A valid Matomo site ID is an integer only.'));
}
$url = $form_state
->getValue('matomo_url_http');
if ($url && substr($url, -strlen('/')) !== '/') {
$url .= '/';
$form_state
->setValueForElement($form['general']['matomo_url_http'], $url);
}
$url = $url . 'matomo.php';
$skip_error_check = $form_state
->getValue('matomo_url_skiperror');
try {
$result = $this->httpClient
->get($url);
if (!$skip_error_check && $result
->getStatusCode() != 200) {
$form_state
->setErrorByName('matomo_url_http', $this
->t('The validation of "@url" failed with error "@error" (HTTP code @code).', [
'@url' => UrlHelper::filterBadProtocol($url),
'@error' => $result
->getReasonPhrase(),
'@code' => $result
->getStatusCode(),
]));
}
} catch (RequestException $exception) {
if (!$skip_error_check) {
$form_state
->setErrorByName('matomo_url_http', $this
->t('The validation of "@url" failed with an exception "@error" (HTTP code @code).', [
'@url' => UrlHelper::filterBadProtocol($url),
'@error' => $exception
->getMessage(),
'@code' => $exception
->getCode(),
]));
}
}
$matomo_url_https = $form_state
->getValue('matomo_url_https');
if (!empty($matomo_url_https)) {
$url = $matomo_url_https;
if ($url && substr($url, -strlen('/')) !== '/') {
$url .= '/';
$form_state
->setValueForElement($form['general']['matomo_url_https'], $url);
}
$url = $url . 'matomo.php';
try {
$result = $this->httpClient
->get($url);
if (!$skip_error_check && $result
->getStatusCode() != 200) {
$form_state
->setErrorByName('matomo_url_https', $this
->t('The validation of "@url" failed with error "@error" (HTTP code @code).', [
'@url' => UrlHelper::filterBadProtocol($url),
'@error' => $result
->getReasonPhrase(),
'@code' => $result
->getStatusCode(),
]));
}
} catch (RequestException $exception) {
if (!$skip_error_check) {
$form_state
->setErrorByName('matomo_url_https', $this
->t('The validation of "@url" failed with an exception "@error" (HTTP code @code).', [
'@url' => UrlHelper::filterBadProtocol($url),
'@error' => $exception
->getMessage(),
'@code' => $exception
->getCode(),
]));
}
}
}
if ($form_state
->getValue('matomo_visibility_request_path_mode') != 2 && !empty($form_state
->getValue('matomo_visibility_request_path_pages'))) {
$pages = preg_split('/(\\r\\n?|\\n)/', $form_state
->getValue('matomo_visibility_request_path_pages'));
foreach ($pages as $page) {
if (strpos($page, '/') !== 0 && $page !== '<front>') {
$form_state
->setErrorByName('matomo_visibility_request_path_pages', $this
->t('Path "@page" not prefixed with slash.', [
'@page' => $page,
]));
break;
}
}
}
if ($form_state
->isValueEmpty('matomo_cache') && $form['advanced']['matomo_cache']['#default_value']) {
matomo_clear_js_cache();
}
if (preg_match('/(.*)<\\/?script(.*)>(.*)/i', $form_state
->getValue('matomo_codesnippet_before'))) {
$form_state
->setErrorByName('matomo_codesnippet_before', $this
->t('Do not include the <script> tags in the javascript code snippets.'));
}
if (preg_match('/(.*)<\\/?script(.*)>(.*)/i', $form_state
->getValue('matomo_codesnippet_after'))) {
$form_state
->setErrorByName('matomo_codesnippet_after', $this
->t('Do not include the <script> tags in the javascript code snippets.'));
}
}
public function submitForm(array &$form, FormStateInterface $form_state) {
$config = $this
->config('matomo.settings');
$config
->set('site_id', $form_state
->getValue('matomo_site_id'))
->set('url_http', $form_state
->getValue('matomo_url_http'))
->set('url_https', $form_state
->getValue('matomo_url_https'))
->set('codesnippet.before', $form_state
->getValue('matomo_codesnippet_before'))
->set('codesnippet.after', $form_state
->getValue('matomo_codesnippet_after'))
->set('custom.variable', $form_state
->getValue('matomo_custom_var'))
->set('domain_mode', $form_state
->getValue('matomo_domain_mode'))
->set('track.files', $form_state
->getValue('matomo_trackfiles'))
->set('track.files_extensions', $form_state
->getValue('matomo_trackfiles_extensions'))
->set('track.colorbox', $form_state
->getValue('matomo_trackcolorbox'))
->set('track.userid', $form_state
->getValue('matomo_trackuserid'))
->set('track.mailto', $form_state
->getValue('matomo_trackmailto'))
->set('track.messages', $form_state
->getValue('matomo_trackmessages'))
->set('track.site_search', $form_state
->getValue('matomo_site_search'))
->set('page_title_hierarchy', $form_state
->getValue('matomo_page_title_hierarchy'))
->set('page_title_hierarchy_exclude_home', $form_state
->getValue('matomo_page_title_hierarchy_exclude_home'))
->set('privacy.donottrack', $form_state
->getValue('matomo_privacy_donottrack'))
->set('privacy.disablecookies', $form_state
->getValue('matomo_privacy_disablecookies'))
->set('cache', $form_state
->getValue('matomo_cache'))
->set('visibility.request_path_mode', $form_state
->getValue('matomo_visibility_request_path_mode'))
->set('visibility.request_path_pages', $form_state
->getValue('matomo_visibility_request_path_pages'))
->set('visibility.user_account_mode', $form_state
->getValue('matomo_visibility_user_account_mode'))
->set('visibility.user_role_mode', $form_state
->getValue('matomo_visibility_user_role_mode'))
->set('visibility.user_role_roles', $form_state
->getValue('matomo_visibility_user_role_roles'))
->save();
if ($form_state
->hasValue('matomo_translation_set')) {
$config
->set('translation_set', $form_state
->getValue('matomo_translation_set'))
->save();
}
parent::submitForm($form, $form_state);
}
public static function tokenElementValidate(&$element, FormStateInterface $form_state) {
$value = isset($element['#value']) ? $element['#value'] : $element['#default_value'];
if (!mb_strlen($value)) {
return $element;
}
$tokens = \Drupal::token()
->scan($value);
$invalid_tokens = static::getForbiddenTokens($tokens);
if ($invalid_tokens) {
$form_state
->setError($element, t('The %element-title is using the following forbidden tokens with personal identifying information: @invalid-tokens.', [
'%element-title' => $element['#title'],
'@invalid-tokens' => implode(', ', $invalid_tokens),
]));
}
return $element;
}
protected static function getForbiddenTokens(array $value) {
$invalid_tokens = [];
$value_tokens = is_string($value) ? \Drupal::token()
->scan($value) : $value;
foreach ($value_tokens as $tokens) {
if (array_filter($tokens, 'static::containsForbiddenToken')) {
$invalid_tokens = array_merge($invalid_tokens, array_values($tokens));
}
}
array_unique($invalid_tokens);
return $invalid_tokens;
}
protected static function containsForbiddenToken($token_string) {
$token_blocklist = [
':account-name]',
':author]',
':author:edit-url]',
':author:url]',
':author:path]',
':current-user]',
':current-user:original]',
':display-name]',
':fid]',
':mail]',
'user:name]',
'author:name]',
'owner:name]',
':uid]',
':one-time-login-url]',
':owner]',
':owner:cancel-url]',
':owner:edit-url]',
':owner:url]',
':owner:path]',
'user:cancel-url]',
'user:edit-url]',
'user:url]',
'user:path]',
'user:picture]',
':first-name]',
':last-name]',
':name-line]',
':mc-address]',
':thoroughfare]',
':premise]',
':name-raw]',
':ip-address]',
];
return preg_match('/' . implode('|', array_map('preg_quote', $token_blocklist)) . '/i', $token_string);
}
public static function create(ContainerInterface $container) {
return new static($container
->get('config.factory'), $container
->get('current_user'), $container
->get('module_handler'), $container
->get('http_client'));
}
}