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