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