8b92a4b411f5e23960565f56cadf68c2275e9252
[civicrm-core.git] / CRM / Admin / Form / Setting / Miscellaneous.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
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-2019
32 */
33
34 /**
35 * This class generates form components for Miscellaneous.
36 */
37 class CRM_Admin_Form_Setting_Miscellaneous extends CRM_Admin_Form_Setting {
38
39 protected $_settings = [
40 'max_attachments' => CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
41 'contact_undelete' => CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
42 'empoweredBy' => CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
43 'logging' => CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
44 'maxFileSize' => CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
45 'doNotAttachPDFReceipt' => CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
46 'recordGeneratedLetters' => CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
47 'secondDegRelPermissions' => CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
48 'checksum_timeout' => CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
49 'recaptchaOptions' => CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
50 'recaptchaPublicKey' => CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
51 'recaptchaPrivateKey' => CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
52 'forceRecaptcha' => CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
53 'wkhtmltopdfPath' => CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
54 'recentItemsMaxCount' => CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
55 'recentItemsProviders' => CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
56 'dedupe_default_limit' => CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
57 'remote_profile_submissions' => CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
58 'allow_alert_autodismissal' => CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
59 'prevNextBackend' => CRM_Core_BAO_Setting::SEARCH_PREFERENCES_NAME,
60 ];
61
62 public $_uploadMaxSize;
63
64 /**
65 * Basic setup.
66 */
67 public function preProcess() {
68 $this->_uploadMaxSize = (int) ini_get('upload_max_filesize');
69 // check for post max size
70 CRM_Utils_Number::formatUnitSize(ini_get('post_max_size'), TRUE);
71 // This is a temp hack for the fact we really don't need to hard-code each setting in the tpl but
72 // we haven't worked through NOT doing that. These settings have been un-hardcoded.
73 $this->assign('pure_config_settings', [
74 'empoweredBy',
75 'max_attachments',
76 'maxFileSize',
77 'secondDegRelPermissions',
78 'recentItemsMaxCount',
79 'recentItemsProviders',
80 'dedupe_default_limit',
81 'prevNextBackend',
82 ]);
83 }
84
85 /**
86 * Build the form object.
87 */
88 public function buildQuickForm() {
89 CRM_Utils_System::setTitle(ts('Misc (Undelete, PDFs, Limits, Logging, Captcha, etc.)'));
90
91 $this->assign('validTriggerPermission', CRM_Core_DAO::checkTriggerViewPermission(FALSE));
92
93 $this->addFormRule(['CRM_Admin_Form_Setting_Miscellaneous', 'formRule'], $this);
94
95 parent::buildQuickForm();
96 $this->addRule('checksum_timeout', ts('Value should be a positive number'), 'positiveInteger');
97 }
98
99 /**
100 * Global form rule.
101 *
102 * @param array $fields
103 * The input form values.
104 * @param array $files
105 * The uploaded files if any.
106 * @param array $options
107 * Additional user data.
108 *
109 * @return bool|array
110 * true if no errors, else array of errors
111 */
112 public static function formRule($fields, $files, $options) {
113 $errors = [];
114
115 // validate max file size
116 if ($fields['maxFileSize'] > $options->_uploadMaxSize) {
117 $errors['maxFileSize'] = ts("Maximum file size cannot exceed Upload max size ('upload_max_filesize') as defined in PHP.ini.");
118 }
119
120 // validate recent items stack size
121 if ($fields['recentItemsMaxCount'] && ($fields['recentItemsMaxCount'] < 1 || $fields['recentItemsMaxCount'] > CRM_Utils_Recent::MAX_ITEMS)) {
122 $errors['recentItemsMaxCount'] = ts("Illegal stack size. Use values between 1 and %1.", [1 => CRM_Utils_Recent::MAX_ITEMS]);
123 }
124
125 if (!empty($fields['wkhtmltopdfPath'])) {
126 // check and ensure that thi leads to the wkhtmltopdf binary
127 // and it is a valid executable binary
128 // Only check the first space separated piece to allow for a value
129 // such as /usr/bin/xvfb-run -- wkhtmltopdf (CRM-13292)
130 $pieces = explode(' ', $fields['wkhtmltopdfPath']);
131 $path = $pieces[0];
132 if (
133 !file_exists($path) ||
134 !is_executable($path)
135 ) {
136 $errors['wkhtmltopdfPath'] = ts('The wkhtmltodfPath does not exist or is not valid');
137 }
138 }
139 return $errors;
140 }
141
142 }