Projet

Général

Profil

Paste
Télécharger (27,2 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / piwik / piwik.admin.inc @ 0ccfec7f

1 85ad3d82 Assos Assos
<?php
2
3
/**
4
 * @file
5
 * Administrative page callbacks for the piwik module.
6
 */
7
8
/**
9
 * Implements hook_admin_settings() for configuring the module.
10
 */
11
function piwik_admin_settings_form($form_state) {
12
  $form['account'] = array(
13
    '#type' => 'fieldset',
14
    '#title' => t('General settings'),
15
  );
16
17
  $form['account']['piwik_site_id'] = array(
18
    '#type' => 'textfield',
19
    '#title' => t('Piwik site ID'),
20
    '#default_value' => variable_get('piwik_site_id', ''),
21
    '#size' => 15,
22
    '#maxlength' => 20,
23
    '#required' => TRUE,
24
    '#description' => t('The user account number is unique to the websites domain. Click the <strong>Settings</strong> link in your Piwik account, then the <strong>Websites</strong> tab and enter the appropriate site <strong>ID</strong> into this field.'),
25
  );
26
  $form['account']['piwik_url_http'] = array(
27
    '#type' => 'textfield',
28
    '#title' => t('Piwik HTTP URL'),
29
    '#default_value' => variable_get('piwik_url_http', ''),
30
    '#size' => 80,
31
    '#maxlength' => 255,
32
    '#required' => TRUE,
33
    '#description' => t('The URL to your Piwik base directory. Example: "http://www.example.com/piwik/".'),
34
  );
35
  $form['account']['piwik_url_https'] = array(
36
    '#type' => 'textfield',
37
    '#title' => t('Piwik HTTPS URL'),
38
    '#default_value' => variable_get('piwik_url_https', ''),
39
    '#size' => 80,
40
    '#maxlength' => 255,
41
    '#description' => t('The URL to your Piwik base directory with SSL certificate installed. Required if you track a SSL enabled website. Example: "https://www.example.com/piwik/".'),
42
  );
43 2f8c40f0 Assos Assos
  // Required for automated form save testing only.
44
  $form['account']['piwik_url_skiperror'] = array(
45
    '#type' => 'hidden',
46
    '#default_value' => FALSE,
47
  );
48 85ad3d82 Assos Assos
49
  // Visibility settings.
50
  $form['tracking_title'] = array(
51
    '#type' => 'item',
52
    '#title' => t('Tracking scope'),
53
  );
54
  $form['tracking'] = array(
55
    '#type' => 'vertical_tabs',
56
    '#attached' => array(
57
      'js' => array(drupal_get_path('module', 'piwik') . '/piwik.admin.js'),
58
    ),
59
  );
60
61
  $form['tracking']['domain_tracking'] = array(
62
    '#type' => 'fieldset',
63
    '#title' => t('Domains'),
64
  );
65
66
  global $cookie_domain;
67
  $multiple_sub_domains = array();
68
  foreach (array('www', 'app', 'shop') as $subdomain) {
69
    if (count(explode('.', $cookie_domain)) > 2 && !is_numeric(str_replace('.', '', $cookie_domain))) {
70
      $multiple_sub_domains[] = $subdomain . $cookie_domain;
71
    }
72
    // IP addresses or localhost.
73
    else {
74
      $multiple_sub_domains[] = $subdomain . '.example.com';
75
    }
76
  }
77
78
  $form['tracking']['domain_tracking']['piwik_domain_mode'] = array(
79
    '#type' => 'radios',
80
    '#title' => t('What are you tracking?'),
81
    '#options' => array(
82
      0 => t('A single domain (default)') . '<div class="description">' . t('Domain: @domain', array('@domain' => $_SERVER['HTTP_HOST'])) . '</div>',
83
      1 => t('One domain with multiple subdomains') . '<div class="description">' . t('Examples: @domains', array('@domains' => implode(', ', $multiple_sub_domains))) . '</div>',
84
    ),
85
    '#default_value' => variable_get('piwik_domain_mode', 0),
86
  );
87
88
  // Page specific visibility configurations.
89
  $php_access = user_access('use PHP for tracking visibility');
90
  $visibility = variable_get('piwik_visibility_pages', 0);
91 e9f59589 Assos Assos
  $pages = variable_get('piwik_pages', PIWIK_PAGES);
92 85ad3d82 Assos Assos
93
  $form['tracking']['page_vis_settings'] = array(
94
    '#type' => 'fieldset',
95
    '#title' => t('Pages'),
96
    '#collapsible' => TRUE,
97
    '#collapsed' => TRUE,
98
  );
99
100
  if ($visibility == 2 && !$php_access) {
101
    $form['tracking']['page_vis_settings'] = array();
102 2f8c40f0 Assos Assos
    $form['tracking']['page_vis_settings']['piwik_visibility_pages'] = array('#type' => 'value', '#value' => 2);
103
    $form['tracking']['page_vis_settings']['piwik_pages'] = array('#type' => 'value', '#value' => $pages);
104 85ad3d82 Assos Assos
  }
105
  else {
106
    $options = array(
107
      t('Every page except the listed pages'),
108
      t('The listed pages only')
109
    );
110
    $description = 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.", array('%blog' => 'blog', '%blog-wildcard' => 'blog/*', '%front' => '<front>'));
111
112
    if (module_exists('php') && $php_access) {
113
      $options[] = t('Pages on which this PHP code returns <code>TRUE</code> (experts only)');
114
      $title = t('Pages or PHP code');
115
      $description .= ' ' . t('If the PHP option is chosen, enter PHP code between %php. Note that executing incorrect PHP code can break your Drupal site.', array('%php' => '<?php ?>'));
116
    }
117
    else {
118
      $title = t('Pages');
119
    }
120
    $form['tracking']['page_vis_settings']['piwik_visibility_pages'] = array(
121
      '#type' => 'radios',
122
      '#title' => t('Add tracking to specific pages'),
123
      '#options' => $options,
124
      '#default_value' => $visibility,
125
    );
126
    $form['tracking']['page_vis_settings']['piwik_pages'] = array(
127
      '#type' => 'textarea',
128
      '#title' => $title,
129
      '#title_display' => 'invisible',
130
      '#default_value' => $pages,
131
      '#description' => $description,
132
      '#rows' => 10,
133
    );
134
  }
135
136
  // Render the role overview.
137
  $form['tracking']['role_vis_settings'] = array(
138
    '#type' => 'fieldset',
139
    '#title' => t('Roles'),
140
  );
141
142
  $form['tracking']['role_vis_settings']['piwik_visibility_roles'] = array(
143
    '#type' => 'radios',
144
    '#title' => t('Add tracking for specific roles'),
145
    '#options' => array(
146
      t('Add to the selected roles only'),
147
      t('Add to every role except the selected ones'),
148
    ),
149
    '#default_value' => variable_get('piwik_visibility_roles', 0),
150
  );
151
152
  $role_options = array_map('check_plain', user_roles());
153
  $form['tracking']['role_vis_settings']['piwik_roles'] = array(
154
    '#type' => 'checkboxes',
155
    '#title' => t('Roles'),
156
    '#default_value' => variable_get('piwik_roles', array()),
157
    '#options' => $role_options,
158
    '#description' => 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).'),
159
  );
160
161
  // Standard tracking configurations.
162
  $form['tracking']['user_vis_settings'] = array(
163
    '#type' => 'fieldset',
164
    '#title' => t('Users'),
165
  );
166
  $t_permission = array('%permission' => t('opt-in or out of tracking'));
167
  $form['tracking']['user_vis_settings']['piwik_custom'] = array(
168
    '#type' => 'radios',
169
    '#title' => t('Allow users to customize tracking on their account page'),
170
    '#options' => array(
171
      t('No customization allowed'),
172
      t('Tracking on by default, users with %permission permission can opt out', $t_permission),
173
      t('Tracking off by default, users with %permission permission can opt in', $t_permission)
174
    ),
175
    '#default_value' => variable_get('piwik_custom', 0),
176
  );
177 2f8c40f0 Assos Assos
  $form['tracking']['user_vis_settings']['piwik_trackuserid'] = array(
178
    '#type' => 'checkbox',
179
    '#title' => t('Track User ID'),
180
    '#default_value' => variable_get('piwik_trackuserid', 0),
181
    '#description' => 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>.', array('@url' => 'http://piwik.org/docs/user-id/')),
182
  );
183 85ad3d82 Assos Assos
184
  // Link specific configurations.
185
  $form['tracking']['linktracking'] = array(
186
    '#type' => 'fieldset',
187
    '#title' => t('Links and downloads'),
188
  );
189 e9f59589 Assos Assos
  $form['tracking']['linktracking']['piwik_trackmailto'] = array(
190
    '#type' => 'checkbox',
191
    '#title' => t('Track clicks on mailto links'),
192
    '#default_value' => variable_get('piwik_trackmailto', 1),
193
  );
194 85ad3d82 Assos Assos
  $form['tracking']['linktracking']['piwik_track'] = array(
195
    '#type' => 'checkbox',
196
    '#title' => t('Track clicks on outbound links and downloads (clicks on file links) for the following extensions'),
197
    '#default_value' => variable_get('piwik_track', 1),
198
  );
199
  $form['tracking']['linktracking']['piwik_trackfiles_extensions'] = array(
200
    '#title' => t('List of download file extensions'),
201
    '#title_display' => 'invisible',
202
    '#type' => 'textfield',
203 e9f59589 Assos Assos
    '#default_value' => variable_get('piwik_trackfiles_extensions', PIWIK_TRACKFILES_EXTENSIONS),
204
    '#description' => t('A file extension list separated by the | character that will be tracked when clicked. Regular expressions are supported. For example: !extensions', array('!extensions' => PIWIK_TRACKFILES_EXTENSIONS)),
205 de644da6 Julien Enselme
    '#maxlength' => 500,
206 e9f59589 Assos Assos
    '#states' => array(
207
      'enabled' => array(
208
        ':input[name="piwik_track"]' => array('checked' => TRUE),
209
      ),
210
      # Note: Form required marker is not visible as title is invisible.
211
      'required' => array(
212
        ':input[name="piwik_track"]' => array('checked' => TRUE),
213
      ),
214
    ),
215
  );
216
217 d756b39a Assos Assos
  $colorbox_dependencies = '<div class="admin-requirements">';
218
  $colorbox_dependencies .= t('Requires: !module-list', array('!module-list' => (module_exists('colorbox') ? t('@module (<span class="admin-enabled">enabled</span>)', array('@module' => 'Colorbox')) : t('@module (<span class="admin-disabled">disabled</span>)', array('@module' => 'Colorbox')))));
219
  $colorbox_dependencies .= '</div>';
220
221
  $form['tracking']['linktracking']['piwik_trackcolorbox'] = array(
222
    '#type' => 'checkbox',
223
    '#title' => t('Track content in colorbox modal dialogs'),
224
    '#default_value' => variable_get('piwik_trackcolorbox', 1),
225
    '#description' => t('Enable to track the content shown in colorbox modal windows.') . $colorbox_dependencies,
226
    '#disabled' => (module_exists('colorbox') ? FALSE : TRUE),
227
  );
228
229 e9f59589 Assos Assos
  // Message specific configurations.
230
  $form['tracking']['messagetracking'] = array(
231
    '#type' => 'fieldset',
232
    '#title' => t('Messages'),
233
  );
234
  $form['tracking']['messagetracking']['piwik_trackmessages'] = array(
235
    '#type' => 'checkboxes',
236
    '#title' => t('Track messages of type'),
237
    '#default_value' => variable_get('piwik_trackmessages', array()),
238
    '#description' => 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 tracked.'),
239
    '#options' => array(
240
      'status' => t('Status message'),
241
      'warning' => t('Warning message'),
242
      'error' => t('Error message'),
243
    ),
244 85ad3d82 Assos Assos
  );
245
246
  $form['tracking']['search'] = array(
247
    '#type' => 'fieldset',
248
    '#title' => t('Search'),
249
  );
250
251
  $site_search_dependencies = '<div class="admin-requirements">';
252
  $site_search_dependencies .= t('Requires: !module-list', array('!module-list' => (module_exists('search') ? t('@module (<span class="admin-enabled">enabled</span>)', array('@module' => 'Search')) : t('@module (<span class="admin-disabled">disabled</span>)', array('@module' => 'Search')))));
253
  $site_search_dependencies .= '</div>';
254
255
  $form['tracking']['search']['piwik_site_search'] = array(
256
    '#type' => 'checkbox',
257
    '#title' => t('Track internal search'),
258
    '#description' => t('If checked, internal search keywords are tracked.') . $site_search_dependencies,
259
    '#default_value' => variable_get('piwik_site_search', FALSE),
260
    '#disabled' => (module_exists('search') ? FALSE : TRUE),
261
  );
262
263
  // Privacy specific configurations.
264
  $form['tracking']['privacy'] = array(
265
    '#type' => 'fieldset',
266
    '#title' => t('Privacy'),
267
  );
268
  $form['tracking']['privacy']['piwik_privacy_donottrack'] = array(
269
    '#type' => 'checkbox',
270
    '#title' => t('Universal web tracking opt-out'),
271
    '#description' => t('If enabled and your Piwik server receives the <a href="http://donottrack.us/">Do-Not-Track</a> header from the client browser, the Piwik 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.'),
272
    '#default_value' => variable_get('piwik_privacy_donottrack', 1),
273
  );
274
275
  // Piwik page title tree view settings.
276
  $form['page_title_hierarchy'] = array(
277
    '#type' => 'fieldset',
278
    '#title' => t('Page titles hierarchy'),
279
    '#description' => t('This functionality enables a dynamically expandable tree view of your site page titles in your Piwik statistics. See in Piwik statistics under <em>Actions</em> > <em>Page titles</em>.'),
280
    '#collapsible' => TRUE,
281
    '#collapsed' => FALSE,
282
  );
283
  $form['page_title_hierarchy']['piwik_page_title_hierarchy'] = array(
284
    '#type' => 'checkbox',
285
    '#title' => t("Show page titles as hierarchy like breadcrumbs"),
286
    '#description' => t('By default Piwik tracks the current page title and shows you a flat list of the most popular titles. This enables a breadcrumbs like tree view.'),
287
    '#default_value' => variable_get('piwik_page_title_hierarchy', FALSE),
288
  );
289
  $form['page_title_hierarchy']['piwik_page_title_hierarchy_exclude_home'] = array(
290
    '#type' => 'checkbox',
291
    '#title' => t('Hide home page from hierarchy'),
292
    '#description' => t('If enabled, the "Home" item will be removed from the hierarchy to flatten the structure in the Piwik statistics. Hits to the home page will still be counted, but for other pages the hierarchy will start at level Home+1.'),
293
    '#default_value' => variable_get('piwik_page_title_hierarchy_exclude_home', TRUE),
294
  );
295
296
  $form['piwik_custom_var'] = array(
297
    '#collapsible' => TRUE,
298
  	'#collapsed' => TRUE,
299
    '#description' => t('You can add Piwiks <a href="!custom_var_documentation">Custom Variables</a> here. These will be added to every page that Piwik 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.', array('!custom_var_documentation' => 'http://piwik.org/docs/custom-variables/')),
300
    '#theme' => 'piwik_admin_custom_var_table',
301
    '#title' => t('Custom variables'),
302
    '#tree' => TRUE,
303
    '#type' => 'fieldset',
304
  );
305
306
  $piwik_custom_vars = variable_get('piwik_custom_var', array());
307
308
  // Piwik supports up to 5 custom variables.
309
  for ($i = 1; $i < 6; $i++) {
310
    $form['piwik_custom_var']['slots'][$i]['slot'] = array(
311
      '#default_value' => $i,
312
      '#description' => t('Slot number'),
313
      '#disabled' => TRUE,
314
      '#size' => 1,
315
      '#title' => t('Custom variable slot #@slot', array('@slot' => $i)),
316
      '#title_display' => 'invisible',
317
      '#type' => 'textfield',
318
    );
319
    $form['piwik_custom_var']['slots'][$i]['name'] = array(
320
      '#default_value' => !empty($piwik_custom_vars['slots'][$i]['name']) ? $piwik_custom_vars['slots'][$i]['name'] : '',
321
      '#description' => t('The custom variable name.'),
322
      '#maxlength' => 100,
323
    	'#size' => 20,
324
      '#title' => t('Custom variable name #@slot', array('@slot' => $i)),
325
      '#title_display' => 'invisible',
326
      '#type' => 'textfield',
327
    );
328
    $form['piwik_custom_var']['slots'][$i]['value'] = array(
329
      '#default_value' => !empty($piwik_custom_vars['slots'][$i]['value']) ? $piwik_custom_vars['slots'][$i]['value'] : '',
330
      '#description' => t('The custom variable value.'),
331
      '#maxlength' => 255,
332
      '#title' => t('Custom variable value #@slot', array('@slot' => $i)),
333
      '#title_display' => 'invisible',
334
      '#type' => 'textfield',
335
      '#element_validate' => array('piwik_token_element_validate'),
336
      '#token_types' => array('node'),
337
    );
338
    if (module_exists('token')) {
339
      $form['piwik_custom_var']['slots'][$i]['value']['#element_validate'][] = 'token_element_validate';
340
    }
341
    $form['piwik_custom_var']['slots'][$i]['scope'] = array(
342
      '#default_value' => !empty($piwik_custom_vars['slots'][$i]['scope']) ? $piwik_custom_vars['slots'][$i]['scope'] : 'visit',
343
      '#description' => t('The scope for the custom variable.'),
344
      '#title' => t('Custom variable slot #@slot', array('@slot' => $i)),
345
      '#title_display' => 'invisible',
346
      '#type' => 'select',
347
      '#options' => array(
348
        'visit' => t('Visit'),
349
        'page' => t('Page'),
350
      ),
351
    );
352
  }
353
354
  $form['piwik_custom_var']['piwik_custom_var_description'] = array(
355
    '#type' => 'item',
356
    '#description' => t('You can supplement Piwiks\' 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 Piwik\' service.'),
357
  );
358
  $form['piwik_custom_var']['piwik_custom_var_token_tree'] = array(
359
    '#theme' => 'token_tree',
360
    '#token_types' => array('node'),
361
    '#dialog' => TRUE,
362
  );
363
364
  // Advanced feature configurations.
365
  $form['advanced'] = array(
366
    '#type' => 'fieldset',
367
    '#title' => t('Advanced settings'),
368
    '#collapsible' => TRUE,
369
    '#collapsed' => TRUE,
370
  );
371
372
  $form['advanced']['piwik_cache'] = array(
373
    '#type' => 'checkbox',
374
    '#title' => t('Locally cache tracking code file'),
375
    '#description' => t('If checked, the tracking code file is retrieved from your Piwik site and cached locally. It is updated daily to ensure updates to tracking code are reflected in the local copy.'),
376
    '#default_value' => variable_get('piwik_cache', 0),
377
  );
378
379
  // Allow for tracking of the originating node when viewing translation sets.
380
  if (module_exists('translation')) {
381
    $form['advanced']['piwik_translation_set'] = array(
382
      '#type' => 'checkbox',
383
      '#title' => t('Track translation sets as one unit'),
384
      '#description' => 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.'),
385
      '#default_value' => variable_get('piwik_translation_set', 0),
386
    );
387
  }
388
389
  // Code snippet settings.
390
  $form['advanced']['codesnippet'] = array(
391
    '#type' => 'fieldset',
392
    '#title' => t('Custom JavaScript code'),
393
    '#collapsible' => TRUE,
394
    '#collapsed' => TRUE,
395
    '#description' => t('You can add custom Piwik <a href="@snippets">code snippets</a> here. These will be added to every page that Piwik appears on. <strong>Do not include the &lt;script&gt; tags</strong>, and always end your code with a semicolon (;).', array('@snippets' => 'http://piwik.org/docs/javascript-tracking/'))
396
  );
397
  $form['advanced']['codesnippet']['piwik_codesnippet_before'] = array(
398
    '#type' => 'textarea',
399
    '#title' => t('Code snippet (before)'),
400
    '#default_value' => variable_get('piwik_codesnippet_before', ''),
401
    '#rows' => 5,
402
    '#description' => t('Code in this textarea will be added <strong>before</strong> _paq.push(["trackPageView"]).')
403
  );
404
  $form['advanced']['codesnippet']['piwik_codesnippet_after'] = array(
405
    '#type' => 'textarea',
406
    '#title' => t('Code snippet (after)'),
407
    '#default_value' => variable_get('piwik_codesnippet_after', ''),
408
    '#rows' => 5,
409
    '#description' => 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.')
410
  );
411
412
  $form['advanced']['piwik_js_scope'] = array(
413
    '#type' => 'select',
414
    '#title' => t('JavaScript scope'),
415 e9f59589 Assos Assos
    '#description' => t("Piwik recommends adding the tracking code to the header for performance reasons."),
416 85ad3d82 Assos Assos
    '#options' => array(
417
      'footer' => t('Footer'),
418
      'header' => t('Header'),
419
    ),
420 e9f59589 Assos Assos
    '#default_value' => variable_get('piwik_js_scope', 'header'),
421 85ad3d82 Assos Assos
  );
422
423
  return system_settings_form($form);
424
}
425
426
function piwik_admin_settings_form_validate($form, &$form_state) {
427
  // Custom variables validation.
428
  foreach ($form_state['values']['piwik_custom_var']['slots'] as $custom_var) {
429
    $form_state['values']['piwik_custom_var']['slots'][$custom_var['slot']]['name'] = trim($custom_var['name']);
430
    $form_state['values']['piwik_custom_var']['slots'][$custom_var['slot']]['value'] = trim($custom_var['value']);
431
432
    // Validate empty names/values.
433
    if (empty($custom_var['name']) && !empty($custom_var['value'])) {
434
      form_set_error("piwik_custom_var][slots][" . $custom_var['slot'] . "][name", t('The custom variable @slot-number requires a <em>Name</em> if a <em>Value</em> has been provided.', array('@slot-number' => $custom_var['slot'])));
435
    }
436
    elseif (!empty($custom_var['name']) && empty($custom_var['value'])) {
437
      form_set_error("piwik_custom_var][slots][" . $custom_var['slot'] . "][value", t('The custom variable @slot-number requires a <em>Value</em> if a <em>Name</em> has been provided.', array('@slot-number' => $custom_var['slot'])));
438
    }
439
  }
440
441
  // Trim some text area values.
442
  $form_state['values']['piwik_site_id'] = trim($form_state['values']['piwik_site_id']);
443
  $form_state['values']['piwik_pages'] = trim($form_state['values']['piwik_pages']);
444
  $form_state['values']['piwik_codesnippet_before'] = trim($form_state['values']['piwik_codesnippet_before']);
445
  $form_state['values']['piwik_codesnippet_after'] = trim($form_state['values']['piwik_codesnippet_after']);
446
447
  if (!preg_match('/^\d{1,}$/', $form_state['values']['piwik_site_id'])) {
448
    form_set_error('piwik_site_id', t('A valid Piwik site ID is an integer only.'));
449
  }
450
451 2f8c40f0 Assos Assos
  $piwik_url = $form_state['values']['piwik_url_http'];
452
  if ('/' != drupal_substr($piwik_url, -1, 1)) {
453
    $piwik_url = $piwik_url . '/';
454
    $form_state['values']['piwik_url_http'] = $piwik_url;
455
  }
456
  $url = $piwik_url . 'piwik.php';
457 85ad3d82 Assos Assos
  $result = drupal_http_request($url);
458 2f8c40f0 Assos Assos
  if ($result->code != 200 && $form_state['values']['piwik_url_skiperror'] == FALSE) {
459 85ad3d82 Assos Assos
    form_set_error('piwik_url_http', t('The validation of "@url" failed with error "@error" (HTTP code @code).', array('@url' => check_url($url), '@error' => $result->error, '@code' => $result->code)));
460
  }
461
462
  if (!empty($form_state['values']['piwik_url_https'])) {
463 2f8c40f0 Assos Assos
    $piwik_url = $form_state['values']['piwik_url_https'];
464
    if ('/' != drupal_substr($piwik_url, -1, 1)) {
465
      $piwik_url = $piwik_url . '/';
466
      $form_state['values']['piwik_url_https'] = $piwik_url;
467
    }
468
    $url = $piwik_url . 'piwik.php';
469 85ad3d82 Assos Assos
    $result = drupal_http_request($url);
470 2f8c40f0 Assos Assos
    if ($result->code != 200 && $form_state['values']['piwik_url_skiperror'] == FALSE) {
471 85ad3d82 Assos Assos
      form_set_error('piwik_url_https', t('The validation of "@url" failed with error "@error" (HTTP code @code).', array('@url' => check_url($url), '@error' => $result->error, '@code' => $result->code)));
472
    }
473
  }
474
475
  // Delete obsolete local cache file.
476
  if (empty($form_state['values']['piwik_cache']) && $form['advanced']['piwik_cache']['#default_value']) {
477
    piwik_clear_js_cache();
478
  }
479
480
  // This is for the Newbie's who cannot read a text area description.
481
  if (preg_match('/(.*)<\/?script(.*)>(.*)/i', $form_state['values']['piwik_codesnippet_before'])) {
482
    form_set_error('piwik_codesnippet_before', t('Do not include the &lt;script&gt; tags in the javascript code snippets.'));
483
  }
484
  if (preg_match('/(.*)<\/?script(.*)>(.*)/i', $form_state['values']['piwik_codesnippet_after'])) {
485
    form_set_error('piwik_codesnippet_after', t('Do not include the &lt;script&gt; tags in the javascript code snippets.'));
486
  }
487
}
488
489
/**
490
 * Layout for the custom variables table in the admin settings form.
491 d756b39a Assos Assos
 *
492
 * @param array $variables
493
 *   An array contains the form elements.
494
 *
495
 * @return string
496
 *   The rendered output.
497 85ad3d82 Assos Assos
 */
