Merge pull request #4700 from monishdeb/CRM-15709
[civicrm-core.git] / CRM / Mailing / BAO / Mailing.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35require_once 'Mail/mime.php';
65910e59
EM
36
37/**
38 * Class CRM_Mailing_BAO_Mailing
39 */
6a488035
TO
40class CRM_Mailing_BAO_Mailing extends CRM_Mailing_DAO_Mailing {
41
42 /**
43 * An array that holds the complete templates
44 * including any headers or footers that need to be prepended
45 * or appended to the body
46 */
47 private $preparedTemplates = NULL;
48
49 /**
50 * An array that holds the complete templates
51 * including any headers or footers that need to be prepended
52 * or appended to the body
53 */
54 private $templates = NULL;
55
56 /**
57 * An array that holds the tokens that are specifically found in our text and html bodies
58 */
59 private $tokens = NULL;
60
61 /**
62 * An array that holds the tokens that are specifically found in our text and html bodies
63 */
64 private $flattenedTokens = NULL;
65
66 /**
67 * The header associated with this mailing
68 */
69 private $header = NULL;
70
71 /**
72 * The footer associated with this mailing
73 */
74 private $footer = NULL;
75
76 /**
77 * The HTML content of the message
78 */
79 private $html = NULL;
80
81 /**
82 * The text content of the message
83 */
84 private $text = NULL;
85
86 /**
87 * Cached BAO for the domain
88 */
89 private $_domain = NULL;
90
91 /**
100fef9d 92 * Class constructor
6a488035
TO
93 */
94 function __construct() {
95 parent::__construct();
96 }
97
65910e59 98 /**
100fef9d
CW
99 * @param int $job_id
100 * @param int $mailing_id
65910e59
EM
101 * @param null $mode
102 *
103 * @return int
104 */
6a488035
TO
105 static function &getRecipientsCount($job_id, $mailing_id = NULL, $mode = NULL) {
106 // need this for backward compatibility, so we can get count for old mailings
107 // please do not use this function if possible
108 $eq = self::getRecipients($job_id, $mailing_id);
109 return $eq->N;
110 }
111
112 // note that $job_id is used only as a variable in the temp table construction
113 // and does not play a role in the queries generated
65910e59 114 /**
100fef9d
CW
115 * @param int $job_id
116 * @param int $mailing_id
65910e59
EM
117 * @param null $offset
118 * @param null $limit
119 * @param bool $storeRecipients
120 * @param bool $dedupeEmail
121 * @param null $mode
122 *
123 * @return CRM_Mailing_Event_BAO_Queue|string
124 */
6a488035
TO
125 static function &getRecipients(
126 $job_id,
127 $mailing_id = NULL,
128 $offset = NULL,
129 $limit = NULL,
130 $storeRecipients = FALSE,
131 $dedupeEmail = FALSE,
132 $mode = NULL) {
04124b30 133 $mailingGroup = new CRM_Mailing_DAO_MailingGroup();
6a488035
TO
134
135 $mailing = CRM_Mailing_BAO_Mailing::getTableName();
9da8dc8c 136 $job = CRM_Mailing_BAO_MailingJob::getTableName();
04124b30 137 $mg = CRM_Mailing_DAO_MailingGroup::getTableName();
6a488035
TO
138 $eq = CRM_Mailing_Event_DAO_Queue::getTableName();
139 $ed = CRM_Mailing_Event_DAO_Delivered::getTableName();
140 $eb = CRM_Mailing_Event_DAO_Bounce::getTableName();
141
142 $email = CRM_Core_DAO_Email::getTableName();
143 if ($mode == 'sms') {
144 $phone = CRM_Core_DAO_Phone::getTableName();
145 }
146 $contact = CRM_Contact_DAO_Contact::getTableName();
147
148 $group = CRM_Contact_DAO_Group::getTableName();
149 $g2contact = CRM_Contact_DAO_GroupContact::getTableName();
150
bac4cd35 151 $m = new CRM_Mailing_DAO_Mailing();
152 $m->id = $mailing_id;
153 $m->find(TRUE);
154
155 $email_selection_method = $m->email_selection_method;
156 $location_type_id = $m->location_type_id;
157
158 // Note: When determining the ORDER that results are returned, it's
159 // the record that comes last that counts. That's because we are
160 // INSERT'ing INTO a table with a primary id so that last record
161 // over writes any previous record.
162 switch($email_selection_method) {
163 case 'location-exclude':
164 $location_filter = "($email.location_type_id != $location_type_id)";
165 // If there is more than one email that doesn't match the location,
166 // prefer the one marked is_bulkmail, followed by is_primary.
167 $order_by = "ORDER BY $email.is_bulkmail, $email.is_primary";
168 break;
169 case 'location-only':
170 $location_filter = "($email.location_type_id = $location_type_id)";
171 // If there is more than one email of the desired location, prefer
172 // the one marked is_bulkmail, followed by is_primary.
173 $order_by = "ORDER BY $email.is_bulkmail, $email.is_primary";
174 break;
175 case 'location-prefer':
176 $location_filter = "($email.is_bulkmail = 1 OR $email.is_primary = 1 OR $email.location_type_id = $location_type_id)";
177
178 // ORDER BY is more complicated because we have to set an arbitrary
179 // order that prefers the location that we want. We do that using
180 // the FIELD function. For more info, see:
181 // https://dev.mysql.com/doc/refman/5.5/en/string-functions.html#function_field
182 // We assign the location type we want the value "1" by putting it
183 // in the first position after we name the field. All other location
184 // types are left out, so they will be assigned the value 0. That
185 // means, they will all be equally tied for first place, with our
186 // location being last.
187 $order_by = "ORDER BY FIELD($email.location_type_id, $location_type_id), $email.is_bulkmail, $email.is_primary";
188 break;
189 case 'automatic':
190 // fall through to default
191 default:
192 $location_filter = "($email.is_bulkmail = 1 OR $email.is_primary = 1)";
193 $order_by = "ORDER BY $email.is_bulkmail";
194 }
195
6a488035
TO
196 /* Create a temp table for contact exclusion */
197 $mailingGroup->query(
198 "CREATE TEMPORARY TABLE X_$job_id
199 (contact_id int primary key)
200 ENGINE=HEAP"
201 );
202
203 /* Add all the members of groups excluded from this mailing to the temp
204 * table */
205
206 $excludeSubGroup = "INSERT INTO X_$job_id (contact_id)
207 SELECT DISTINCT $g2contact.contact_id
208 FROM $g2contact
209 INNER JOIN $mg
210 ON $g2contact.group_id = $mg.entity_id AND $mg.entity_table = '$group'
211 WHERE
212 $mg.mailing_id = {$mailing_id}
213 AND $g2contact.status = 'Added'
214 AND $mg.group_type = 'Exclude'";
215 $mailingGroup->query($excludeSubGroup);
216
217 /* Add all unsubscribe members of base group from this mailing to the temp
218 * table */
219
220 $unSubscribeBaseGroup = "INSERT INTO X_$job_id (contact_id)
221 SELECT DISTINCT $g2contact.contact_id
222 FROM $g2contact
223 INNER JOIN $mg
224 ON $g2contact.group_id = $mg.entity_id AND $mg.entity_table = '$group'
225 WHERE
226 $mg.mailing_id = {$mailing_id}
227 AND $g2contact.status = 'Removed'
228 AND $mg.group_type = 'Base'";
229 $mailingGroup->query($unSubscribeBaseGroup);
230
231 /* Add all the (intended) recipients of an excluded prior mailing to
232 * the temp table */
233
234 $excludeSubMailing = "INSERT IGNORE INTO X_$job_id (contact_id)
235 SELECT DISTINCT $eq.contact_id
236 FROM $eq
237 INNER JOIN $job
238 ON $eq.job_id = $job.id
239 INNER JOIN $mg
240 ON $job.mailing_id = $mg.entity_id AND $mg.entity_table = '$mailing'
241 WHERE
242 $mg.mailing_id = {$mailing_id}
243 AND $mg.group_type = 'Exclude'";
244 $mailingGroup->query($excludeSubMailing);
245
246 // get all the saved searches AND hierarchical groups
247 // and load them in the cache
248 $sql = "
249SELECT $group.id, $group.cache_date, $group.saved_search_id, $group.children
250FROM $group
251INNER JOIN $mg ON $mg.entity_id = $group.id
252WHERE $mg.entity_table = '$group'
253 AND $mg.group_type = 'Exclude'
254 AND $mg.mailing_id = {$mailing_id}
255 AND ( saved_search_id != 0
256 OR saved_search_id IS NOT NULL
257 OR children IS NOT NULL )
258";
259
260 $groupDAO = CRM_Core_DAO::executeQuery($sql);
261 while ($groupDAO->fetch()) {
262 if ($groupDAO->cache_date == NULL) {
263 CRM_Contact_BAO_GroupContactCache::load($groupDAO);
264 }
265
266 $smartGroupExclude = "
267INSERT IGNORE INTO X_$job_id (contact_id)
268SELECT c.contact_id
269FROM civicrm_group_contact_cache c
270WHERE c.group_id = {$groupDAO->id}
271";
272 $mailingGroup->query($smartGroupExclude);
273 }
274
275 $tempColumn = 'email_id';
276 if ($mode == 'sms') {
277 $tempColumn = 'phone_id';
278 }
279
280 /* Get all the group contacts we want to include */
281
282 $mailingGroup->query(
283 "CREATE TEMPORARY TABLE I_$job_id
284 ($tempColumn int, contact_id int primary key)
285 ENGINE=HEAP"
286 );
287
288 /* Get the group contacts, but only those which are not in the
289 * exclusion temp table */
290
291 $query = "REPLACE INTO I_$job_id (email_id, contact_id)
292
293 SELECT DISTINCT $email.id as email_id,
294 $contact.id as contact_id
295 FROM $email
296 INNER JOIN $contact
297 ON $email.contact_id = $contact.id
298 INNER JOIN $g2contact
299 ON $contact.id = $g2contact.contact_id
300 INNER JOIN $mg
301 ON $g2contact.group_id = $mg.entity_id
302 AND $mg.entity_table = '$group'
303 LEFT JOIN X_$job_id
304 ON $contact.id = X_$job_id.contact_id
305 WHERE
306 ($mg.group_type = 'Include')
307 AND $mg.search_id IS NULL
308 AND $g2contact.status = 'Added'
309 AND $contact.do_not_email = 0
310 AND $contact.is_opt_out = 0
311 AND $contact.is_deceased = 0
bac4cd35 312 AND $location_filter
6a488035
TO
313 AND $email.email IS NOT NULL
314 AND $email.email != ''
315 AND $email.on_hold = 0
316 AND $mg.mailing_id = {$mailing_id}
317 AND X_$job_id.contact_id IS null
bac4cd35 318 $order_by";
6a488035
TO
319
320 if ($mode == 'sms') {
321 $phoneTypes = CRM_Core_OptionGroup::values('phone_type', TRUE, FALSE, FALSE, NULL, 'name');
322 $query = "REPLACE INTO I_$job_id (phone_id, contact_id)
323
324 SELECT DISTINCT $phone.id as phone_id,
325 $contact.id as contact_id
326 FROM $phone
327 INNER JOIN $contact
328 ON $phone.contact_id = $contact.id
329 INNER JOIN $g2contact
330 ON $contact.id = $g2contact.contact_id
331 INNER JOIN $mg
332 ON $g2contact.group_id = $mg.entity_id
333 AND $mg.entity_table = '$group'
334 LEFT JOIN X_$job_id
335 ON $contact.id = X_$job_id.contact_id
336 WHERE
337 ($mg.group_type = 'Include')
338 AND $mg.search_id IS NULL
339 AND $g2contact.status = 'Added'
340 AND $contact.do_not_sms = 0
341 AND $contact.is_opt_out = 0
342 AND $contact.is_deceased = 0
343 AND $phone.phone_type_id = {$phoneTypes['Mobile']}
344 AND $phone.phone IS NOT NULL
345 AND $phone.phone != ''
346 AND $mg.mailing_id = {$mailing_id}
347 AND X_$job_id.contact_id IS null";
348 }
349 $mailingGroup->query($query);
350
351 /* Query prior mailings */
352
353 $query = "REPLACE INTO I_$job_id (email_id, contact_id)
354 SELECT DISTINCT $email.id as email_id,
355 $contact.id as contact_id
356 FROM $email
357 INNER JOIN $contact
358 ON $email.contact_id = $contact.id
359 INNER JOIN $eq
360 ON $eq.contact_id = $contact.id
361 INNER JOIN $job
362 ON $eq.job_id = $job.id
363 INNER JOIN $mg
364 ON $job.mailing_id = $mg.entity_id AND $mg.entity_table = '$mailing'
365 LEFT JOIN X_$job_id
366 ON $contact.id = X_$job_id.contact_id
367 WHERE
368 ($mg.group_type = 'Include')
369 AND $contact.do_not_email = 0
370 AND $contact.is_opt_out = 0
371 AND $contact.is_deceased = 0
bac4cd35 372 AND $location_filter
6a488035
TO
373 AND $email.on_hold = 0
374 AND $mg.mailing_id = {$mailing_id}
375 AND X_$job_id.contact_id IS null
bac4cd35 376 $order_by";
6a488035
TO
377
378 if ($mode == 'sms') {
379 $query = "REPLACE INTO I_$job_id (phone_id, contact_id)
380 SELECT DISTINCT $phone.id as phone_id,
381 $contact.id as contact_id
382 FROM $phone
383 INNER JOIN $contact
384 ON $phone.contact_id = $contact.id
385 INNER JOIN $eq
386 ON $eq.contact_id = $contact.id
387 INNER JOIN $job
388 ON $eq.job_id = $job.id
389 INNER JOIN $mg
390 ON $job.mailing_id = $mg.entity_id AND $mg.entity_table = '$mailing'
391 LEFT JOIN X_$job_id
392 ON $contact.id = X_$job_id.contact_id
393 WHERE
394 ($mg.group_type = 'Include')
395 AND $contact.do_not_sms = 0
396 AND $contact.is_opt_out = 0
397 AND $contact.is_deceased = 0
398 AND $phone.phone_type_id = {$phoneTypes['Mobile']}
399 AND $mg.mailing_id = {$mailing_id}
400 AND X_$job_id.contact_id IS null";
401 }
402 $mailingGroup->query($query);
403
404 $sql = "
405SELECT $group.id, $group.cache_date, $group.saved_search_id, $group.children
406FROM $group
407INNER JOIN $mg ON $mg.entity_id = $group.id
408WHERE $mg.entity_table = '$group'
409 AND $mg.group_type = 'Include'
410 AND $mg.search_id IS NULL
411 AND $mg.mailing_id = {$mailing_id}
412 AND ( saved_search_id != 0
413 OR saved_search_id IS NOT NULL
414 OR children IS NOT NULL )
415";
416
417 $groupDAO = CRM_Core_DAO::executeQuery($sql);
418 while ($groupDAO->fetch()) {
419 if ($groupDAO->cache_date == NULL) {
420 CRM_Contact_BAO_GroupContactCache::load($groupDAO);
421 }
422
423 $smartGroupInclude = "
424INSERT IGNORE INTO I_$job_id (email_id, contact_id)
bac4cd35 425SELECT civicrm_email.id as email_id, c.id as contact_id
6a488035 426FROM civicrm_contact c
bac4cd35 427INNER JOIN civicrm_email ON civicrm_email.contact_id = c.id
6a488035
TO
428INNER JOIN civicrm_group_contact_cache gc ON gc.contact_id = c.id
429LEFT JOIN X_$job_id ON X_$job_id.contact_id = c.id
430WHERE gc.group_id = {$groupDAO->id}
431 AND c.do_not_email = 0
432 AND c.is_opt_out = 0
433 AND c.is_deceased = 0
bac4cd35 434 AND $location_filter
435 AND civicrm_email.on_hold = 0
6a488035 436 AND X_$job_id.contact_id IS null
bac4cd35 437$order_by
6a488035
TO
438";
439 if ($mode == 'sms') {
440 $smartGroupInclude = "
441INSERT IGNORE INTO I_$job_id (phone_id, contact_id)
442SELECT p.id as phone_id, c.id as contact_id
443FROM civicrm_contact c
444INNER JOIN civicrm_phone p ON p.contact_id = c.id
445INNER JOIN civicrm_group_contact_cache gc ON gc.contact_id = c.id
446LEFT JOIN X_$job_id ON X_$job_id.contact_id = c.id
447WHERE gc.group_id = {$groupDAO->id}
448 AND c.do_not_sms = 0
449 AND c.is_opt_out = 0
450 AND c.is_deceased = 0
451 AND p.phone_type_id = {$phoneTypes['Mobile']}
452 AND X_$job_id.contact_id IS null";
453 }
454 $mailingGroup->query($smartGroupInclude);
455 }
456
457 /**
458 * Construct the filtered search queries
459 */
460 $query = "
461SELECT search_id, search_args, entity_id
462FROM $mg
463WHERE $mg.search_id IS NOT NULL
464AND $mg.mailing_id = {$mailing_id}
465";
466 $dao = CRM_Core_DAO::executeQuery($query);
467 while ($dao->fetch()) {
468 $customSQL = CRM_Contact_BAO_SearchCustom::civiMailSQL($dao->search_id,
469 $dao->search_args,
470 $dao->entity_id
471 );
472 $query = "REPLACE INTO I_$job_id ({$tempColumn}, contact_id)
473 $customSQL";
474 $mailingGroup->query($query);
475 }
476
477 /* Get the emails with only location override */
478
479 $query = "REPLACE INTO I_$job_id (email_id, contact_id)
480 SELECT DISTINCT $email.id as local_email_id,
481 $contact.id as contact_id
482 FROM $email
483 INNER JOIN $contact
484 ON $email.contact_id = $contact.id
485 INNER JOIN $g2contact
486 ON $contact.id = $g2contact.contact_id
487 INNER JOIN $mg
488 ON $g2contact.group_id = $mg.entity_id
489 LEFT JOIN X_$job_id
490 ON $contact.id = X_$job_id.contact_id
491 WHERE
492 $mg.entity_table = '$group'
493 AND $mg.group_type = 'Include'
494 AND $g2contact.status = 'Added'
495 AND $contact.do_not_email = 0
496 AND $contact.is_opt_out = 0
497 AND $contact.is_deceased = 0
bac4cd35 498 AND $location_filter
6a488035
TO
499 AND $email.on_hold = 0
500 AND $mg.mailing_id = {$mailing_id}
501 AND X_$job_id.contact_id IS null
bac4cd35 502 $order_by";
6a488035
TO
503 if ($mode == "sms") {
504 $query = "REPLACE INTO I_$job_id (phone_id, contact_id)
505 SELECT DISTINCT $phone.id as phone_id,
506 $contact.id as contact_id
507 FROM $phone
508 INNER JOIN $contact
509 ON $phone.contact_id = $contact.id
510 INNER JOIN $g2contact
511 ON $contact.id = $g2contact.contact_id
512 INNER JOIN $mg
513 ON $g2contact.group_id = $mg.entity_id
514 LEFT JOIN X_$job_id
515 ON $contact.id = X_$job_id.contact_id
516 WHERE
517 $mg.entity_table = '$group'
518 AND $mg.group_type = 'Include'
519 AND $g2contact.status = 'Added'
520 AND $contact.do_not_sms = 0
521 AND $contact.is_opt_out = 0
522 AND $contact.is_deceased = 0
523 AND $phone.phone_type_id = {$phoneTypes['Mobile']}
524 AND $mg.mailing_id = {$mailing_id}
525 AND X_$job_id.contact_id IS null";
526 }
527 $mailingGroup->query($query);
528
529 $results = array();
530
531 $eq = new CRM_Mailing_Event_BAO_Queue();
532
533 list($aclFrom, $aclWhere) = CRM_Contact_BAO_Contact_Permission::cacheClause();
534 $aclWhere = $aclWhere ? "WHERE {$aclWhere}" : '';
535 $limitString = NULL;
536 if ($limit && $offset !== NULL) {
bf00d1b6 537 $offset = CRM_Utils_Type::escape($offset, 'Int');
dd3a4117 538 $limit = CRM_Utils_Type::escape($limit, 'Int');
bf00d1b6 539
6a488035
TO
540 $limitString = "LIMIT $offset, $limit";
541 }
542
543 if ($storeRecipients && $mailing_id) {
544 $sql = "
545DELETE
546FROM civicrm_mailing_recipients
547WHERE mailing_id = %1
548";
549 $params = array(1 => array($mailing_id, 'Integer'));
550 CRM_Core_DAO::executeQuery($sql, $params);
551
552 // CRM-3975
553 $groupBy = $groupJoin = '';
554 if ($dedupeEmail) {
555 $groupJoin = " INNER JOIN civicrm_email e ON e.id = i.email_id";
556 $groupBy = " GROUP BY e.email ";
557 }
558
559 $sql = "
560INSERT INTO civicrm_mailing_recipients ( mailing_id, contact_id, {$tempColumn} )
561SELECT %1, i.contact_id, i.{$tempColumn}
562FROM civicrm_contact contact_a
563INNER JOIN I_$job_id i ON contact_a.id = i.contact_id
564 $groupJoin
565 {$aclFrom}
566 {$aclWhere}
567 $groupBy
568ORDER BY i.contact_id, i.{$tempColumn}
569";
570
571 CRM_Core_DAO::executeQuery($sql, $params);
572
573 // if we need to add all emails marked bulk, do it as a post filter
574 // on the mailing recipients table
575 if (CRM_Core_BAO_Email::isMultipleBulkMail()) {
576 self::addMultipleEmails($mailing_id);
577 }
578 }
579
580 /* Delete the temp table */
581
582 $mailingGroup->reset();
583 $mailingGroup->query("DROP TEMPORARY TABLE X_$job_id");
584 $mailingGroup->query("DROP TEMPORARY TABLE I_$job_id");
585
586 return $eq;
587 }
588
65910e59
EM
589 /**
590 * @param string $type
591 *
592 * @return array
593 */
6a488035 594 private function _getMailingGroupIds($type = 'Include') {
04124b30 595 $mailingGroup = new CRM_Mailing_DAO_MailingGroup();
6a488035 596 $group = CRM_Contact_DAO_Group::getTableName();
411ff19f 597 if (!isset($this->id)) {
6a488035
TO
598 // we're just testing tokens, so return any group
599 $query = "SELECT id AS entity_id
600 FROM $group
601 ORDER BY id
602 LIMIT 1";
603 }
604 else {
605 $query = "SELECT entity_id
606 FROM $mg
607 WHERE mailing_id = {$this->id}
608 AND group_type = '$type'
609 AND entity_table = '$group'";
610 }
611 $mailingGroup->query($query);
612
613 $groupIds = array();
614 while ($mailingGroup->fetch()) {
615 $groupIds[] = $mailingGroup->entity_id;
616 }
617
618 return $groupIds;
619 }
620
621 /**
622 *
623 * Returns the regex patterns that are used for preparing the text and html templates
624 *
625 * @access private
626 *
627 **/
628 private function &getPatterns($onlyHrefs = FALSE) {
629
630 $patterns = array();
631
632 $protos = '(https?|ftp)';
633 $letters = '\w';
634 $gunk = '\{\}/#~:.?+=&;%@!\,\-';
635 $punc = '.:?\-';
636 $any = "{$letters}{$gunk}{$punc}";
637 if ($onlyHrefs) {
638 $pattern = "\\bhref[ ]*=[ ]*([\"'])?(($protos:[$any]+?(?=[$punc]*[^$any]|$)))([\"'])?";
639 }
640 else {
641 $pattern = "\\b($protos:[$any]+?(?=[$punc]*[^$any]|$))";
642 }
643
644 $patterns[] = $pattern;
645 $patterns[] = '\\\\\{\w+\.\w+\\\\\}|\{\{\w+\.\w+\}\}';
646 $patterns[] = '\{\w+\.\w+\}';
647
648 $patterns = '{' . join('|', $patterns) . '}im';
649
650 return $patterns;
651 }
652
653 /**
654 * returns an array that denotes the type of token that we are dealing with
655 * we use the type later on when we are doing a token replcement lookup
656 *
657 * @param string $token The token for which we will be doing adata lookup
658 *
659 * @return array $funcStruct An array that holds the token itself and the type.
660 * the type will tell us which function to use for the data lookup
661 * if we need to do a lookup at all
662 */
663 function &getDataFunc($token) {
664 static $_categories = NULL;
665 static $_categoryString = NULL;
666 if (!$_categories) {
667 $_categories = array(
668 'domain' => NULL,
669 'action' => NULL,
670 'mailing' => NULL,
671 'contact' => NULL,
672 );
673
674 CRM_Utils_Hook::tokens($_categories);
675 $_categoryString = implode('|', array_keys($_categories));
676 }
677
678 $funcStruct = array('type' => NULL, 'token' => $token);
679 $matches = array();
680 if ((preg_match('/^href/i', $token) || preg_match('/^http/i', $token))) {
681 // it is a url so we need to check to see if there are any tokens embedded
682 // if so then call this function again to get the token dataFunc
683 // and assign the type 'embedded' so that the data retrieving function
684 // will know what how to handle this token.
685 if (preg_match_all('/(\{\w+\.\w+\})/', $token, $matches)) {
686 $funcStruct['type'] = 'embedded_url';
687 $funcStruct['embed_parts'] = $funcStruct['token'] = array();
688 foreach ($matches[1] as $match) {
689 $preg_token = '/' . preg_quote($match, '/') . '/';
690 $list = preg_split($preg_token, $token, 2);
691 $funcStruct['embed_parts'][] = $list[0];
692 $token = $list[1];
693 $funcStruct['token'][] = $this->getDataFunc($match);
694 }
695 // fixed truncated url, CRM-7113
696 if ($token) {
697 $funcStruct['embed_parts'][] = $token;
698 }
699 }
700 else {
701 $funcStruct['type'] = 'url';
702 }
703 }
704 elseif (preg_match('/^\{(' . $_categoryString . ')\.(\w+)\}$/', $token, $matches)) {
705 $funcStruct['type'] = $matches[1];
706 $funcStruct['token'] = $matches[2];
707 }
708 elseif (preg_match('/\\\\\{(\w+\.\w+)\\\\\}|\{\{(\w+\.\w+)\}\}/', $token, $matches)) {
709 // we are an escaped token
710 // so remove the escape chars
711 $unescaped_token = preg_replace('/\{\{|\}\}|\\\\\{|\\\\\}/', '', $matches[0]);
712 $funcStruct['token'] = '{' . $unescaped_token . '}';
713 }
714 return $funcStruct;
715 }
716
717 /**
718 *
719 * Prepares the text and html templates
720 * for generating the emails and returns a copy of the
721 * prepared templates
722 *
723 * @access private
724 *
725 **/
726 private function getPreparedTemplates() {
727 if (!$this->preparedTemplates) {
728 $patterns['html'] = $this->getPatterns(TRUE);
729 $patterns['subject'] = $patterns['text'] = $this->getPatterns();
730 $templates = $this->getTemplates();
731
732 $this->preparedTemplates = array();
733
734 foreach (array(
735 'html', 'text', 'subject') as $key) {
736 if (!isset($templates[$key])) {
737 continue;
738 }
739
740 $matches = array();
741 $tokens = array();
742 $split_template = array();
743
744 $email = $templates[$key];
745 preg_match_all($patterns[$key], $email, $matches, PREG_PATTERN_ORDER);
746 foreach ($matches[0] as $idx => $token) {
747 $preg_token = '/' . preg_quote($token, '/') . '/im';
748 list($split_template[], $email) = preg_split($preg_token, $email, 2);
749 array_push($tokens, $this->getDataFunc($token));
750 }
751 if ($email) {
752 $split_template[] = $email;
753 }
754 $this->preparedTemplates[$key]['template'] = $split_template;
755 $this->preparedTemplates[$key]['tokens'] = $tokens;
756 }
757 }
758 return ($this->preparedTemplates);
759 }
760
761 /**
762 *
763 * Retrieve a ref to an array that holds the email and text templates for this email
764 * assembles the complete template including the header and footer
765 * that the user has uploaded or declared (if they have dome that)
766 *
767 *
768 * @return array reference to an assoc array
769 * @access private
770 *
771 **/
772 private function &getTemplates() {
773 if (!$this->templates) {
774 $this->getHeaderFooter();
775 $this->templates = array();
776
777 if ($this->body_text) {
778 $template = array();
779 if ($this->header) {
780 $template[] = $this->header->body_text;
781 }
782
783 $template[] = $this->body_text;
784
785 if ($this->footer) {
786 $template[] = $this->footer->body_text;
787 }
788
789 $this->templates['text'] = join("\n", $template);
790 }
791
792 if ($this->body_html) {
793
794 $template = array();
795 if ($this->header) {
796 $template[] = $this->header->body_html;
797 }
798
799 $template[] = $this->body_html;
800
801 if ($this->footer) {
802 $template[] = $this->footer->body_html;
803 }
804
805 $this->templates['html'] = join("\n", $template);
806
807 // this is where we create a text template from the html template if the text template did not exist
808 // this way we ensure that every recipient will receive an email even if the pref is set to text and the
809 // user uploads an html email only
810 if (!$this->body_text) {
811 $this->templates['text'] = CRM_Utils_String::htmlToText($this->templates['html']);
812 }
813 }
814
815 if ($this->subject) {
816 $template = array();
817 $template[] = $this->subject;
818 $this->templates['subject'] = join("\n", $template);
819 }
820 }
821 return $this->templates;
822 }
823
824 /**
825 *
826 * Retrieve a ref to an array that holds all of the tokens in the email body
827 * where the keys are the type of token and the values are ordinal arrays
828 * that hold the token names (even repeated tokens) in the order in which
829 * they appear in the body of the email.
830 *
831 * note: the real work is done in the _getTokens() function
832 *
833 * this function needs to have some sort of a body assigned
834 * either text or html for this to have any meaningful impact
835 *
836 * @return array reference to an assoc array
837 * @access public
838 *
839 **/
840 public function &getTokens() {
841 if (!$this->tokens) {
842
843 $this->tokens = array('html' => array(), 'text' => array(), 'subject' => array());
844
845 if ($this->body_html) {
846 $this->_getTokens('html');
0d6af924
DL
847 if (!$this->body_text) {
848 // Since the text template was created from html, use the html tokens.
849 // @see CRM_Mailing_BAO_Mailing::getTemplates()
850 $this->tokens['text'] = $this->tokens['html'];
851 }
6a488035
TO
852 }
853
854 if ($this->body_text) {
855 $this->_getTokens('text');
856 }
857
858 if ($this->subject) {
859 $this->_getTokens('subject');
860 }
861 }
862
863 return $this->tokens;
864 }
865
866 /**
867 * Returns the token set for all 3 parts as one set. This allows it to be sent to the
868 * hook in one call and standardizes it across other token workflows
869 *
870 * @return array reference to an assoc array
871 * @access public
872 *
873 **/
874 public function &getFlattenedTokens() {
875 if (!$this->flattenedTokens) {
876 $tokens = $this->getTokens();
877
878 $this->flattenedTokens = CRM_Utils_Token::flattenTokens($tokens);
879 }
880
881 return $this->flattenedTokens;
882 }
883
884 /**
885 *
886 * _getTokens parses out all of the tokens that have been
887 * included in the html and text bodies of the email
888 * we get the tokens and then separate them into an
889 * internal structure named tokens that has the same
890 * form as the static tokens property(?) of the CRM_Utils_Token class.
891 * The difference is that there might be repeated token names as we want the
892 * structures to represent the order in which tokens were found from left to right, top to bottom.
893 *
894 *
895 * @param str $prop name of the property that holds the text that we want to scan for tokens (html, text)
896 * @access private
897 *
898 * @return void
899 */
900 private function _getTokens($prop) {
901 $templates = $this->getTemplates();
902
903 $newTokens = CRM_Utils_Token::getTokens($templates[$prop]);
904
905 foreach ($newTokens as $type => $names) {
906 if (!isset($this->tokens[$prop][$type])) {
907 $this->tokens[$prop][$type] = array();
908 }
909 foreach ($names as $key => $name) {
910 $this->tokens[$prop][$type][] = $name;
911 }
912 }
913 }
914
915 /**
916 * Generate an event queue for a test job
917 *
c490a46a 918 * @param array $testParams contains form values
77b97be7 919 *
6a488035
TO
920 * @return void
921 * @access public
922 */
923 public function getTestRecipients($testParams) {
924 if (array_key_exists($testParams['test_group'], CRM_Core_PseudoConstant::group())) {
925 $contacts = civicrm_api('contact','get', array(
926 'version' =>3,
927 'group' => $testParams['test_group'],
928 'return' => 'id',
929 'options' => array('limit' => 100000000000,
930 ))
931 );
932
933 foreach (array_keys($contacts['values']) as $groupContact) {
934 $query = "
935SELECT civicrm_email.id AS email_id,
936 civicrm_email.is_primary as is_primary,
937 civicrm_email.is_bulkmail as is_bulkmail
938FROM civicrm_email
939INNER JOIN civicrm_contact ON civicrm_email.contact_id = civicrm_contact.id
940WHERE (civicrm_email.is_bulkmail = 1 OR civicrm_email.is_primary = 1)
941AND civicrm_contact.id = {$groupContact}
942AND civicrm_contact.do_not_email = 0
943AND civicrm_contact.is_deceased = 0
944AND civicrm_email.on_hold = 0
945AND civicrm_contact.is_opt_out = 0
946GROUP BY civicrm_email.id
947ORDER BY civicrm_email.is_bulkmail DESC
948";
949 $dao = CRM_Core_DAO::executeQuery($query);
950 if ($dao->fetch()) {
951 $params = array(
952 'job_id' => $testParams['job_id'],
953 'email_id' => $dao->email_id,
954 'contact_id' => $groupContact,
955 );
07c09ae4 956 CRM_Mailing_Event_BAO_Queue::create($params);
6a488035
TO
957 }
958 }
959 }
960 }
961
962 /**
963 * Retrieve the header and footer for this mailing
964 *
965 * @param void
966 *
967 * @return void
968 * @access private
969 */
970 private function getHeaderFooter() {
971 if (!$this->header and $this->header_id) {
972 $this->header = new CRM_Mailing_BAO_Component();
973 $this->header->id = $this->header_id;
974 $this->header->find(TRUE);
975 $this->header->free();
976 }
977
978 if (!$this->footer and $this->footer_id) {
979 $this->footer = new CRM_Mailing_BAO_Component();
980 $this->footer->id = $this->footer_id;
981 $this->footer->find(TRUE);
982 $this->footer->free();
983 }
984 }
985
986 /**
987 * Given and array of headers and a prefix, job ID, event queue ID, and hash,
988 * add a Message-ID header if needed.
989 *
990 * i.e. if the global includeMessageId is set and there isn't already a
991 * Message-ID in the array.
992 * The message ID is structured the same way as a verp. However no interpretation
993 * is placed on the values received, so they do not need to follow the verp
994 * convention.
995 *
996 * @param array $headers Array of message headers to update, in-out
997 * @param string $prefix Prefix for the message ID, use same prefixes as verp
998 * wherever possible
999 * @param string $job_id Job ID component of the generated message ID
1000 * @param string $event_queue_id Event Queue ID component of the generated message ID
1001 * @param string $hash Hash component of the generated message ID.
1002 *
1003 * @return void
1004 */
1005 static function addMessageIdHeader(&$headers, $prefix, $job_id, $event_queue_id, $hash) {
1006 $config = CRM_Core_Config::singleton();
1007 $localpart = CRM_Core_BAO_MailSettings::defaultLocalpart();
1008 $emailDomain = CRM_Core_BAO_MailSettings::defaultDomain();
1009 $includeMessageId = CRM_Core_BAO_MailSettings::includeMessageId();
1010
1011 if ($includeMessageId && (!array_key_exists('Message-ID', $headers))) {
1012 $headers['Message-ID'] = '<' . implode($config->verpSeparator,
1013 array(
1014 $localpart . $prefix,
1015 $job_id,
1016 $event_queue_id,
1017 $hash,
1018 )
1019 ) . "@{$emailDomain}>";
1020 }
1021 }
1022
1023 /**
100fef9d 1024 * Static wrapper for getting verp and urls
6a488035 1025 *
77b97be7
EM
1026 * @param int $job_id ID of the Job associated with this message
1027 * @param int $event_queue_id ID of the EventQueue
1028 * @param string $hash Hash of the EventQueue
1029 * @param string $email Destination address
6a488035 1030 *
77b97be7 1031 * @return array (reference) array array ref that hold array refs to the verp info and urls
6a488035
TO
1032 */
1033 static function getVerpAndUrls($job_id, $event_queue_id, $hash, $email) {
1034 // create a skeleton object and set its properties that are required by getVerpAndUrlsAndHeaders()
1035 $config = CRM_Core_Config::singleton();
1036 $bao = new CRM_Mailing_BAO_Mailing();
1037 $bao->_domain = CRM_Core_BAO_Domain::getDomain();
1038 $bao->from_name = $bao->from_email = $bao->subject = '';
1039
1040 // use $bao's instance method to get verp and urls
1041 list($verp, $urls, $_) = $bao->getVerpAndUrlsAndHeaders($job_id, $event_queue_id, $hash, $email);
1042 return array($verp, $urls);
1043 }
1044
1045 /**
100fef9d 1046 * Get verp, urls and headers
6a488035 1047 *
77b97be7
EM
1048 * @param int $job_id ID of the Job associated with this message
1049 * @param int $event_queue_id ID of the EventQueue
1050 * @param string $hash Hash of the EventQueue
1051 * @param string $email Destination address
6a488035 1052 *
77b97be7
EM
1053 * @param bool $isForward
1054 *
1055 * @return array (reference) array array ref that hold array refs to the verp info, urls, and headers@access private
6a488035
TO
1056 */
1057 private function getVerpAndUrlsAndHeaders($job_id, $event_queue_id, $hash, $email, $isForward = FALSE) {
1058 $config = CRM_Core_Config::singleton();
1059
1060 /**
1061 * Inbound VERP keys:
1062 * reply: user replied to mailing
1063 * bounce: email address bounced
1064 * unsubscribe: contact opts out of all target lists for the mailing
1065 * resubscribe: contact opts back into all target lists for the mailing
1066 * optOut: contact unsubscribes from the domain
1067 */
1068 $verp = array();
1069 $verpTokens = array(
1070 'reply' => 'r',
1071 'bounce' => 'b',
1072 'unsubscribe' => 'u',
1073 'resubscribe' => 'e',
1074 'optOut' => 'o',
1075 );
1076
1077 $localpart = CRM_Core_BAO_MailSettings::defaultLocalpart();
1078 $emailDomain = CRM_Core_BAO_MailSettings::defaultDomain();
1079
1080 foreach ($verpTokens as $key => $value) {
1081 $verp[$key] = implode($config->verpSeparator,
1082 array(
1083 $localpart . $value,
1084 $job_id,
1085 $event_queue_id,
1086 $hash,
1087 )
1088 ) . "@$emailDomain";
1089 }
1090
1091 //handle should override VERP address.
1092 $skipEncode = FALSE;
1093
1094 if ($job_id &&
1095 self::overrideVerp($job_id)
1096 ) {
1097 $verp['reply'] = "\"{$this->from_name}\" <{$this->from_email}>";
1098 }
1099
1100 $urls = array(
1101 'forward' => CRM_Utils_System::url('civicrm/mailing/forward',
1102 "reset=1&jid={$job_id}&qid={$event_queue_id}&h={$hash}",
1103 TRUE, NULL, TRUE, TRUE
1104 ),
1105 'unsubscribeUrl' => CRM_Utils_System::url('civicrm/mailing/unsubscribe',
1106 "reset=1&jid={$job_id}&qid={$event_queue_id}&h={$hash}",
1107 TRUE, NULL, TRUE, TRUE
1108 ),
1109 'resubscribeUrl' => CRM_Utils_System::url('civicrm/mailing/resubscribe',
1110 "reset=1&jid={$job_id}&qid={$event_queue_id}&h={$hash}",
1111 TRUE, NULL, TRUE, TRUE
1112 ),
1113 'optOutUrl' => CRM_Utils_System::url('civicrm/mailing/optout',
1114 "reset=1&jid={$job_id}&qid={$event_queue_id}&h={$hash}",
1115 TRUE, NULL, TRUE, TRUE
1116 ),
1117 'subscribeUrl' => CRM_Utils_System::url('civicrm/mailing/subscribe',
1118 'reset=1',
1119 TRUE, NULL, TRUE, TRUE
1120 ),
1121 );
1122
1123 $headers = array(
1124 'Reply-To' => $verp['reply'],
1125 'Return-Path' => $verp['bounce'],
1126 'From' => "\"{$this->from_name}\" <{$this->from_email}>",
1127 'Subject' => $this->subject,
1128 'List-Unsubscribe' => "<mailto:{$verp['unsubscribe']}>",
1129 );
1130 self::addMessageIdHeader($headers, 'm', $job_id, $event_queue_id, $hash);
1131 if ($isForward) {
1132 $headers['Subject'] = "[Fwd:{$this->subject}]";
1133 }
1134 return array(&$verp, &$urls, &$headers);
1135 }
1136
1137 /**
1138 * Compose a message
1139 *
77b97be7
EM
1140 * @param int $job_id ID of the Job associated with this message
1141 * @param int $event_queue_id ID of the EventQueue
1142 * @param string $hash Hash of the EventQueue
1143 * @param string $contactId ID of the Contact
1144 * @param string $email Destination address
1145 * @param string $recipient To: of the recipient
1146 * @param boolean $test Is this mailing a test?
1147 * @param $contactDetails
1148 * @param $attachments
1149 * @param boolean $isForward Is this mailing compose for forward?
1150 * @param string $fromEmail email address of who is forwardinf it.
1151 *
1152 * @param null $replyToEmail
6a488035 1153 *
14d3f751 1154 * @return Mail_mime The mail object
6a488035
TO
1155 * @access public
1156 */
1157 public function &compose($job_id, $event_queue_id, $hash, $contactId,
1158 $email, &$recipient, $test,
1159 $contactDetails, &$attachments, $isForward = FALSE,
1160 $fromEmail = NULL, $replyToEmail = NULL
1161 ) {
1162 $config = CRM_Core_Config::singleton();
1163 $knownTokens = $this->getTokens();
1164
1165 if ($this->_domain == NULL) {
1166 $this->_domain = CRM_Core_BAO_Domain::getDomain();
1167 }
1168
21bb6c7b
DL
1169 list($verp, $urls, $headers) = $this->getVerpAndUrlsAndHeaders(
1170 $job_id,
6a488035
TO
1171 $event_queue_id,
1172 $hash,
1173 $email,
1174 $isForward
1175 );
21bb6c7b 1176
6a488035
TO
1177 //set from email who is forwarding it and not original one.
1178 if ($fromEmail) {
1179 unset($headers['From']);
1180 $headers['From'] = "<{$fromEmail}>";
1181 }
1182
1183 if ($replyToEmail && ($fromEmail != $replyToEmail)) {
1184 $headers['Reply-To'] = "{$replyToEmail}";
1185 }
1186
1187 if ($contactDetails) {
1188 $contact = $contactDetails;
1189 }
3fefc0e7
DG
1190 elseif ($contactId === 0) {
1191 //anonymous user
1192 $contact = array();
1193 CRM_Utils_Hook::tokenValues($contact, $contactId, $job_id);
1194 }
6a488035
TO
1195 else {
1196 $params = array(array('contact_id', '=', $contactId, 0, 0));
1197 list($contact, $_) = CRM_Contact_BAO_Query::apiQuery($params);
1198
1199 //CRM-4524
1200 $contact = reset($contact);
1201
1202 if (!$contact || is_a($contact, 'CRM_Core_Error')) {
1203 CRM_Core_Error::debug_log_message(ts('CiviMail will not send email to a non-existent contact: %1',
1204 array(1 => $contactId)
1205 ));
1206 // setting this because function is called by reference
1207 //@todo test not calling function by reference
1208 $res = NULL;
1209 return $res;
1210 }
1211
1212 // also call the hook to get contact details
1213 CRM_Utils_Hook::tokenValues($contact, $contactId, $job_id);
1214 }
1215
1216 $pTemplates = $this->getPreparedTemplates();
1217 $pEmails = array();
1218
1219 foreach ($pTemplates as $type => $pTemplate) {
1220 $html = ($type == 'html') ? TRUE : FALSE;
1221 $pEmails[$type] = array();
1222 $pEmail = &$pEmails[$type];
1223 $template = &$pTemplates[$type]['template'];
1224 $tokens = &$pTemplates[$type]['tokens'];
1225 $idx = 0;
1226 if (!empty($tokens)) {
1227 foreach ($tokens as $idx => $token) {
1228 $token_data = $this->getTokenData($token, $html, $contact, $verp, $urls, $event_queue_id);
1229 array_push($pEmail, $template[$idx]);
1230 array_push($pEmail, $token_data);
1231 }
1232 }
1233 else {
1234 array_push($pEmail, $template[$idx]);
1235 }
1236
1237 if (isset($template[($idx + 1)])) {
1238 array_push($pEmail, $template[($idx + 1)]);
1239 }
1240 }
1241
1242 $html = NULL;
1243 if (isset($pEmails['html']) && is_array($pEmails['html']) && count($pEmails['html'])) {
1244 $html = &$pEmails['html'];
1245 }
1246
1247 $text = NULL;
1248 if (isset($pEmails['text']) && is_array($pEmails['text']) && count($pEmails['text'])) {
1249 $text = &$pEmails['text'];
1250 }
1251
1252 // push the tracking url on to the html email if necessary
1253 if ($this->open_tracking && $html) {
1254 array_push($html, "\n" . '<img src="' . $config->userFrameworkResourceURL .
1255 "extern/open.php?q=$event_queue_id\" width='1' height='1' alt='' border='0'>"
1256 );
1257 }
1258
1259 $message = new Mail_mime("\n");
1260
1261 $useSmarty = defined('CIVICRM_MAIL_SMARTY') && CIVICRM_MAIL_SMARTY ? TRUE : FALSE;
1262 if ($useSmarty) {
1263 $smarty = CRM_Core_Smarty::singleton();
1264 // also add the contact tokens to the template
1265 $smarty->assign_by_ref('contact', $contact);
1266 }
1267
1268 $mailParams = $headers;
1269 if ($text && ($test || $contact['preferred_mail_format'] == 'Text' ||
1270 $contact['preferred_mail_format'] == 'Both' ||
1271 ($contact['preferred_mail_format'] == 'HTML' && !array_key_exists('html', $pEmails))
1272 )) {
1273 $textBody = join('', $text);
1274 if ($useSmarty) {
7155133f 1275 $textBody = $smarty->fetch("string:$textBody");
6a488035
TO
1276 }
1277 $mailParams['text'] = $textBody;
1278 }
1279
1280 if ($html && ($test || ($contact['preferred_mail_format'] == 'HTML' ||
1281 $contact['preferred_mail_format'] == 'Both'
1282 ))) {
1283 $htmlBody = join('', $html);
1284 if ($useSmarty) {
7155133f 1285 $htmlBody = $smarty->fetch("string:$htmlBody");
6a488035
TO
1286 }
1287 $mailParams['html'] = $htmlBody;
1288 }
1289
1290 if (empty($mailParams['text']) && empty($mailParams['html'])) {
1291 // CRM-9833
1292 // something went wrong, lets log it and return null (by reference)
1293 CRM_Core_Error::debug_log_message(ts('CiviMail will not send an empty mail body, Skipping: %1',
1294 array(1 => $email)
1295 ));
1296 $res = NULL;
1297 return $res;
1298 }
1299
1300 $mailParams['attachments'] = $attachments;
1301
1302 $mailingSubject = CRM_Utils_Array::value('subject', $pEmails);
1303 if (is_array($mailingSubject)) {
1304 $mailingSubject = join('', $mailingSubject);
1305 }
1306 $mailParams['Subject'] = $mailingSubject;
1307
1308 $mailParams['toName'] = CRM_Utils_Array::value('display_name',
1309 $contact
1310 );
1311 $mailParams['toEmail'] = $email;
1312
1313 CRM_Utils_Hook::alterMailParams($mailParams, 'civimail');
1314
1315 // CRM-10699 support custom email headers
a7488080 1316 if (!empty($mailParams['headers'])) {
6a488035
TO
1317 $headers = array_merge($headers, $mailParams['headers']);
1318 }
1319 //cycle through mailParams and set headers array
1320 foreach ($mailParams as $paramKey => $paramValue) {
1321 //exclude values not intended for the header
1322 if (!in_array($paramKey, array(
1323 'text', 'html', 'attachments', 'toName', 'toEmail'))) {
1324 $headers[$paramKey] = $paramValue;
1325 }
1326 }
1327
1328 if (!empty($mailParams['text'])) {
1329 $message->setTxtBody($mailParams['text']);
1330 }
1331
1332 if (!empty($mailParams['html'])) {
1333 $message->setHTMLBody($mailParams['html']);
1334 }
1335
1336 if (!empty($mailParams['attachments'])) {
1337 foreach ($mailParams['attachments'] as $fileID => $attach) {
1338 $message->addAttachment($attach['fullPath'],
1339 $attach['mime_type'],
1340 $attach['cleanName']
1341 );
1342 }
1343 }
1344
1345 //pickup both params from mail params.
1346 $toName = trim($mailParams['toName']);
1347 $toEmail = trim($mailParams['toEmail']);
1348 if ($toName == $toEmail ||
1349 strpos($toName, '@') !== FALSE
1350 ) {
1351 $toName = NULL;
1352 }
1353 else {
1354 $toName = CRM_Utils_Mail::formatRFC2822Name($toName);
1355 }
1356
1357 $headers['To'] = "$toName <$toEmail>";
1358
1359 $headers['Precedence'] = 'bulk';
1360 // Will test in the mail processor if the X-VERP is set in the bounced email.
1361 // (As an option to replace real VERP for those that can't set it up)
1362 $headers['X-CiviMail-Bounce'] = $verp['bounce'];
1363
1364 //CRM-5058
1365 //token replacement of subject
1366 $headers['Subject'] = $mailingSubject;
1367
1368 CRM_Utils_Mail::setMimeParams($message);
1369 $headers = $message->headers($headers);
1370
1371 //get formatted recipient
1372 $recipient = $headers['To'];
1373
1374 // make sure we unset a lot of stuff
1375 unset($verp);
1376 unset($urls);
1377 unset($params);
1378 unset($contact);
1379 unset($ids);
1380
1381 return $message;
1382 }
1383
1384 /**
1385 *
1386 * get mailing object and replaces subscribeInvite,
1387 * domain and mailing tokens
1388 *
1389 */
b26261eb 1390 public static function tokenReplace(&$mailing) {
6a488035
TO
1391 $domain = CRM_Core_BAO_Domain::getDomain();
1392
1a5727bd 1393 foreach (array('text', 'html') as $type) {
6a488035
TO
1394 $tokens = $mailing->getTokens();
1395 if (isset($mailing->templates[$type])) {
1396 $mailing->templates[$type] = CRM_Utils_Token::replaceSubscribeInviteTokens($mailing->templates[$type]);
1a5727bd
DL
1397 $mailing->templates[$type] = CRM_Utils_Token::replaceDomainTokens(
1398 $mailing->templates[$type],
6a488035
TO
1399 $domain,
1400 $type == 'html' ? TRUE : FALSE,
1401 $tokens[$type]
1402 );
1403 $mailing->templates[$type] = CRM_Utils_Token::replaceMailingTokens($mailing->templates[$type], $mailing, NULL, $tokens[$type]);
1404 }
1405 }
1406 }
1407
1408 /**
1409 *
1410 * getTokenData receives a token from an email
1411 * and returns the appropriate data for the token
1412 *
1413 */
1414 private function getTokenData(&$token_a, $html = FALSE, &$contact, &$verp, &$urls, $event_queue_id) {
1415 $type = $token_a['type'];
1416 $token = $token_a['token'];
1417 $data = $token;
1418
1419 $useSmarty = defined('CIVICRM_MAIL_SMARTY') && CIVICRM_MAIL_SMARTY ? TRUE : FALSE;
1420
1421 if ($type == 'embedded_url') {
1422 $embed_data = array();
1423 foreach ($token as $t) {
1424 $embed_data[] = $this->getTokenData($t, $html = FALSE, $contact, $verp, $urls, $event_queue_id);
1425 }
1426 $numSlices = count($embed_data);
1427 $url = '';
1428 for ($i = 0; $i < $numSlices; $i++) {
1429 $url .= "{$token_a['embed_parts'][$i]}{$embed_data[$i]}";
1430 }
1431 if (isset($token_a['embed_parts'][$numSlices])) {
1432 $url .= $token_a['embed_parts'][$numSlices];
1433 }
1434 // add trailing quote since we've gobbled it up in a previous regex
1435 // function getPatterns, line 431
1436 if (preg_match('/^href[ ]*=[ ]*\'/', $url)) {
1437 $url .= "'";
1438 }
1439 elseif (preg_match('/^href[ ]*=[ ]*\"/', $url)) {
1440 $url .= '"';
1441 }
1442 $data = $url;
1443 }
1444 elseif ($type == 'url') {
1445 if ($this->url_tracking) {
1446 $data = CRM_Mailing_BAO_TrackableURL::getTrackerURL($token, $this->id, $event_queue_id);
ba2c2983
RK
1447 if (!empty($html)) {
1448 $data = htmlentities($data);
1449 }
6a488035
TO
1450 }
1451 else {
1452 $data = $token;
1453 }
1454 }
1455 elseif ($type == 'contact') {
1456 $data = CRM_Utils_Token::getContactTokenReplacement($token, $contact, FALSE, FALSE, $useSmarty);
1457 }
1458 elseif ($type == 'action') {
1459 $data = CRM_Utils_Token::getActionTokenReplacement($token, $verp, $urls, $html);
1460 }
1461 elseif ($type == 'domain') {
1462 $domain = CRM_Core_BAO_Domain::getDomain();
1463 $data = CRM_Utils_Token::getDomainTokenReplacement($token, $domain, $html);
1464 }
1465 elseif ($type == 'mailing') {
1466 if ($token == 'name') {
1467 $data = $this->name;
1468 }
1469 elseif ($token == 'group') {
1470 $groups = $this->getGroupNames();
1471 $data = implode(', ', $groups);
1472 }
1473 }
1474 else {
1475 $data = CRM_Utils_Array::value("{$type}.{$token}", $contact);
1476 }
1477 return $data;
1478 }
1479
1480 /**
1481 * Return a list of group names for this mailing. Does not work with
1482 * prior-mailing targets.
1483 *
1484 * @return array Names of groups receiving this mailing
1485 * @access public
1486 */
1487 public function &getGroupNames() {
1488 if (!isset($this->id)) {
1489 return array();
1490 }
04124b30 1491 $mg = new CRM_Mailing_DAO_MailingGroup();
1492 $mgtable = CRM_Mailing_DAO_MailingGroup::getTableName();
6a488035
TO
1493 $group = CRM_Contact_BAO_Group::getTableName();
1494
1495 $mg->query("SELECT $group.title as name FROM $mgtable
1496 INNER JOIN $group ON $mgtable.entity_id = $group.id
1497 WHERE $mgtable.mailing_id = {$this->id}
1498 AND $mgtable.entity_table = '$group'
1499 AND $mgtable.group_type = 'Include'
1500 ORDER BY $group.name");
1501
1502 $groups = array();
1503 while ($mg->fetch()) {
1504 $groups[] = $mg->name;
1505 }
1506 $mg->free();
1507 return $groups;
1508 }
1509
1510 /**
100fef9d 1511 * Add the mailings
6a488035
TO
1512 *
1513 * @param array $params reference array contains the values submitted by the form
1514 * @param array $ids reference array contains the id
1515 *
1516 * @access public
1517 * @static
1518 *
1519 * @return object
1520 */
1521 static function add(&$params, $ids = array()) {
1522 $id = CRM_Utils_Array::value('mailing_id', $ids, CRM_Utils_Array::value('id', $params));
1523
1524 if ($id) {
1525 CRM_Utils_Hook::pre('edit', 'Mailing', $id, $params);
1526 }
1527 else {
1528 CRM_Utils_Hook::pre('create', 'Mailing', NULL, $params);
1529 }
1530
249c99b5 1531 $mailing = new static();
6a488035
TO
1532 $mailing->id = $id;
1533 $mailing->domain_id = CRM_Utils_Array::value('domain_id', $params, CRM_Core_Config::domainID());
1534
1535 if (!isset($params['replyto_email']) &&
1536 isset($params['from_email'])
1537 ) {
1538 $params['replyto_email'] = $params['from_email'];
1539 }
1540
1541 $mailing->copyValues($params);
1542
1543 $result = $mailing->save();
1544
a7488080 1545 if (!empty($ids['mailing'])) {
6a488035
TO
1546 CRM_Utils_Hook::post('edit', 'Mailing', $mailing->id, $mailing);
1547 }
1548 else {
1549 CRM_Utils_Hook::post('create', 'Mailing', $mailing->id, $mailing);
1550 }
1551
1552 return $result;
1553 }
1554
1555 /**
1556 * Construct a new mailing object, along with job and mailing_group
1557 * objects, from the form values of the create mailing wizard.
1558 *
1559 * @params array $params Form values
1560 *
c490a46a 1561 * @param array $params
af4c09bc
EM
1562 * @param array $ids
1563 *
6a488035
TO
1564 * @return object $mailing The new mailing object
1565 * @access public
1566 * @static
1567 */
1568 public static function create(&$params, $ids = array()) {
6a488035 1569
9510d1b1
DL
1570 // CRM-12430
1571 // Do the below only for an insert
1572 // for an update, we should not set the defaults
1573 if (!isset($ids['id']) && !isset($ids['mailing_id'])) {
1574 // Retrieve domain email and name for default sender
1575 $domain = civicrm_api(
1576 'Domain',
1577 'getsingle',
1578 array(
1579 'version' => 3,
1580 'current_domain' => 1,
1581 'sequential' => 1,
1582 )
1583 );
1584 if (isset($domain['from_email'])) {
1585 $domain_email = $domain['from_email'];
1586 $domain_name = $domain['from_name'];
1587 }
1588 else {
1589 $domain_email = 'info@EXAMPLE.ORG';
1590 $domain_name = 'EXAMPLE.ORG';
1591 }
1592 if (!isset($params['created_id'])) {
1593 $session =& CRM_Core_Session::singleton();
1594 $params['created_id'] = $session->get('userID');
1595 }
1596 $defaults = array(
1597 // load the default config settings for each
1598 // eg reply_id, unsubscribe_id need to use
1599 // correct template IDs here
1600 'override_verp' => TRUE,
1601 'forward_replies' => FALSE,
1602 'open_tracking' => TRUE,
1603 'url_tracking' => TRUE,
902d0e66 1604 'visibility' => 'Public Pages',
9510d1b1
DL
1605 'replyto_email' => $domain_email,
1606 'header_id' => CRM_Mailing_PseudoConstant::defaultComponent('header_id', ''),
1607 'footer_id' => CRM_Mailing_PseudoConstant::defaultComponent('footer_id', ''),
1608 'from_email' => $domain_email,
1609 'from_name' => $domain_name,
1610 'msg_template_id' => NULL,
9510d1b1 1611 'created_id' => $params['created_id'],
1365ea2f 1612 'approver_id' => NULL,
9510d1b1
DL
1613 'auto_responder' => 0,
1614 'created_date' => date('YmdHis'),
1365ea2f
BS
1615 'scheduled_date' => NULL,
1616 'approval_date' => NULL,
9510d1b1
DL
1617 );
1618
1619 // Get the default from email address, if not provided.
1620 if (empty($defaults['from_email'])) {
1621 $defaultAddress = CRM_Core_OptionGroup::values('from_email_address', NULL, NULL, NULL, ' AND is_default = 1');
1622 foreach ($defaultAddress as $id => $value) {
1623 if (preg_match('/"(.*)" <(.*)>/', $value, $match)) {
1624 $defaults['from_email'] = $match[2];
1625 $defaults['from_name'] = $match[1];
1626 }
6a488035
TO
1627 }
1628 }
6a488035 1629
9510d1b1
DL
1630 $params = array_merge($defaults, $params);
1631 }
6a488035
TO
1632
1633 /**
1634 * Could check and warn for the following cases:
1635 *
1636 * - groups OR mailings should be populated.
1637 * - body html OR body text should be populated.
1638 */
1639
1640 $transaction = new CRM_Core_Transaction();
1641
1642 $mailing = self::add($params, $ids);
1643
1644 if (is_a($mailing, 'CRM_Core_Error')) {
1645 $transaction->rollback();
1646 return $mailing;
1647 }
c57f36a1
PJ
1648 // update mailings with hash values
1649 CRM_Contact_BAO_Contact_Utils::generateChecksum($mailing->id, NULL, NULL, NULL, 'mailing', 16);
6a488035
TO
1650
1651 $groupTableName = CRM_Contact_BAO_Group::getTableName();
1652 $mailingTableName = CRM_Mailing_BAO_Mailing::getTableName();
1653
1654 /* Create the mailing group record */
04124b30 1655 $mg = new CRM_Mailing_DAO_MailingGroup();
6a488035
TO
1656 foreach (array('groups', 'mailings') as $entity) {
1657 foreach (array('include', 'exclude', 'base') as $type) {
8cc574cf 1658 if (isset($params[$entity]) && !empty($params[$entity][$type]) &&
9510d1b1 1659 is_array($params[$entity][$type])) {
6a488035
TO
1660 foreach ($params[$entity][$type] as $entityId) {
1661 $mg->reset();
1662 $mg->mailing_id = $mailing->id;
1663 $mg->entity_table = ($entity == 'groups') ? $groupTableName : $mailingTableName;
1664 $mg->entity_id = $entityId;
1665 $mg->group_type = $type;
1666 $mg->save();
1667 }
1668 }
1669 }
1670 }
1671
1672 if (!empty($params['search_id']) && !empty($params['group_id'])) {
1673 $mg->reset();
1674 $mg->mailing_id = $mailing->id;
1675 $mg->entity_table = $groupTableName;
1676 $mg->entity_id = $params['group_id'];
1677 $mg->search_id = $params['search_id'];
1678 $mg->search_args = $params['search_args'];
1679 $mg->group_type = 'Include';
1680 $mg->save();
1681 }
1682
1683 // check and attach and files as needed
1684 CRM_Core_BAO_File::processAttachment($params, 'civicrm_mailing', $mailing->id);
1685
1686 $transaction->commit();
1687
1688 /**
1365ea2f
BS
1689 * create parent job if not yet created
1690 * condition on the existence of a scheduled date
6a488035 1691 */
9e346357 1692 if (!empty($params['scheduled_date']) && $params['scheduled_date'] != 'null') {
9da8dc8c 1693 $job = new CRM_Mailing_BAO_MailingJob();
6a488035
TO
1694 $job->mailing_id = $mailing->id;
1695 $job->status = 'Scheduled';
1696 $job->is_test = 0;
1365ea2f
BS
1697
1698 if ( !$job->find(TRUE) ) {
1699 $job->scheduled_date = $params['scheduled_date'];
1700 $job->save();
1701 }
1702
6a488035 1703 // Populate the recipients.
553f116a 1704 $mailing->getRecipients($job->id, $mailing->id, NULL, NULL, TRUE, FALSE);
6a488035
TO
1705 }
1706
1707 return $mailing;
1708 }
1709
c57f36a1 1710 /**
100fef9d 1711 * Get hash value of the mailing
c57f36a1
PJ
1712 *
1713 */
1714 public static function getMailingHash($id) {
1715 $hash = NULL;
1716 if (CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::MAILING_PREFERENCES_NAME, 'hash_mailing_url')) {
1717 $hash = CRM_Core_DAO::getFieldValue('CRM_Mailing_BAO_Mailing', $id, 'hash', 'id');
1718 }
1719 return $hash;
1720 }
1721
6a488035
TO
1722 /**
1723 * Generate a report. Fetch event count information, mailing data, and job
1724 * status.
1725 *
77b97be7 1726 * @param int $id The mailing id to report
6a488035
TO
1727 * @param boolean $skipDetails whether return all detailed report
1728 *
77b97be7
EM
1729 * @param bool $isSMS
1730 *
6a488035
TO
1731 * @return array Associative array of reporting data
1732 * @access public
1733 * @static
1734 */
1735 public static function &report($id, $skipDetails = FALSE, $isSMS = FALSE) {
1736 $mailing_id = CRM_Utils_Type::escape($id, 'Integer');
1737
1738 $mailing = new CRM_Mailing_BAO_Mailing();
1739
1740 $t = array(
1741 'mailing' => self::getTableName(),
04124b30 1742 'mailing_group' => CRM_Mailing_DAO_MailingGroup::getTableName(),
6a488035 1743 'group' => CRM_Contact_BAO_Group::getTableName(),
9da8dc8c 1744 'job' => CRM_Mailing_BAO_MailingJob::getTableName(),
6a488035
TO
1745 'queue' => CRM_Mailing_Event_BAO_Queue::getTableName(),
1746 'delivered' => CRM_Mailing_Event_BAO_Delivered::getTableName(),
1747 'opened' => CRM_Mailing_Event_BAO_Opened::getTableName(),
1748 'reply' => CRM_Mailing_Event_BAO_Reply::getTableName(),
9d72cede 1749 'unsubscribe' => CRM_Mailing_Event_BAO_Unsubscribe::getTableName(),
6a488035
TO
1750 'bounce' => CRM_Mailing_Event_BAO_Bounce::getTableName(),
1751 'forward' => CRM_Mailing_Event_BAO_Forward::getTableName(),
1752 'url' => CRM_Mailing_BAO_TrackableURL::getTableName(),
1753 'urlopen' =>
1754 CRM_Mailing_Event_BAO_TrackableURLOpen::getTableName(),
1755 'component' => CRM_Mailing_BAO_Component::getTableName(),
1756 'spool' => CRM_Mailing_BAO_Spool::getTableName(),
1757 );
1758
1759
1760 $report = array();
1761 $additionalWhereClause = " AND ";
1762 if (!$isSMS) {
1763 $additionalWhereClause .= " {$t['mailing']}.sms_provider_id IS NULL ";
1764 }
1765 else {
1766 $additionalWhereClause .= " {$t['mailing']}.sms_provider_id IS NOT NULL ";
1767 }
1768
1769 /* Get the mailing info */
1770
1771 $mailing->query("
1772 SELECT {$t['mailing']}.*
1773 FROM {$t['mailing']}
1774 WHERE {$t['mailing']}.id = $mailing_id {$additionalWhereClause}");
1775
1776 $mailing->fetch();
1777
1778 $report['mailing'] = array();
1779 foreach (array_keys(self::fields()) as $field) {
1780 $report['mailing'][$field] = $mailing->$field;
1781 }
1782
1783 //get the campaign
1784 if ($campaignId = CRM_Utils_Array::value('campaign_id', $report['mailing'])) {
1785 $campaigns = CRM_Campaign_BAO_Campaign::getCampaigns($campaignId);
1786 $report['mailing']['campaign'] = $campaigns[$campaignId];
1787 }
1788
1789 //mailing report is called by activity
1790 //we dont need all detail report
1791 if ($skipDetails) {
1792 return $report;
1793 }
1794
1795 /* Get the component info */
1796
1797 $query = array();
1798
1799 $components = array(
1800 'header' => ts('Header'),
1801 'footer' => ts('Footer'),
1802 'reply' => ts('Reply'),
1803 'unsubscribe' => ts('Unsubscribe'),
1804 'optout' => ts('Opt-Out'),
1805 );
1806 foreach (array_keys($components) as $type) {
1807 $query[] = "SELECT {$t['component']}.name as name,
1808 '$type' as type,
1809 {$t['component']}.id as id
1810 FROM {$t['component']}
1811 INNER JOIN {$t['mailing']}
1812 ON {$t['mailing']}.{$type}_id =
1813 {$t['component']}.id
1814 WHERE {$t['mailing']}.id = $mailing_id";
1815 }
1816 $q = '(' . implode(') UNION (', $query) . ')';
1817 $mailing->query($q);
1818
1819 $report['component'] = array();
1820 while ($mailing->fetch()) {
1821 $report['component'][] = array(
1822 'type' => $components[$mailing->type],
1823 'name' => $mailing->name,
1824 'link' =>
1825 CRM_Utils_System::url('civicrm/mailing/component',
1826 "reset=1&action=update&id={$mailing->id}"
1827 ),
1828 );
1829 }
1830
1831 /* Get the recipient group info */
1832
1833 $mailing->query("
1834 SELECT {$t['mailing_group']}.group_type as group_type,
1835 {$t['group']}.id as group_id,
1836 {$t['group']}.title as group_title,
1837 {$t['group']}.is_hidden as group_hidden,
1838 {$t['mailing']}.id as mailing_id,
1839 {$t['mailing']}.name as mailing_name
1840 FROM {$t['mailing_group']}
1841 LEFT JOIN {$t['group']}
1842 ON {$t['mailing_group']}.entity_id = {$t['group']}.id
1843 AND {$t['mailing_group']}.entity_table =
1844 '{$t['group']}'
1845 LEFT JOIN {$t['mailing']}
1846 ON {$t['mailing_group']}.entity_id =
1847 {$t['mailing']}.id
1848 AND {$t['mailing_group']}.entity_table =
1849 '{$t['mailing']}'
1850
1851 WHERE {$t['mailing_group']}.mailing_id = $mailing_id
1852 ");
1853
1854 $report['group'] = array('include' => array(), 'exclude' => array(), 'base' => array());
1855 while ($mailing->fetch()) {
1856 $row = array();
1857 if (isset($mailing->group_id)) {
1858 $row['id'] = $mailing->group_id;
1859 $row['name'] = $mailing->group_title;
1860 $row['link'] = CRM_Utils_System::url('civicrm/group/search',
9510d1b1 1861 "reset=1&force=1&context=smog&gid={$row['id']}"
6a488035
TO
1862 );
1863 }
1864 else {
1865 $row['id'] = $mailing->mailing_id;
1866 $row['name'] = $mailing->mailing_name;
1867 $row['mailing'] = TRUE;
1868 $row['link'] = CRM_Utils_System::url('civicrm/mailing/report',
9510d1b1 1869 "mid={$row['id']}"
6a488035
TO
1870 );
1871 }
1872
1873 /* Rename hidden groups */
1874
1875 if ($mailing->group_hidden == 1) {
1876 $row['name'] = "Search Results";
1877 }
1878
1879 if ($mailing->group_type == 'Include') {
1880 $report['group']['include'][] = $row;
1881 }
1882 elseif ($mailing->group_type == 'Base') {
1883 $report['group']['base'][] = $row;
1884 }
1885 else {
1886 $report['group']['exclude'][] = $row;
1887 }
1888 }
1889
1890 /* Get the event totals, grouped by job (retries) */
1891
1892 $mailing->query("
1893 SELECT {$t['job']}.*,
1894 COUNT(DISTINCT {$t['queue']}.id) as queue,
1895 COUNT(DISTINCT {$t['delivered']}.id) as delivered,
1896 COUNT(DISTINCT {$t['reply']}.id) as reply,
1897 COUNT(DISTINCT {$t['forward']}.id) as forward,
1898 COUNT(DISTINCT {$t['bounce']}.id) as bounce,
1899 COUNT(DISTINCT {$t['urlopen']}.id) as url,
1900 COUNT(DISTINCT {$t['spool']}.id) as spool
1901 FROM {$t['job']}
1902 LEFT JOIN {$t['queue']}
1903 ON {$t['queue']}.job_id = {$t['job']}.id
1904 LEFT JOIN {$t['reply']}
1905 ON {$t['reply']}.event_queue_id = {$t['queue']}.id
1906 LEFT JOIN {$t['forward']}
1907 ON {$t['forward']}.event_queue_id = {$t['queue']}.id
1908 LEFT JOIN {$t['bounce']}
1909 ON {$t['bounce']}.event_queue_id = {$t['queue']}.id
1910 LEFT JOIN {$t['delivered']}
1911 ON {$t['delivered']}.event_queue_id = {$t['queue']}.id
1912 AND {$t['bounce']}.id IS null
1913 LEFT JOIN {$t['urlopen']}
1914 ON {$t['urlopen']}.event_queue_id = {$t['queue']}.id
1915 LEFT JOIN {$t['spool']}
1916 ON {$t['spool']}.job_id = {$t['job']}.id
1917 WHERE {$t['job']}.mailing_id = $mailing_id
1918 AND {$t['job']}.is_test = 0
1919 GROUP BY {$t['job']}.id");
1920
1921 $report['jobs'] = array();
1922 $report['event_totals'] = array();
1923 $elements = array(
1924 'queue', 'delivered', 'url', 'forward',
1925 'reply', 'unsubscribe', 'optout', 'opened', 'bounce', 'spool',
1926 );
1927
1928 // initialize various counters
1929 foreach ($elements as $field) {
1930 $report['event_totals'][$field] = 0;
1931 }
1932
1933 while ($mailing->fetch()) {
1934 $row = array();
1935 foreach ($elements as $field) {
1936 if (isset($mailing->$field)) {
1937 $row[$field] = $mailing->$field;
1938 $report['event_totals'][$field] += $mailing->$field;
1939 }
1940 }
1941
1942 // compute open total separately to discount duplicates
1943 // CRM-1258
1944 $row['opened'] = CRM_Mailing_Event_BAO_Opened::getTotalCount($mailing_id, $mailing->id, TRUE);
1945 $report['event_totals']['opened'] += $row['opened'];
1946
1947 // compute unsub total separately to discount duplicates
1948 // CRM-1783
1949 $row['unsubscribe'] = CRM_Mailing_Event_BAO_Unsubscribe::getTotalCount($mailing_id, $mailing->id, TRUE, TRUE);
1950 $report['event_totals']['unsubscribe'] += $row['unsubscribe'];
1951
1952 $row['optout'] = CRM_Mailing_Event_BAO_Unsubscribe::getTotalCount($mailing_id, $mailing->id, TRUE, FALSE);
1953 $report['event_totals']['optout'] += $row['optout'];
1954
9da8dc8c 1955 foreach (array_keys(CRM_Mailing_BAO_MailingJob::fields()) as $field) {
6a488035
TO
1956 $row[$field] = $mailing->$field;
1957 }
1958
1959 if ($mailing->queue) {
1960 $row['delivered_rate'] = (100.0 * $mailing->delivered) / $mailing->queue;
1961 $row['bounce_rate'] = (100.0 * $mailing->bounce) / $mailing->queue;
1962 $row['unsubscribe_rate'] = (100.0 * $row['unsubscribe']) / $mailing->queue;
1963 $row['optout_rate'] = (100.0 * $row['optout']) / $mailing->queue;
1964 }
1965 else {
1966 $row['delivered_rate'] = 0;
1967 $row['bounce_rate'] = 0;
1968 $row['unsubscribe_rate'] = 0;
1969 $row['optout_rate'] = 0;
1970 }
1971
1972 $row['links'] = array(
1973 'clicks' => CRM_Utils_System::url(
1974 'civicrm/mailing/report/event',
1975 "reset=1&event=click&mid=$mailing_id&jid={$mailing->id}"
1976 ),
1977 'queue' => CRM_Utils_System::url(
1978 'civicrm/mailing/report/event',
1979 "reset=1&event=queue&mid=$mailing_id&jid={$mailing->id}"
1980 ),
1981 'delivered' => CRM_Utils_System::url(
1982 'civicrm/mailing/report/event',
1983 "reset=1&event=delivered&mid=$mailing_id&jid={$mailing->id}"
1984 ),
1985 'bounce' => CRM_Utils_System::url(
1986 'civicrm/mailing/report/event',
1987 "reset=1&event=bounce&mid=$mailing_id&jid={$mailing->id}"
1988 ),
1989 'unsubscribe' => CRM_Utils_System::url(
1990 'civicrm/mailing/report/event',
1991 "reset=1&event=unsubscribe&mid=$mailing_id&jid={$mailing->id}"
1992 ),
1993 'forward' => CRM_Utils_System::url(
1994 'civicrm/mailing/report/event',
1995 "reset=1&event=forward&mid=$mailing_id&jid={$mailing->id}"
1996 ),
1997 'reply' => CRM_Utils_System::url(
1998 'civicrm/mailing/report/event',
1999 "reset=1&event=reply&mid=$mailing_id&jid={$mailing->id}"
2000 ),
2001 'opened' => CRM_Utils_System::url(
2002 'civicrm/mailing/report/event',
2003 "reset=1&event=opened&mid=$mailing_id&jid={$mailing->id}"
2004 ),
2005 );
2006
2007 foreach (array(
9510d1b1 2008 'scheduled_date', 'start_date', 'end_date') as $key) {
6a488035
TO
2009 $row[$key] = CRM_Utils_Date::customFormat($row[$key]);
2010 }
2011 $report['jobs'][] = $row;
2012 }
2013
2014 $newTableSize = CRM_Mailing_BAO_Recipients::mailingSize($mailing_id);
2015
2016 // we need to do this for backward compatibility, since old mailings did not
2017 // use the mailing_recipients table
2018 if ($newTableSize > 0) {
2019 $report['event_totals']['queue'] = $newTableSize;
2020 }
2021 else {
2022 $report['event_totals']['queue'] = self::getRecipientsCount($mailing_id, $mailing_id);
2023 }
2024
a7488080 2025 if (!empty($report['event_totals']['queue'])) {
6a488035
TO
2026 $report['event_totals']['delivered_rate'] = (100.0 * $report['event_totals']['delivered']) / $report['event_totals']['queue'];
2027 $report['event_totals']['bounce_rate'] = (100.0 * $report['event_totals']['bounce']) / $report['event_totals']['queue'];
2028 $report['event_totals']['unsubscribe_rate'] = (100.0 * $report['event_totals']['unsubscribe']) / $report['event_totals']['queue'];
2029 $report['event_totals']['optout_rate'] = (100.0 * $report['event_totals']['optout']) / $report['event_totals']['queue'];
2030 }
2031 else {
2032 $report['event_totals']['delivered_rate'] = 0;
2033 $report['event_totals']['bounce_rate'] = 0;
2034 $report['event_totals']['unsubscribe_rate'] = 0;
2035 $report['event_totals']['optout_rate'] = 0;
2036 }
2037
2038 /* Get the click-through totals, grouped by URL */
2039
2040 $mailing->query("
2041 SELECT {$t['url']}.url,
2042 {$t['url']}.id,
2043 COUNT({$t['urlopen']}.id) as clicks,
2044 COUNT(DISTINCT {$t['queue']}.id) as unique_clicks
2045 FROM {$t['url']}
2046 LEFT JOIN {$t['urlopen']}
2047 ON {$t['urlopen']}.trackable_url_id = {$t['url']}.id
2048 LEFT JOIN {$t['queue']}
2049 ON {$t['urlopen']}.event_queue_id = {$t['queue']}.id
2050 LEFT JOIN {$t['job']}
2051 ON {$t['queue']}.job_id = {$t['job']}.id
2052 WHERE {$t['url']}.mailing_id = $mailing_id
2053 AND {$t['job']}.is_test = 0
2054 GROUP BY {$t['url']}.id");
2055
2056 $report['click_through'] = array();
2057
2058 while ($mailing->fetch()) {
2059 $report['click_through'][] = array(
2060 'url' => $mailing->url,
2061 'link' =>
2062 CRM_Utils_System::url(
2063 'civicrm/mailing/report/event',
2064 "reset=1&event=click&mid=$mailing_id&uid={$mailing->id}"
2065 ),
2066 'link_unique' =>
2067 CRM_Utils_System::url(
2068 'civicrm/mailing/report/event',
2069 "reset=1&event=click&mid=$mailing_id&uid={$mailing->id}&distinct=1"
2070 ),
2071 'clicks' => $mailing->clicks,
2072 'unique' => $mailing->unique_clicks,
2073 'rate' => CRM_Utils_Array::value('delivered', $report['event_totals']) ? (100.0 * $mailing->unique_clicks) / $report['event_totals']['delivered'] : 0,
2074 );
2075 }
2076
2077 $report['event_totals']['links'] = array(
2078 'clicks' => CRM_Utils_System::url(
2079 'civicrm/mailing/report/event',
2080 "reset=1&event=click&mid=$mailing_id"
2081 ),
2082 'clicks_unique' => CRM_Utils_System::url(
2083 'civicrm/mailing/report/event',
2084 "reset=1&event=click&mid=$mailing_id&distinct=1"
2085 ),
2086 'queue' => CRM_Utils_System::url(
2087 'civicrm/mailing/report/event',
2088 "reset=1&event=queue&mid=$mailing_id"
2089 ),
2090 'delivered' => CRM_Utils_System::url(
2091 'civicrm/mailing/report/event',
2092 "reset=1&event=delivered&mid=$mailing_id"
2093 ),
2094 'bounce' => CRM_Utils_System::url(
2095 'civicrm/mailing/report/event',
2096 "reset=1&event=bounce&mid=$mailing_id"
2097 ),
2098 'unsubscribe' => CRM_Utils_System::url(
2099 'civicrm/mailing/report/event',
2100 "reset=1&event=unsubscribe&mid=$mailing_id"
2101 ),
2102 'optout' => CRM_Utils_System::url(
2103 'civicrm/mailing/report/event',
2104 "reset=1&event=optout&mid=$mailing_id"
2105 ),
2106 'forward' => CRM_Utils_System::url(
2107 'civicrm/mailing/report/event',
2108 "reset=1&event=forward&mid=$mailing_id"
2109 ),
2110 'reply' => CRM_Utils_System::url(
2111 'civicrm/mailing/report/event',
2112 "reset=1&event=reply&mid=$mailing_id"
2113 ),
2114 'opened' => CRM_Utils_System::url(
2115 'civicrm/mailing/report/event',
2116 "reset=1&event=opened&mid=$mailing_id"
2117 ),
2118 );
2119
2120
2121 $actionLinks = array(CRM_Core_Action::VIEW => array('name' => ts('Report')));
2122 if (CRM_Core_Permission::check('view all contacts')) {
2123 $actionLinks[CRM_Core_Action::ADVANCED] =
2124 array(
2125 'name' => ts('Advanced Search'),
2126 'url' => 'civicrm/contact/search/advanced',
2127 );
2128 }
2129 $action = array_sum(array_keys($actionLinks));
2130
2131 $report['event_totals']['actionlinks'] = array();
2132 foreach (array(
2133 'clicks', 'clicks_unique', 'queue', 'delivered', 'bounce', 'unsubscribe',
2134 'forward', 'reply', 'opened', 'optout',
2135 ) as $key) {
2136 $url = 'mailing/detail';
2137 $reportFilter = "reset=1&mailing_id_value={$mailing_id}";
87dab4a4 2138 $searchFilter = "force=1&mailing_id=%%mid%%";
6a488035
TO
2139 switch ($key) {
2140 case 'delivered':
2141 $reportFilter .= "&delivery_status_value=successful";
2142 $searchFilter .= "&mailing_delivery_status=Y";
2143 break;
2144
2145 case 'bounce':
2146 $url = "mailing/bounce";
2147 $searchFilter .= "&mailing_delivery_status=N";
2148 break;
2149
2150 case 'forward':
2151 $reportFilter .= "&is_forwarded_value=1";
2152 $searchFilter .= "&mailing_forward=1";
2153 break;
2154
2155 case 'reply':
2156 $reportFilter .= "&is_replied_value=1";
2157 $searchFilter .= "&mailing_reply_status=Y";
2158 break;
2159
2160 case 'unsubscribe':
2161 $reportFilter .= "&is_unsubscribed_value=1";
2162 $searchFilter .= "&mailing_unsubscribe=1";
2163 break;
2164
2165 case 'optout':
2166 $reportFilter .= "&is_optout_value=1";
2167 $searchFilter .= "&mailing_optout=1";
2168 break;
2169
2170 case 'opened':
2171 $url = "mailing/opened";
2172 $searchFilter .= "&mailing_open_status=Y";
2173 break;
2174
2175 case 'clicks':
2176 case 'clicks_unique':
2177 $url = "mailing/clicks";
2178 $searchFilter .= "&mailing_click_status=Y";
2179 break;
2180 }
2181 $actionLinks[CRM_Core_Action::VIEW]['url'] = CRM_Report_Utils_Report::getNextUrl($url, $reportFilter, FALSE, TRUE);
2182 if (array_key_exists(CRM_Core_Action::ADVANCED, $actionLinks)) {
2183 $actionLinks[CRM_Core_Action::ADVANCED]['qs'] = $searchFilter;
2184 }
87dab4a4
AH
2185 $report['event_totals']['actionlinks'][$key] = CRM_Core_Action::formLink(
2186 $actionLinks,
2187 $action,
2188 array('mid' => $mailing_id),
2189 ts('more'),
2190 FALSE,
2191 'mailing.report.action',
2192 'Mailing',
2193 $mailing_id
2194 );
6a488035
TO
2195 }
2196
2197 return $report;
2198 }
2199
2200 /**
2201 * Get the count of mailings
2202 *
2203 * @param
2204 *
2205 * @return int Count
2206 * @access public
2207 */
2208 public function getCount() {
2209 $this->selectAdd();
2210 $this->selectAdd('COUNT(id) as count');
2211
2212 $session = CRM_Core_Session::singleton();
2213 $this->find(TRUE);
2214
2215 return $this->count;
2216 }
2217
65910e59 2218 /**
100fef9d 2219 * @param int $id
65910e59
EM
2220 *
2221 * @throws Exception
2222 */
6a488035
TO
2223 static function checkPermission($id) {
2224 if (!$id) {
2225 return;
2226 }
2227
2228 $mailingIDs = self::mailingACLIDs();
2229 if ($mailingIDs === TRUE) {
2230 return;
2231 }
2232
2233 if (!in_array($id, $mailingIDs)) {
2234 CRM_Core_Error::fatal(ts('You do not have permission to access this mailing report'));
2235 }
2236 return;
2237 }
2238
65910e59
EM
2239 /**
2240 * @param null $alias
2241 *
2242 * @return string
2243 */
6a488035
TO
2244 static function mailingACL($alias = NULL) {
2245 $mailingACL = " ( 0 ) ";
2246
2247 $mailingIDs = self::mailingACLIDs();
2248 if ($mailingIDs === TRUE) {
2249 return " ( 1 ) ";
2250 }
2251
2252 if (!empty($mailingIDs)) {
2253 $mailingIDs = implode(',', $mailingIDs);
2254 $tableName = !$alias ? self::getTableName() : $alias;
2255 $mailingACL = " $tableName.id IN ( $mailingIDs ) ";
2256 }
2257 return $mailingACL;
2258 }
2259
2260 /**
100fef9d 2261 * Returns all the mailings that this user can access. This is dependent on
6a488035
TO
2262 * all the groups that the user has access to.
2263 * However since most civi installs dont use ACL's we special case the condition
2264 * where the user has access to ALL groups, and hence ALL mailings and return a
2265 * value of TRUE (to avoid the downstream where clause with a list of mailing list IDs
2266 *
2267 * @return boolean | array - TRUE if the user has access to all mailings, else array of mailing IDs (possibly empty)
2268 * @static
2269 */
2270 static function mailingACLIDs() {
2271 // CRM-11633
2272 // optimize common case where admin has access
2273 // to all mailings
2274 if (
2275 CRM_Core_Permission::check('view all contacts') ||
2276 CRM_Core_Permission::check('edit all contacts')
2277 ) {
2278 return TRUE;
2279 }
2280
2281 $mailingIDs = array();
2282
2283 // get all the groups that this user can access
2284 // if they dont have universal access
553f116a 2285 $groups = CRM_Core_PseudoConstant::group(NULL, FALSE);
6a488035
TO
2286 if (!empty($groups)) {
2287 $groupIDs = implode(',', array_keys($groups));
6a488035
TO
2288
2289 // get all the mailings that are in this subset of groups
2290 $query = "
8f463994 2291SELECT DISTINCT( m.id ) as id
6a488035
TO
2292 FROM civicrm_mailing m
2293LEFT JOIN civicrm_mailing_group g ON g.mailing_id = m.id
2294 WHERE ( ( g.entity_table like 'civicrm_group%' AND g.entity_id IN ( $groupIDs ) )
2295 OR ( g.entity_table IS NULL AND g.entity_id IS NULL ) )
2296";
2297 $dao = CRM_Core_DAO::executeQuery($query);
2298
2299 $mailingIDs = array();
2300 while ($dao->fetch()) {
2301 $mailingIDs[] = $dao->id;
2302 }
2303 }
2304
2305 return $mailingIDs;
2306 }
2307
2308 /**
2309 * Get the rows for a browse operation
2310 *
77b97be7
EM
2311 * @param int $offset The row number to start from
2312 * @param int $rowCount The nmber of rows to return
2313 * @param string $sort The sql string that describes the sort order
2314 *
2315 * @param null $additionalClause
100fef9d 2316 * @param array $additionalParams
6a488035
TO
2317 *
2318 * @return array The rows
2319 * @access public
2320 */
2321 public function &getRows($offset, $rowCount, $sort, $additionalClause = NULL, $additionalParams = NULL) {
2322 $mailing = self::getTableName();
9da8dc8c 2323 $job = CRM_Mailing_BAO_MailingJob::getTableName();
04124b30 2324 $group = CRM_Mailing_DAO_MailingGroup::getTableName();
6a488035
TO
2325 $session = CRM_Core_Session::singleton();
2326
2327 $mailingACL = self::mailingACL();
2328
2329 //get all campaigns.
2330 $allCampaigns = CRM_Campaign_BAO_Campaign::getCampaigns(NULL, NULL, FALSE, FALSE, FALSE, TRUE);
2331
2332 // we only care about parent jobs, since that holds all the info on
2333 // the mailing
2334 $query = "
2335 SELECT $mailing.id,
2336 $mailing.name,
2337 $job.status,
2338 $mailing.approval_status_id,
2339 MIN($job.scheduled_date) as scheduled_date,
2340 MIN($job.start_date) as start_date,
2341 MAX($job.end_date) as end_date,
2342 createdContact.sort_name as created_by,
2343 scheduledContact.sort_name as scheduled_by,
2344 $mailing.created_id as created_id,
2345 $mailing.scheduled_id as scheduled_id,
2346 $mailing.is_archived as archived,
2347 $mailing.created_date as created_date,
2348 campaign_id,
2349 $mailing.sms_provider_id as sms_provider_id
2350 FROM $mailing
2351 LEFT JOIN $job ON ( $job.mailing_id = $mailing.id AND $job.is_test = 0 AND $job.parent_id IS NULL )
2352 LEFT JOIN civicrm_contact createdContact ON ( civicrm_mailing.created_id = createdContact.id )
2353 LEFT JOIN civicrm_contact scheduledContact ON ( civicrm_mailing.scheduled_id = scheduledContact.id )
2354 WHERE $mailingACL $additionalClause
2355 GROUP BY $mailing.id ";
2356
2357 if ($sort) {
2358 $orderBy = trim($sort->orderBy());
2359 if (!empty($orderBy)) {
2360 $query .= " ORDER BY $orderBy";
2361 }
2362 }
2363
2364 if ($rowCount) {
bf00d1b6
DL
2365 $offset = CRM_Utils_Type::escape($offset, 'Int');
2366 $rowCount = CRM_Utils_Type::escape($rowCount, 'Int');
2367
6a488035
TO
2368 $query .= " LIMIT $offset, $rowCount ";
2369 }
2370
2371 if (!$additionalParams) {
2372 $additionalParams = array();
2373 }
2374
2375 $dao = CRM_Core_DAO::executeQuery($query, $additionalParams);
2376
2377 $rows = array();
2378 while ($dao->fetch()) {
2379 $rows[] = array(
2380 'id' => $dao->id,
2381 'name' => $dao->name,
2382 'status' => $dao->status ? $dao->status : 'Not scheduled',
2383 'created_date' => CRM_Utils_Date::customFormat($dao->created_date),
2384 'scheduled' => CRM_Utils_Date::customFormat($dao->scheduled_date),
2385 'scheduled_iso' => $dao->scheduled_date,
2386 'start' => CRM_Utils_Date::customFormat($dao->start_date),
2387 'end' => CRM_Utils_Date::customFormat($dao->end_date),
2388 'created_by' => $dao->created_by,
2389 'scheduled_by' => $dao->scheduled_by,
2390 'created_id' => $dao->created_id,
2391 'scheduled_id' => $dao->scheduled_id,
2392 'archived' => $dao->archived,
2393 'approval_status_id' => $dao->approval_status_id,
2394 'campaign_id' => $dao->campaign_id,
2395 'campaign' => empty($dao->campaign_id) ? NULL : $allCampaigns[$dao->campaign_id],
2396 'sms_provider_id' => $dao->sms_provider_id,
2397 );
2398 }
2399 return $rows;
2400 }
2401
2402 /**
100fef9d 2403 * Show detail Mailing report
6a488035
TO
2404 *
2405 * @param int $id
2406 *
77b97be7 2407 * @return string
6a488035
TO
2408 * @static
2409 * @access public
2410 */
2411 static function showEmailDetails($id) {
2412 return CRM_Utils_System::url('civicrm/mailing/report', "mid=$id");
2413 }
2414
2415 /**
2416 * Delete Mails and all its associated records
2417 *
2418 * @param int $id id of the mail to delete
2419 *
2420 * @return void
2421 * @access public
2422 * @static
2423 */
2424 public static function del($id) {
2425 if (empty($id)) {
2426 CRM_Core_Error::fatal();
2427 }
2428
4eeb36c8
DL
2429 CRM_Utils_Hook::pre('delete', 'Mailing', $id, CRM_Core_DAO::$_nullArray);
2430
6a488035
TO
2431 // delete all file attachments
2432 CRM_Core_BAO_File::deleteEntityFile('civicrm_mailing',
2433 $id
2434 );
2435
2436 $dao = new CRM_Mailing_DAO_Mailing();
2437 $dao->id = $id;
2438 $dao->delete();
2439
2440 CRM_Core_Session::setStatus(ts('Selected mailing has been deleted.'), ts('Deleted'), 'success');
4eeb36c8
DL
2441
2442 CRM_Utils_Hook::post('delete', 'Mailing', $id, $dao);
6a488035
TO
2443 }
2444
2445 /**
2446 * Delete Jobss and all its associated records
2447 * related to test Mailings
2448 *
2449 * @param int $id id of the Job to delete
2450 *
2451 * @return void
2452 * @access public
2453 * @static
2454 */
2455 public static function delJob($id) {
2456 if (empty($id)) {
2457 CRM_Core_Error::fatal();
2458 }
2459
9da8dc8c 2460 $dao = new CRM_Mailing_BAO_MailingJob();
6a488035
TO
2461 $dao->id = $id;
2462 $dao->delete();
2463 }
2464
ffd93213
EM
2465 /**
2466 * @return array
2467 */
6a488035
TO
2468 function getReturnProperties() {
2469 $tokens = &$this->getTokens();
2470
2471 $properties = array();
2472 if (isset($tokens['html']) &&
2473 isset($tokens['html']['contact'])
2474 ) {
2475 $properties = array_merge($properties, $tokens['html']['contact']);
2476 }
2477
2478 if (isset($tokens['text']) &&
2479 isset($tokens['text']['contact'])
2480 ) {
2481 $properties = array_merge($properties, $tokens['text']['contact']);
2482 }
2483
2484 if (isset($tokens['subject']) &&
2485 isset($tokens['subject']['contact'])
2486 ) {
2487 $properties = array_merge($properties, $tokens['subject']['contact']);
2488 }
2489
2490 $returnProperties = array();
2491 $returnProperties['display_name'] = $returnProperties['contact_id'] = $returnProperties['preferred_mail_format'] = $returnProperties['hash'] = 1;
2492
2493 foreach ($properties as $p) {
2494 $returnProperties[$p] = 1;
2495 }
2496
2497 return $returnProperties;
2498 }
2499
2500 /**
100fef9d 2501 * Build the compose mail form
6a488035 2502 *
c490a46a 2503 * @param CRM_Core_Form $form
6a488035 2504 *
355ba699 2505 * @return void
6a488035
TO
2506 * @access public
2507 */
2508 public static function commonCompose(&$form) {
2509 //get the tokens.
2510 $tokens = CRM_Core_SelectValues::contactTokens();
2511
6a488035
TO
2512 $className = CRM_Utils_System::getClassName($form);
2513 if ($className == 'CRM_Mailing_Form_Upload') {
2514 $tokens = array_merge(CRM_Core_SelectValues::mailingTokens(), $tokens);
2515 }
2516 elseif ($className == 'CRM_Admin_Form_ScheduleReminders') {
2517 $tokens = array_merge(CRM_Core_SelectValues::activityTokens(), $tokens);
2518 $tokens = array_merge(CRM_Core_SelectValues::eventTokens(), $tokens);
2519 $tokens = array_merge(CRM_Core_SelectValues::membershipTokens(), $tokens);
2520 }
2521 elseif ($className == 'CRM_Event_Form_ManageEvent_ScheduleReminders') {
2522 $tokens = array_merge(CRM_Core_SelectValues::eventTokens(), $tokens);
2523 }
2524
2525 //sorted in ascending order tokens by ignoring word case
ac0a3db5 2526 $form->assign('tokens', CRM_Utils_Token::formatTokensForDisplay($tokens));
6a488035 2527
1e035d58 2528 $templates = array();
6a488035 2529
b1fb566e 2530 $textFields = array('text_message' => ts('HTML Format'), 'sms_text_message' => ts('SMS Message'));
1e035d58 2531 $modePrefixes = array('Mail' => NULL, 'SMS' => 'SMS');
6a488035
TO
2532
2533 if ($className != 'CRM_SMS_Form_Upload' && $className != 'CRM_Contact_Form_Task_SMS' &&
2534 $className != 'CRM_Contact_Form_Task_SMS'
2535 ) {
2536 $form->addWysiwyg('html_message',
b1fb566e 2537 ts('HTML Format'),
6a488035
TO
2538 array(
2539 'cols' => '80', 'rows' => '8',
2540 'onkeyup' => "return verify(this)",
2541 )
2542 );
1e035d58 2543
2544 if ($className != 'CRM_Admin_Form_ScheduleReminders') {
2545 unset($modePrefixes['SMS']);
2546 }
2547 }
2548 else {
2549 unset($textFields['text_message']);
2550 unset($modePrefixes['Mail']);
2551 }
2552
2553 //insert message Text by selecting "Select Template option"
2554 foreach ($textFields as $id => $label) {
2555 $prefix = NULL;
2556 if ($id == 'sms_text_message') {
2557 $prefix = "SMS";
2558 $form->assign('max_sms_length', CRM_SMS_Provider::MAX_SMS_CHAR);
2559 }
2560 $form->add('textarea', $id, $label,
2561 array(
2562 'cols' => '80', 'rows' => '8',
2563 'onkeyup' => "return verify(this, '{$prefix}')",
2564 )
2565 );
2566 }
2567
2568 foreach ($modePrefixes as $prefix) {
2569 if ($prefix == 'SMS') {
2570 $templates[$prefix] = CRM_Core_BAO_MessageTemplate::getMessageTemplates(FALSE, TRUE);
2571 }
2572 else {
2573 $templates[$prefix] = CRM_Core_BAO_MessageTemplate::getMessageTemplates(FALSE);
2574 }
2575
2576 if (!empty($templates[$prefix])) {
2577 $form->assign('templates', TRUE);
2578
2579 $form->add('select', "{$prefix}template", ts('Use Template'),
2580 array('' => ts('- select -')) + $templates[$prefix], FALSE,
2581 array('onChange' => "selectValue( this.value, '{$prefix}');")
2582 );
2583 }
2584 $form->add('checkbox', "{$prefix}updateTemplate", ts('Update Template'), NULL);
2585
2586 $form->add('checkbox', "{$prefix}saveTemplate", ts('Save As New Template'), NULL, FALSE,
2587 array('onclick' => "showSaveDetails(this, '{$prefix}');")
2588 );
2589 $form->add('text', "{$prefix}saveTemplateName", ts('Template Title'));
6a488035
TO
2590 }
2591 }
2592
2593 /**
100fef9d 2594 * Build the compose PDF letter form
6a488035 2595 *
c490a46a 2596 * @param CRM_Core_Form $form
6a488035 2597 *
355ba699 2598 * @return void
6a488035
TO
2599 * @access public
2600 */
66d0e5f3 2601 public static function commonLetterCompose(&$form) {
6a488035
TO
2602 //get the tokens.
2603 $tokens = CRM_Core_SelectValues::contactTokens();
2604 if (CRM_Utils_System::getClassName($form) == 'CRM_Mailing_Form_Upload') {
2605 $tokens = array_merge(CRM_Core_SelectValues::mailingTokens(), $tokens);
2606 }
2d3e3c7b 2607 //@todo move this fn onto the form
6a488035
TO
2608 if (CRM_Utils_System::getClassName($form) == 'CRM_Contribute_Form_Task_PDFLetter') {
2609 $tokens = array_merge(CRM_Core_SelectValues::contributionTokens(), $tokens);
2610 }
2611
2d3e3c7b 2612 if(method_exists($form, 'listTokens')) {
2613 $tokens = array_merge($form->listTokens(), $tokens);
2614 }
2615
ac0a3db5 2616 $form->assign('tokens', CRM_Utils_Token::formatTokensForDisplay($tokens));
6a488035 2617
c6327d7d 2618 $form->_templates = CRM_Core_BAO_MessageTemplate::getMessageTemplates(FALSE);
6a488035
TO
2619 if (!empty($form->_templates)) {
2620 $form->assign('templates', TRUE);
2621 $form->add('select', 'template', ts('Select Template'),
2622 array(
2623 '' => ts('- select -')) + $form->_templates, FALSE,
8474fc16 2624 array('onChange' => "selectValue( this.value,'' );")
6a488035
TO
2625 );
2626 $form->add('checkbox', 'updateTemplate', ts('Update Template'), NULL);
2627 }
2628
2629 $form->add('checkbox', 'saveTemplate', ts('Save As New Template'), NULL, FALSE,
2630 array('onclick' => "showSaveDetails(this);")
2631 );
2632 $form->add('text', 'saveTemplateName', ts('Template Title'));
2633
2634
2635 $form->addWysiwyg('html_message',
2636 ts('Your Letter'),
2637 array(
2638 'cols' => '80', 'rows' => '8',
2639 'onkeyup' => "return verify(this)",
2640 )
2641 );
66d0e5f3 2642 $action = CRM_Utils_Request::retrieve('action', 'String', $form, FALSE);
6a488035
TO
2643 if ((CRM_Utils_System::getClassName($form) == 'CRM_Contact_Form_Task_PDF') &&
2644 $action == CRM_Core_Action::VIEW
2645 ) {
2646 $form->freeze('html_message');
2647 }
2648 }
2649
2650 /**
2651 * Get the search based mailing Ids
2652 *
2653 * @return array $mailingIDs, searched base mailing ids.
2654 * @access public
2655 */
2656 public function searchMailingIDs() {
04124b30 2657 $group = CRM_Mailing_DAO_MailingGroup::getTableName();
6a488035
TO
2658 $mailing = self::getTableName();
2659
2660 $query = "
2661SELECT $mailing.id as mailing_id
2662 FROM $mailing, $group
2663 WHERE $group.mailing_id = $mailing.id
2664 AND $group.group_type = 'Base'";
2665
2666 $searchDAO = CRM_Core_DAO::executeQuery($query);
2667 $mailingIDs = array();
2668 while ($searchDAO->fetch()) {
2669 $mailingIDs[] = $searchDAO->mailing_id;
2670 }
2671
2672 return $mailingIDs;
2673 }
2674
2675 /**
2676 * Get the content/components of mailing based on mailing Id
2677 *
2678 * @param $report array of mailing report
2679 *
2680 * @param $form reference of this
2681 *
77b97be7
EM
2682 * @param bool $isSMS
2683 *
2684 * @return array $report array content/component.@access public
6a488035 2685 */
323696fa 2686 static function getMailingContent(&$report, &$form, $isSMS = FALSE) {
6a488035
TO
2687 $htmlHeader = $textHeader = NULL;
2688 $htmlFooter = $textFooter = NULL;
2689
2690 if (!$isSMS) {
2691 if ($report['mailing']['header_id']) {
2692 $header = new CRM_Mailing_BAO_Component();
2693 $header->id = $report['mailing']['header_id'];
2694 $header->find(TRUE);
2695 $htmlHeader = $header->body_html;
2696 $textHeader = $header->body_text;
2697 }
2698
2699 if ($report['mailing']['footer_id']) {
2700 $footer = new CRM_Mailing_BAO_Component();
2701 $footer->id = $report['mailing']['footer_id'];
2702 $footer->find(TRUE);
2703 $htmlFooter = $footer->body_html;
2704 $textFooter = $footer->body_text;
2705 }
2706 }
2707
c57f36a1
PJ
2708 $mailingKey = $form->_mailing_id;
2709 if (!$isSMS) {
2710 if ($hash = CRM_Mailing_BAO_Mailing::getMailingHash($mailingKey)) {
2711 $mailingKey = $hash;
2712 }
2713 }
2714
6a488035 2715 if (!empty($report['mailing']['body_text'])) {
c57f36a1 2716 $url = CRM_Utils_System::url('civicrm/mailing/view', 'reset=1&text=1&id=' . $mailingKey);
d839d441 2717 $form->assign('textViewURL', $url);
6a488035
TO
2718 }
2719
2720 if (!$isSMS) {
2721 if (!empty($report['mailing']['body_html'])) {
c57f36a1 2722 $url = CRM_Utils_System::url('civicrm/mailing/view', 'reset=1&id=' . $mailingKey);
d839d441 2723 $form->assign('htmlViewURL', $url);
6a488035
TO
2724 }
2725 }
2726
2727 if (!$isSMS) {
2728 $report['mailing']['attachment'] = CRM_Core_BAO_File::attachmentInfo('civicrm_mailing', $form->_mailing_id);
2729 }
2730 return $report;
2731 }
2732
65910e59 2733 /**
100fef9d 2734 * @param int $jobID
65910e59
EM
2735 *
2736 * @return mixed
2737 */
6a488035
TO
2738 static function overrideVerp($jobID) {
2739 static $_cache = array();
2740
2741 if (!isset($_cache[$jobID])) {
2742 $query = "
2743SELECT override_verp
2744FROM civicrm_mailing
2745INNER JOIN civicrm_mailing_job ON civicrm_mailing.id = civicrm_mailing_job.mailing_id
2746WHERE civicrm_mailing_job.id = %1
2747";
2748 $params = array(1 => array($jobID, 'Integer'));
2749 $_cache[$jobID] = CRM_Core_DAO::singleValueQuery($query, $params);
2750 }
2751 return $_cache[$jobID];
2752 }
2753
65910e59
EM
2754 /**
2755 * @param null $mode
2756 *
2757 * @return bool
2758 * @throws Exception
2759 */
6a488035
TO
2760 static function processQueue($mode = NULL) {
2761 $config = &CRM_Core_Config::singleton();
6a488035
TO
2762
2763 if ($mode == NULL && CRM_Core_BAO_MailSettings::defaultDomain() == "EXAMPLE.ORG") {
07c09ae4 2764 throw new CRM_Core_Exception(ts('The <a href="%1">default mailbox</a> has not been configured. You will find <a href="%2">more info in the online user and administrator guide</a>', array(1 => CRM_Utils_System::url('civicrm/admin/mailSettings', 'reset=1'), 2 => "http://book.civicrm.org/user/advanced-configuration/email-system-configuration/")));
6a488035
TO
2765 }
2766
2767 // check if we are enforcing number of parallel cron jobs
2768 // CRM-8460
2769 $gotCronLock = FALSE;
6a488035 2770
29cb51c2 2771 if (property_exists($config, 'mailerJobsMax') && $config->mailerJobsMax && $config->mailerJobsMax > 1) {
6a488035
TO
2772 $lockArray = range(1, $config->mailerJobsMax);
2773 shuffle($lockArray);
2774
2775 // check if we are using global locks
2ede60ec
DL
2776 $serverWideLock = CRM_Core_BAO_Setting::getItem(
2777 CRM_Core_BAO_Setting::MAILING_PREFERENCES_NAME,
6a488035
TO
2778 'civimail_server_wide_lock'
2779 );
2780 foreach ($lockArray as $lockID) {
2781 $cronLock = new CRM_Core_Lock("civimail.cronjob.{$lockID}", NULL, $serverWideLock);
2782 if ($cronLock->isAcquired()) {
2783 $gotCronLock = TRUE;
2784 break;
2785 }
2786 }
2787
2788 // exit here since we have enuf cronjobs running
2789 if (!$gotCronLock) {
2790 CRM_Core_Error::debug_log_message('Returning early, since max number of cronjobs running');
2791 return TRUE;
2792 }
2793 }
2794
2795 // load bootstrap to call hooks
2796
2797 // Split up the parent jobs into multiple child jobs
29cb51c2
PJ
2798 $mailerJobSize = (property_exists($config, 'mailerJobSize')) ? $config->mailerJobSize : NULL;
2799 CRM_Mailing_BAO_MailingJob::runJobs_pre($mailerJobSize, $mode);
9da8dc8c 2800 CRM_Mailing_BAO_MailingJob::runJobs(NULL, $mode);
2801 CRM_Mailing_BAO_MailingJob::runJobs_post($mode);
6a488035
TO
2802
2803 // lets release the global cron lock if we do have one
2804 if ($gotCronLock) {
2805 $cronLock->release();
2806 }
2807
6a488035
TO
2808 return TRUE;
2809 }
2810
65910e59 2811 /**
100fef9d 2812 * @param int $mailingID
65910e59 2813 */
ac3efd6f 2814 private static function addMultipleEmails($mailingID) {
6a488035
TO
2815 $sql = "
2816INSERT INTO civicrm_mailing_recipients
2817 (mailing_id, email_id, contact_id)
2818SELECT %1, e.id, e.contact_id FROM civicrm_email e
2819WHERE e.on_hold = 0
2820AND e.is_bulkmail = 1
2821AND e.contact_id IN
2822 ( SELECT contact_id FROM civicrm_mailing_recipients mr WHERE mailing_id = %1 )
2823AND e.id NOT IN ( SELECT email_id FROM civicrm_mailing_recipients mr WHERE mailing_id = %1 )
2824";
2825 $params = array(1 => array($mailingID, 'Integer'));
2826
2827 $dao = CRM_Core_DAO::executeQuery($sql, $params);
2828 }
2829
65910e59
EM
2830 /**
2831 * @param bool $isSMS
2832 *
2833 * @return mixed
2834 */
39eb89f4 2835 static function getMailingsList($isSMS = FALSE) {
6a488035
TO
2836 static $list = array();
2837 $where = " WHERE ";
2838 if (!$isSMS) {
2839 $where .= " civicrm_mailing.sms_provider_id IS NULL ";
2840 }
2841 else {
2842 $where .= " civicrm_mailing.sms_provider_id IS NOT NULL ";
2843 }
2844
2845 if (empty($list)) {
2846 $query = "
2847SELECT civicrm_mailing.id, civicrm_mailing.name, civicrm_mailing_job.end_date
2848FROM civicrm_mailing
2849INNER JOIN civicrm_mailing_job ON civicrm_mailing.id = civicrm_mailing_job.mailing_id {$where}
2850ORDER BY civicrm_mailing.name";
2851 $mailing = CRM_Core_DAO::executeQuery($query);
2852
2853 while ($mailing->fetch()) {
2854 $list[$mailing->id] = "{$mailing->name} :: {$mailing->end_date}";
2855 }
2856 }
2857
2858 return $list;
2859 }
2860
65910e59 2861 /**
100fef9d 2862 * @param int $mid
65910e59
EM
2863 *
2864 * @return null|string
2865 */
6a488035
TO
2866 static function hiddenMailingGroup($mid) {
2867 $sql = "
2868SELECT g.id
2869FROM civicrm_mailing m
2870INNER JOIN civicrm_mailing_group mg ON mg.mailing_id = m.id
2871INNER JOIN civicrm_group g ON mg.entity_id = g.id AND mg.entity_table = 'civicrm_group'
2872WHERE g.is_hidden = 1
2873AND mg.group_type = 'Include'
2874AND m.id = %1
2875";
2876 $params = array( 1 => array( $mid, 'Integer' ) );
2877 return CRM_Core_DAO::singleValueQuery($sql, $params);
2878 }
553f116a
KJ
2879
2880 /**
2881 * This function is a wrapper for ajax activity selector
2882 *
2883 * @param array $params associated array for params record id.
2884 *
2885 * @return array $contactActivities associated array of contact activities
2886 * @access public
2887 */
2888 public static function getContactMailingSelector(&$params) {
2889 // format the params
2890 $params['offset'] = ($params['page'] - 1) * $params['rp'];
2891 $params['rowCount'] = $params['rp'];
2892 $params['sort'] = CRM_Utils_Array::value('sortBy', $params);
2893 $params['caseId'] = NULL;
553f116a
KJ
2894
2895 // get contact mailings
2896 $mailings = CRM_Mailing_BAO_Mailing::getContactMailings($params);
2897
2898 // add total
2899 $params['total'] = CRM_Mailing_BAO_Mailing::getContactMailingsCount($params);
2900
de1cbb7c 2901 //CRM-12814
7c006637 2902 if (!empty($mailings)) {
6b62f1bb
DG
2903 $openCounts = CRM_Mailing_Event_BAO_Opened::getMailingContactCount(array_keys($mailings), $params['contact_id']);
2904 $clickCounts = CRM_Mailing_Event_BAO_TrackableURLOpen::getMailingContactCount(array_keys($mailings), $params['contact_id']);
de1cbb7c
BS
2905 }
2906
553f116a
KJ
2907 // format params and add links
2908 $contactMailings = array();
2909 foreach ($mailings as $mailingId => $values) {
2910 $contactMailings[$mailingId]['subject'] = $values['subject'];
2911 $contactMailings[$mailingId]['start_date'] = CRM_Utils_Date::customFormat($values['start_date']);
0f0855d8 2912 $contactMailings[$mailingId]['recipients'] = CRM_Utils_System::href(ts('(recipients)'), 'civicrm/mailing/report/event',
5a99d240 2913 "mid={$values['mailing_id']}&reset=1&cid={$params['contact_id']}&event=queue&context=mailing");
7c006637 2914
553f116a 2915 $contactMailings[$mailingId]['mailing_creator'] = CRM_Utils_System::href(
7c006637 2916 $values['creator_name'],
2917 'civicrm/contact/view',
2918 "reset=1&cid={$values['creator_id']}");
553f116a 2919
de1cbb7c 2920 //CRM-12814
6b62f1bb
DG
2921 $contactMailings[$mailingId]['openstats'] = "Opens: ".
2922 CRM_Utils_Array::value($values['mailing_id'], $openCounts, 0).
2923 "<br />Clicks: ".
2924 CRM_Utils_Array::value($values['mailing_id'], $clickCounts, 0);
50f5a393 2925
a582d9f2
KJ
2926 $actionLinks = array(
2927 CRM_Core_Action::VIEW => array(
7c006637 2928 'name' => ts('View'),
2929 'url' => 'civicrm/mailing/view',
c57f36a1 2930 'qs' => "reset=1&id=%%mkey%%",
a582d9f2 2931 'title' => ts('View Mailing'),
fc164be7 2932 'class' => 'crm-popup',
a582d9f2
KJ
2933 ),
2934 CRM_Core_Action::BROWSE => array(
2935 'name' => ts('Mailing Report'),
2936 'url' => 'civicrm/mailing/report',
87dab4a4 2937 'qs' => "mid=%%mid%%&reset=1&cid=%%cid%%&context=mailing",
a582d9f2
KJ
2938 'title' => ts('View Mailing Report'),
2939 )
2940 );
2941
c57f36a1
PJ
2942 $mailingKey = $values['mailing_id'];
2943 if ($hash = CRM_Mailing_BAO_Mailing::getMailingHash($mailingKey)) {
2944 $mailingKey = $hash;
2945 }
2946
87dab4a4
AH
2947 $contactMailings[$mailingId]['links'] = CRM_Core_Action::formLink(
2948 $actionLinks,
2949 null,
2950 array(
2951 'mid' => $values['mailing_id'],
2952 'cid' => $params['contact_id'],
c57f36a1 2953 'mkey' => $mailingKey,
87dab4a4
AH
2954 ),
2955 ts('more'),
2956 FALSE,
2957 'mailing.contact.action',
2958 'Mailing',
2959 $values['mailing_id']
2960 );
553f116a
KJ
2961 }
2962
2963 return $contactMailings;
2964 }
2965
2966 /**
100fef9d 2967 * Retrieve contact mailing
553f116a
KJ
2968 *
2969 * @param array $params associated array
2970 *
2971 * @return array of mailings for a contact
2972 *
2973 * @static
2974 * @access public
2975 */
2976 static public function getContactMailings(&$params) {
2977 $params['version'] = 3;
82845090
KJ
2978 $params['offset'] = ($params['page'] - 1) * $params['rp'];
2979 $params['limit'] = $params['rp'];
2980 $params['sort'] = CRM_Utils_Array::value('sortBy', $params);
2981
553f116a
KJ
2982 $result = civicrm_api('MailingContact', 'get', $params);
2983 return $result['values'];
2984 }
2985
2986 /**
100fef9d 2987 * Retrieve contact mailing count
553f116a
KJ
2988 *
2989 * @param array $params associated array
2990 *
2991 * @return int count of mailings for a contact
2992 *
2993 * @static
2994 * @access public
2995 */
2996 static public function getContactMailingsCount(&$params) {
553f116a 2997 $params['version'] = 3;
7c006637 2998 return civicrm_api('MailingContact', 'getcount', $params);
553f116a 2999 }
af4c09bc 3000}