Merge pull request #16662 from seamuslee001/tcpdf_depreaction
[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);
38c87aa2 151 $hiddenExtensions = $mapper->getKeysByTag('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
CW
236 $compat = CRM_Extension_System::getCompatibilityInfo();
237
b769826b 238 foreach ($remoteExtensions as $info) {
e4c4f267
CW
239 if (!empty($compat[$info->key]['obsolete'])) {
240 continue;
241 }
6a488035
TO
242 $row = (array) $info;
243 $row['id'] = $info->key;
244 $action = CRM_Core_Action::UPDATE;
245 $row['action'] = CRM_Core_Action::formLink(self::links(),
246 $action,
be2fb01f 247 [
6a488035
TO
248 'id' => $row['id'],
249 'key' => $row['key'],
be2fb01f 250 ],
87dab4a4
AH
251 ts('more'),
252 FALSE,
253 'extension.remote.action',
254 'Extension',
255 $row['id']
6a488035 256 );
46693baf 257 if (isset($localExtensionRows[$info->key])) {
518d3e48
JK
258 if (array_key_exists('version', $localExtensionRows[$info->key])) {
259 if (version_compare($localExtensionRows[$info->key]['version'], $info->version, '<')) {
260 $row['is_upgradeable'] = TRUE;
261 }
46693baf
TO
262 }
263 }
6a488035
TO
264 $remoteExtensionRows[$row['id']] = $row;
265 }
616aa7a1
TO
266
267 return $remoteExtensionRows;
6a488035
TO
268 }
269
270 /**
eceb18cc 271 * Get name of edit form.
6a488035 272 *
a6c01b45
CW
273 * @return string
274 * Classname of edit form.
6a488035 275 */
00be9182 276 public function editForm() {
6a488035
TO
277 return 'CRM_Admin_Form_Extensions';
278 }
279
280 /**
eceb18cc 281 * Get edit form name.
6a488035 282 *
a6c01b45
CW
283 * @return string
284 * name of this page.
6a488035 285 */
00be9182 286 public function editName() {
6a488035
TO
287 return 'CRM_Admin_Form_Extensions';
288 }
289
290 /**
291 * Get user context.
292 *
fd31fa4c
EM
293 * @param null $mode
294 *
a6c01b45
CW
295 * @return string
296 * user context.
6a488035 297 */
00be9182 298 public function userContext($mode = NULL) {
6a488035
TO
299 return 'civicrm/admin/extensions';
300 }
301
302 /**
eceb18cc 303 * Get userContext params.
6a488035 304 *
5173bd95
TO
305 * @param int $mode
306 * Mode that we are in.
6a488035
TO
307 *
308 * @return string
6a488035 309 */
00be9182 310 public function userContextParams($mode = NULL) {
6a488035
TO
311 return 'reset=1&action=browse';
312 }
313
314 /**
315 * Take an extension's raw XML info and add information about the
316 * extension's status on the local system.
317 *
318 * The result format resembles the old CRM_Core_Extensions_Extension.
319 *
da6b46f4
EM
320 * @param CRM_Extension_Info $obj
321 *
6a488035
TO
322 * @return array
323 */
324 public static function createExtendedInfo(CRM_Extension_Info $obj) {
9a5dc864 325 return CRM_Extension_System::createExtendedInfo($obj);
6a488035 326 }
96025800 327
6a488035 328}