Merge pull request #445 from deepak-srivastava/crm43
[civicrm-core.git] / CRM / SMS / Form / Schedule.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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-2013
32 * $Id$
33 *
34 */
35
36/**
37 *
38 */
39class CRM_SMS_Form_Schedule extends CRM_Core_Form {
40
41 /**
42 * Function to set variables up before form is built
43 *
44 * @return void
45 * @access public
46 */
47 public function preProcess() {
48
49 $this->_mailingID = $this->get('mailing_id');
50
51 if (!$this->_mailingID) {
52 $this->_mailingID = CRM_Utils_Request::retrieve('mid', 'Integer', $this, TRUE);
53 }
54 }
55
56 /**
57 * This function sets the default values for the form.
58 *
59 * @access public
60 *
61 * @return None
62 */
63 function setDefaultValues() {
64 $defaults = array();
65
66 $count = $this->get('count');
67
68 $this->assign('count', $count);
69 $defaults['now'] = 1;
70 return $defaults;
71 }
72
73 /**
74 * Build the form for the last step of the sms wizard
75 *
76 * @param
77 *
78 * @return void
79 * @access public
80 */
81 public function buildQuickform() {
82 $this->addDateTime('start_date', ts('Schedule SMS'), FALSE, array('formatType' => 'mailing'));
83
84 $this->addElement('checkbox', 'now', ts('Send Immediately'));
85
86 $this->addFormRule(array('CRM_SMS_Form_Schedule', 'formRule'), $this);
87
88 $buttons = array(
89 array('type' => 'back',
90 'name' => ts('<< Previous'),
91 ),
92 array(
93 'type' => 'next',
94 'name' => ts('Submit Mass SMS'),
95 'spacing' => '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;',
96 'isDefault' => TRUE,
97 'js' => array('onclick' => "return submitOnce(this,'" . $this->_name . "','" . ts('Processing') . "');"),
98 ),
99 array(
100 'type' => 'cancel',
101 'name' => ts('Continue Later'),
102 ),
103 );
104
105 $this->addButtons($buttons);
106
107 $preview = array();
108 $preview['type'] = CRM_Core_DAO::getFieldValue('CRM_Mailing_DAO_Mailing', $this->_mailingID, 'body_html') ? 'html' : 'text';
109 $preview['viewURL'] = CRM_Utils_System::url('civicrm/mailing/view', "reset=1&id={$this->_mailingID}");
110 $this->assign_by_ref('preview', $preview);
111 }
112
113 /**
114 * Form rule to validate the date selector and/or if we should deliver
115 * immediately.
116 *
117 * Warning: if you make changes here, be sure to also make them in
118 * Retry.php
119 *
120 * @param array $params The form values
121 *
122 * @return boolean True if either we deliver immediately, or the
123 * date is properly set.
124 * @static
125 */
126 public static function formRule($params, $files, $self) {
127 if (!empty($params['_qf_Schedule_submit'])) {
128
129 CRM_Core_Session::setStatus(ts("Your Mass SMS has been saved. Click the 'Continue' action to resume working on it."), ts('Saved'), 'success');
130 $url = CRM_Utils_System::url('civicrm/mailing/browse/unscheduled', 'scheduled=false&reset=1&sms=1');
131 CRM_Utils_System::redirect($url);
132 }
133 if (isset($params['now']) || CRM_Utils_Array::value('_qf_Schedule_back', $params) == '<< Previous') {
134 return TRUE;
135 }
136
137 if (CRM_Utils_Date::format(CRM_Utils_Date::processDate($params['start_date'],
138 $params['start_date_time']
139 )) < CRM_Utils_Date::format(date('YmdHi00'))) {
140 return array(
141 'start_date' =>
142 ts('Start date cannot be earlier than the current time.'),
143 );
144 }
145 return TRUE;
146 }
147
148 /**
149 * Process the posted form values. Create and schedule a Mass SMS.
150 *
151 * @param
152 *
153 * @return void
154 * @access public
155 */
156 public function postProcess() {
157 $params = array();
158
159 $params['mailing_id'] = $ids['mailing_id'] = $this->_mailingID;
160
161 if (empty($params['mailing_id'])) {
162 CRM_Core_Error::fatal(ts('Could not find a mailing id'));
163 }
164
165 foreach (array(
166 'now', 'start_date', 'start_date_time') as $parameter) {
167 $params[$parameter] = $this->controller->exportValue($this->_name,
168 $parameter
169 );
170 }
171
172 $mailing = new CRM_Mailing_BAO_Mailing();
173 $mailing->id = $ids['mailing_id'];
174 if ($mailing->find(TRUE)) {
175 $job = new CRM_Mailing_BAO_Job();
176 $job->mailing_id = $mailing->id;
177 $job->is_test = 0;
178 if ($job->find(TRUE)) {
179 CRM_Core_Error::fatal(ts('A job for this mailing already exists'));
180 }
181
182 if (empty($mailing->is_template)) {
183 $job->status = 'Scheduled';
184 if ($params['now']) {
185 $job->scheduled_date = date('YmdHis');
186 }
187 else {
188 $job->scheduled_date = CRM_Utils_Date::processDate($params['start_date'] . ' ' . $params['start_date_time']);
189 }
190 $job->save();
191 }
192
193 // also set the scheduled_id
194 $session = CRM_Core_Session::singleton();
195 $mailing->scheduled_id = $session->get('userID');
196 $mailing->scheduled_date = date('YmdHis');
197 $mailing->created_date = CRM_Utils_Date::isoToMysql($mailing->created_date);
198 $mailing->save();
199 }
200
201 $session = CRM_Core_Session::singleton();
202 $session->pushUserContext(CRM_Utils_System::url('civicrm/mailing/browse/scheduled',
203 'reset=1&scheduled=true&sms=1'
204 ));
205 }
206
207 /**
208 * Display Name of the form
209 *
210 * @access public
211 *
212 * @return string
213 */
214 public function getTitle() {
215 return ts('Schedule or Send');
216 }
217}
218