[NFC] array formatting tricksy tricksie file (another)
[civicrm-core.git] / CRM / Upgrade / Form.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
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 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2019
32 * $Id$
33 *
34 */
35 class CRM_Upgrade_Form extends CRM_Core_Form {
36 const QUEUE_NAME = 'CRM_Upgrade';
37
38 /**
39 * Minimum size of MySQL's thread_stack option
40 *
41 * @see install/index.php MINIMUM_THREAD_STACK
42 */
43 const MINIMUM_THREAD_STACK = 192;
44
45 /**
46 * Minimum previous CiviCRM version we can directly upgrade from
47 */
48 const MINIMUM_UPGRADABLE_VERSION = '4.2.9';
49
50 /**
51 * Minimum php version required to run (equal to or lower than the minimum install version)
52 */
53 const MINIMUM_PHP_VERSION = '5.6';
54
55 protected $_config;
56
57 /**
58 * Upgrade for multilingual.
59 *
60 * @var boolean
61 */
62 public $multilingual = FALSE;
63
64 /**
65 * Locales available for multilingual upgrade.
66 *
67 * @var array
68 */
69 public $locales;
70
71 /**
72 * Constructor for the basic form page.
73 *
74 * We should not use QuickForm directly. This class provides a lot
75 * of default convenient functions, rules and buttons
76 *
77 * @param object $state
78 * State associated with this form.
79 * @param const|\enum|int $action The mode the form is operating in (None/Create/View/Update/Delete)
80 * @param string $method
81 * The type of http method used (GET/POST).
82 * @param string $name
83 * The name of the form if different from class name.
84 */
85 public function __construct(
86 $state = NULL,
87 $action = CRM_Core_Action::NONE,
88 $method = 'post',
89 $name = NULL
90 ) {
91 $this->_config = CRM_Core_Config::singleton();
92
93 $domain = new CRM_Core_DAO_Domain();
94 $domain->find(TRUE);
95
96 $this->multilingual = (bool) $domain->locales;
97 $this->locales = explode(CRM_Core_DAO::VALUE_SEPARATOR, $domain->locales);
98
99 $smarty = CRM_Core_Smarty::singleton();
100 //$smarty->compile_dir = $this->_config->templateCompileDir;
101 $smarty->assign('multilingual', $this->multilingual);
102 $smarty->assign('locales', $this->locales);
103
104 // we didn't call CRM_Core_BAO_ConfigSetting::retrieve(), so we need to set $dbLocale by hand
105 if ($this->multilingual) {
106 global $dbLocale;
107 $dbLocale = "_{$this->_config->lcMessages}";
108 }
109
110 parent::__construct($state, $action, $method, $name);
111 }
112
113 /**
114 * @param $version
115 *
116 * @return mixed
117 */
118 public static function &incrementalPhpObject($version) {
119 static $incrementalPhpObject = array();
120
121 $versionParts = explode('.', $version);
122 $versionName = CRM_Utils_EnglishNumber::toCamelCase($versionParts[0]) . CRM_Utils_EnglishNumber::toCamelCase($versionParts[1]);
123
124 if (!array_key_exists($versionName, $incrementalPhpObject)) {
125 $className = "CRM_Upgrade_Incremental_php_{$versionName}";
126 $incrementalPhpObject[$versionName] = new $className();
127 }
128 return $incrementalPhpObject[$versionName];
129 }
130
131 /**
132 * @param $version
133 * @param $release
134 *
135 * @return bool
136 */
137 public function checkVersionRelease($version, $release) {
138 $versionParts = explode('.', $version);
139 return ($versionParts[2] == $release);
140 }
141
142 /**
143 * @param $constraints
144 *
145 * @return array
146 */
147 public function checkSQLConstraints(&$constraints) {
148 $pass = $fail = 0;
149 foreach ($constraints as $constraint) {
150 if ($this->checkSQLConstraint($constraint)) {
151 $pass++;
152 }
153 else {
154 $fail++;
155 }
156 return array($pass, $fail);
157 }
158 }
159
160 /**
161 * @param $constraint
162 *
163 * @return bool
164 */
165 public function checkSQLConstraint($constraint) {
166 // check constraint here
167 return TRUE;
168 }
169
170 /**
171 * @param string $fileName
172 * @param bool $isQueryString
173 */
174 public function source($fileName, $isQueryString = FALSE) {
175 if ($isQueryString) {
176 CRM_Utils_File::runSqlQuery($this->_config->dsn,
177 $fileName, NULL
178 );
179 }
180 else {
181 CRM_Utils_File::sourceSQLFile($this->_config->dsn,
182 $fileName, NULL
183 );
184 }
185 }
186
187 public function preProcess() {
188 CRM_Utils_System::setTitle($this->getTitle());
189 if (!$this->verifyPreDBState($errorMessage)) {
190 if (!isset($errorMessage)) {
191 $errorMessage = 'pre-condition failed for current upgrade step';
192 }
193 CRM_Core_Error::fatal($errorMessage);
194 }
195 $this->assign('recentlyViewed', FALSE);
196 }
197
198 public function buildQuickForm() {
199 $this->addDefaultButtons($this->getButtonTitle(),
200 'next',
201 NULL,
202 TRUE
203 );
204 }
205
206 /**
207 * Getter function for title. Should be over-ridden by derived class
208 *
209 * @return string
210 */
211 /**
212 * @return string
213 */
214 public function getTitle() {
215 return ts('Title not Set');
216 }
217
218 /**
219 * @return string
220 */
221 public function getFieldsetTitle() {
222 return '';
223 }
224
225 /**
226 * @return string
227 */
228 public function getButtonTitle() {
229 return ts('Continue');
230 }
231
232 /**
233 * Use the form name to create the tpl file name.
234 *
235 * @return string
236 */
237 /**
238 * @return string
239 */
240 public function getTemplateFileName() {
241 $this->assign('title',
242 $this->getFieldsetTitle()
243 );
244 $this->assign('message',
245 $this->getTemplateMessage()
246 );
247 return 'CRM/Upgrade/Base.tpl';
248 }
249
250 public function postProcess() {
251 $this->upgrade();
252
253 if (!$this->verifyPostDBState($errorMessage)) {
254 if (!isset($errorMessage)) {
255 $errorMessage = 'post-condition failed for current upgrade step';
256 }
257 CRM_Core_Error::fatal($errorMessage);
258 }
259 }
260
261 /**
262 * @param $query
263 *
264 * @return Object
265 */
266 public function runQuery($query) {
267 return CRM_Core_DAO::executeQuery($query,
268 CRM_Core_DAO::$_nullArray
269 );
270 }
271
272 /**
273 * @param $version
274 *
275 * @return Object
276 */
277 public function setVersion($version) {
278 $this->logVersion($version);
279
280 $query = "
281 UPDATE civicrm_domain
282 SET version = '$version'
283 ";
284 return $this->runQuery($query);
285 }
286
287 /**
288 * @param $newVersion
289 *
290 * @return bool
291 */
292 public function logVersion($newVersion) {
293 if ($newVersion) {
294 $oldVersion = CRM_Core_BAO_Domain::version();
295
296 $session = CRM_Core_Session::singleton();
297 $logParams = array(
298 'entity_table' => 'civicrm_domain',
299 'entity_id' => 1,
300 'data' => "upgrade:{$oldVersion}->{$newVersion}",
301 // lets skip 'modified_id' for now, as it causes FK issues And
302 // is not very important for now.
303 'modified_date' => date('YmdHis'),
304 );
305 CRM_Core_BAO_Log::add($logParams);
306 return TRUE;
307 }
308
309 return FALSE;
310 }
311
312 /**
313 * @param $version
314 *
315 * @return bool
316 */
317 public function checkVersion($version) {
318 $domainID = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_Domain',
319 $version, 'id',
320 'version'
321 );
322 return $domainID ? TRUE : FALSE;
323 }
324
325 /**
326 * @return array
327 * @throws Exception
328 */
329 public function getRevisionSequence() {
330 $revList = array();
331 $sqlDir = implode(DIRECTORY_SEPARATOR,
332 array(dirname(__FILE__), 'Incremental', 'sql')
333 );
334 $sqlFiles = scandir($sqlDir);
335
336 $sqlFilePattern = '/^((\d{1,2}\.\d{1,2})\.(\d{1,2}\.)?(\d{1,2}|\w{4,7}))\.(my)?sql(\.tpl)?$/i';
337 foreach ($sqlFiles as $file) {
338 if (preg_match($sqlFilePattern, $file, $matches)) {
339 if (!in_array($matches[1], $revList)) {
340 $revList[] = $matches[1];
341 }
342 }
343 }
344
345 usort($revList, 'version_compare');
346 return $revList;
347 }
348
349 /**
350 * @param $rev
351 * @param int $index
352 *
353 * @return null
354 */
355 public static function getRevisionPart($rev, $index = 1) {
356 $revPattern = '/^((\d{1,2})\.\d{1,2})\.(\d{1,2}|\w{4,7})?$/i';
357 preg_match($revPattern, $rev, $matches);
358
359 return array_key_exists($index, $matches) ? $matches[$index] : NULL;
360 }
361
362 /**
363 * @param $tplFile
364 * @param $rev
365 *
366 * @return bool
367 */
368 public function processLocales($tplFile, $rev) {
369 $smarty = CRM_Core_Smarty::singleton();
370 $smarty->assign('domainID', CRM_Core_Config::domainID());
371
372 $this->source($smarty->fetch($tplFile), TRUE);
373
374 if ($this->multilingual) {
375 CRM_Core_I18n_Schema::rebuildMultilingualSchema($this->locales, $rev);
376 }
377 return $this->multilingual;
378 }
379
380 /**
381 * @param $rev
382 */
383 public function setSchemaStructureTables($rev) {
384 if ($this->multilingual) {
385 CRM_Core_I18n_Schema::schemaStructureTables($rev, TRUE);
386 }
387 }
388
389 /**
390 * @param $rev
391 *
392 * @throws Exception
393 */
394 public function processSQL($rev) {
395 $sqlFile = implode(DIRECTORY_SEPARATOR,
396 array(
397 dirname(__FILE__),
398 'Incremental',
399 'sql',
400 $rev . '.mysql',
401 )
402 );
403 $tplFile = "$sqlFile.tpl";
404
405 if (file_exists($tplFile)) {
406 $this->processLocales($tplFile, $rev);
407 }
408 else {
409 if (!file_exists($sqlFile)) {
410 CRM_Core_Error::fatal("sqlfile - $rev.mysql not found.");
411 }
412 $this->source($sqlFile);
413 }
414 }
415
416 /**
417 * Determine the start and end version of the upgrade process.
418 *
419 * @return array(0=>$currentVer, 1=>$latestVer)
420 */
421 public function getUpgradeVersions() {
422 $latestVer = CRM_Utils_System::version();
423 $currentVer = CRM_Core_BAO_Domain::version(TRUE);
424 if (!$currentVer) {
425 CRM_Core_Error::fatal(ts('Version information missing in civicrm database.'));
426 }
427 elseif (stripos($currentVer, 'upgrade')) {
428 CRM_Core_Error::fatal(ts('Database check failed - the database looks to have been partially upgraded. You may want to reload the database with the backup and try the upgrade process again.'));
429 }
430 if (!$latestVer) {
431 CRM_Core_Error::fatal(ts('Version information missing in civicrm codebase.'));
432 }
433
434 return array($currentVer, $latestVer);
435 }
436
437 /**
438 * Determine if $currentVer can be upgraded to $latestVer
439 *
440 * @param $currentVer
441 * @param $latestVer
442 *
443 * @return mixed, a string error message or boolean 'false' if OK
444 */
445 public function checkUpgradeableVersion($currentVer, $latestVer) {
446 $error = FALSE;
447 // since version is suppose to be in valid format at this point, especially after conversion ($convertVer),
448 // lets do a pattern check -
449 if (!CRM_Utils_System::isVersionFormatValid($currentVer)) {
450 $error = ts('Database is marked with invalid version format. You may want to investigate this before you proceed further.');
451 }
452 elseif (version_compare($currentVer, $latestVer) > 0) {
453 // DB version number is higher than codebase being upgraded to. This is unexpected condition-fatal error.
454 $error = ts('Your database is marked with an unexpected version number: %1. The automated upgrade to version %2 can not be run - and the %2 codebase may not be compatible with your database state. You will need to determine the correct version corresponding to your current database state. You may want to revert to the codebase you were using prior to beginning this upgrade until you resolve this problem.',
455 array(1 => $currentVer, 2 => $latestVer)
456 );
457 }
458 elseif (version_compare($currentVer, $latestVer) == 0) {
459 $error = ts('Your database has already been upgraded to CiviCRM %1',
460 array(1 => $latestVer)
461 );
462 }
463 elseif (version_compare($currentVer, self::MINIMUM_UPGRADABLE_VERSION) < 0) {
464 $error = ts('CiviCRM versions prior to %1 cannot be upgraded directly to %2. This upgrade will need to be done in stages. First download an intermediate version (the LTS may be a good choice) and upgrade to that before proceeding to this version.',
465 array(1 => self::MINIMUM_UPGRADABLE_VERSION, 2 => $latestVer)
466 );
467 }
468
469 if (version_compare(phpversion(), self::MINIMUM_PHP_VERSION) < 0) {
470 $error = ts('CiviCRM %3 requires PHP version %1 (or newer), but the current system uses %2 ',
471 array(
472 1 => self::MINIMUM_PHP_VERSION,
473 2 => phpversion(),
474 3 => $latestVer,
475 ));
476 }
477
478 // check for mysql trigger privileges
479 if (!\Civi::settings()->get('logging_no_trigger_permission') && !CRM_Core_DAO::checkTriggerViewPermission(FALSE, TRUE)) {
480 $error = ts('CiviCRM %1 requires MySQL trigger privileges.',
481 array(1 => $latestVer));
482 }
483
484 if (CRM_Core_DAO::getGlobalSetting('thread_stack', 0) < (1024 * self::MINIMUM_THREAD_STACK)) {
485 $error = ts('CiviCRM %1 requires MySQL thread stack >= %2k', array(
486 1 => $latestVer,
487 2 => self::MINIMUM_THREAD_STACK,
488 ));
489 }
490
491 return $error;
492 }
493
494 /**
495 * Determine if $currentver already matches $latestVer
496 *
497 * @param $currentVer
498 * @param $latestVer
499 *
500 * @return mixed, a string error message or boolean 'false' if OK
501 */
502 public function checkCurrentVersion($currentVer, $latestVer) {
503 $error = FALSE;
504
505 // since version is suppose to be in valid format at this point, especially after conversion ($convertVer),
506 // lets do a pattern check -
507 if (!CRM_Utils_System::isVersionFormatValid($currentVer)) {
508 $error = ts('Database is marked with invalid version format. You may want to investigate this before you proceed further.');
509 }
510 elseif (version_compare($currentVer, $latestVer) != 0) {
511 $error = ts('Your database is not configured for version %1',
512 array(1 => $latestVer)
513 );
514 }
515 return $error;
516 }
517
518 /**
519 * Fill the queue with upgrade tasks.
520 *
521 * @param string $currentVer
522 * the original revision.
523 * @param string $latestVer
524 * the target (final) revision.
525 * @param string $postUpgradeMessageFile
526 * path of a modifiable file which lists the post-upgrade messages.
527 *
528 * @return CRM_Queue_Service
529 */
530 public static function buildQueue($currentVer, $latestVer, $postUpgradeMessageFile) {
531 $upgrade = new CRM_Upgrade_Form();
532
533 // Ensure that queue can be created
534 if (!CRM_Queue_BAO_QueueItem::findCreateTable()) {
535 CRM_Core_Error::fatal(ts('Failed to find or create queueing table'));
536 }
537 $queue = CRM_Queue_Service::singleton()->create(array(
538 'name' => self::QUEUE_NAME,
539 'type' => 'Sql',
540 'reset' => TRUE,
541 ));
542
543 $task = new CRM_Queue_Task(
544 array('CRM_Upgrade_Form', 'doFileCleanup'),
545 array($postUpgradeMessageFile),
546 "Cleanup old files"
547 );
548 $queue->createItem($task);
549
550 $task = new CRM_Queue_Task(
551 array('CRM_Upgrade_Form', 'disableOldExtensions'),
552 array($postUpgradeMessageFile),
553 "Checking extensions"
554 );
555 $queue->createItem($task);
556
557 $revisions = $upgrade->getRevisionSequence();
558 foreach ($revisions as $rev) {
559 // proceed only if $currentVer < $rev
560 if (version_compare($currentVer, $rev) < 0) {
561 $beginTask = new CRM_Queue_Task(
562 // callback
563 array('CRM_Upgrade_Form', 'doIncrementalUpgradeStart'),
564 // arguments
565 array($rev),
566 "Begin Upgrade to $rev"
567 );
568 $queue->createItem($beginTask);
569
570 $task = new CRM_Queue_Task(
571 // callback
572 array('CRM_Upgrade_Form', 'doIncrementalUpgradeStep'),
573 // arguments
574 array($rev, $currentVer, $latestVer, $postUpgradeMessageFile),
575 "Upgrade DB to $rev"
576 );
577 $queue->createItem($task);
578
579 $task = new CRM_Queue_Task(
580 // callback
581 array('CRM_Upgrade_Form', 'doIncrementalUpgradeFinish'),
582 // arguments
583 array($rev, $currentVer, $latestVer, $postUpgradeMessageFile),
584 "Finish Upgrade DB to $rev"
585 );
586 $queue->createItem($task);
587 }
588 }
589
590 return $queue;
591 }
592
593 /**
594 * Find any old, orphaned files that should have been deleted.
595 *
596 * These files can get left behind, eg, if you use the Joomla
597 * upgrade procedure.
598 *
599 * The earlier we can do this, the better - don't want upgrade logic
600 * to inadvertently rely on old/relocated files.
601 *
602 * @param \CRM_Queue_TaskContext $ctx
603 * @param string $postUpgradeMessageFile
604 * @return bool
605 */
606 public static function doFileCleanup(CRM_Queue_TaskContext $ctx, $postUpgradeMessageFile) {
607 $source = new CRM_Utils_Check_Component_Source();
608 $files = $source->findOrphanedFiles();
609 $errors = array();
610 foreach ($files as $file) {
611 if (is_dir($file['path'])) {
612 @rmdir($file['path']);
613 }
614 else {
615 @unlink($file['path']);
616 }
617
618 if (file_exists($file['path'])) {
619 $errors[] = sprintf("<li>%s</li>", htmlentities($file['path']));
620 }
621 }
622
623 if (!empty($errors)) {
624 file_put_contents($postUpgradeMessageFile,
625 '<br/><br/>' . ts('Some old files could not be removed. Please remove them.')
626 . '<ul>' . implode("\n", $errors) . '</ul>',
627 FILE_APPEND
628 );
629 }
630
631 return TRUE;
632 }
633
634 /**
635 * Disable any extensions not compatible with this new version.
636 *
637 * @param \CRM_Queue_TaskContext $ctx
638 * @param string $postUpgradeMessageFile
639 * @return bool
640 */
641 public static function disableOldExtensions(CRM_Queue_TaskContext $ctx, $postUpgradeMessageFile) {
642 $compatInfo = CRM_Extension_System::getCompatibilityInfo();
643 $disabled = [];
644 $manager = CRM_Extension_System::singleton()->getManager();
645 foreach ($compatInfo as $key => $ext) {
646 if (!empty($ext['obsolete']) && $manager->getStatus($key) == $manager::STATUS_INSTALLED) {
647 $disabled[$key] = sprintf("<li>%s</li>", ts('The extension %1 is now obsolete and has been disabled.', [1 => $key]));
648 }
649 }
650 if ($disabled) {
651 $manager->disable(array_keys($disabled));
652 file_put_contents($postUpgradeMessageFile,
653 '<br/><br/><ul>' . implode("\n", $disabled) . '</ul>',
654 FILE_APPEND
655 );
656 }
657
658 return TRUE;
659 }
660
661 /**
662 * Perform an incremental version update.
663 *
664 * @param CRM_Queue_TaskContext $ctx
665 * @param string $rev
666 * the target (intermediate) revision e.g '3.2.alpha1'.
667 *
668 * @return bool
669 */
670 public static function doIncrementalUpgradeStart(CRM_Queue_TaskContext $ctx, $rev) {
671 $upgrade = new CRM_Upgrade_Form();
672
673 // as soon as we start doing anything we append ".upgrade" to version.
674 // this also helps detect any partial upgrade issues
675 $upgrade->setVersion($rev . '.upgrade');
676
677 return TRUE;
678 }
679
680 /**
681 * Perform an incremental version update.
682 *
683 * @param CRM_Queue_TaskContext $ctx
684 * @param string $rev
685 * the target (intermediate) revision e.g '3.2.alpha1'.
686 * @param string $originalVer
687 * the original revision.
688 * @param string $latestVer
689 * the target (final) revision.
690 * @param string $postUpgradeMessageFile
691 * path of a modifiable file which lists the post-upgrade messages.
692 *
693 * @return bool
694 */
695 public static function doIncrementalUpgradeStep(CRM_Queue_TaskContext $ctx, $rev, $originalVer, $latestVer, $postUpgradeMessageFile) {
696 $upgrade = new CRM_Upgrade_Form();
697
698 $phpFunctionName = 'upgrade_' . str_replace('.', '_', $rev);
699
700 $versionObject = $upgrade->incrementalPhpObject($rev);
701
702 // pre-db check for major release.
703 if ($upgrade->checkVersionRelease($rev, 'alpha1')) {
704 if (!(is_callable(array($versionObject, 'verifyPreDBstate')))) {
705 CRM_Core_Error::fatal("verifyPreDBstate method was not found for $rev");
706 }
707
708 $error = NULL;
709 if (!($versionObject->verifyPreDBstate($error))) {
710 if (!isset($error)) {
711 $error = "post-condition failed for current upgrade for $rev";
712 }
713 CRM_Core_Error::fatal($error);
714 }
715
716 }
717
718 $upgrade->setSchemaStructureTables($rev);
719
720 if (is_callable(array($versionObject, $phpFunctionName))) {
721 $versionObject->$phpFunctionName($rev, $originalVer, $latestVer);
722 }
723 else {
724 $upgrade->processSQL($rev);
725 }
726
727 // set post-upgrade-message if any
728 if (is_callable(array($versionObject, 'setPostUpgradeMessage'))) {
729 $postUpgradeMessage = file_get_contents($postUpgradeMessageFile);
730 $versionObject->setPostUpgradeMessage($postUpgradeMessage, $rev);
731 file_put_contents($postUpgradeMessageFile, $postUpgradeMessage);
732 }
733
734 return TRUE;
735 }
736
737 /**
738 * Perform an incremental version update.
739 *
740 * @param CRM_Queue_TaskContext $ctx
741 * @param string $rev
742 * the target (intermediate) revision e.g '3.2.alpha1'.
743 * @param string $currentVer
744 * the original revision.
745 * @param string $latestVer
746 * the target (final) revision.
747 * @param string $postUpgradeMessageFile
748 * path of a modifiable file which lists the post-upgrade messages.
749 *
750 * @return bool
751 */
752 public static function doIncrementalUpgradeFinish(CRM_Queue_TaskContext $ctx, $rev, $currentVer, $latestVer, $postUpgradeMessageFile) {
753 $upgrade = new CRM_Upgrade_Form();
754 $upgrade->setVersion($rev);
755 CRM_Utils_System::flushCache();
756
757 $config = CRM_Core_Config::singleton();
758 $config->userSystem->flush();
759 return TRUE;
760 }
761
762 public static function doFinish() {
763 $upgrade = new CRM_Upgrade_Form();
764 list($ignore, $latestVer) = $upgrade->getUpgradeVersions();
765 // Seems extraneous in context, but we'll preserve old behavior
766 $upgrade->setVersion($latestVer);
767
768 // Clear cached metadata.
769 Civi::service('settings_manager')->flush();
770
771 // cleanup caches CRM-8739
772 $config = CRM_Core_Config::singleton();
773 $config->cleanupCaches(1);
774
775 $versionCheck = new CRM_Utils_VersionCheck();
776 $versionCheck->flushCache();
777
778 // Rebuild all triggers and re-enable logging if needed
779 $logging = new CRM_Logging_Schema();
780 $logging->fixSchemaDifferences();
781 }
782
783 /**
784 * Compute any messages which should be displayed before upgrade
785 * by calling the 'setPreUpgradeMessage' on each incremental upgrade
786 * object.
787 *
788 * @param string $preUpgradeMessage
789 * alterable.
790 * @param $currentVer
791 * @param $latestVer
792 */
793 public function setPreUpgradeMessage(&$preUpgradeMessage, $currentVer, $latestVer) {
794 // check for changed message templates
795 CRM_Upgrade_Incremental_General::checkMessageTemplate($preUpgradeMessage, $latestVer, $currentVer);
796 // set global messages
797 CRM_Upgrade_Incremental_General::setPreUpgradeMessage($preUpgradeMessage, $currentVer, $latestVer);
798
799 // Scan through all php files and see if any file is interested in setting pre-upgrade-message
800 // based on $currentVer, $latestVer.
801 // Please note, at this point upgrade hasn't started executing queries.
802 $revisions = $this->getRevisionSequence();
803 foreach ($revisions as $rev) {
804 if (version_compare($currentVer, $rev) < 0) {
805 $versionObject = $this->incrementalPhpObject($rev);
806 CRM_Upgrade_Incremental_General::updateMessageTemplate($preUpgradeMessage, $rev);
807 if (is_callable(array($versionObject, 'setPreUpgradeMessage'))) {
808 $versionObject->setPreUpgradeMessage($preUpgradeMessage, $rev, $currentVer);
809 }
810 }
811 }
812 }
813
814 }