[NFC] array format tricksie file
[civicrm-core.git] / CRM / Admin / Form / MessageTemplates.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
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
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
6a488035
TO
32 */
33
34/**
35 * This class generates form components for Message templates
36 * used by membership, contributions, event registrations, etc.
6a488035
TO
37 */
38class CRM_Admin_Form_MessageTemplates extends CRM_Admin_Form {
39 // which (and whether) mailing workflow this template belongs to
430ae6dd 40 protected $_workflow_id = NULL;
04a76231 41
a8cd772c 42 // Is document file is already loaded as default value?
43 protected $_is_document = FALSE;
430ae6dd 44
00be9182 45 public function preProcess() {
6a488035
TO
46 $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this);
47 $this->_action = CRM_Utils_Request::retrieve('action', 'String',
48 $this, FALSE, 'add'
49 );
50 $this->assign('action', $this->_action);
51
c6327d7d 52 $this->_BAOName = 'CRM_Core_BAO_MessageTemplate';
6a488035
TO
53 $this->set('BAOName', $this->_BAOName);
54 parent::preProcess();
55 }
56
57 /**
c490a46a 58 * Set default values for the form.
6a488035 59 *
ce064e4f 60 * The default values are retrieved from the database.
6a488035
TO
61 */
62 public function setDefaultValues() {
63 $defaults = $this->_values;
64
a7488080 65 if (empty($defaults['pdf_format_id'])) {
6a488035
TO
66 $defaults['pdf_format_id'] = 'null';
67 }
a8cd772c 68 if (empty($defaults['file_type'])) {
69 $defaults['file_type'] = 0;
70 }
6a488035 71
6a488035
TO
72 if ($this->_action & CRM_Core_Action::ADD) {
73 $defaults['is_active'] = 1;
6a488035
TO
74 }
75
6a488035 76 if ($this->_action & CRM_Core_Action::UPDATE) {
90a73810 77 $documentInfo = CRM_Core_BAO_File::getEntityFile('civicrm_msg_template', $this->_id, TRUE);
78 if (!empty($documentInfo)) {
a8cd772c 79 $defaults['file_type'] = 1;
80 $this->_is_document = TRUE;
90a73810 81 $this->assign('attachment', $documentInfo);
82 }
6a488035
TO
83 }
84
85 return $defaults;
86 }
87
88 /**
eceb18cc 89 * Build the form object.
6a488035
TO
90 */
91 public function buildQuickForm() {
6a488035
TO
92 // For VIEW we only want Done button
93 if ($this->_action & CRM_Core_Action::VIEW) {
94 // currently, the above action is used solely for previewing default workflow templates
95 $cancelURL = CRM_Utils_System::url('civicrm/admin/messageTemplates', 'selectedChild=workflow&reset=1');
96 $cancelURL = str_replace('&amp;', '&', $cancelURL);
9f462279 97 $this->addButtons([
98 [
6a488035
TO
99 'type' => 'cancel',
100 'name' => ts('Done'),
9f462279 101 'js' => ['onclick' => "location.href='{$cancelURL}'; return false;"],
6a488035 102 'isDefault' => TRUE,
9f462279 103 ],
104 ]
6a488035
TO
105 );
106 }
107 else {
35ca4a12 108 $this->_workflow_id = CRM_Utils_Array::value('workflow_id', $this->_values);
40a732a9 109 $this->checkUserPermission($this->_workflow_id);
35ca4a12
MW
110 $this->assign('workflow_id', $this->_workflow_id);
111
112 if ($this->_workflow_id) {
113 $selectedChild = 'workflow';
114 }
115 else {
116 $selectedChild = 'user';
117 }
118
119 $cancelURL = CRM_Utils_System::url('civicrm/admin/messageTemplates', "selectedChild={$selectedChild}&reset=1");
120 $cancelURL = str_replace('&amp;', '&', $cancelURL);
9f462279 121 $buttons[] = [
ae4b5884
MW
122 'type' => 'upload',
123 'name' => $this->_action & CRM_Core_Action::DELETE ? ts('Delete') : ts('Save'),
124 'isDefault' => TRUE,
9f462279 125 ];
ae4b5884 126 if (!($this->_action & CRM_Core_Action::DELETE)) {
9f462279 127 $buttons[] = [
ae4b5884
MW
128 'type' => 'submit',
129 'name' => ts('Save and Done'),
130 'subName' => 'done',
9f462279 131 ];
ae4b5884 132 }
9f462279 133 $buttons[] = [
ae4b5884
MW
134 'type' => 'cancel',
135 'name' => ts('Cancel'),
9f462279 136 'js' => ['onclick' => "location.href='{$cancelURL}'; return false;"],
137 ];
ae4b5884 138 $this->addButtons($buttons);
6a488035
TO
139 }
140
141 if ($this->_action & CRM_Core_Action::DELETE) {
5c38109a 142 $this->assign('msg_title', $this->_values['msg_title']);
6a488035
TO
143 return;
144 }
145
9f462279 146 $breadCrumb = [
147 [
353ffa53 148 'title' => ts('Message Templates'),
9f462279 149 'url' => CRM_Utils_System::url('civicrm/admin/messageTemplates', 'action=browse&reset=1'),
150 ],
151 ];
6a488035
TO
152 CRM_Utils_System::appendBreadCrumb($breadCrumb);
153
154 $this->applyFilter('__ALL__', 'trim');
c6327d7d 155 $this->add('text', 'msg_title', ts('Message Title'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_MessageTemplate', 'msg_title'), TRUE);
6a488035 156
9f462279 157 $options = [ts('Compose On-screen'), ts('Upload Document')];
b3088211 158 $element = $this->addRadio('file_type', ts('Source'), $options);
159 if ($this->_id) {
160 $element->freeze();
161 }
a8cd772c 162
1f46c1b9 163 $this->addElement('file', "file_id", ts('Upload Document'), 'size=30 maxlength=255');
90a73810 164 $this->addUploadElement("file_id");
165
6a488035
TO
166 $this->add('text', 'msg_subject',
167 ts('Message Subject'),
c6327d7d 168 CRM_Core_DAO::getAttribute('CRM_Core_DAO_MessageTemplate', 'msg_subject')
6a488035
TO
169 );
170
171 //get the tokens.
172 $tokens = CRM_Core_SelectValues::contactTokens();
173
ac0a3db5 174 $this->assign('tokens', CRM_Utils_Token::formatTokensForDisplay($tokens));
6a488035 175
6a488035
TO
176 // if not a system message use a wysiwyg editor, CRM-5971
177 if ($this->_id &&
c6327d7d 178 CRM_Core_DAO::getFieldValue('CRM_Core_DAO_MessageTemplate',
6a488035
TO
179 $this->_id,
180 'workflow_id'
181 )
182 ) {
183 $this->add('textarea', 'msg_html', ts('HTML Message'),
184 "cols=50 rows=6"
185 );
186 }
187 else {
5d51a2f9 188 $this->add('wysiwyg', 'msg_html', ts('HTML Message'),
9f462279 189 [
02fc859b 190 'cols' => '80',
353ffa53 191 'rows' => '8',
6a488035 192 'onkeyup' => "return verify(this)",
7ad5ae6a 193 'preset' => 'civimail',
9f462279 194 ]
6a488035
TO
195 );
196 }
197
ef4a9bcd 198 $this->add('textarea', 'msg_text', ts('Text Message'),
199 "cols=50 rows=6"
200 );
201
6a488035 202 $this->add('select', 'pdf_format_id', ts('PDF Page Format'),
9f462279 203 [
8d7a9d07 204 'null' => ts('- default -'),
9f462279 205 ] + CRM_Core_BAO_PdfFormat::getList(TRUE), FALSE
6a488035
TO
206 );
207
208 $this->add('checkbox', 'is_active', ts('Enabled?'));
9f462279 209 $this->addFormRule([__CLASS__, 'formRule'], $this);
90a73810 210
6a488035
TO
211 if ($this->_action & CRM_Core_Action::VIEW) {
212 $this->freeze();
213 CRM_Utils_System::setTitle(ts('View System Default Message Template'));
214 }
215 }
216
40a732a9
SA
217 /**
218 * Restrict users access based on permission
219 *
220 * @param int $workflowId
221 */
222 private function checkUserPermission($workflowId) {
223 if (isset($workflowId)) {
224 $canView = CRM_Core_Permission::check('edit system workflow message templates');
225 }
226 else {
227 $canView = CRM_Core_Permission::check('edit user-driven message templates');
228 }
229
230 if (!$canView && !CRM_Core_Permission::check('edit message templates')) {
231 CRM_Core_Session::setStatus(ts('You do not have permission to view requested page.'), ts('Access Denied'));
232 $url = CRM_Utils_System::url('civicrm/admin/messageTemplates', "reset=1");
233 CRM_Utils_System::redirect($url);
234 }
235 }
236
90a73810 237 /**
238 * Global form rule.
239 *
04a76231 240 * @param array $params
90a73810 241 * The input form values.
242 * @param array $files
243 * The uploaded files if any.
04a76231 244 * @param array $self
90a73810 245 *
246 * @return array
247 * array of errors
248 */
249 public static function formRule($params, $files, $self) {
100e363e 250 // If user uploads non-document file other than odt/docx
251 if (!empty($files['file_id']['tmp_name']) &&
252 array_search($files['file_id']['type'], CRM_Core_SelectValues::documentApplicationType()) == NULL
253 ) {
b93376a8 254 $errors['file_id'] = ts('Invalid document file format');
100e363e 255 }
256 // If default is not set and no document file is uploaded
257 elseif (empty($files['file_id']['tmp_name']) && !empty($params['file_type']) && !$self->_is_document) {
90a73810 258 //On edit page of docx/odt message template if user changes file type but forgot to upload document
a8cd772c 259 $errors['file_id'] = ts('Please upload document');
90a73810 260 }
261
b93376a8 262 return empty($errors) ? TRUE : $errors;
90a73810 263 }
264
6a488035 265 /**
eceb18cc 266 * Process the form submission.
6a488035
TO
267 */
268 public function postProcess() {
269 if ($this->_action & CRM_Core_Action::DELETE) {
c6327d7d 270 CRM_Core_BAO_MessageTemplate::del($this->_id);
6a488035
TO
271 }
272 elseif ($this->_action & CRM_Core_Action::VIEW) {
273 // currently, the above action is used solely for previewing default workflow templates
274 CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/admin/messageTemplates', 'selectedChild=workflow&reset=1'));
275 }
276 else {
6a488035 277 // store the submitted values in an array
b93376a8 278 $params = $this->controller->exportValues();
6a488035
TO
279
280 if ($this->_action & CRM_Core_Action::UPDATE) {
281 $params['id'] = $this->_id;
282 }
283
a8cd772c 284 if (!empty($params['file_type'])) {
90a73810 285 unset($params['msg_html']);
286 unset($params['msg_text']);
287 CRM_Utils_File::formatFile($params, 'file_id');
288 }
35ca4a12 289 // delete related file references if html/text/pdf template are chosen over document
90a73810 290 elseif (!empty($this->_id)) {
291 $entityFileDAO = new CRM_Core_DAO_EntityFile();
292 $entityFileDAO->entity_id = $this->_id;
293 $entityFileDAO->entity_table = 'civicrm_msg_template';
294 if ($entityFileDAO->find(TRUE)) {
295 $fileDAO = new CRM_Core_DAO_File();
296 $fileDAO->id = $entityFileDAO->file_id;
297 $fileDAO->find(TRUE);
298 $entityFileDAO->delete();
299 $fileDAO->delete();
300 }
301 }
302
35ca4a12 303 $this->_workflow_id = CRM_Utils_Array::value('workflow_id', $this->_values);
6a488035
TO
304 if ($this->_workflow_id) {
305 $params['workflow_id'] = $this->_workflow_id;
306 $params['is_active'] = TRUE;
307 }
308
c6327d7d 309 $messageTemplate = CRM_Core_BAO_MessageTemplate::add($params);
9f462279 310 CRM_Core_Session::setStatus(ts('The Message Template \'%1\' has been saved.', [1 => $messageTemplate->msg_title]), ts('Saved'), 'success');
6a488035 311
b93376a8
MW
312 if (isset($this->_submitValues['_qf_MessageTemplates_upload'])) {
313 // Save button was pressed
ae4b5884
MW
314 CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/admin/messageTemplates/add', "action=update&id={$messageTemplate->id}&reset=1"));
315 }
b93376a8 316 // Save and done button was pressed
6a488035
TO
317 if ($this->_workflow_id) {
318 CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/admin/messageTemplates', 'selectedChild=workflow&reset=1'));
319 }
ae4b5884 320 CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/admin/messageTemplates', 'selectedChild=user&reset=1'));
6a488035
TO
321 }
322 }
96025800 323
6a488035 324}