498
function theme_piwik_admin_custom_var_table($variables) {
499
  $form = $variables['form'];
500
501
  $header = array(
502
    array('data' => t('Slot')),
503
    array('data' => t('Name')),
504
    array('data' => t('Value')),
505
    array('data' => t('Scope')),
506
  );
507
508
  $rows = array();
509
  foreach (element_children($form['slots']) as $key => $id) {
510
    $rows[] = array(
511
      'data' => array(
512
        drupal_render($form['slots'][$id]['slot']),
513
        drupal_render($form['slots'][$id]['name']),
514
        drupal_render($form['slots'][$id]['value']),
515
        drupal_render($form['slots'][$id]['scope']),
516
      ),
517
    );
518
  }
519
520
  $output = theme('table', array('header' => $header, 'rows' => $rows));
521
  $output .= drupal_render($form['piwik_custom_var_description']);
522
  $output .= drupal_render($form['piwik_custom_var_token_tree']);
523
524
  return $output;
525
}
526
527
/**
528
 * Validate a form element that should have tokens in it.
529
 *
530
 * For example:
531
 * @code
532
 * $form['my_node_text_element'] = array(
533
 *   '#type' => 'textfield',
534
 *   '#title' => t('Some text to token-ize that has a node context.'),
535
 *   '#default_value' => 'The title of this node is [node:title].',
536
 *   '#element_validate' => array('piwik_token_element_validate'),
537
 * );
538
 * @endcode
539
 */
