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