-
Notifications
You must be signed in to change notification settings - Fork 1
/
l.php
210 lines (194 loc) · 7.44 KB
/
l.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<?php
include('includes/config.php');
//--------------------------------------------------------------//
function dbConnect() { //Connect to database
//--------------------------------------------------------------//
// Access global variables
global $mysqli;
global $dbHost;
global $dbUser;
global $dbPass;
global $dbName;
global $dbPort;
// Attempt to connect to database server
if(isset($dbPort)) $mysqli = new mysqli($dbHost, $dbUser, $dbPass, $dbName, $dbPort);
else $mysqli = new mysqli($dbHost, $dbUser, $dbPass, $dbName);
// If connection failed...
if ($mysqli->connect_error) {
fail("<!DOCTYPE html><html><head><meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\"/><link rel=\"Shortcut Icon\" type=\"image/ico\" href=\"/img/favicon.png\"><title>"._('Can\'t connect to database')."</title></head><style type=\"text/css\">body{background: #ffffff;font-family: Helvetica, Arial;}#wrapper{background: #f2f2f2;width: 300px;height: 110px;margin: -140px 0 0 -150px;position: absolute;top: 50%;left: 50%;-webkit-border-radius: 5px;-moz-border-radius: 5px;border-radius: 5px;}p{text-align: center;line-height: 18px;font-size: 12px;padding: 0 30px;}h2{font-weight: normal;text-align: center;font-size: 20px;}a{color: #000;}a:hover{text-decoration: none;}</style><body><div id=\"wrapper\"><p><h2>"._('Can\'t connect to database')."</h2></p><p>"._('There is a problem connecting to the database. Please try again later.')."</p></div></body></html>");
}
global $charset; mysqli_set_charset($mysqli, isset($charset) ? $charset : "utf8");
return $mysqli;
}
//--------------------------------------------------------------//
function fail($errorMsg) { //Database connection fails
//--------------------------------------------------------------//
echo $errorMsg;
exit;
}
// connect to database
dbConnect();
?>
<?php
include('includes/helpers/short.php');
//get variable
$i = mysqli_real_escape_string($mysqli, $_GET['i']);
$i_array = explode('/', $i);
$userID = short($i_array[0], true);
$link_id = short($i_array[1], true);
$campaign_id = short($i_array[2], true);
$q = 'SELECT clicks, link, ares_emails_id FROM links WHERE id = '.$link_id;
$r = mysqli_query($mysqli, $q);
if ($r && mysqli_num_rows($r) > 0)
{
while($row = mysqli_fetch_array($r))
{
$clicks = $row['clicks'];
$link = htmlspecialchars_decode($row['link']);
$ares_emails_id = $row['ares_emails_id'];
if($clicks=='')
$val = $userID;
else
{
$clicks .= ','.$userID;
$val = $clicks;
}
}
}
//Set click
$q2 = 'UPDATE links SET clicks = "'.$val.'" WHERE id = '.$link_id;
$r2 = mysqli_query($mysqli, $q2);
if ($r2){}
//Set open
$q = $ares_emails_id=='' ? 'SELECT opens FROM campaigns WHERE id = '.$campaign_id : 'SELECT opens FROM ares_emails WHERE id = '.$campaign_id;
$r = mysqli_query($mysqli, $q);
if ($r && mysqli_num_rows($r) > 0)
{
$opened = false;
while($row = mysqli_fetch_array($r))
{
$opens = $row['opens'];
$opens_array = explode(',', $opens);
foreach($opens_array as $open)
{
$open_array = explode(':', $open);
$sid = $open_array[0];
if($sid == $userID) $opened = true;
}
}
}
if(!$opened)
{
if($ares_emails_id=='') file_get_contents_curl(APP_PATH.'/t/'.$i_array[2].'/'.$i_array[0]);
else file_get_contents_curl(APP_PATH.'/t/'.$i_array[2].'/'.$i_array[0].'/a');
}
function file_get_contents_curl($url)
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
$data = curl_exec($ch);
$response_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
if($response_code!=200) return 'blocked';
else return $data;
}
//tags for links
$q = 'SELECT name, email, list, custom_fields FROM subscribers WHERE id = '.$userID;
$r = mysqli_query($mysqli, $q);
if ($r && mysqli_num_rows($r) > 0)
{
while($row = mysqli_fetch_array($r))
{
$name = $row['name'];
$email = $row['email'];
$list_id = $row['list'];
$custom_values = $row['custom_fields'];
}
}
preg_match_all('/\[([a-zA-Z0-9!#%^&*()+=$@._\-\:|\/?<>~`"\'\s]+),\s*fallback=/i', $link, $matches_var, PREG_PATTERN_ORDER);
preg_match_all('/,\s*fallback=([a-zA-Z0-9!,#%^&*()+=$@._\-\:|\/?<>~`"\'\s]*)\]/i', $link, $matches_val, PREG_PATTERN_ORDER);
preg_match_all('/(\[[a-zA-Z0-9!#%^&*()+=$@._\-\:|\/?<>~`"\'\s]+,\s*fallback=[a-zA-Z0-9!,#%^&*()+=$@._\-\:|\/?<>~`"\'\s]*\])/i', $link, $matches_all, PREG_PATTERN_ORDER);
$matches_var = $matches_var[1];
$matches_val = $matches_val[1];
$matches_all = $matches_all[1];
for($i=0;$i<count($matches_var);$i++)
{
$field = $matches_var[$i];
$fallback = $matches_val[$i];
$tag = $matches_all[$i];
//if tag is Name
if($field=='Name')
{
if($name=='')
$link = str_replace($tag, $fallback, $link);
else
$link = str_replace($tag, $name, $link);
}
else //if not 'Name', it's a custom field
{
//if subscriber has no custom fields, use fallback
if($custom_values=='')
$link = str_replace($tag, $fallback, $link);
//otherwise, replace custom field tag
else
{
$q5 = 'SELECT custom_fields FROM lists WHERE id = '.$list_id;
$r5 = mysqli_query($mysqli, $q5);
if ($r5)
{
while($row2 = mysqli_fetch_array($r5)) $custom_fields = $row2['custom_fields'];
$custom_fields_array = explode('%s%', $custom_fields);
$custom_values_array = explode('%s%', $custom_values);
$cf_count = count($custom_fields_array);
$k = 0;
for($j=0;$j<$cf_count;$j++)
{
$cf_array = explode(':', $custom_fields_array[$j]);
$key = str_replace(' ', '', $cf_array[0]);
//if tag matches a custom field
if($field==$key)
{
//if custom field is empty, use fallback
if($custom_values_array[$j]=='')
$link = str_replace($tag, $fallback, $link);
//otherwise, use the custom field value
else
{
//if custom field is of 'Date' type, format the date
if($cf_array[1]=='Date')
$link = str_replace($tag, strftime("%a, %b %d, %Y", $custom_values_array[$j]), $link);
//otherwise just replace tag with custom field value
else
$link = str_replace($tag, $custom_values_array[$j], $link);
}
}
else
$k++;
}
if($k==$cf_count)
$link = str_replace($tag, $fallback, $link);
}
}
}
}
//Email tag
$link = str_replace('[Email]', $email, $link);
//webversion and unsubscribe tags
if($ares_emails_id=='') //if link does not belong to an autoresponder campaign
{
$link = str_replace('[webversion]', APP_PATH.'/w/'.short($userID).'/'.short($list_id).'/'.short($campaign_id), $link);
$link = str_replace('[unsubscribe]', APP_PATH.'/unsubscribe/'.short($email).'/'.short($list_id).'/'.short($campaign_id), $link);
}
else
{
$link = str_replace('[webversion]', APP_PATH.'/w/'.short($userID).'/'.short($list_id).'/'.short($campaign_id).'/a', $link);
$link = str_replace('[unsubscribe]', APP_PATH.'/unsubscribe/'.short($email).'/'.short($list_id).'/'.short($campaign_id).'/a', $link);
}
//redirect to link
$link = substr($link, 0, 4) != 'http' ? 'http://'.$link : $link;
header("Location: $link");
?>