Merge pull request #7057 from davecivicrm/CRM-17271
[civicrm-core.git] / api / v3 / System.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
81621fee 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
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/**
b081365f 29 * This api exposes CiviCRM system functionality.
6a488035 30 *
b081365f 31 * Includes caching, logging, and checking system functionality.
6a488035 32 *
b081365f 33 * @package CiviCRM_APIv3
6a488035
TO
34 */
35
36/**
9d32e6f7 37 * Flush all system caches.
6a488035 38 *
cf470720
TO
39 * @param array $params
40 * Input parameters.
c28e1768
CW
41 * - triggers: bool, whether to drop/create SQL triggers; default: FALSE
42 * - session: bool, whether to reset the CiviCRM session data; default: FALSE
6a488035 43 *
c23f45d3 44 * @return array
6a488035
TO
45 */
46function civicrm_api3_system_flush($params) {
47 CRM_Core_Invoke::rebuildMenuAndCaches(
48 CRM_Utils_Array::value('triggers', $params, FALSE),
49 CRM_Utils_Array::value('session', $params, FALSE)
50 );
51 return civicrm_api3_create_success();
52}
53
11e09c59 54/**
9d32e6f7 55 * Adjust Metadata for Flush action.
6a488035 56 *
0aa0303c
EM
57 * The metadata is used for setting defaults, documentation & validation.
58 *
cf470720 59 * @param array $params
b081365f 60 * Array of parameters determined by getfields.
6a488035 61 */
9b873358 62function _civicrm_api3_system_flush_spec(&$params) {
b2ed8e73
CW
63 $params['triggers'] = array(
64 'title' => 'Triggers',
65 'description' => 'rebuild triggers (boolean)',
66 'type' => CRM_Utils_Type::T_BOOLEAN,
67 );
68 $params['session'] = array(
69 'title' => 'Sessions',
70 'description' => 'refresh sessions (boolean)',
71 'type' => CRM_Utils_Type::T_BOOLEAN,
72 );
9ef501da 73}
6a488035 74
9ef501da 75/**
9d32e6f7
EM
76 * System.Check API specification (optional).
77 *
9ef501da
TO
78 * This is used for documentation and validation.
79 *
cf470720
TO
80 * @param array $spec
81 * Description of fields supported by this API call.
9d32e6f7 82 *
9ef501da
TO
83 * @see http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
84 */
85function _civicrm_api3_system_check_spec(&$spec) {
86 // $spec['magicword']['api.required'] = 1;
fc8d84da
N
87 $spec['is_visible'] = array(
88 'title' => 'is visible',
a1c17079 89 'type' => CRM_Utils_Type::T_BOOLEAN,
097c681e 90 );
232624b1 91}
9ef501da
TO
92
93/**
b081365f 94 * System Check API.
9ef501da
TO
95 *
96 * @param array $params
9d32e6f7 97 *
a6c01b45 98 * @return array
72b3a70c 99 * API result descriptor; return items are alert codes/messages
9ef501da
TO
100 * @see civicrm_api3_create_success
101 * @see civicrm_api3_create_error
102 * @throws API_Exception
103 */
104function civicrm_api3_system_check($params) {
e918c16d 105 // array(array('name'=> $, 'severity'=>$, ...))
7c6fb573 106 $id = 1;
9ef501da 107 $returnValues = array();
e918c16d
NM
108
109 // array(CRM_Utils_Check_Message)
46a903fb 110 $messages = CRM_Utils_Check::singleton()->checkAll();
e918c16d 111
7c6fb573
NM
112 foreach ($messages as $msg) {
113 $returnValues[] = $msg->toArray() + array('id' => $id++);
46a903fb
NM
114 }
115
4e04b0a0 116 return _civicrm_api3_basic_array_get('systemCheck', $params, $returnValues, "id", array('id', 'name', 'message', 'title', 'severity', 'is_visible'));
e2bef985 117}
118
119/**
9d32e6f7
EM
120 * Log entry to system log table.
121 *
c490a46a 122 * @param array $params
e2bef985 123 *
124 * @return array
125 */
126function civicrm_api3_system_log($params) {
127 $log = new CRM_Utils_SystemLogger();
9d32e6f7 128 // This part means fields with separate db storage are accepted as params which kind of seems more intuitive to me
e2bef985 129 // because I felt like not doing this required a bunch of explanation in the spec function - but perhaps other won't see it as helpful?
22e263ad 130 if (!isset($params['context'])) {
e2bef985 131 $params['context'] = array();
132 }
133 $specialFields = array('contact_id', 'hostname');
22e263ad
TO
134 foreach ($specialFields as $specialField) {
135 if (isset($params[$specialField]) && !isset($params['context'])) {
e2bef985 136 $params['context'][$specialField] = $params[$specialField];
137 }
138 }
139 $returnValues = $log->log($params['level'], $params['message'], $params['context']);
140 return civicrm_api3_create_success($returnValues, $params, 'System', 'Log');
141}
142
143/**
d1b0d05e
EM
144 * Metadata for log function.
145 *
c490a46a 146 * @param array $params
e2bef985 147 */
4f8ccea0 148function _civicrm_api3_system_log_spec(&$params) {
e2bef985 149 $params['level'] = array(
150 'title' => 'Log Level',
151 'description' => 'Log level as described in PSR3 (info, debug, warning etc)',
152 'type' => CRM_Utils_Type::T_STRING,
153 'api.required' => TRUE,
154 );
155 $params['message'] = array(
156 'title' => 'Log Message',
157 'description' => 'Standardised message string, you can also ',
158 'type' => CRM_Utils_Type::T_STRING,
159 'api.required' => TRUE,
160 );
161 $params['context'] = array(
162 'title' => 'Log Context',
163 'description' => 'An array of additional data to store.',
164 'type' => CRM_Utils_Type::T_LONGTEXT,
165 'api.default' => array(),
166 );
167 $params['contact_id'] = array(
168 'title' => 'Log Contact ID',
169 'description' => 'Optional ID of relevant contact',
170 'type' => CRM_Utils_Type::T_INT,
171 );
172 $params['hostname'] = array(
173 'title' => 'Log Hostname',
174 'description' => 'Optional name of host',
175 'type' => CRM_Utils_Type::T_STRING,
176 );
177}
42bf9336 178
91f1889e 179/**
d1b0d05e 180 * System.Get API.
91f1889e 181 *
24a70b66 182 * @param array $params
d1b0d05e 183 *
24a70b66 184 * @return array
91f1889e
TO
185 */
186function civicrm_api3_system_get($params) {
5bbcc823 187 $config = CRM_Core_Config::singleton();
91f1889e
TO
188 $returnValues = array(
189 array(
5bbcc823
TO
190 'version' => CRM_Utils_System::version(), // deprecated in favor of civi.version
191 'uf' => CIVICRM_UF, // deprecated in favor of cms.type
192 'php' => array(
193 'version' => phpversion(),
194 'tz' => date_default_timezone_get(),
195 'extensions' => get_loaded_extensions(),
196 'ini' => _civicrm_api3_system_get_redacted_ini(),
197 ),
198 'mysql' => array(
199 'version' => CRM_Core_DAO::singleValueQuery('SELECT @@version'),
200 ),
201 'cms' => array(
202 'type' => CIVICRM_UF,
203 'modules' => CRM_Core_Module::collectStatuses($config->userSystem->getModules()),
204 ),
205 'civi' => array(
206 'version' => CRM_Utils_System::version(),
207 'dev' => (bool) CRM_Utils_System::isDevelopment(),
208 'components' => array_keys(CRM_Core_Component::getEnabledComponents()),
209 'extensions' => preg_grep(
210 '/^uninstalled$/',
211 CRM_Extension_System::singleton()->getManager()->getStatuses(),
212 PREG_GREP_INVERT
213 ),
214 'exampleUrl' => CRM_Utils_System::url('civicrm/example', NULL, TRUE, NULL, FALSE),
215 ),
91f1889e
TO
216 ),
217 );
5bbcc823 218
91f1889e
TO
219 return civicrm_api3_create_success($returnValues, $params, 'System', 'get');
220}
5bbcc823
TO
221
222/**
223 * Generate a sanitized/anonymized/redacted dump of the PHP configuration.
224 *
225 * Some INI fields contain site-identifying information (SII) -- e.g. URLs,
226 * hostnames, file paths, IP addresses, passwords, or free-form comments
227 * could be used to identify a site or gain access to its resources.
228 *
229 * A number of INI fields have been examined to determine whether they
230 * contain SII. Approved fields are put in a whitelist; all other fields
231 * are redacted.
232 *
233 * Redaction hides the substance of a field but does not completely omit
234 * all information. Consider the field 'mail.log' - setting this field
235 * has a functional effect (it enables or disables the logging behavior)
236 * and also points to particular file. Empty values (FALSE/NULL/0/"")
237 * will pass through redaction, but all other values will be replaced
238 * by a string (eg "REDACTED"). This roughly indicates whether the
239 * option is enabled/disabled without giving away its content.
240 *
241 * @return array
242 */
243function _civicrm_api3_system_get_redacted_ini() {
244 static $whitelist = NULL;
245 if ($whitelist === NULL) {
246 $whitelistFile = __DIR__ . '/System/ini-whitelist.txt';
247 $whitelist = array_filter(
248 explode("\n", file_get_contents($whitelistFile)),
249 function ($k) {
250 return !empty($k) && !preg_match('/^\s*#/', $k);
251 }
252 );
253 }
254
255 $inis = ini_get_all(NULL, FALSE);
256 $result = array();
257 foreach ($inis as $k => $v) {
258 if (empty($v) || in_array($k, $whitelist)) {
259 $result[$k] = $v;
260 }
261 else {
262 $result[$k] = 'REDACTED';
263 }
264 }
265
266 return $result;
267}