piwik.module 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703
  1. <?php
  2. /**
  3. * @file
  4. * Drupal Module: Piwik
  5. *
  6. * Adds the required Javascript to all your Drupal pages to allow tracking by
  7. * the Piwik statistics package.
  8. *
  9. * @author: Alexander Hass <http://drupal.org/user/85918>
  10. */
  11. /**
  12. * Define the default file extension list that should be tracked as download.
  13. */
  14. define('PIWIK_TRACKFILES_EXTENSIONS', '7z|aac|arc|arj|asf|asx|avi|bin|csv|doc(x|m)?|dot(x|m)?|exe|flv|gif|gz|gzip|hqx|jar|jpe?g|js|mp(2|3|4|e?g)|mov(ie)?|msi|msp|pdf|phps|png|ppt(x|m)?|pot(x|m)?|pps(x|m)?|ppam|sld(x|m)?|thmx|qtm?|ra(m|r)?|sea|sit|tar|tgz|torrent|txt|wav|wma|wmv|wpd|xls(x|m|b)?|xlt(x|m)|xlam|xml|z|zip');
  15. /**
  16. * Define default path exclusion list to remove tracking from admin pages,
  17. * see http://drupal.org/node/34970 for more information.
  18. */
  19. define('PIWIK_PAGES', "admin\nadmin/*\nbatch\nnode/add*\nnode/*/*\nuser/*/*");
  20. /**
  21. * Implements hook_help().
  22. */
  23. function piwik_help($path, $arg) {
  24. switch ($path) {
  25. case 'admin/config/system/piwik':
  26. return t('<a href="@pk_url">Piwik - Web analytics</a> is an open source (GPL license) web analytics software. It gives interesting reports on your website visitors, your popular pages, the search engines keywords they used, the language they speak... and so much more. Piwik aims to be an open source alternative to Google Analytics.', array('@pk_url' => 'http://www.piwik.org/'));
  27. }
  28. }
  29. /**
  30. * Implements hook_theme().
  31. */
  32. function piwik_theme() {
  33. return array(
  34. 'piwik_admin_custom_var_table' => array(
  35. 'render element' => 'form',
  36. ),
  37. );
  38. }
  39. /**
  40. * Implements hook_permission().
  41. */
  42. function piwik_permission() {
  43. return array(
  44. 'administer piwik' => array(
  45. 'title' => t('Administer Piwik'),
  46. 'description' => t('Perform maintenance tasks for Piwik.'),
  47. ),
  48. 'opt-in or out of tracking' => array(
  49. 'title' => t('Opt-in or out of tracking'),
  50. 'description' => t('Allow users to decide if tracking code will be added to pages or not.'),
  51. ),
  52. 'use PHP for tracking visibility' => array(
  53. 'title' => t('Use PHP for tracking visibility'),
  54. 'description' => t('Enter PHP code in the field for tracking visibility settings.'),
  55. 'restrict access' => TRUE,
  56. ),
  57. 'add JS snippets for piwik' => array(
  58. 'title' => t('Add JavaScript snippets'),
  59. 'description' => 'Enter JavaScript code snippets for advanced Piwik functionality.',
  60. 'restrict access' => TRUE,
  61. ),
  62. );
  63. }
  64. /**
  65. * Implements hook_menu().
  66. */
  67. function piwik_menu() {
  68. $items['admin/config/system/piwik'] = array(
  69. 'title' => 'Piwik',
  70. 'description' => 'Configure the settings used to generate your Piwik tracking code.',
  71. 'page callback' => 'drupal_get_form',
  72. 'page arguments' => array('piwik_admin_settings_form'),
  73. 'access arguments' => array('administer piwik'),
  74. 'type' => MENU_NORMAL_ITEM,
  75. 'file' => 'piwik.admin.inc',
  76. );
  77. return $items;
  78. }
  79. /**
  80. * Implements hook_page_alter() to insert JavaScript to the appropriate scope/region of the page.
  81. */
  82. function piwik_page_alter(&$page) {
  83. global $user;
  84. $id = variable_get('piwik_site_id', '');
  85. // Get page status code for visibility filtering.
  86. $status = drupal_get_http_header('Status');
  87. $trackable_status_codes = array(
  88. '403 Forbidden',
  89. '404 Not Found',
  90. );
  91. // 1. Check if the piwik account number has a value.
  92. // 2. Track page views based on visibility value.
  93. // 3. Check if we should track the currently active user's role.
  94. if (preg_match('/^\d{1,}$/', $id) && (_piwik_visibility_pages() || in_array($status, $trackable_status_codes)) && _piwik_visibility_user($user)) {
  95. $url_http = variable_get('piwik_url_http', '');
  96. $url_https = variable_get('piwik_url_https', '');
  97. $scope = variable_get('piwik_js_scope', 'header');
  98. $set_custom_url = '';
  99. $set_document_title = '';
  100. $set_custom_data = array();
  101. // Add link tracking.
  102. $link_settings = array();
  103. $link_settings['trackMailto'] = variable_get('piwik_trackmailto', 1);
  104. if (module_exists('colorbox') && ($track_colorbox = variable_get('piwik_trackcolorbox', 1))) {
  105. $link_settings['trackColorbox'] = $track_colorbox;
  106. }
  107. drupal_add_js(array('piwik' => $link_settings), 'setting');
  108. drupal_add_js(drupal_get_path('module', 'piwik') . '/piwik.js');
  109. // Piwik can show a tree view of page titles that represents the site structure
  110. // if setDocumentTitle() provides the page titles as a "/" delimited list.
  111. // This may makes it easier to browse through the statistics of page titles
  112. // on larger sites.
  113. if (variable_get('piwik_page_title_hierarchy', FALSE) == TRUE) {
  114. $titles = _piwik_get_hierarchy_titles();
  115. if (variable_get('piwik_page_title_hierarchy_exclude_home', TRUE)) {
  116. // Remove the "Home" item from the titles to flatten the tree view.
  117. array_shift($titles);
  118. }
  119. // Remove all empty titles.
  120. $titles = array_filter($titles);
  121. if (!empty($titles)) {
  122. // Encode title, at least to keep "/" intact.
  123. $titles = array_map('rawurlencode', $titles);
  124. $set_document_title = drupal_json_encode(implode('/', $titles));
  125. }
  126. }
  127. // Add messages tracking.
  128. $message_events = '';
  129. if ($message_types = variable_get('piwik_trackmessages', array())) {
  130. $message_types = array_values(array_filter($message_types));
  131. $status_heading = array(
  132. 'status' => t('Status message'),
  133. 'warning' => t('Warning message'),
  134. 'error' => t('Error message'),
  135. );
  136. foreach (drupal_get_messages(NULL, FALSE) as $type => $messages) {
  137. // Track only the selected message types.
  138. if (in_array($type, $message_types)) {
  139. foreach ($messages as $message) {
  140. $message_events .= '_paq.push(["trackEvent", ' . drupal_json_encode(t('Messages')) . ', ' . drupal_json_encode($status_heading[$type]) . ', ' . drupal_json_encode(strip_tags($message)) . ']);';
  141. }
  142. }
  143. }
  144. }
  145. // If this node is a translation of another node, pass the original
  146. // node instead.
  147. if (module_exists('translation') && variable_get('piwik_translation_set', 0)) {
  148. // Check we have a node object, it supports translation, and its
  149. // translated node ID (tnid) doesn't match its own node ID.
  150. $node = menu_get_object();
  151. if ($node && translation_supported_type($node->type) && !empty($node->tnid) && ($node->tnid != $node->nid)) {
  152. $source_node = node_load($node->tnid);
  153. $languages = language_list();
  154. $set_custom_url = drupal_json_encode(url('node/' . $source_node->nid, array('language' => $languages[$source_node->language], 'absolute' => TRUE)));
  155. }
  156. }
  157. // Track access denied (403) and file not found (404) pages.
  158. if ($status == '403 Forbidden') {
  159. $set_document_title = '"403/URL = " + encodeURIComponent(document.location.pathname+document.location.search) + "/From = " + encodeURIComponent(document.referrer)';
  160. }
  161. elseif ($status == '404 Not Found') {
  162. $set_document_title = '"404/URL = " + encodeURIComponent(document.location.pathname+document.location.search) + "/From = " + encodeURIComponent(document.referrer)';
  163. }
  164. // Add custom variables.
  165. $piwik_custom_vars = variable_get('piwik_custom_var', array());
  166. $custom_variable = '';
  167. for ($i = 1; $i < 6; $i++) {
  168. $custom_var_name = !empty($piwik_custom_vars['slots'][$i]['name']) ? $piwik_custom_vars['slots'][$i]['name'] : '';
  169. if (!empty($custom_var_name)) {
  170. $custom_var_value = !empty($piwik_custom_vars['slots'][$i]['value']) ? $piwik_custom_vars['slots'][$i]['value'] : '';
  171. $custom_var_scope = !empty($piwik_custom_vars['slots'][$i]['scope']) ? $piwik_custom_vars['slots'][$i]['scope'] : 'visit';
  172. $types = array();
  173. $node = menu_get_object();
  174. if (is_object($node)) {
  175. $types += array('node' => $node);
  176. }
  177. $custom_var_name = token_replace($custom_var_name, $types, array('clear' => TRUE));
  178. $custom_var_value = token_replace($custom_var_value, $types, array('clear' => TRUE));
  179. // Suppress empty custom names and/or variables.
  180. if (!drupal_strlen(trim($custom_var_name)) || !drupal_strlen(trim($custom_var_value))) {
  181. continue;
  182. }
  183. // Custom variables names and values are limited to 200 characters in
  184. // length. It is recommended to store values that are as small as
  185. // possible to ensure that the Piwik Tracking request URL doesn't go
  186. // over the URL limit for the webserver or browser.
  187. $custom_var_name = rtrim(substr($custom_var_name, 0, 200));
  188. $custom_var_value = rtrim(substr($custom_var_value, 0, 200));
  189. $custom_var_name = drupal_json_encode($custom_var_name);
  190. $custom_var_value = drupal_json_encode($custom_var_value);
  191. $custom_var_scope = drupal_json_encode($custom_var_scope);
  192. $custom_variable .= "_paq.push(['setCustomVariable', $i, $custom_var_name, $custom_var_value, $custom_var_scope]);";
  193. }
  194. }
  195. // Add any custom code snippets if specified.
  196. $codesnippet_before = variable_get('piwik_codesnippet_before', '');
  197. $codesnippet_after = variable_get('piwik_codesnippet_after', '');
  198. // Build tracker code. See http://piwik.org/docs/javascript-tracking/#toc-asynchronous-tracking
  199. $script = 'var _paq = _paq || [];';
  200. $script .= '(function(){';
  201. $script .= 'var u=(("https:" == document.location.protocol) ? "' . check_url($url_https) . '" : "' . check_url($url_http) . '");';
  202. $script .= '_paq.push(["setSiteId", ' . drupal_json_encode(variable_get('piwik_site_id', '')) . ']);';
  203. $script .= '_paq.push(["setTrackerUrl", u+"piwik.php"]);';
  204. // Track logged in users across all devices.
  205. if (variable_get('piwik_trackuserid', 0) && user_is_logged_in()) {
  206. // The USER_ID value should be a unique, persistent, and non-personally
  207. // identifiable string identifier that represents a user or signed-in
  208. // account across devices.
  209. $script .= '_paq.push(["setUserId", ' . drupal_json_encode(piwik_user_id_hash($user->uid)) . ']);';
  210. }
  211. // Set custom data.
  212. if (!empty($set_custom_data)) {
  213. foreach ($set_custom_data as $custom_data) {
  214. $script .= '_paq.push(["setCustomData", ' . $custom_data . ']);';
  215. }
  216. }
  217. // Set custom url.
  218. if (!empty($set_custom_url)) {
  219. $script .= '_paq.push(["setCustomUrl", ' . $set_custom_url . ']);';
  220. }
  221. // Set custom document title.
  222. if (!empty($set_document_title)) {
  223. $script .= '_paq.push(["setDocumentTitle", ' . $set_document_title . ']);';
  224. }
  225. // Custom file download extensions.
  226. if ((variable_get('piwik_track', 1)) && !(variable_get('piwik_trackfiles_extensions', PIWIK_TRACKFILES_EXTENSIONS) == PIWIK_TRACKFILES_EXTENSIONS)) {
  227. $script .= '_paq.push(["setDownloadExtensions", ' . drupal_json_encode(variable_get('piwik_trackfiles_extensions', PIWIK_TRACKFILES_EXTENSIONS)) . ']);';
  228. }
  229. // Disable tracking for visitors who have opted out from tracking via DNT (Do-Not-Track) header.
  230. if (variable_get('piwik_privacy_donottrack', 1)) {
  231. $script .= '_paq.push(["setDoNotTrack", 1]);';
  232. }
  233. // Domain tracking type.
  234. global $cookie_domain;
  235. $domain_mode = variable_get('piwik_domain_mode', 0);
  236. // Per RFC 2109, cookie domains must contain at least one dot other than the
  237. // first. For hosts such as 'localhost' or IP Addresses we don't set a cookie domain.
  238. if ($domain_mode == 1 && count(explode('.', $cookie_domain)) > 2 && !is_numeric(str_replace('.', '', $cookie_domain))) {
  239. $script .= '_paq.push(["setCookieDomain", ' . drupal_json_encode($cookie_domain) . ']);';
  240. }
  241. // Ordering $custom_variable before $codesnippet_before allows users to add
  242. // custom code snippets that may use deleteCustomVariable() and/or getCustomVariable().
  243. if (!empty($custom_variable)) {
  244. $script .= $custom_variable;
  245. }
  246. if (!empty($codesnippet_before)) {
  247. $script .= $codesnippet_before;
  248. }
  249. // Site search tracking support.
  250. // NOTE: It's recommended not to call trackPageView() on the Site Search Result page.
  251. if (module_exists('search') && variable_get('piwik_site_search', FALSE) && arg(0) == 'search' && $keys = piwik_search_get_keys()) {
  252. // Parameters:
  253. // 1. Search keyword searched for. Example: "Banana"
  254. // 2. Search category selected in your search engine. If you do not need
  255. // this, set to false. Example: "Organic Food"
  256. // 3. Number of results on the Search results page. Zero indicates a
  257. // 'No Result Search Keyword'. Set to false if you don't know.
  258. //
  259. // hook_preprocess_search_results() is not executed if search result is
  260. // empty. Make sure the counter is set to 0 if there are no results.
  261. $script .= '_paq.push(["trackSiteSearch", ' . drupal_json_encode($keys) . ', false, (window.piwik_search_results) ? window.piwik_search_results : 0]);';
  262. }
  263. else {
  264. $script .= '_paq.push(["trackPageView"]);';
  265. }
  266. // Add link tracking.
  267. if (variable_get('piwik_track', 1)) {
  268. // Disable tracking of links with ".no-tracking" and ".colorbox" classes.
  269. $ignore_classes = array(
  270. 'no-tracking',
  271. 'colorbox',
  272. );
  273. // Disable the download & outlink tracking for specific CSS classes.
  274. // Custom code snippets with 'setIgnoreClasses' will override the value.
  275. // http://developer.piwik.org/api-reference/tracking-javascript#disable-the-download-amp-outlink-tracking-for-specific-css-classes
  276. $script .= '_paq.push(["setIgnoreClasses", ' . drupal_json_encode($ignore_classes) . ']);';
  277. // Enable download & outlink link tracking.
  278. $script .= '_paq.push(["enableLinkTracking"]);';
  279. }
  280. if (!empty($message_events)) {
  281. $script .= $message_events;
  282. }
  283. if (!empty($codesnippet_after)) {
  284. $script .= $codesnippet_after;
  285. }
  286. $script .= 'var d=document,';
  287. $script .= 'g=d.createElement("script"),';
  288. $script .= 's=d.getElementsByTagName("script")[0];';
  289. $script .= 'g.type="text/javascript";';
  290. $script .= 'g.defer=true;';
  291. $script .= 'g.async=true;';
  292. // Should a local cached copy of the tracking code be used?
  293. if (variable_get('piwik_cache', 0) && $url = _piwik_cache($url_http . 'piwik.js')) {
  294. // A dummy query-string is added to filenames, to gain control over
  295. // browser-caching. The string changes on every update or full cache
  296. // flush, forcing browsers to load a new copy of the files, as the
  297. // URL changed.
  298. $query_string = '?' . variable_get('css_js_query_string', '0');
  299. $script .= 'g.src="' . $url . $query_string . '";';
  300. }
  301. else {
  302. $script .= 'g.src=u+"piwik.js";';
  303. }
  304. $script .= 's.parentNode.insertBefore(g,s);';
  305. $script .= '})();';
  306. // Add tracker code to scope.
  307. drupal_add_js($script, array('scope' => $scope, 'type' => 'inline'));
  308. }
  309. }
  310. /**
  311. * Generate user id hash to implement USER_ID.
  312. *
  313. * The USER_ID value should be a unique, persistent, and non-personally
  314. * identifiable string identifier that represents a user or signed-in
  315. * account across devices.
  316. *
  317. * @param int $uid
  318. * User id.
  319. *
  320. * @return string
  321. * User id hash.
  322. */
  323. function piwik_user_id_hash($uid) {
  324. return drupal_hmac_base64($uid, drupal_get_private_key() . drupal_get_hash_salt());
  325. }
  326. /**
  327. * Implements hook_field_extra_fields().
  328. */
  329. function piwik_field_extra_fields() {
  330. $extra['user']['user']['form']['piwik'] = array(
  331. 'label' => t('Piwik configuration'),
  332. 'description' => t('Piwik module form element.'),
  333. 'weight' => 3,
  334. );
  335. return $extra;
  336. }
  337. /**
  338. * Implement hook_form_FORM_ID_alter().
  339. *
  340. * Allow users to decide if tracking code will be added to pages or not.
  341. */
  342. function piwik_form_user_profile_form_alter(&$form, &$form_state) {
  343. $account = $form['#user'];
  344. $category = $form['#user_category'];
  345. if ($category == 'account' && user_access('opt-in or out of tracking') && ($custom = variable_get('piwik_custom', 0)) != 0 && _piwik_visibility_roles($account)) {
  346. $form['piwik'] = array(
  347. '#type' => 'fieldset',
  348. '#title' => t('Piwik configuration'),
  349. '#weight' => 3,
  350. '#collapsible' => TRUE,
  351. '#tree' => TRUE
  352. );
  353. switch ($custom) {
  354. case 1:
  355. $description = t('Users are tracked by default, but you are able to opt out.');
  356. break;
  357. case 2:
  358. $description = t('Users are <em>not</em> tracked by default, but you are able to opt in.');
  359. break;
  360. }
  361. $form['piwik']['custom'] = array(
  362. '#type' => 'checkbox',
  363. '#title' => t('Enable user tracking'),
  364. '#description' => $description,
  365. '#default_value' => isset($account->data['piwik']['custom']) ? $account->data['piwik']['custom'] : ($custom == 1),
  366. );
  367. return $form;
  368. }
  369. }
  370. /**
  371. * Implements hook_user_presave().
  372. */
  373. function piwik_user_presave(&$edit, $account, $category) {
  374. if (isset($edit['piwik']['custom'])) {
  375. $edit['data']['piwik']['custom'] = $edit['piwik']['custom'];
  376. }
  377. }
  378. /**
  379. * Implements hook_cron().
  380. */
  381. function piwik_cron() {
  382. // Regenerate the piwik.js every day.
  383. if (REQUEST_TIME - variable_get('piwik_last_cache', 0) >= 86400 && variable_get('piwik_cache', 0)) {
  384. _piwik_cache(variable_get('piwik_url_http', '') . 'piwik.js', TRUE);
  385. variable_set('piwik_last_cache', REQUEST_TIME);
  386. }
  387. }
  388. /**
  389. * Implements hook_preprocess_search_results().
  390. *
  391. * Collects and adds the number of search results to the head.
  392. */
  393. function piwik_preprocess_search_results(&$variables) {
  394. // There is no search result $variable available that hold the number of items
  395. // found. But the pager item mumber can tell the number of search results.
  396. global $pager_total_items;
  397. drupal_add_js('window.piwik_search_results = ' . intval($pager_total_items[0]) . ';', array('type' => 'inline', 'group' => JS_LIBRARY-1));
  398. }
  399. /**
  400. * Download/Synchronize/Cache tracking code file locally.
  401. *
  402. * @param $location
  403. * The full URL to the external javascript file.
  404. * @param $sync_cached_file
  405. * Synchronize tracking code and update if remote file have changed.
  406. * @return mixed
  407. * The path to the local javascript file on success, boolean FALSE on failure.
  408. */
  409. function _piwik_cache($location, $sync_cached_file = FALSE) {
  410. $path = 'public://piwik';
  411. $file_destination = $path . '/' . basename($location);
  412. if (!file_exists($file_destination) || $sync_cached_file) {
  413. // Download the latest tracking code.
  414. $result = drupal_http_request($location);
  415. if ($result->code == 200) {
  416. if (file_exists($file_destination)) {
  417. // Synchronize tracking code and and replace local file if outdated.
  418. $data_hash_local = drupal_hash_base64(file_get_contents($file_destination));
  419. $data_hash_remote = drupal_hash_base64($result->data);
  420. // Check that the files directory is writable.
  421. if ($data_hash_local != $data_hash_remote && file_prepare_directory($path)) {
  422. // Save updated tracking code file to disk.
  423. file_unmanaged_save_data($result->data, $file_destination, FILE_EXISTS_REPLACE);
  424. watchdog('piwik', 'Locally cached tracking code file has been updated.', array(), WATCHDOG_INFO);
  425. // Change query-strings on css/js files to enforce reload for all users.
  426. _drupal_flush_css_js();
  427. }
  428. }
  429. else {
  430. // Check that the files directory is writable.
  431. if (file_prepare_directory($path, FILE_CREATE_DIRECTORY)) {
  432. // There is no need to flush JS here as core refreshes JS caches
  433. // automatically, if new files are added.
  434. file_unmanaged_save_data($result->data, $file_destination, FILE_EXISTS_REPLACE);
  435. watchdog('piwik', 'Locally cached tracking code file has been saved.', array(), WATCHDOG_INFO);
  436. // Return the local JS file path.
  437. return file_create_url($file_destination);
  438. }
  439. }
  440. }
  441. }
  442. else {
  443. // Return the local JS file path.
  444. return file_create_url($file_destination);
  445. }
  446. }
  447. /**
  448. * Delete cached files and directory.
  449. */
  450. function piwik_clear_js_cache() {
  451. $path = 'public://piwik';
  452. if (file_prepare_directory($path)) {
  453. file_scan_directory($path, '/.*/', array('callback' => 'file_unmanaged_delete'));
  454. drupal_rmdir($path);
  455. // Change query-strings on css/js files to enforce reload for all users.
  456. _drupal_flush_css_js();
  457. watchdog('piwik', 'Local cache has been purged.', array(), WATCHDOG_INFO);
  458. }
  459. }
  460. /**
  461. * Helper function for grabbing search keys. Function is missing in D7.
  462. *
  463. * http://api.drupal.org/api/function/search_get_keys/6
  464. */
  465. function piwik_search_get_keys() {
  466. static $return;
  467. if (!isset($return)) {
  468. // Extract keys as remainder of path
  469. // Note: support old GET format of searches for existing links.
  470. $path = explode('/', $_GET['q'], 3);
  471. $keys = empty($_REQUEST['keys']) ? '' : $_REQUEST['keys'];
  472. $return = count($path) == 3 ? $path[2] : $keys;
  473. }
  474. return $return;
  475. }
  476. /**
  477. * Tracking visibility check for an user object.
  478. *
  479. * @param $account
  480. * A user object containing an array of roles to check.
  481. * @return boolean
  482. * A decision on if the current user is being tracked by Piwik.
  483. */
  484. function _piwik_visibility_user($account) {
  485. $enabled = FALSE;
  486. // Is current user a member of a role that should be tracked?
  487. if (_piwik_visibility_roles($account)) {
  488. // Use the user's block visibility setting, if necessary.
  489. if (($custom = variable_get('piwik_custom', 0)) != 0) {
  490. if ($account->uid && isset($account->data['piwik']['custom'])) {
  491. $enabled = $account->data['piwik']['custom'];
  492. }
  493. else {
  494. $enabled = ($custom == 1);
  495. }
  496. }
  497. else {
  498. $enabled = TRUE;
  499. }
  500. }
  501. return $enabled;
  502. }
  503. /**
  504. * Based on visibility setting this function returns TRUE if GA code should
  505. * be added for the current role and otherwise FALSE.
  506. */
  507. function _piwik_visibility_roles($account) {
  508. $visibility = variable_get('piwik_visibility_roles', 0);
  509. $enabled = $visibility;
  510. $roles = variable_get('piwik_roles', array());
  511. if (array_sum($roles) > 0) {
  512. // One or more roles are selected.
  513. foreach (array_keys($account->roles) as $rid) {
  514. // Is the current user a member of one of these roles?
  515. if (isset($roles[$rid]) && $rid == $roles[$rid]) {
  516. // Current user is a member of a role that should be tracked/excluded from tracking.
  517. $enabled = !$visibility;
  518. break;
  519. }
  520. }
  521. }
  522. else {
  523. // No role is selected for tracking, therefore all roles should be tracked.
  524. $enabled = TRUE;
  525. }
  526. return $enabled;
  527. }
  528. /**
  529. * Based on visibility setting this function returns TRUE if GA code should
  530. * be added to the current page and otherwise FALSE.
  531. */
  532. function _piwik_visibility_pages() {
  533. static $page_match;
  534. // Cache visibility setting in hook_init for hook_footer.
  535. if (!isset($page_match)) {
  536. $visibility = variable_get('piwik_visibility_pages', 0);
  537. $setting_pages = variable_get('piwik_pages', PIWIK_PAGES);
  538. // Match path if necessary.
  539. if (!empty($setting_pages)) {
  540. // Convert path to lowercase. This allows comparison of the same path
  541. // with different case. Ex: /Page, /page, /PAGE.
  542. $pages = drupal_strtolower($setting_pages);
  543. if ($visibility < 2) {
  544. // Convert the Drupal path to lowercase
  545. $path = drupal_strtolower(drupal_get_path_alias($_GET['q']));
  546. // Compare the lowercase internal and lowercase path alias (if any).
  547. $page_match = drupal_match_path($path, $pages);
  548. if ($path != $_GET['q']) {
  549. $page_match = $page_match || drupal_match_path($_GET['q'], $pages);
  550. }
  551. // When $visibility has a value of 0, the tracking code is displayed on
  552. // all pages except those listed in $pages. When set to 1, it
  553. // is displayed only on those pages listed in $pages.
  554. $page_match = !($visibility xor $page_match);
  555. }
  556. elseif (module_exists('php')) {
  557. $page_match = php_eval($setting_pages);
  558. }
  559. else {
  560. $page_match = FALSE;
  561. }
  562. }
  563. else {
  564. $page_match = TRUE;
  565. }
  566. }
  567. return $page_match;
  568. }
  569. /**
  570. * Get the page titles trail for the current page.
  571. *
  572. * Based on menu_get_active_breadcrumb().
  573. *
  574. * @return array
  575. * All page titles, including current page.
  576. */
  577. function _piwik_get_hierarchy_titles() {
  578. $titles = array();
  579. // No breadcrumb for the front page.
  580. if (drupal_is_front_page()) {
  581. return $titles;
  582. }
  583. $item = menu_get_item();
  584. if (!empty($item['access'])) {
  585. $active_trail = menu_get_active_trail();
  586. // Allow modules to alter the breadcrumb, if possible, as that is much
  587. // faster than rebuilding an entirely new active trail.
  588. drupal_alter('menu_breadcrumb', $active_trail, $item);
  589. // Remove the tab root (parent) if the current path links to its parent.
  590. // Normally, the tab root link is included in the breadcrumb, as soon as we
  591. // are on a local task or any other child link. However, if we are on a
  592. // default local task (e.g., node/%/view), then we do not want the tab root
  593. // link (e.g., node/%) to appear, as it would be identical to the current
  594. // page. Since this behavior also needs to work recursively (i.e., on
  595. // default local tasks of default local tasks), and since the last non-task
  596. // link in the trail is used as page title (see menu_get_active_title()),
  597. // this condition cannot be cleanly integrated into menu_get_active_trail().
  598. // menu_get_active_trail() already skips all links that link to their parent
  599. // (commonly MENU_DEFAULT_LOCAL_TASK). In order to also hide the parent link
  600. // itself, we always remove the last link in the trail, if the current
  601. // router item links to its parent.
  602. if (($item['type'] & MENU_LINKS_TO_PARENT) == MENU_LINKS_TO_PARENT) {
  603. array_pop($active_trail);
  604. }
  605. foreach ($active_trail as $parent) {
  606. $titles[] = $parent['title'];
  607. }
  608. }
  609. return $titles;
  610. }