Merge pull request #11962 from compucorp/55-hide-adding-option-value-for-locked-groups
[civicrm-core.git] / CRM / Admin / Form / ScheduleReminders.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
8c9251b3 31 * @copyright CiviCRM LLC (c) 2004-2018
6a488035
TO
32 */
33
34/**
ce064e4f 35 * This class generates form components for Scheduling Reminders.
6a488035
TO
36 */
37class CRM_Admin_Form_ScheduleReminders extends CRM_Admin_Form {
38
39 /**
eceb18cc 40 * Scheduled Reminder ID.
6a488035
TO
41 */
42 protected $_id = NULL;
43
44 public $_freqUnits;
45
46 /**
eceb18cc 47 * Build the form object.
6a488035
TO
48 */
49 public function buildQuickForm() {
50 parent::buildQuickForm();
51 $this->_mappingID = $mappingID = NULL;
a3e3eea1 52 $providersCount = CRM_SMS_BAO_Provider::activeProviderCount();
4d3e4dbe 53 $this->_context = CRM_Utils_Request::retrieve('context', 'String', $this);
6a488035 54
9c74fabc
WA
55 //CRM-16777: Don't provide access to administer schedule reminder page, with user that does not have 'administer CiviCRM' permission
56 if (empty($this->_context) && !CRM_Core_Permission::check('administer CiviCRM')) {
57 CRM_Core_Error::fatal(ts('You do not have permission to access this page.'));
58 }
121eba46
WA
59 //CRM-16777: When user have ACLs 'edit' permission for specific event, do not give access to add, delete & updtae
60 //schedule reminder for other events.
61 else {
62 $this->_compId = CRM_Utils_Request::retrieve('compId', 'Integer', $this);
63 if (!CRM_Event_BAO_Event::checkPermission($this->_compId, CRM_Core_Permission::EDIT)) {
64 CRM_Core_Error::fatal(ts('You do not have permission to access this page.'));
65 }
66 }
9c74fabc 67
6a488035 68 if ($this->_action & (CRM_Core_Action::DELETE)) {
4d3e4dbe 69 $reminderName = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_ActionSchedule', $this->_id, 'title');
6a488035 70 if ($this->_context == 'event') {
4d3e4dbe 71 $this->_compId = CRM_Utils_Request::retrieve('compId', 'Integer', $this);
6a488035
TO
72 }
73 $this->assign('reminderName', $reminderName);
74 return;
75 }
76 elseif ($this->_action & (CRM_Core_Action::UPDATE)) {
c301f76e 77 $this->_mappingID = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_ActionSchedule', $this->_id, 'mapping_id');
6a488035 78 if ($this->_context == 'event') {
4d3e4dbe 79 $this->_compId = CRM_Utils_Request::retrieve('compId', 'Integer', $this);
6a488035
TO
80 }
81 }
4d3e4dbe 82 elseif (!empty($this->_context)) {
83 if ($this->_context == 'event') {
84 $this->_compId = CRM_Utils_Request::retrieve('compId', 'Integer', $this);
4d3e4dbe 85 $isTemplate = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event', $this->_compId, 'is_template');
50a23755 86 $mapping = CRM_Utils_Array::first(CRM_Core_BAO_ActionSchedule::getMappings(array(
46f5566c 87 'id' => $isTemplate ? CRM_Event_ActionMapping::EVENT_TPL_MAPPING_ID : CRM_Event_ActionMapping::EVENT_NAME_MAPPING_ID,
50a23755
TO
88 )));
89 if ($mapping) {
9e1bf145 90 $this->_mappingID = $mapping->getId();
50a23755
TO
91 }
92 else {
4d3e4dbe 93 CRM_Core_Error::fatal('Could not find mapping for event scheduled reminders.');
94 }
95 }
264ebe5d 96 }
97
02fc859b
TO
98 if (!empty($_POST) && !empty($_POST['entity']) && empty($this->_context)) {
99 $mappingID = $_POST['entity'][0];
100 }
101 elseif ($this->_mappingID) {
102 $mappingID = $this->_mappingID;
93fdcf55 103 if ($this->_context == 'event') {
104 $this->add('hidden', 'mappingID', $mappingID);
105 }
02fc859b 106 }
4d3e4dbe 107
6a488035
TO
108 $this->add(
109 'text',
110 'title',
111 ts('Title'),
0c843583 112 CRM_Core_DAO::getAttribute('CRM_Core_DAO_ActionSchedule', 'title'),
6a488035
TO
113 TRUE
114 );
115
0905ee5d
TO
116 $mappings = CRM_Core_BAO_ActionSchedule::getMappings();
117 $selectedMapping = $mappings[$mappingID ? $mappingID : 1];
118 $entityRecipientLabels = $selectedMapping->getRecipientTypes() + CRM_Core_BAO_ActionSchedule::getAdditionalRecipients();
119 $this->assign('entityMapping', json_encode(
120 CRM_Utils_Array::collectMethod('getEntity', $mappings)
121 ));
122 $this->assign('recipientMapping', json_encode(
123 array_combine(array_keys($entityRecipientLabels), array_keys($entityRecipientLabels))
124 ));
6a488035 125
4d3e4dbe 126 if (empty($this->_context)) {
353ffa53 127 $sel = &$this->add(
4d3e4dbe 128 'hierselect',
353ffa53
TO
129 'entity',
130 ts('Entity'),
131 array(
132 'name' => 'entity[0]',
133 'style' => 'vertical-align: top;',
21c744ca 134 )
4d3e4dbe 135 );
0905ee5d
TO
136 $sel->setOptions(array(
137 CRM_Utils_Array::collectMethod('getLabel', $mappings),
138 CRM_Core_BAO_ActionSchedule::getAllEntityValueLabels(),
139 CRM_Core_BAO_ActionSchedule::getAllEntityStatusLabels(),
140 ));
6a488035 141
4d3e4dbe 142 if (is_a($sel->_elements[1], 'HTML_QuickForm_select')) {
143 // make second selector a multi-select -
144 $sel->_elements[1]->setMultiple(TRUE);
145 $sel->_elements[1]->setSize(5);
146 }
147
148 if (is_a($sel->_elements[2], 'HTML_QuickForm_select')) {
149 // make third selector a multi-select -
150 $sel->_elements[2]->setMultiple(TRUE);
151 $sel->_elements[2]->setSize(5);
152 }
153 }
154 else {
0905ee5d
TO
155 // Dig deeper - this code is sublimely stupid.
156 $allEntityStatusLabels = CRM_Core_BAO_ActionSchedule::getAllEntityStatusLabels();
157 $options = $allEntityStatusLabels[$this->_mappingID][0];
4d3e4dbe 158 $attributes = array('multiple' => 'multiple', 'class' => 'crm-select2 huge', 'placeholder' => $options[0]);
159 unset($options[0]);
160 $this->add('select', 'entity', ts('Recipient(s)'), $options, TRUE, $attributes);
161 $this->assign('context', $this->_context);
6a488035
TO
162 }
163
164 //get the frequency units.
8fe4b69f 165 $this->_freqUnits = CRM_Core_SelectValues::getRecurringFrequencyUnits();
6a488035 166
6a488035 167 //reminder_interval
dc5689ec 168 $this->add('number', 'start_action_offset', ts('When'), array('class' => 'six', 'min' => 0));
4054a23f
DRJ
169 $this->addRule('start_action_offset', ts('Value should be a positive number'), 'positiveInteger');
170
b30461e4 171 $isActive = ts('Scheduled Reminder Active');
a3e3eea1 172 $recordActivity = ts('Record activity for automated email');
173 if ($providersCount) {
7b007e61 174 $this->assign('sms', $providersCount);
a3e3eea1 175 $recordActivity = ts('Record activity for automated email or SMS');
176 $options = CRM_Core_OptionGroup::values('msg_mode');
177 $this->add('select', 'mode', ts('Send as'), $options);
178
179 $providers = CRM_SMS_BAO_Provider::getProviders(NULL, NULL, TRUE, 'is_default desc');
180
181 $providerSelect = array();
182 foreach ($providers as $provider) {
183 $providerSelect[$provider['id']] = $provider['title'];
184 }
1e035d58 185 $this->add('select', 'sms_provider_id', ts('SMS Provider'), $providerSelect, TRUE);
a3e3eea1 186 }
6a488035
TO
187
188 foreach ($this->_freqUnits as $val => $label) {
189 $freqUnitsDisplay[$val] = ts('%1(s)', array(1 => $label));
190 }
191
192 $this->addDate('absolute_date', ts('Start Date'), FALSE, array('formatType' => 'mailing'));
193
194 //reminder_frequency
195 $this->add('select', 'start_action_unit', ts('Frequency'), $freqUnitsDisplay, TRUE);
196
02fc859b 197 $condition = array(
353ffa53 198 'before' => ts('before'),
6a488035
TO
199 'after' => ts('after'),
200 );
201 //reminder_action
202 $this->add('select', 'start_action_condition', ts('Action Condition'), $condition);
203
0905ee5d 204 $this->add('select', 'start_action_date', ts('Date Field'), $selectedMapping->getDateFields(), TRUE);
6a488035 205
a3e3eea1 206 $this->addElement('checkbox', 'record_activity', $recordActivity);
6a488035
TO
207
208 $this->addElement('checkbox', 'is_repeat', ts('Repeat'),
581c7be2 209 NULL, array('onchange' => "return showHideByValue('is_repeat',true,'repeatFields','table-row','radio',false);")
6a488035
TO
210 );
211
212 $this->add('select', 'repetition_frequency_unit', ts('every'), $freqUnitsDisplay);
dc5689ec 213 $this->add('number', 'repetition_frequency_interval', ts('every'), array('class' => 'six', 'min' => 0));
4054a23f
DRJ
214 $this->addRule('repetition_frequency_interval', ts('Value should be a positive number'), 'positiveInteger');
215
6a488035 216 $this->add('select', 'end_frequency_unit', ts('until'), $freqUnitsDisplay);
dc5689ec 217 $this->add('number', 'end_frequency_interval', ts('until'), array('class' => 'six', 'min' => 0));
4054a23f
DRJ
218 $this->addRule('end_frequency_interval', ts('Value should be a positive number'), 'positiveInteger');
219
6a488035 220 $this->add('select', 'end_action', ts('Repetition Condition'), $condition, TRUE);
0905ee5d 221 $this->add('select', 'end_date', ts('Date Field'), $selectedMapping->getDateFields(), TRUE);
6a488035 222
1991bba1 223 $this->add('text', 'from_name', ts('From Name'));
1e035d58 224 $this->add('text', 'from_email', ts('From Email'));
1991bba1 225
6a488035
TO
226 $recipientListingOptions = array();
227
228 if ($mappingID) {
50a23755
TO
229 $mapping = CRM_Utils_Array::first(CRM_Core_BAO_ActionSchedule::getMappings(array(
230 'id' => $mappingID,
231 )));
6a488035
TO
232 }
233
84a3e359 234 $limitOptions = array('' => '-neither-', 1 => ts('Limit to'), 0 => ts('Also include'));
8ef12e64 235
84a3e359 236 $recipientLabels = array('activity' => ts('Recipients'), 'other' => ts('Limit or Add Recipients'));
237 $this->assign('recipientLabels', $recipientLabels);
238
239 $this->add('select', 'limit_to', ts('Limit Options'), $limitOptions, FALSE, array('onChange' => "showHideByValue('limit_to','','recipient', 'select','select',true);"));
240
0905ee5d 241 $this->add('select', 'recipient', $recipientLabels['other'], $entityRecipientLabels,
581c7be2 242 FALSE, array('onchange' => "showHideByValue('recipient','manual','recipientManual','table-row','select',false); showHideByValue('recipient','group','recipientGroup','table-row','select',false);")
6a488035
TO
243 );
244
49d61c3a 245 if (!empty($this->_submitValues['recipient_listing'])) {
4d3e4dbe 246 if (!empty($this->_context)) {
247 $recipientListingOptions = CRM_Core_BAO_ActionSchedule::getRecipientListing($this->_mappingID, $this->_submitValues['recipient']);
248 }
249 else {
250 $recipientListingOptions = CRM_Core_BAO_ActionSchedule::getRecipientListing($_POST['entity'][0], $_POST['recipient']);
251 }
6a488035 252 }
a7488080 253 elseif (!empty($this->_values['recipient_listing'])) {
6a488035
TO
254 $recipientListingOptions = CRM_Core_BAO_ActionSchedule::getRecipientListing($this->_values['mapping_id'], $this->_values['recipient']);
255 }
4d3e4dbe 256
581c7be2
CW
257 $this->add('select', 'recipient_listing', ts('Recipient Roles'), $recipientListingOptions, FALSE,
258 array('multiple' => TRUE, 'class' => 'crm-select2 huge', 'placeholder' => TRUE));
6a488035 259
92f4a0b1 260 $this->addEntityRef('recipient_manual_id', ts('Manual Recipients'), array('multiple' => TRUE, 'create' => TRUE));
6a488035 261
581c7be2 262 $this->add('select', 'group_id', ts('Group'),
af5d5802 263 CRM_Core_PseudoConstant::nestedGroup('Mailing'), FALSE, array('class' => 'crm-select2 huge')
6a488035
TO
264 );
265
776a4216 266 // multilingual only options
273f9849 267 $multilingual = CRM_Core_I18n::isMultilingual();
776a4216
SV
268 if ($multilingual) {
269 $smarty = CRM_Core_Smarty::singleton();
270 $smarty->assign('multilingual', $multilingual);
271
273f9849
SV
272 $languages = CRM_Core_I18n::languages(TRUE);
273 $languageFilter = $languages + array(CRM_Core_I18n::NONE => ts('Contacts with no preferred language'));
776a4216
SV
274 $element = $this->add('select', 'filter_contact_language', ts('Recipients language'), $languageFilter, FALSE,
275 array('multiple' => TRUE, 'class' => 'crm-select2', 'placeholder' => TRUE));
276
b3518210 277 $communicationLanguage = array(
273f9849 278 '' => ts('System default language'),
aeb3ba30 279 CRM_Core_I18n::AUTO => ts('Follow recipient preferred language'),
273f9849 280 );
b3518210 281 $communicationLanguage = $communicationLanguage + $languages;
776a4216
SV
282 $this->add('select', 'communication_language', ts('Communication language'), $communicationLanguage);
283 }
284
6a488035
TO
285 CRM_Mailing_BAO_Mailing::commonCompose($this);
286
287 $this->add('text', 'subject', ts('Subject'),
288 CRM_Core_DAO::getAttribute('CRM_Core_DAO_ActionSchedule', 'subject')
289 );
290
a3e3eea1 291 $this->add('checkbox', 'is_active', $isActive);
6a488035 292
4d3e4dbe 293 $this->addFormRule(array('CRM_Admin_Form_ScheduleReminders', 'formRule'), $this);
581c7be2
CW
294
295 $this->setPageTitle(ts('Scheduled Reminder'));
6a488035 296 }
353ffa53 297
6a488035 298 /**
eceb18cc 299 * Global form rule.
6a488035 300 *
5173bd95
TO
301 * @param array $fields
302 * The input form values.
ea3ddccf 303 * @param array $files
7f0141d8 304 * @param CRM_Admin_Form_ScheduleReminders $self
6a488035 305 *
ea3ddccf 306 * @return array|bool
307 * True if no errors, else array of errors
6a488035 308 */
00be9182 309 public static function formRule($fields, $files, $self) {
6a488035 310 $errors = array();
8d657dde 311 if ((array_key_exists(1, $fields['entity']) && $fields['entity'][1][0] === 0) ||
6a488035
TO
312 (array_key_exists(2, $fields['entity']) && $fields['entity'][2][0] == 0)
313 ) {
314 $errors['entity'] = ts('Please select appropriate value');
315 }
316
fb90d6bb 317 if (!empty($fields['is_active']) &&
6a488035
TO
318 CRM_Utils_System::isNull($fields['subject'])
319 ) {
320 $errors['subject'] = ts('Subject is a required field.');
321 }
02fdbd86 322 if (!empty($fields['is_active']) &&
323 CRM_Utils_System::isNull(trim(strip_tags($fields['html_message'])))
324 ) {
325 $errors['html_message'] = ts('The HTML message is a required field.');
326 }
6a488035 327
4d3e4dbe 328 if (empty($self->_context) && CRM_Utils_System::isNull(CRM_Utils_Array::value(1, $fields['entity']))) {
6a488035
TO
329 $errors['entity'] = ts('Please select entity value');
330 }
331
332 if (!CRM_Utils_System::isNull($fields['absolute_date'])) {
2ea4f315 333 if (CRM_Utils_Date::format(CRM_Utils_Date::processDate($fields['absolute_date'], NULL)) < CRM_Utils_Date::format(date('Ymd'))) {
6a488035
TO
334 $errors['absolute_date'] = ts('Absolute date cannot be earlier than the current time.');
335 }
336 }
e09225f7
DV
337 if (!CRM_Utils_Rule::email($fields['from_email'])) {
338 $errors['from_email'] = ts('Please enter a valid email address.');
339 }
84a3e359 340 $recipientKind = array(
341 'participant_role' => array(
342 'name' => 'participant role',
21dfd5f5 343 'target_id' => 'recipient_listing',
84a3e359 344 ),
345 'manual' => array(
346 'name' => 'recipient',
21dfd5f5
TO
347 'target_id' => 'recipient_manual_id',
348 ),
84a3e359 349 );
fb90d6bb 350 if ($fields['limit_to'] != '' && array_key_exists($fields['recipient'], $recipientKind) && empty($fields[$recipientKind[$fields['recipient']]['target_id']])) {
49d61c3a 351 $errors[$recipientKind[$fields['recipient']]['target_id']] = ts('If "Also include" or "Limit to" are selected, you must specify at least one %1', array(1 => $recipientKind[$fields['recipient']]['name']));
84a3e359 352 }
353
d1095f4a
BS
354 //CRM-21523
355 if (!empty($fields['is_repeat']) &&
356 (empty($fields['repetition_frequency_interval']) || ($fields['end_frequency_interval'] == NULL))
357 ) {
358 $errors['is_repeat'] = ts('If you are enabling repetition you must indicate the frequency and ending term.');
359 }
360
7f0141d8
TO
361 $actionSchedule = $self->parseActionSchedule($fields);
362 if ($actionSchedule->mapping_id) {
363 $mapping = CRM_Core_BAO_ActionSchedule::getMapping($actionSchedule->mapping_id);
364 CRM_Utils_Array::extend($errors, $mapping->validateSchedule($actionSchedule));
365 }
366
6a488035
TO
367 if (!empty($errors)) {
368 return $errors;
369 }
370
371 return empty($errors) ? TRUE : $errors;
372 }
373
e0ef6999
EM
374 /**
375 * @return int
376 */
00be9182 377 public function setDefaultValues() {
6a488035
TO
378 if ($this->_action & CRM_Core_Action::ADD) {
379 $defaults['is_active'] = 1;
a3e3eea1 380 $defaults['mode'] = 'Email';
6a488035
TO
381 $defaults['record_activity'] = 1;
382 }
383 else {
384 $defaults = $this->_values;
4d3e4dbe 385 $entityValue = explode(CRM_Core_DAO::VALUE_SEPARATOR, CRM_Utils_Array::value('entity_value', $defaults));
386 $entityStatus = explode(CRM_Core_DAO::VALUE_SEPARATOR, CRM_Utils_Array::value('entity_status', $defaults));
387 if (empty($this->_context)) {
388 $defaults['entity'][0] = CRM_Utils_Array::value('mapping_id', $defaults);
389 $defaults['entity'][1] = $entityValue;
390 $defaults['entity'][2] = $entityStatus;
391 }
392 else {
393 $defaults['entity'] = $entityStatus;
394 }
6a488035
TO
395 if ($absoluteDate = CRM_Utils_Array::value('absolute_date', $defaults)) {
396 list($date, $time) = CRM_Utils_Date::setDateDefaults($absoluteDate);
397 $defaults['absolute_date'] = $date;
398 }
399
400 if ($recipientListing = CRM_Utils_Array::value('recipient_listing', $defaults)) {
401 $defaults['recipient_listing'] = explode(CRM_Core_DAO::VALUE_SEPARATOR,
402 $recipientListing
403 );
404 }
405 $defaults['text_message'] = CRM_Utils_Array::value('body_text', $defaults);
406 $defaults['html_message'] = CRM_Utils_Array::value('body_html', $defaults);
1e035d58 407 $defaults['sms_text_message'] = CRM_Utils_Array::value('sms_body_text', $defaults);
6a488035 408 $defaults['template'] = CRM_Utils_Array::value('msg_template_id', $defaults);
1e035d58 409 $defaults['SMStemplate'] = CRM_Utils_Array::value('sms_template_id', $defaults);
a7488080 410 if (!empty($defaults['group_id'])) {
6a488035
TO
411 $defaults['recipient'] = 'group';
412 }
a7488080 413 elseif (!empty($defaults['recipient_manual'])) {
6a488035 414 $defaults['recipient'] = 'manual';
92f4a0b1 415 $defaults['recipient_manual_id'] = $defaults['recipient_manual'];
6a488035 416 }
776a4216 417 if ($contactLanguage = CRM_Utils_Array::value('filter_contact_language', $defaults)) {
fadd4d37 418 $defaults['filter_contact_language'] = explode(CRM_Core_DAO::VALUE_SEPARATOR, $contactLanguage);
776a4216 419 }
6a488035
TO
420 }
421
422 return $defaults;
423 }
424
425 /**
eceb18cc 426 * Process the form submission.
6a488035
TO
427 */
428 public function postProcess() {
429 if ($this->_action & CRM_Core_Action::DELETE) {
430 // delete reminder
431 CRM_Core_BAO_ActionSchedule::del($this->_id);
432 CRM_Core_Session::setStatus(ts('Selected Reminder has been deleted.'), ts('Record Deleted'), 'success');
4d3e4dbe 433 if ($this->_context == 'event' && $this->_compId) {
6a488035 434 $url = CRM_Utils_System::url('civicrm/event/manage/reminder',
4d3e4dbe 435 "reset=1&action=browse&id={$this->_compId}&component={$this->_context}&setTab=1"
6a488035
TO
436 );
437 $session = CRM_Core_Session::singleton();
438 $session->pushUserContext($url);
439 }
440 return;
441 }
442 $values = $this->controller->exportValues($this->getName());
7f0141d8
TO
443 $bao = $this->parseActionSchedule($values)->save();
444
445 // we need to set this on the form so that hooks can identify the created entity
446 $this->set('id', $bao->id);
447 $bao->free();
448
449 $status = ts("Your new Reminder titled %1 has been saved.",
450 array(1 => "<strong>{$values['title']}</strong>")
451 );
452
453 if ($this->_action) {
454 if ($this->_action & CRM_Core_Action::UPDATE) {
455 $status = ts("Your Reminder titled %1 has been updated.",
456 array(1 => "<strong>{$values['title']}</strong>")
457 );
458 }
459
460 if ($this->_context == 'event' && $this->_compId) {
461 $url = CRM_Utils_System::url('civicrm/event/manage/reminder', "reset=1&action=browse&id={$this->_compId}&component={$this->_context}&setTab=1");
462 $session = CRM_Core_Session::singleton();
463 $session->pushUserContext($url);
464 }
465 }
466 CRM_Core_Session::setStatus($status, ts('Saved'), 'success');
467 }
468
469 /**
470 * @param array $values
471 * The submitted form values.
472 * @return CRM_Core_DAO_ActionSchedule
473 */
474 public function parseActionSchedule($values) {
475 $params = array();
6a488035
TO
476
477 $keys = array(
478 'title',
479 'subject',
480 'absolute_date',
481 'group_id',
3e315abc 482 'record_activity',
a3e3eea1 483 'limit_to',
484 'mode',
1991bba1
DG
485 'sms_provider_id',
486 'from_name',
487 'from_email',
6a488035
TO
488 );
489 foreach ($keys as $key) {
490 $params[$key] = CRM_Utils_Array::value($key, $values);
491 }
492
2ef60934 493 $params['is_repeat'] = CRM_Utils_Array::value('is_repeat', $values, 0);
494
6a488035 495 $moreKeys = array(
3e315abc 496 'start_action_offset',
497 'start_action_unit',
498 'start_action_condition',
499 'start_action_date',
6a488035
TO
500 'repetition_frequency_unit',
501 'repetition_frequency_interval',
502 'end_frequency_unit',
503 'end_frequency_interval',
3e315abc 504 'end_action',
505 'end_date',
6a488035
TO
506 );
507
508 if ($absoluteDate = CRM_Utils_Array::value('absolute_date', $params)) {
509 $params['absolute_date'] = CRM_Utils_Date::processDate($absoluteDate);
6a488035
TO
510 }
511 else {
512 $params['absolute_date'] = 'null';
dc6c330d 513 }
514 foreach ($moreKeys as $mkey) {
39bf7f1e
JP
515 if ($params['absolute_date'] != 'null' && CRM_Utils_String::startsWith($mkey, 'start_action')) {
516 $params[$mkey] = 'null';
517 continue;
6a488035 518 }
dc6c330d 519 $params[$mkey] = CRM_Utils_Array::value($mkey, $values);
6a488035
TO
520 }
521
522 $params['body_text'] = CRM_Utils_Array::value('text_message', $values);
1e035d58 523 $params['sms_body_text'] = CRM_Utils_Array::value('sms_text_message', $values);
6a488035
TO
524 $params['body_html'] = CRM_Utils_Array::value('html_message', $values);
525
526 if (CRM_Utils_Array::value('recipient', $values) == 'manual') {
527 $params['recipient_manual'] = CRM_Utils_Array::value('recipient_manual_id', $values);
528 $params['group_id'] = $params['recipient'] = $params['recipient_listing'] = 'null';
529 }
530 elseif (CRM_Utils_Array::value('recipient', $values) == 'group') {
531 $params['group_id'] = $values['group_id'];
532 $params['recipient_manual'] = $params['recipient'] = $params['recipient_listing'] = 'null';
533 }
7f0141d8 534 elseif (isset($values['recipient_listing']) && isset($values['limit_to']) && !CRM_Utils_System::isNull($values['recipient_listing']) && !CRM_Utils_System::isNull($values['limit_to'])) {
6a488035
TO
535 $params['recipient'] = CRM_Utils_Array::value('recipient', $values);
536 $params['recipient_listing'] = implode(CRM_Core_DAO::VALUE_SEPARATOR,
537 CRM_Utils_Array::value('recipient_listing', $values)
538 );
539 $params['group_id'] = $params['recipient_manual'] = 'null';
540 }
541 else {
542 $params['recipient'] = CRM_Utils_Array::value('recipient', $values);
543 $params['group_id'] = $params['recipient_manual'] = $params['recipient_listing'] = 'null';
544 }
545
4d3e4dbe 546 if (!empty($this->_mappingID) && !empty($this->_compId)) {
353ffa53 547 $params['mapping_id'] = $this->_mappingID;
4d3e4dbe 548 $params['entity_value'] = $this->_compId;
549 $params['entity_status'] = implode(CRM_Core_DAO::VALUE_SEPARATOR, $values['entity']);
84a3e359 550 }
4d3e4dbe 551 else {
552 $params['mapping_id'] = $values['entity'][0];
673cdfb4 553 if ($params['mapping_id'] == 1) {
4d3e4dbe 554 $params['limit_to'] = 1;
555 }
84a3e359 556
7f0141d8
TO
557 $entity_value = CRM_Utils_Array::value(1, $values['entity'], array());
558 $entity_status = CRM_Utils_Array::value(2, $values['entity'], array());
559 $params['entity_value'] = implode(CRM_Core_DAO::VALUE_SEPARATOR, $entity_value);
560 $params['entity_status'] = implode(CRM_Core_DAO::VALUE_SEPARATOR, $entity_status);
6a488035
TO
561 }
562
563 $params['is_active'] = CRM_Utils_Array::value('is_active', $values, 0);
6a488035
TO
564
565 if (CRM_Utils_Array::value('is_repeat', $values) == 0) {
566 $params['repetition_frequency_unit'] = 'null';
567 $params['repetition_frequency_interval'] = 'null';
568 $params['end_frequency_unit'] = 'null';
569 $params['end_frequency_interval'] = 'null';
570 $params['end_action'] = 'null';
571 $params['end_date'] = 'null';
572 }
573
776a4216 574 // multilingual options
7f0141d8 575 $params['filter_contact_language'] = CRM_Utils_Array::value('filter_contact_language', $values, array());
776a4216 576 $params['filter_contact_language'] = implode(CRM_Core_DAO::VALUE_SEPARATOR, $params['filter_contact_language']);
fadd4d37 577 $params['communication_language'] = CRM_Utils_Array::value('communication_language', $values, NULL);
776a4216 578
6a488035
TO
579 if ($this->_action & CRM_Core_Action::UPDATE) {
580 $params['id'] = $this->_id;
581 }
582 elseif ($this->_action & CRM_Core_Action::ADD) {
583 // we do this only once, so name never changes
584 $params['name'] = CRM_Utils_String::munge($params['title'], '_', 64);
585 }
586
1e035d58 587 $modePrefixes = array('Mail' => NULL, 'SMS' => 'SMS');
588
589 if ($params['mode'] == 'Email' || empty($params['sms_provider_id'])) {
590 unset($modePrefixes['SMS']);
591 }
592 elseif ($params['mode'] == 'SMS') {
593 unset($modePrefixes['Mail']);
594 }
595
596 //TODO: handle postprocessing of SMS and/or Email info based on $modePrefixes
597
6a488035 598 $composeFields = array(
353ffa53
TO
599 'template',
600 'saveTemplate',
601 'updateTemplate',
602 'saveTemplateName',
6a488035
TO
603 );
604 $msgTemplate = NULL;
605 //mail template is composed
606
1e035d58 607 foreach ($modePrefixes as $prefix) {
608 $composeParams = array();
609 foreach ($composeFields as $key) {
610 $key = $prefix . $key;
611 if (!empty($values[$key])) {
612 $composeParams[$key] = $values[$key];
613 }
6a488035 614 }
6a488035 615
1e035d58 616 if (!empty($composeParams[$prefix . 'updateTemplate'])) {
617 $templateParams = array('is_active' => TRUE);
618 if ($prefix == 'SMS') {
619 $templateParams += array(
620 'msg_text' => $params['sms_body_text'],
621 'is_sms' => TRUE,
02fc859b 622 );
1e035d58 623 }
624 else {
625 $templateParams += array(
626 'msg_text' => $params['body_text'],
627 'msg_html' => $params['body_html'],
628 'msg_subject' => $params['subject'],
629 );
630 }
631 $templateParams['id'] = $values[$prefix . 'template'];
632
633 $msgTemplate = CRM_Core_BAO_MessageTemplate::add($templateParams);
634 }
6a488035 635
1e035d58 636 if (!empty($composeParams[$prefix . 'saveTemplate'])) {
637 $templateParams = array('is_active' => TRUE);
638 if ($prefix == 'SMS') {
639 $templateParams += array(
640 'msg_text' => $params['sms_body_text'],
641 'is_sms' => TRUE,
642 );
643 }
644 else {
645 $templateParams += array(
646 'msg_text' => $params['body_text'],
647 'msg_html' => $params['body_html'],
648 'msg_subject' => $params['subject'],
649 );
650 }
651 $templateParams['msg_title'] = $composeParams[$prefix . 'saveTemplateName'];
652
653 $msgTemplate = CRM_Core_BAO_MessageTemplate::add($templateParams);
654 }
6a488035 655
1e035d58 656 if ($prefix == 'SMS') {
657 if (isset($msgTemplate->id)) {
658 $params['sms_template_id'] = $msgTemplate->id;
659 }
660 else {
661 $params['sms_template_id'] = CRM_Utils_Array::value('SMStemplate', $values);
662 }
663 }
664 else {
665 if (isset($msgTemplate->id)) {
666 $params['msg_template_id'] = $msgTemplate->id;
667 }
668 else {
669 $params['msg_template_id'] = CRM_Utils_Array::value('template', $values);
670 }
671 }
6a488035
TO
672 }
673
7f0141d8
TO
674 $actionSchedule = new CRM_Core_DAO_ActionSchedule();
675 $actionSchedule->copyValues($params);
676 return $actionSchedule;
6a488035 677 }
96025800 678
5ec6b0ad
TM
679 /**
680 * List available tokens for this form.
681 *
682 * @return array
683 */
684 public function listTokens() {
685 $tokens = CRM_Core_SelectValues::contactTokens();
686 $tokens = array_merge(CRM_Core_SelectValues::activityTokens(), $tokens);
687 $tokens = array_merge(CRM_Core_SelectValues::eventTokens(), $tokens);
688 $tokens = array_merge(CRM_Core_SelectValues::membershipTokens(), $tokens);
c3ab1f3d 689 $tokens = array_merge(CRM_Core_SelectValues::contributionTokens(), $tokens);
5ec6b0ad
TM
690 return $tokens;
691 }
692
6a488035 693}