540
function piwik_token_element_validate(&$element, &$form_state) {
541
  $value = isset($element['#value']) ? $element['#value'] : $element['#default_value'];
542
543
  if (!drupal_strlen($value)) {
544
    // Empty value needs no further validation since the element should depend
545
    // on using the '#required' FAPI property.
546
    return $element;
547
  }
548
549
  $tokens = token_scan($value);
550
  $invalid_tokens = _piwik_get_forbidden_tokens($tokens);
551
  if ($invalid_tokens) {
552
    form_error($element, t('The %element-title is using the following forbidden tokens with personal identifying information: @invalid-tokens.', array('%element-title' => $element['#title'], '@invalid-tokens' => implode(', ', $invalid_tokens))));
553
  }
554
555
  return $element;
556
}
557
558 d756b39a Assos Assos
/**
559
 * @param array $value
560
 *   An array of token values.
561
 *
562
 * @return array
563
 *   A unique array of invalid tokens.
564
 */
565 85ad3d82 Assos Assos
function _piwik_get_forbidden_tokens($value) {
566
  $invalid_tokens = array();
567
  $value_tokens = is_string($value) ? token_scan($value) : $value;
568
569
  foreach ($value_tokens as $type => $tokens) {
570
    if (array_filter($tokens, '_piwik_contains_forbidden_token')) {
571
      $invalid_tokens = array_merge($invalid_tokens, array_values($tokens));
572
    }
573
  }
574
575
  array_unique($invalid_tokens);
576
  return $invalid_tokens;
577
}
578
579
/**
580
 * Validate if a string contains forbidden tokens not allowed by privacy rules.
581
 *
582 d756b39a Assos Assos
 * @param string $token_string
583 85ad3d82 Assos Assos
 *   A string with one or more tokens to be validated.
584 d756b39a Assos Assos
 *
585 85ad3d82 Assos Assos
 * @return boolean
586
 *   TRUE if blacklisted token has been found, otherwise FALSE.
587
 */
