Merge pull request #5187 from mallezie/CRM-15982
[civicrm-core.git] / api / v3 / System.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
731a0992 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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) {
6a488035
TO
63 $params['triggers'] = array('title' => 'rebuild triggers (boolean)');
64 $params['session'] = array('title' => 'refresh sessions (boolean)');
9ef501da 65}
6a488035 66
9ef501da 67/**
9d32e6f7
EM
68 * System.Check API specification (optional).
69 *
9ef501da
TO
70 * This is used for documentation and validation.
71 *
cf470720
TO
72 * @param array $spec
73 * Description of fields supported by this API call.
9d32e6f7 74 *
9ef501da
TO
75 * @see http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
76 */
77function _civicrm_api3_system_check_spec(&$spec) {
78 // $spec['magicword']['api.required'] = 1;
232624b1 79}
9ef501da
TO
80
81/**
b081365f 82 * System Check API.
9ef501da
TO
83 *
84 * @param array $params
9d32e6f7 85 *
a6c01b45 86 * @return array
72b3a70c 87 * API result descriptor; return items are alert codes/messages
9ef501da
TO
88 * @see civicrm_api3_create_success
89 * @see civicrm_api3_create_error
90 * @throws API_Exception
91 */
92function civicrm_api3_system_check($params) {
93 $returnValues = array();
1248c859 94 foreach (CRM_Utils_Check::singleton()->checkAll() as $message) {
9ef501da
TO
95 $returnValues[] = $message->toArray();
96 }
97
98 // Spec: civicrm_api3_create_success($values = 1, $params = array(), $entity = NULL, $action = NULL)
99 return civicrm_api3_create_success($returnValues, $params, 'System', 'Check');
e2bef985 100}
101
102/**
9d32e6f7
EM
103 * Log entry to system log table.
104 *
c490a46a 105 * @param array $params
e2bef985 106 *
107 * @return array
108 */
109function civicrm_api3_system_log($params) {
110 $log = new CRM_Utils_SystemLogger();
9d32e6f7 111 // This part means fields with separate db storage are accepted as params which kind of seems more intuitive to me
e2bef985 112 // 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 113 if (!isset($params['context'])) {
e2bef985 114 $params['context'] = array();
115 }
116 $specialFields = array('contact_id', 'hostname');
22e263ad
TO
117 foreach ($specialFields as $specialField) {
118 if (isset($params[$specialField]) && !isset($params['context'])) {
e2bef985 119 $params['context'][$specialField] = $params[$specialField];
120 }
121 }
122 $returnValues = $log->log($params['level'], $params['message'], $params['context']);
123 return civicrm_api3_create_success($returnValues, $params, 'System', 'Log');
124}
125
126/**
d1b0d05e
EM
127 * Metadata for log function.
128 *
c490a46a 129 * @param array $params
e2bef985 130 */
4f8ccea0 131function _civicrm_api3_system_log_spec(&$params) {
e2bef985 132 $params['level'] = array(
133 'title' => 'Log Level',
134 'description' => 'Log level as described in PSR3 (info, debug, warning etc)',
135 'type' => CRM_Utils_Type::T_STRING,
136 'api.required' => TRUE,
137 );
138 $params['message'] = array(
139 'title' => 'Log Message',
140 'description' => 'Standardised message string, you can also ',
141 'type' => CRM_Utils_Type::T_STRING,
142 'api.required' => TRUE,
143 );
144 $params['context'] = array(
145 'title' => 'Log Context',
146 'description' => 'An array of additional data to store.',
147 'type' => CRM_Utils_Type::T_LONGTEXT,
148 'api.default' => array(),
149 );
150 $params['contact_id'] = array(
151 'title' => 'Log Contact ID',
152 'description' => 'Optional ID of relevant contact',
153 'type' => CRM_Utils_Type::T_INT,
154 );
155 $params['hostname'] = array(
156 'title' => 'Log Hostname',
157 'description' => 'Optional name of host',
158 'type' => CRM_Utils_Type::T_STRING,
159 );
160}
42bf9336 161
91f1889e 162/**
d1b0d05e 163 * System.Get API.
91f1889e 164 *
24a70b66 165 * @param array $params
d1b0d05e 166 *
24a70b66 167 * @return array
91f1889e
TO
168 */
169function civicrm_api3_system_get($params) {
170 $returnValues = array(
171 array(
172 'version' => CRM_Utils_System::version(),
173 'uf' => CIVICRM_UF,
174 ),
175 );
176 return civicrm_api3_create_success($returnValues, $params, 'System', 'get');
177}