INFRA-132 - Misc
[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/**
29 * File for the CiviCRM APIv3 domain functions
30 *
31 * @package CiviCRM_APIv3
32 * @subpackage API_Domain
33 *
731a0992 34 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
35 * @version $Id: Domain.php 30171 2010-10-14 09:11:27Z mover $
36 *
37 */
38
39/**
40 * Flush all system caches
41 *
cf470720
TO
42 * @param array $params
43 * Input parameters.
6a488035
TO
44 * - triggers: bool, whether to drop/create SQL triggers; default: FALSE
45 * - session: bool, whether to reset the CiviCRM session data; defaul: FALSE
46 *
c23f45d3 47 * @return array
6a488035
TO
48 */
49function civicrm_api3_system_flush($params) {
50 CRM_Core_Invoke::rebuildMenuAndCaches(
51 CRM_Utils_Array::value('triggers', $params, FALSE),
52 CRM_Utils_Array::value('session', $params, FALSE)
53 );
54 return civicrm_api3_create_success();
55}
56
11e09c59 57/**
6a488035
TO
58 * Adjust Metadata for Flush action
59 *
60 * The metadata is used for setting defaults, documentation & validation
cf470720
TO
61 * @param array $params
62 * Array or parameters determined by getfields.
6a488035 63 */
9b873358 64function _civicrm_api3_system_flush_spec(&$params) {
6a488035
TO
65 $params['triggers'] = array('title' => 'rebuild triggers (boolean)');
66 $params['session'] = array('title' => 'refresh sessions (boolean)');
9ef501da 67}
6a488035 68
9ef501da
TO
69/**
70 * System.Check API specification (optional)
71 * This is used for documentation and validation.
72 *
cf470720
TO
73 * @param array $spec
74 * Description of fields supported by this API call.
9ef501da
TO
75 * @return void
76 * @see http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
77 */
78function _civicrm_api3_system_check_spec(&$spec) {
79 // $spec['magicword']['api.required'] = 1;
232624b1 80}
9ef501da
TO
81
82/**
83 * System.Check API
84 *
85 * @param array $params
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/**
c490a46a 103 * @param array $params
e2bef985 104 *
105 * @return array
106 */
107function civicrm_api3_system_log($params) {
108 $log = new CRM_Utils_SystemLogger();
109 // this part means fields with separate db storage are accepted as params which kind of seems more intuitive to me
110 // 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 111 if (!isset($params['context'])) {
e2bef985 112 $params['context'] = array();
113 }
114 $specialFields = array('contact_id', 'hostname');
22e263ad
TO
115 foreach ($specialFields as $specialField) {
116 if (isset($params[$specialField]) && !isset($params['context'])) {
e2bef985 117 $params['context'][$specialField] = $params[$specialField];
118 }
119 }
120 $returnValues = $log->log($params['level'], $params['message'], $params['context']);
121 return civicrm_api3_create_success($returnValues, $params, 'System', 'Log');
122}
123
124/**
125 * Metadata for log function
c490a46a 126 * @param array $params
e2bef985 127 */
4f8ccea0 128function _civicrm_api3_system_log_spec(&$params) {
e2bef985 129 $params['level'] = array(
130 'title' => 'Log Level',
131 'description' => 'Log level as described in PSR3 (info, debug, warning etc)',
132 'type' => CRM_Utils_Type::T_STRING,
133 'api.required' => TRUE,
134 );
135 $params['message'] = array(
136 'title' => 'Log Message',
137 'description' => 'Standardised message string, you can also ',
138 'type' => CRM_Utils_Type::T_STRING,
139 'api.required' => TRUE,
140 );
141 $params['context'] = array(
142 'title' => 'Log Context',
143 'description' => 'An array of additional data to store.',
144 'type' => CRM_Utils_Type::T_LONGTEXT,
145 'api.default' => array(),
146 );
147 $params['contact_id'] = array(
148 'title' => 'Log Contact ID',
149 'description' => 'Optional ID of relevant contact',
150 'type' => CRM_Utils_Type::T_INT,
151 );
152 $params['hostname'] = array(
153 'title' => 'Log Hostname',
154 'description' => 'Optional name of host',
155 'type' => CRM_Utils_Type::T_STRING,
156 );
157}
42bf9336 158
91f1889e
TO
159/**
160 * System.Get API
161 *
24a70b66
EM
162 * @param array $params
163 * @return array
91f1889e
TO
164 */
165function civicrm_api3_system_get($params) {
166 $returnValues = array(
167 array(
168 'version' => CRM_Utils_System::version(),
169 'uf' => CIVICRM_UF,
170 ),
171 );
172 return civicrm_api3_create_success($returnValues, $params, 'System', 'get');
173}