CRM-19816 - Improve activity search filters
[civicrm-core.git] / api / v3 / Extension.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
81621fee 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
fa938177 6 | Copyright CiviCRM LLC (c) 2004-2016 |
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
c490a46a
CW
28define('API_V3_EXTENSION_DELIMITER', ',');
29
30
6a488035 31/**
244bbdd8 32 * This provides an api interface for CiviCRM extension management.
6a488035
TO
33 *
34 * @package CiviCRM_APIv3
6a488035
TO
35 */
36
37/**
dc64d047 38 * Install an extension.
6a488035 39 *
cf470720
TO
40 * @param array $params
41 * Input parameters.
e5f24f02
CW
42 * - key: string, eg "com.example.myextension"
43 * - keys: array of string, eg array("com.example.myextension1", "com.example.myextension2")
44 *
45 * Using 'keys' should be more performant than making multiple API calls with 'key'
6a488035 46 *
a6c01b45 47 * @return array
6a488035
TO
48 */
49function civicrm_api3_extension_install($params) {
50 $keys = _civicrm_api3_getKeys($params);
dbb0dbe6 51 if (!$keys) {
6a488035
TO
52 return civicrm_api3_create_success();
53 }
54
55 try {
56 CRM_Extension_System::singleton()->getManager()->install($keys);
0db6c3e1
TO
57 }
58 catch (CRM_Extension_Exception $e) {
6a488035
TO
59 return civicrm_api3_create_error($e->getMessage());
60 }
61
62 return civicrm_api3_create_success();
63}
64
e5f24f02
CW
65/**
66 * Spec function for getfields
67 * @param $fields
68 */
69function _civicrm_api3_extension_install_spec(&$fields) {
70 $fields['keys'] = array(
71 'title' => 'Extension Key(s)',
72 'api.required' => 1,
73 'api.aliases' => array('key'),
74 'type' => CRM_Utils_Type::T_STRING,
75 'description' => 'Fully qualified name of one or more extensions',
76 );
77}
78
9a477d10 79/**
d1b0d05e 80 * Upgrade an extension - runs upgrade_N hooks and system.flush.
9a477d10 81 *
a6c01b45 82 * @return array
72b3a70c 83 * API result
9a477d10
FG
84 */
85function civicrm_api3_extension_upgrade() {
86 CRM_Core_Invoke::rebuildMenuAndCaches(TRUE);
87 $queue = CRM_Extension_Upgrades::createQueue();
88 $runner = new CRM_Queue_Runner(array(
89 'title' => 'Extension Upgrades',
90 'queue' => $queue,
91 'errorMode' => CRM_Queue_Runner::ERROR_ABORT,
92 ));
93
94 try {
95 $result = $runner->runAll();
0db6c3e1
TO
96 }
97 catch (CRM_Extension_Exception $e) {
9a477d10
FG
98 return civicrm_api3_create_error($e->getMessage());
99 }
100
101 if ($result === TRUE) {
102 return civicrm_api3_create_success();
0db6c3e1
TO
103 }
104 else {
9a477d10
FG
105 return $result;
106 }
107}
108
6a488035 109/**
dc64d047 110 * Enable an extension.
6a488035 111 *
cf470720
TO
112 * @param array $params
113 * Input parameters.
e5f24f02
CW
114 * - key: string, eg "com.example.myextension"
115 * - keys: array of string, eg array("com.example.myextension1", "com.example.myextension2")
116 *
117 * Using 'keys' should be more performant than making multiple API calls with 'key'
6a488035 118 *
a6c01b45 119 * @return array
6a488035
TO
120 */
121function civicrm_api3_extension_enable($params) {
122 $keys = _civicrm_api3_getKeys($params);
123 if (count($keys) == 0) {
124 return civicrm_api3_create_success();
125 }
126
127 CRM_Extension_System::singleton()->getManager()->enable($keys);
128 return civicrm_api3_create_success();
129}
130
e5f24f02
CW
131/**
132 * Spec function for getfields
133 * @param $fields
134 */
135function _civicrm_api3_extension_enable_spec(&$fields) {
136 _civicrm_api3_extension_install_spec($fields);
137}
138
6a488035 139/**
9d32e6f7 140 * Disable an extension.
6a488035 141 *
cf470720
TO
142 * @param array $params
143 * Input parameters.
e5f24f02
CW
144 * - key: string, eg "com.example.myextension"
145 * - keys: array of string, eg array("com.example.myextension1", "com.example.myextension2")
146 *
147 * Using 'keys' should be more performant than making multiple API calls with 'key'
6a488035 148 *
a6c01b45 149 * @return array
6a488035
TO
150 */
151function civicrm_api3_extension_disable($params) {
152 $keys = _civicrm_api3_getKeys($params);
153 if (count($keys) == 0) {
154 return civicrm_api3_create_success();
155 }
156
157 CRM_Extension_System::singleton()->getManager()->disable($keys);
158 return civicrm_api3_create_success();
159}
160
e5f24f02
CW
161/**
162 * Spec function for getfields
163 * @param $fields
164 */
165function _civicrm_api3_extension_disable_spec(&$fields) {
166 _civicrm_api3_extension_install_spec($fields);
167}
168
6a488035 169/**
dc64d047 170 * Uninstall an extension.
6a488035 171 *
cf470720
TO
172 * @param array $params
173 * Input parameters.
e5f24f02
CW
174 * - key: string, eg "com.example.myextension"
175 * - keys: array of string, eg array("com.example.myextension1", "com.example.myextension2")
176 *
177 * Using 'keys' should be more performant than making multiple API calls with 'key'
178 *
179 * @todo: removeFiles as optional param
6a488035 180 *
a6c01b45 181 * @return array
6a488035
TO
182 */
183function civicrm_api3_extension_uninstall($params) {
184 $keys = _civicrm_api3_getKeys($params);
185 if (count($keys) == 0) {
186 return civicrm_api3_create_success();
187 }
188
6a488035
TO
189 CRM_Extension_System::singleton()->getManager()->uninstall($keys);
190 return civicrm_api3_create_success();
191}
192
e5f24f02
CW
193/**
194 * Spec function for getfields
195 * @param $fields
196 */
197function _civicrm_api3_extension_uninstall_spec(&$fields) {
198 _civicrm_api3_extension_install_spec($fields);
199 //$fields['removeFiles'] = array(
200 // 'title' => 'Remove files',
201 // 'description' => 'Whether to remove the source tree. Default FALSE.',
202 // 'type' => CRM_Utils_Type::T_BOOLEAN,
203 //);
204}
205
6a488035 206/**
dc64d047 207 * Download and install an extension.
6a488035 208 *
cf470720
TO
209 * @param array $params
210 * Input parameters.
244bbdd8
CW
211 * - key: string, eg "com.example.myextension"
212 * - url: string eg "http://repo.com/myextension-1.0.zip"
6a488035 213 *
77b97be7 214 * @throws API_Exception
a6c01b45 215 * @return array
72b3a70c 216 * API result
6a488035
TO
217 */
218function civicrm_api3_extension_download($params) {
6c552737
TO
219 if (!array_key_exists('url', $params)) {
220 if (!CRM_Extension_System::singleton()->getBrowser()->isEnabled()) {
e5f24f02 221 throw new API_Exception('Automatic downloading is disabled. Try adding parameter "url"');
6a488035
TO
222 }
223 if ($reqs = CRM_Extension_System::singleton()->getBrowser()->checkRequirements()) {
224 $first = array_shift($reqs);
225 throw new API_Exception($first['message']);
226 }
227 if ($info = CRM_Extension_System::singleton()->getBrowser()->getExtension($params['key'])) {
228 if ($info->downloadUrl) {
229 $params['url'] = $info->downloadUrl;
230 }
231 }
232 }
233
6c552737 234 if (!array_key_exists('url', $params)) {
6a488035
TO
235 throw new API_Exception('Cannot resolve download url for extension. Try adding parameter "url"');
236 }
237
238 foreach (CRM_Extension_System::singleton()->getDownloader()->checkRequirements() as $requirement) {
239 return civicrm_api3_create_error($requirement['message']);
240 }
241
6c552737 242 if (!CRM_Extension_System::singleton()->getDownloader()->download($params['key'], $params['url'])) {
6a488035
TO
243 return civicrm_api3_create_error('Download failed - ZIP file is unavailable or malformed');
244 }
245 CRM_Extension_System::singleton()->getCache()->flush();
246 CRM_Extension_System::singleton(TRUE);
247 CRM_Extension_System::singleton()->getManager()->install(array($params['key']));
248
249 return civicrm_api3_create_success();
250}
251
e5f24f02
CW
252/**
253 * Spec function for getfields
254 * @param $fields
255 */
256function _civicrm_api3_extension_download_spec(&$fields) {
257 $fields['key'] = array(
258 'title' => 'Extension Key',
259 'api.required' => 1,
260 'type' => CRM_Utils_Type::T_STRING,
261 'description' => 'Fully qualified name of the extension',
262 );
263 $fields['url'] = array(
264 'title' => 'Download URL',
265 'type' => CRM_Utils_Type::T_STRING,
266 'description' => 'Optional as the system can determine the url automatically for public extensions',
267 );
268}
269
6a488035 270/**
dc64d047 271 * Download and install an extension.
6a488035 272 *
cf470720
TO
273 * @param array $params
274 * Input parameters.
244bbdd8
CW
275 * - local: bool, whether to rescan local filesystem (default: TRUE)
276 * - remote: bool, whether to rescan remote repository (default: TRUE)
6a488035 277 *
a6c01b45 278 * @return array
72b3a70c 279 * API result
6a488035
TO
280 */
281function civicrm_api3_extension_refresh($params) {
6a488035
TO
282 $system = CRM_Extension_System::singleton(TRUE);
283
284 if ($params['local']) {
285 $system->getManager()->refresh();
286 $system->getManager()->getStatuses(); // force immediate scan
287 }
288
289 if ($params['remote']) {
290 if ($system->getBrowser()->isEnabled() && empty($system->getBrowser()->checkRequirements)) {
291 $system->getBrowser()->refresh();
292 $system->getBrowser()->getExtensions(); // force immediate download
293 }
294 }
295
296 return civicrm_api3_create_success();
297}
298
e5f24f02
CW
299/**
300 * Spec function for getfields
301 * @param $fields
302 */
303function _civicrm_api3_extension_refresh_spec(&$fields) {
304 $fields['local'] = array(
305 'title' => 'Rescan Local',
306 'api.default' => 1,
307 'type' => CRM_Utils_Type::T_BOOLEAN,
308 'description' => 'Whether to rescan the local filesystem (default TRUE)',
309 );
310 $fields['remote'] = array(
311 'title' => 'Rescan Remote',
312 'api.default' => 1,
313 'type' => CRM_Utils_Type::T_BOOLEAN,
314 'description' => 'Whether to rescan the remote repository (default TRUE)',
315 );
316}
317
6a488035 318/**
d1b0d05e 319 * Get a list of available extensions.
6a488035 320 *
c490a46a 321 * @param array $params
77b97be7 322 *
a6c01b45 323 * @return array
72b3a70c 324 * API result
6a488035
TO
325 */
326function civicrm_api3_extension_get($params) {
327 $statuses = CRM_Extension_System::singleton()->getManager()->getStatuses();
517dfba8 328 $mapper = CRM_Extension_System::singleton()->getMapper();
6a488035 329 $result = array();
c36fe5b0 330 $id = 0;
6a488035 331 foreach ($statuses as $key => $status) {
517dfba8
AS
332 try {
333 $obj = $mapper->keyToInfo($key);
334 }
335 catch (CRM_Extension_Exception $ex) {
336 CRM_Core_Session::setStatus(ts('Failed to read extension (%1). Please refresh the extension list.', array(1 => $key)));
337 continue;
338 }
339 $info = CRM_Extension_System::createExtendedInfo($obj);
c36fe5b0 340 $info['id'] = $id++; // backward compatibility with indexing scheme
6a488035
TO
341 $result[] = $info;
342 }
517dfba8 343 return _civicrm_api3_basic_array_get('Extension', $params, $result, 'id', array());
6a488035
TO
344}
345
c74a6c8f
AS
346/**
347 * Get a list of remotely available extensions.
348 *
349 * @param array $params
350 *
351 * @return array
352 * API result
353 */
354function civicrm_api3_extension_getremote($params) {
355 $extensions = CRM_Extension_System::singleton()->getBrowser()->getExtensions();
356 $result = array();
357 $id = 0;
358 foreach ($extensions as $key => $obj) {
359 $info = array();
360 $info['id'] = $id++; // backward compatibility with indexing scheme
361 $info = array_merge($info, (array) $obj);
362 $result[] = $info;
363 }
364 return _civicrm_api3_basic_array_get('Extension', $params, $result, 'id', CRM_Utils_Array::value('return', $params, array()));
365}
366
6a488035 367/**
d1b0d05e 368 * Determine the list of extension keys.
6a488035 369 *
cf470720 370 * @param array $params
dbb0dbe6 371 * API request params with 'keys'.
d1b0d05e 372 *
a6c01b45 373 * @return array
6a488035
TO
374 */
375function _civicrm_api3_getKeys($params) {
dbb0dbe6 376 if (is_array($params['keys'])) {
6a488035 377 return $params['keys'];
0db6c3e1 378 }
dbb0dbe6
CW
379 if ($params['keys'] == '') {
380 return array();
6a488035 381 }
dbb0dbe6 382 return explode(API_V3_EXTENSION_DELIMITER, $params['keys']);
6a488035 383}