Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CRM-21316: Add missing code to handle smart group on sms mode #11558

Merged
merged 4 commits into from
Feb 6, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
149 changes: 85 additions & 64 deletions CRM/Mailing/BAO/Mailing.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,20 +125,25 @@ public static function getRecipients($mailingID) {
$isSMSmode = (!CRM_Utils_System::isNull($mailingObj->sms_provider_id));

$mailingGroup = new CRM_Mailing_DAO_MailingGroup();
$recipientsGroup = $excludeSmartGroupIDs = $includeSmartGroupIDs = array();
$recipientsGroup = $excludeSmartGroupIDs = $includeSmartGroupIDs = $priorMailingIDs = array();
$dao = CRM_Utils_SQL_Select::from('civicrm_mailing_group')
->select('GROUP_CONCAT(entity_id SEPARATOR ",") as group_ids, group_type')
->where('mailing_id = #mailing_id AND entity_table = "civicrm_group"')
->groupBy('group_type')
->select('GROUP_CONCAT(entity_id SEPARATOR ",") as group_ids, group_type, entity_table')
->where('mailing_id = #mailing_id AND entity_table IN ("civicrm_group", "civicrm_mailing")')
->groupBy(array('group_type', 'entity_table'))
->param('#mailing_id', $mailingID)
->execute();
while ($dao->fetch()) {
$recipientsGroup[$dao->group_type] = explode(',', $dao->group_ids);
if ($dao->entity_table == 'civicrm_mailing') {
$priorMailingIDs[$dao->group_type] = explode(',', $dao->group_ids);
}
else {
$recipientsGroup[$dao->group_type] = explode(',', $dao->group_ids);
}
}

// there is no need to proceed further if no mailing group is selected to include recipients,
// but before return clear the mailing recipients populated earlier since as per current params no group is selected
if (empty($recipientsGroup['Include'])) {
if (empty($recipientsGroup['Include']) && empty($priorMailingIDs['Include'])) {
CRM_Core_DAO::executeQuery(" DELETE FROM civicrm_mailing_recipients WHERE mailing_id = %1 ", array(1 => array($mailingID, 'Integer')));
return;
}
Expand Down Expand Up @@ -174,6 +179,8 @@ public static function getRecipients($mailingID) {
(contact_id int primary key)
ENGINE=HEAP"
);
// populate exclude temp-table with recipients to be excluded from the list
// on basis of selected recipients groups and/or previous mailing
if (!empty($recipientsGroup['Exclude'])) {
CRM_Utils_SQL_Select::from('civicrm_group_contact')
->select('DISTINCT contact_id')
Expand All @@ -191,6 +198,14 @@ public static function getRecipients($mailingID) {
->execute();
}
}
if (!empty($priorMailingIDs['Exclude'])) {
CRM_Utils_SQL_Select::from('civicrm_mailing_recipients')
->select('DISTINCT contact_id')
->where('mailing_id IN (#mailings)')
->param('#mailings', $priorMailingIDs['Exclude'])
->insertIgnoreInto($excludeTempTablename, array('contact_id'))
->execute();
}

if (!empty($recipientsGroup['Base'])) {
CRM_Utils_SQL_Select::from('civicrm_group_contact')
Expand All @@ -201,79 +216,85 @@ public static function getRecipients($mailingID) {
->execute();
}

$tempColumn = $isSMSmode ? 'phone_id' : 'email_id';
$email = CRM_Core_DAO_Email::getTableName();
$entityColumn = $isSMSmode ? 'phone_id' : 'email_id';
$entityTable = $isSMSmode ? CRM_Core_DAO_Phone::getTableName() : CRM_Core_DAO_Email::getTableName();
// Get all the group contacts we want to include.
$mailingGroup->query(
"CREATE TEMPORARY TABLE $includedTempTablename
(contact_id int primary key, $tempColumn int)
(contact_id int primary key, $entityColumn int)
ENGINE=HEAP"
);

// Criterias to filter recipients that need to be included
$includeFilters = array(
"$contact.do_not_email = 0",
"$contact.is_opt_out = 0",
"$contact.is_deceased <> 1",
$location_filter,
"$email.email IS NOT NULL",
"$email.email != ''",
'temp.contact_id IS NULL',
);

if ($isSMSmode) {
$phone = CRM_Core_DAO_Phone::getTableName();
CRM_Utils_SQL_Select::from($phone)
->select(" DISTINCT $phone.id as phone_id ")
->join($contact, " INNER JOIN $contact ON $phone.contact_id = $contact.id ")
->join('gc', " INNER JOIN civicrm_group_contact gc ON $contact.id = gc.contact_id ")
->join('mg', " INNER JOIN civicrm_mailing_group mg ON gc.group_id = mg.entity_id AND mg.entity_table = 'civicrm_group' ")
->join('temp', " LEFT JOIN $excludeTempTablename temp ON $contact.id = temp.contact_id ")
->where(array(
"mg.group_type = 'Include'",
'mg.search_id IS NULL',
"gc.status = 'Added'",
"$contact.do_not_sms",
"$contact.is_opt_out = 0",
"$contact.is_deceased <> 1",
"$phone.phone_type_id = " . CRM_Utils_Array::value('Mobile', CRM_Core_OptionGroup::values('phone_type', TRUE, FALSE, FALSE, NULL, 'name')),
"$phone.phone IS NOT NULL",
"$phone.phone != ''",
"mg.mailing_id = #mailingID",
'temp.contact_id IS null',
))
->param('#mailingID', $mailingID)
->replaceInto($includedTempTablename, array('contact_id', 'phone_id'))
->execute();
$includeFilters = array(
"mg.group_type = 'Include'",
'mg.search_id IS NULL',
"$contact.is_opt_out = 0",
"$contact.is_deceased <> 1",
"$entityTable.phone_type_id = " . CRM_Core_PseudoConstant::getKey('CRM_Core_DAO_Phone', 'phone_type_id', 'Mobile'),
"$entityTable.phone IS NOT NULL",
"$entityTable.phone != ''",
"$entityTable.is_primary = 1",
"mg.mailing_id = #mailingID",
'temp.contact_id IS null',
);
$order_by = array("$entityTable.is_primary = 1");
}
else {
// Get the group contacts, but only those which are not in the
// exclusion temp table.
CRM_Utils_SQL_Select::from($email)
->select("$contact.id as contact_id, $email.id as email_id")
->join($contact, " INNER JOIN $contact ON $email.contact_id = $contact.id ")
// Criterias to filter recipients that need to be included
$includeFilters = array(
"$contact.do_not_email = 0",
"$contact.is_opt_out = 0",
"$contact.is_deceased <> 1",
$location_filter,
"$entityTable.email IS NOT NULL",
"$entityTable.email != ''",
"mg.mailing_id = #mailingID",
'temp.contact_id IS NULL',
);
}

// Get the group contacts, but only those which are not in the
// exclusion temp table.
if (!empty($recipientsGroup['Include'])) {
CRM_Utils_SQL_Select::from($entityTable)
->select("$contact.id as contact_id, $entityTable.id as $entityColumn")
->join($contact, " INNER JOIN $contact ON $entityTable.contact_id = $contact.id ")
->join('gc', " INNER JOIN civicrm_group_contact gc ON gc.contact_id = $contact.id ")
->join('mg', " INNER JOIN civicrm_mailing_group mg ON gc.group_id = mg.entity_id AND mg.search_id IS NULL ")
->join('temp', " LEFT JOIN $excludeTempTablename temp ON $contact.id = temp.contact_id ")
->where('gc.group_id IN (#groups) AND gc.status = "Added"')
->where($includeFilters)
->groupBy(array("$contact.id", "$email.id"))
->replaceInto($includedTempTablename, array('contact_id', 'email_id'))
->groupBy(array("$contact.id", "$entityTable.id"))
->replaceInto($includedTempTablename, array('contact_id', $entityColumn))
->param('#groups', $recipientsGroup['Include'])
->param('#mailingID', $mailingID)
->execute();
}

// Get recipients selected in prior mailings
if (!empty($priorMailingIDs['Include'])) {
CRM_Utils_SQL_Select::from('civicrm_mailing_recipients')
->select("contact_id, $entityColumn")
->where('mailing_id IN (#mailings)')
->param('#mailings', $priorMailingIDs['Include'])
->insertIgnoreInto($includedTempTablename, array('contact_id', $entityColumn))
->execute();
}

if (count($includeSmartGroupIDs)) {
CRM_Utils_SQL_Select::from($contact)
->select("$contact.id as contact_id, $email.id as email_id")
->join($email, " INNER JOIN $email ON $email.contact_id = $contact.id ")
->join('gc', " INNER JOIN civicrm_group_contact_cache gc ON gc.contact_id = $contact.id ")
->join('temp', " LEFT JOIN $excludeTempTablename temp ON temp.contact_id = $contact.id ")
$query = CRM_Utils_SQL_Select::from($contact)
->select("$contact.id as contact_id, $entityTable.id as $entityColumn")
->join($entityTable, " INNER JOIN $entityTable ON $entityTable.contact_id = $contact.id ")
->join('gc', " INNER JOIN civicrm_group_contact_cache gc ON $contact.id = gc.contact_id ")
->join('mg', " INNER JOIN civicrm_mailing_group mg ON gc.group_id = mg.entity_id AND mg.search_id IS NULL ")
->join('temp', " LEFT JOIN $excludeTempTablename temp ON $contact.id = temp.contact_id ")
->where('gc.group_id IN (#groups)')
->where($includeFilters)
->orderBy($order_by)
->replaceInto($includedTempTablename, array('contact_id', 'email_id'))
->replaceInto($includedTempTablename, array('contact_id', $entityColumn))
->param('#groups', $includeSmartGroupIDs)
->param('#mailingID', $mailingID)
->execute();
}

Expand All @@ -288,7 +309,7 @@ public static function getRecipients($mailingID) {
$dao->search_args,
$dao->entity_id
);
$query = "REPLACE INTO {$includedTempTablename} ($tempColumn, contact_id) {$customSQL} ";
$query = "REPLACE INTO {$includedTempTablename} ($entityColumn, contact_id) {$customSQL} ";
$mailingGroup->query($query);
}

Expand All @@ -297,16 +318,16 @@ public static function getRecipients($mailingID) {
// clear all the mailing recipients before populating
CRM_Core_DAO::executeQuery(" DELETE FROM civicrm_mailing_recipients WHERE mailing_id = %1 ", array(1 => array($mailingID, 'Integer')));

$selectClause = array('#mailingID', 'i.contact_id', "i.$tempColumn");
$selectClause = array('#mailingID', 'i.contact_id', "i.$entityColumn");
// CRM-3975
$orderBy = array("i.contact_id", "i.$tempColumn");
$orderBy = array("i.contact_id", "i.$entityColumn");

$query = CRM_Utils_SQL_Select::from('civicrm_contact contact_a')->join('i', " INNER JOIN {$includedTempTablename} i ON contact_a.id = i.contact_id ");
if ($mailingObj->dedupe_email) {
$orderBy = array("MIN(i.contact_id)", "MIN(i.$tempColumn)");
if (!$isSMSmode && $mailingObj->dedupe_email) {
$orderBy = array("MIN(i.contact_id)", "MIN(i.$entityColumn)");
$query = $query->join('e', " INNER JOIN civicrm_email e ON e.id = i.email_id ")->groupBy("e.email");
if (CRM_Utils_SQL::supportsFullGroupBy()) {
$selectClause = array('#mailingID', 'ANY_VALUE(i.contact_id) contact_id', "ANY_VALUE(i.$tempColumn) $tempColumn", "e.email");
$selectClause = array('#mailingID', 'ANY_VALUE(i.contact_id) contact_id', "ANY_VALUE(i.$entityColumn) $entityColumn", "e.email");
}
}

Expand All @@ -326,12 +347,12 @@ public static function getRecipients($mailingID) {
$sql = $query->toSQL();
CRM_Utils_SQL_Select::from("( $sql ) AS i ")
->select($selectClause)
->insertInto('civicrm_mailing_recipients', array('mailing_id', 'contact_id', $tempColumn))
->insertInto('civicrm_mailing_recipients', array('mailing_id', 'contact_id', $entityColumn))
->param('#mailingID', $mailingID)
->execute();
}
else {
$query->insertInto('civicrm_mailing_recipients', array('mailing_id', 'contact_id', $tempColumn))
$query->insertInto('civicrm_mailing_recipients', array('mailing_id', 'contact_id', $entityColumn))
->param('#mailingID', $mailingID)
->execute();
}
Expand Down
7 changes: 6 additions & 1 deletion ang/crmMailing/Recipients.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,13 @@
mids.push(dv.entity_id);
}
}
// push non existant 0 group/mailing id in order when no recipents group or prior mailing is selected
// this will allow to resuse the below code to handle datamap
if (gids.length === 0) {
return;
gids.push(0);
}
if (mids.length === 0) {
mids.push(0);
}

CRM.api3('Group', 'getlist', { params: { id: { IN: gids }, options: { limit: 0 } }, extra: ["is_hidden"] } ).then(
Expand Down
145 changes: 145 additions & 0 deletions tests/phpunit/CRM/Mailing/BAO/MailingTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
<?php
/*
+--------------------------------------------------------------------+
| CiviCRM version 4.7 |
+--------------------------------------------------------------------+
| Copyright CiviCRM LLC (c) 2004-2017 |
+--------------------------------------------------------------------+
| This file is a part of CiviCRM. |
| |
| CiviCRM is free software; you can copy, modify, and distribute it |
| under the terms of the GNU Affero General Public License |
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
| |
| CiviCRM is distributed in the hope that it will be useful, but |
| WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
| See the GNU Affero General Public License for more details. |
| |
| You should have received a copy of the GNU Affero General Public |
| License and the CiviCRM Licensing Exception along |
| with this program; if not, contact CiviCRM LLC |
| at info[AT]civicrm[DOT]org. If you have questions about the |
| GNU Affero General Public License or the licensing of CiviCRM, |
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
+--------------------------------------------------------------------+
*/

/**
* Class CRM_Mailing_BAO_MailingTest
*/
class CRM_Mailing_BAO_MailingTest extends CiviUnitTestCase {

public function setUp() {
parent::setUp();
}

/**
* Test CRM_Mailing_BAO_Mailing::getRecipients() on sms mode
*/
public function testgetRecipients() {
// Tests for SMS bulk mailing recipients
// +CRM-21320 Ensure primary mobile number is selected over non-primary

// Setup
$smartGroupParams = array(
'formValues' => array('contact_type' => array('IN' => array('Individual'))),
);
$group = $this->smartGroupCreate($smartGroupParams);
$sms_provider = $this->callAPISuccess('SmsProvider', 'create', array(
'sequential' => 1,
'name' => 1,
'title' => "Test",
'username' => "Test",
'password' => "Test",
'api_type' => 1,
'is_active' => 1,
));

// Create Contact 1 and add in group
$contactID1 = $this->individualCreate(array(), 0);
$this->callAPISuccess('GroupContact', 'Create', array(
'group_id' => $group,
'contact_id' => $contactID1,
));

// Create contact 2 and add in group
$contactID2 = $this->individualCreate(array(), 1);
$this->callAPISuccess('GroupContact', 'Create', array(
'group_id' => $group,
'contact_id' => $contactID2,
));

$contactIDPhoneRecords = array(
$contactID1 => array(
'primary_phone_id' => CRM_Utils_Array::value('id', $this->callAPISuccess('Phone', 'create', array(
'contact_id' => $contactID1,
'phone' => "01 01",
'location_type_id' => "Home",
'phone_type_id' => "Mobile",
'is_primary' => 1,
))),
'other_phone_id' => CRM_Utils_Array::value('id', $this->callAPISuccess('Phone', 'create', array(
'contact_id' => $contactID1,
'phone' => "01 02",
'location_type_id' => "Work",
'phone_type_id' => "Mobile",
'is_primary' => 0,
))),
),
$contactID2 => array(
'primary_phone_id' => CRM_Utils_Array::value('id', $this->callAPISuccess('Phone', 'create', array(
'contact_id' => $contactID2,
'phone' => "02 01",
'location_type_id' => "Home",
'phone_type_id' => "Mobile",
'is_primary' => 1,
))),
'other_phone_id' => CRM_Utils_Array::value('id', $this->callAPISuccess('Phone', 'create', array(
'contact_id' => $contactID2,
'phone' => "02 02",
'location_type_id' => "Work",
'phone_type_id' => "Mobile",
'is_primary' => 0,
))),
),
);

// Prepare expected results
$checkPhoneIDs = array(
$contactID1 => $contactIDPhoneRecords[$contactID1]['primary_phone_id'],
$contactID2 => $contactIDPhoneRecords[$contactID2]['primary_phone_id'],
);

// Create mailing
$mailing = $this->callAPISuccess('Mailing', 'create', array('sms_provider_id' => $sms_provider['id']));
$mailing_include_group = $this->callAPISuccess('MailingGroup', 'create', array(
'mailing_id' => $mailing['id'],
'group_type' => "Include",
'entity_table' => "civicrm_group",
'entity_id' => $group,
));

// Populate the recipients table (job id doesn't matter)
CRM_Mailing_BAO_Mailing::getRecipients($mailing['id']);

// Get recipients
$recipients = $this->callAPISuccess('MailingRecipients', 'get', array('mailing_id' => $mailing['id']));

// Check the count is correct
$this->assertEquals(2, $recipients['count'], 'Check recipient count');

// Check we got the 'primary' mobile for both contacts
foreach ($recipients['values'] as $value) {
$this->assertEquals($value['phone_id'], $checkPhoneIDs[$value['contact_id']], 'Check correct phone number for contact ' . $value['contact_id']);
}

// Tidy up
$this->deleteMailing($mailing['id']);
$this->callAPISuccess('SmsProvider', 'Delete', array('id' => $sms_provider['id']));
$this->groupDelete($group);
$this->contactDelete($contactID1);
$this->contactDelete($contactID2);
}

}