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