588
function _piwik_contains_forbidden_token($token_string) {
589
  // List of strings in tokens with personal identifying information not allowed
590
  // for privacy reasons. See section 8.1 of the Google Analytics terms of use
591
  // for more detailed information.
592
  //
593
  // This list can never ever be complete. For this reason it tries to use a
594
  // regex and may kill a few other valid tokens, but it's the only way to
595
  // protect users as much as possible from admins with illegal ideas.
596
  //
597
  // User tokens are not prefixed with colon to catch 'current-user' and 'user'.
598
  //
599
  // TODO: If someone have better ideas, share them, please!
600
  $token_blacklist = array(
601
    ':author]',
602
    ':author:edit-url]',
603
    ':author:url]',
604
    ':author:path]',
605
    ':current-user]',
606
    ':current-user:original]',
607
    ':fid]',
608
    ':mail]',
609
    ':name]',
610
    ':uid]',
611
    ':one-time-login-url]',
612
    ':owner]',
613
    ':owner:cancel-url]',
614
    ':owner:edit-url]',
615
    ':owner:url]',
616
    ':owner:path]',
617
    'user:cancel-url]',
618
    'user:edit-url]',
619
    'user:url]',
620
    'user:path]',
621
    'user:picture]',
622
    // addressfield_tokens.module
623
    ':first-name]',
624
    ':last-name]',
625
    ':name-line]',
626
    ':mc-address]',
627
    ':thoroughfare]',
628
    ':premise]',
629
    // realname.module
630
    ':name-raw]',
631
    // token.module
632
    ':ip-address]',
633
  );
634
635
  return preg_match('/' . implode('|', array_map('preg_quote', $token_blacklist)) . '/i', $token_string);
636
}