CRM-15578 - Mailing.submit API - Accept "approval_note"
[civicrm-core.git] / CRM / Mailing / BAO / Recipients.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35class CRM_Mailing_BAO_Recipients extends CRM_Mailing_DAO_Recipients {
36
37 /**
38 * class constructor
39 */
40 function __construct() {
41 parent::__construct();
42 }
43
e0ef6999
EM
44 /**
45 * @param $mailingID
46 *
47 * @return null|string
48 */
6a488035
TO
49 static function mailingSize($mailingID) {
50 $sql = "
51SELECT count(*) as count
52FROM civicrm_mailing_recipients
53WHERE mailing_id = %1
54";
55 $params = array(1 => array($mailingID, 'Integer'));
56 return CRM_Core_DAO::singleValueQuery($sql, $params);
57 }
58
e0ef6999
EM
59 /**
60 * @param $mailingID
61 * @param null $offset
62 * @param null $limit
63 *
64 * @return Object
65 */
6a488035
TO
66 static function mailingQuery($mailingID,
67 $offset = NULL, $limit = NULL
68 ) {
69 $limitString = NULL;
70 if ($limit && $offset !== NULL) {
bf00d1b6 71 $offset = CRM_Utils_Type::escape($offset, 'Int');
dd3a4117 72 $limit = CRM_Utils_Type::escape($limit, 'Int');
bf00d1b6 73
6a488035
TO
74 $limitString = "LIMIT $offset, $limit";
75 }
76
77 $sql = "
78SELECT contact_id, email_id, phone_id
79FROM civicrm_mailing_recipients
80WHERE mailing_id = %1
81 $limitString
82";
83 $params = array(1 => array($mailingID, 'Integer'));
84
85 return CRM_Core_DAO::executeQuery($sql, $params);
86 }
ef643544 87
0ae3d02b
DK
88 /**
89 * Moves a number of randomly-chosen recipients of one Mailing to another Mailing.
90 *
91 * @param int $mailingIdC
92 * Source mailing ID
93 * @param int $newMailingID
94 * Destination mailing ID
95 * @param int $totalLimit
96 * Number of recipients to move
97 */
ef643544 98 static function updateRandomRecipients($mailingIdC, $newMailingID, $totalLimit = NULL) {
99 $limitString = NULL;
100 if ($totalLimit) {
101 $limitString = "LIMIT 0, $totalLimit";
102 }
103 CRM_Core_DAO::executeQuery("DROP TEMPORARY TABLE IF EXISTS mail_C_$mailingIdC");
104 $sql = "
105CREATE TEMPORARY TABLE mail_C_$mailingIdC
106 (mailing_recipient_id int, id int PRIMARY KEY AUTO_INCREMENT, INDEX(mailing_recipient_id))
107 ENGINE=HEAP";
108 CRM_Core_DAO::executeQuery($sql);
109 $sql = "
110INSERT INTO mail_C_$mailingIdC (mailing_recipient_id)
111SELECT mr.id
112FROM civicrm_mailing_recipients mr
113WHERE mr.mailing_id = $mailingIdC
114ORDER BY RAND()
115$limitString
116 ";
117 CRM_Core_DAO::executeQuery($sql);
118 $sql = "
119UPDATE civicrm_mailing_recipients mr
120INNER JOIN mail_C_$mailingIdC temp_mr ON temp_mr.mailing_recipient_id = mr.id
121SET mr.mailing_id = $newMailingID
122 ";
123 CRM_Core_DAO::executeQuery($sql);
124 }
125
6a488035
TO
126}
127