Merge pull request #8347 from eileenmcnaughton/tidy-up
[civicrm-core.git] / CRM / Mailing / BAO / TrackableURL.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
fa938177 6 | Copyright CiviCRM LLC (c) 2004-2016 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
fa938177 31 * @copyright CiviCRM LLC (c) 2004-2016
6a488035
TO
32 */
33class CRM_Mailing_BAO_TrackableURL extends CRM_Mailing_DAO_TrackableURL {
34
35 /**
fe482240 36 * Class constructor.
6a488035 37 */
00be9182 38 public function __construct() {
6a488035
TO
39 parent::__construct();
40 }
41
42 /**
43 * Given a url, mailing id and queue event id, find or construct a
44 * trackable url and redirect url.
45 *
90c8230e
TO
46 * @param string $url
47 * The target url to track.
48 * @param int $mailing_id
49 * The id of the mailing.
50 * @param int $queue_id
51 * The queue event id (contact clicking through).
6a488035 52 *
a6c01b45
CW
53 * @return string
54 * The redirect/tracking url
6a488035
TO
55 */
56 public static function getTrackerURL($url, $mailing_id, $queue_id) {
57
58 static $urlCache = array();
59
60 if (array_key_exists($url, $urlCache)) {
61 return $urlCache[$url] . "&qid=$queue_id";
62 }
63
64 // hack for basic CRM-1014 and CRM-1151 and CRM-3492 compliance:
65 // let's not replace possible image URLs and CiviMail ones
66 if (preg_match('/\.(png|jpg|jpeg|gif|css)[\'"]?$/i', $url)
67 or substr_count($url, 'civicrm/extern/')
68 or substr_count($url, 'civicrm/mailing/')
69 ) {
70 // let's not cache these, so they don't get &qid= appended to them
71 return $url;
72 }
73 else {
74
75 $hrefExists = FALSE;
76 $config = CRM_Core_Config::singleton();
77
78 $tracker = new CRM_Mailing_BAO_TrackableURL();
79 if (preg_match('/^href/i', $url)) {
80 $url = preg_replace('/^href[ ]*=[ ]*[\'"](.*?)[\'"]$/i', '$1', $url);
81 $hrefExists = TRUE;
82 }
83
84 $tracker->url = $url;
85 $tracker->mailing_id = $mailing_id;
22e263ad 86 if (strlen($tracker->url) > 254) {
d78d31a1
EM
87 return $url;
88 }
6a488035
TO
89 if (!$tracker->find(TRUE)) {
90 $tracker->save();
91 }
92 $id = $tracker->id;
93 $tracker->free();
94
95 $redirect = $config->userFrameworkResourceURL . "extern/url.php?u=$id";
96 $urlCache[$url] = $redirect;
97 }
98
99 $returnUrl = "{$urlCache[$url]}&qid={$queue_id}";
100
101 if ($hrefExists) {
102 $returnUrl = "href='{$returnUrl}'";
103 }
104
105 return $returnUrl;
106 }
107
467cd00c 108 /**
109 * @param $url
110 * @param $mailing_id
111 *
76e7a76c
CW
112 * @return int
113 * Url id of the given url and mail
467cd00c 114 */
115 public static function getTrackerURLId($url, $mailing_id) {
116 $tracker = new CRM_Mailing_BAO_TrackableURL();
117 $tracker->url = $url;
118 $tracker->mailing_id = $mailing_id;
119 if ($tracker->find(TRUE)) {
120 return $tracker->id;
121 }
122
123 return NULL;
124 }
125
6a488035 126}