Merge pull request #13974 from eileenmcnaughton/array_format7
[civicrm-core.git] / CRM / Admin / Page / Extensions.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 * This is a part of CiviCRM extension management functionality.
30 *
31 * @package CRM
6b83d5bd 32 * @copyright CiviCRM LLC (c) 2004-2019
6a488035
TO
33 */
34
35/**
36 * This page displays the list of extensions registered in the system.
37 */
38class CRM_Admin_Page_Extensions extends CRM_Core_Page_Basic {
39
40 /**
eceb18cc 41 * The action links that we need to display for the browse screen.
6a488035
TO
42 *
43 * @var array
6a488035
TO
44 */
45 static $_links = NULL;
46
47 /**
48 * Obtains the group name from url and sets the title.
6a488035 49 */
00be9182 50 public function preProcess() {
4ef8abc2
CW
51 Civi::resources()->addStyleFile('civicrm', 'css/admin.css');
52
6a488035 53 CRM_Utils_System::setTitle(ts('CiviCRM Extensions'));
481a74f4 54 $destination = CRM_Utils_System::url('civicrm/admin/extensions',
353ffa53 55 'reset=1');
8ef12e64 56
481a74f4
TO
57 $destination = urlencode($destination);
58 $this->assign('destination', $destination);
6a488035
TO
59 }
60
61 /**
eceb18cc 62 * Get BAO Name.
6a488035 63 *
a6c01b45
CW
64 * @return string
65 * Classname of BAO.
6a488035 66 */
00be9182 67 public function getBAOName() {
6a488035
TO
68 return 'CRM_Core_BAO_Extension';
69 }
70
71 /**
eceb18cc 72 * Get action Links.
6a488035 73 *
a6c01b45
CW
74 * @return array
75 * (reference) of action links
6a488035 76 */
00be9182 77 public function &links() {
6a488035 78 if (!(self::$_links)) {
be2fb01f
CW
79 self::$_links = [
80 CRM_Core_Action::ADD => [
6a488035
TO
81 'name' => ts('Install'),
82 'url' => 'civicrm/admin/extensions',
83 'qs' => 'action=add&id=%%id%%&key=%%key%%',
84 'title' => ts('Install'),
be2fb01f
CW
85 ],
86 CRM_Core_Action::ENABLE => [
6a488035
TO
87 'name' => ts('Enable'),
88 'url' => 'civicrm/admin/extensions',
89 'qs' => 'action=enable&id=%%id%%&key=%%key%%',
90 'ref' => 'enable-action',
91 'title' => ts('Enable'),
be2fb01f
CW
92 ],
93 CRM_Core_Action::DISABLE => [
6a488035
TO
94 'name' => ts('Disable'),
95 'url' => 'civicrm/admin/extensions',
96 'qs' => 'action=disable&id=%%id%%&key=%%key%%',
6a488035 97 'title' => ts('Disable'),
be2fb01f
CW
98 ],
99 CRM_Core_Action::DELETE => [
6a488035
TO
100 'name' => ts('Uninstall'),
101 'url' => 'civicrm/admin/extensions',
102 'qs' => 'action=delete&id=%%id%%&key=%%key%%',
103 'title' => ts('Uninstall Extension'),
be2fb01f
CW
104 ],
105 CRM_Core_Action::UPDATE => [
6a488035
TO
106 'name' => ts('Download'),
107 'url' => 'civicrm/admin/extensions',
108 'qs' => 'action=update&id=%%id%%&key=%%key%%',
109 'title' => ts('Download Extension'),
be2fb01f
CW
110 ],
111 ];
6a488035
TO
112 }
113 return self::$_links;
114 }
115
116 /**
117 * Run the basic page (run essentially starts execution for that page).
6a488035 118 */
00be9182 119 public function run() {
6a488035
TO
120 $this->preProcess();
121 return parent::run();
122 }
123
124 /**
eceb18cc 125 * Browse all options.
6a488035 126 */
00be9182 127 public function browse() {
6a488035
TO
128
129 // build announcements at the top of the page
130 $this->assign('extAddNewEnabled', CRM_Extension_System::singleton()->getBrowser()->isEnabled());
131 $reqs = CRM_Extension_System::singleton()->getDownloader()->checkRequirements();
132 if (empty($reqs)) {
133 $reqs = CRM_Extension_System::singleton()->getBrowser()->checkRequirements();
134 }
70d331a6
TO
135 if (empty($reqs)) {
136 $reqs = CRM_Extension_System::singleton()->getDefaultContainer()->checkRequirements();
137 }
6a488035
TO
138 $this->assign('extAddNewReqs', $reqs);
139
140 $this->assign('extDbUpgrades', CRM_Extension_Upgrades::hasPending());
141 $this->assign('extDbUpgradeUrl', CRM_Utils_System::url('civicrm/admin/extensions/upgrade', 'reset=1'));
142
143 // TODO: Debate whether to immediately detect changes in underlying source tree
144 // $manager->refresh();
145
616aa7a1
TO
146 $localExtensionRows = $this->formatLocalExtensionRows();
147 $this->assign('localExtensionRows', $localExtensionRows);
148
149 $remoteExtensionRows = $this->formatRemoteExtensionRows($localExtensionRows);
150 $this->assign('remoteExtensionRows', $remoteExtensionRows);
151 }
152
153 /**
154 * Get the list of local extensions and format them as a table with
155 * status and action data.
156 *
157 * @return array
158 */
159 public function formatLocalExtensionRows() {
160 $mapper = CRM_Extension_System::singleton()->getMapper();
161 $manager = CRM_Extension_System::singleton()->getManager();
162
be2fb01f 163 $localExtensionRows = []; // array($pseudo_id => extended_CRM_Extension_Info)
6a488035
TO
164 $keys = array_keys($manager->getStatuses());
165 sort($keys);
22e263ad 166 foreach ($keys as $key) {
6a488035
TO
167 try {
168 $obj = $mapper->keyToInfo($key);
0db6c3e1
TO
169 }
170 catch (CRM_Extension_Exception $ex) {
be2fb01f 171 CRM_Core_Session::setStatus(ts('Failed to read extension (%1). Please refresh the extension list.', [1 => $key]));
6a488035
TO
172 continue;
173 }
174
175 $row = self::createExtendedInfo($obj);
176 $row['id'] = $obj->key;
177
178 // assign actions
179 $action = 0;
180 switch ($row['status']) {
181 case CRM_Extension_Manager::STATUS_UNINSTALLED:
182 $action += CRM_Core_Action::ADD;
183 break;
02fc859b 184
6a488035
TO
185 case CRM_Extension_Manager::STATUS_DISABLED:
186 $action += CRM_Core_Action::ENABLE;
187 $action += CRM_Core_Action::DELETE;
188 break;
02fc859b 189
6a488035
TO
190 case CRM_Extension_Manager::STATUS_DISABLED_MISSING:
191 $action += CRM_Core_Action::DELETE;
192 break;
02fc859b 193
6a488035
TO
194 case CRM_Extension_Manager::STATUS_INSTALLED:
195 case CRM_Extension_Manager::STATUS_INSTALLED_MISSING:
196 $action += CRM_Core_Action::DISABLE;
197 break;
02fc859b 198
6a488035
TO
199 default:
200 }
201 // TODO if extbrowser is enabled and extbrowser has newer version than extcontainer,
202 // then $action += CRM_Core_Action::UPDATE
203 $row['action'] = CRM_Core_Action::formLink(self::links(),
204 $action,
be2fb01f 205 [
6a488035
TO
206 'id' => $row['id'],
207 'key' => $obj->key,
be2fb01f 208 ],
87dab4a4
AH
209 ts('more'),
210 FALSE,
211 'extension.local.action',
212 'Extension',
213 $row['id']
6a488035 214 );
87dab4a4
AH
215 // Key would be better to send, but it's not an integer. Moreover, sending the
216 // values to hook_civicrm_links means that you can still get at the key
6a488035
TO
217
218 $localExtensionRows[$row['id']] = $row;
219 }
616aa7a1
TO
220 return $localExtensionRows;
221 }
6a488035 222
616aa7a1 223 /**
e4c4f267 224 * Get the list of remote extensions and format them as a table with
616aa7a1
TO
225 * status and action data.
226 *
227 * @param array $localExtensionRows
228 * @return array
229 */
230 public function formatRemoteExtensionRows($localExtensionRows) {
b769826b
CW
231 try {
232 $remoteExtensions = CRM_Extension_System::singleton()->getBrowser()->getExtensions();
233 }
234 catch (CRM_Extension_Exception $e) {
be2fb01f 235 $remoteExtensions = [];
b769826b
CW
236 CRM_Core_Session::setStatus($e->getMessage(), ts('Extension download error'), 'error');
237 }
238
b44e3f84 239 // build list of available downloads
be2fb01f 240 $remoteExtensionRows = [];
e4c4f267
CW
241 $compat = CRM_Extension_System::getCompatibilityInfo();
242
b769826b 243 foreach ($remoteExtensions as $info) {
e4c4f267
CW
244 if (!empty($compat[$info->key]['obsolete'])) {
245 continue;
246 }
6a488035
TO
247 $row = (array) $info;
248 $row['id'] = $info->key;
249 $action = CRM_Core_Action::UPDATE;
250 $row['action'] = CRM_Core_Action::formLink(self::links(),
251 $action,
be2fb01f 252 [
6a488035
TO
253 'id' => $row['id'],
254 'key' => $row['key'],
be2fb01f 255 ],
87dab4a4
AH
256 ts('more'),
257 FALSE,
258 'extension.remote.action',
259 'Extension',
260 $row['id']
6a488035 261 );
46693baf 262 if (isset($localExtensionRows[$info->key])) {
518d3e48
JK
263 if (array_key_exists('version', $localExtensionRows[$info->key])) {
264 if (version_compare($localExtensionRows[$info->key]['version'], $info->version, '<')) {
265 $row['is_upgradeable'] = TRUE;
266 }
46693baf
TO
267 }
268 }
6a488035
TO
269 $remoteExtensionRows[$row['id']] = $row;
270 }
616aa7a1
TO
271
272 return $remoteExtensionRows;
6a488035
TO
273 }
274
275 /**
eceb18cc 276 * Get name of edit form.
6a488035 277 *
a6c01b45
CW
278 * @return string
279 * Classname of edit form.
6a488035 280 */
00be9182 281 public function editForm() {
6a488035
TO
282 return 'CRM_Admin_Form_Extensions';
283 }
284
285 /**
eceb18cc 286 * Get edit form name.
6a488035 287 *
a6c01b45
CW
288 * @return string
289 * name of this page.
6a488035 290 */
00be9182 291 public function editName() {
6a488035
TO
292 return 'CRM_Admin_Form_Extensions';
293 }
294
295 /**
296 * Get user context.
297 *
fd31fa4c
EM
298 * @param null $mode
299 *
a6c01b45
CW
300 * @return string
301 * user context.
6a488035 302 */
00be9182 303 public function userContext($mode = NULL) {
6a488035
TO
304 return 'civicrm/admin/extensions';
305 }
306
307 /**
eceb18cc 308 * Get userContext params.
6a488035 309 *
5173bd95
TO
310 * @param int $mode
311 * Mode that we are in.
6a488035
TO
312 *
313 * @return string
6a488035 314 */
00be9182 315 public function userContextParams($mode = NULL) {
6a488035
TO
316 return 'reset=1&action=browse';
317 }
318
319 /**
320 * Take an extension's raw XML info and add information about the
321 * extension's status on the local system.
322 *
323 * The result format resembles the old CRM_Core_Extensions_Extension.
324 *
da6b46f4
EM
325 * @param CRM_Extension_Info $obj
326 *
6a488035
TO
327 * @return array
328 */
329 public static function createExtendedInfo(CRM_Extension_Info $obj) {
9a5dc864 330 return CRM_Extension_System::createExtendedInfo($obj);
6a488035 331 }
96025800 332
6a488035 333}