CRM-17663 - Dashboard cleanup
[civicrm-core.git] / CRM / Upgrade / Incremental / php / FourSeven.php
CommitLineData
6cc25669
CW
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
fa938177 6 | Copyright CiviCRM LLC (c) 2004-2016 |
6cc25669
CW
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. |
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 along with this program; if not, contact CiviCRM LLC |
21 | at info[AT]civicrm[DOT]org. If you have questions about the |
22 | GNU Affero General Public License or the licensing of CiviCRM, |
23 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
24 +--------------------------------------------------------------------+
25 */
26
27/**
bf6a5362 28 * Upgrade logic for 4.7
6cc25669 29 */
bf6a5362 30class CRM_Upgrade_Incremental_php_FourSeven extends CRM_Upgrade_Incremental_Base {
6cc25669 31
f431d51f
J
32 /**
33 * Compute any messages which should be displayed beforeupgrade.
34 *
35 * Note: This function is called iteratively for each upcoming
36 * revision to the database.
37 *
3bdf1f3a 38 * @param string $preUpgradeMessage
f431d51f
J
39 * @param string $rev
40 * a version number, e.g. '4.4.alpha1', '4.4.beta3', '4.4.0'.
41 * @param null $currentVer
f431d51f
J
42 */
43 public function setPreUpgradeMessage(&$preUpgradeMessage, $rev, $currentVer = NULL) {
44 if ($rev == '4.7.alpha1') {
f431d51f
J
45 // CRM-16478 Remove custom fatal error template path option
46 $config = CRM_Core_Config::singleton();
18b3bef6 47 if (!empty($config->fatalErrorTemplate) && $config->fatalErrorTemplate != 'CRM/common/fatal.tpl') {
f431d51f
J
48 $preUpgradeMessage .= '<p>' . ts('The custom fatal error template setting will be removed during the upgrade. You are currently using this custom template: %1 . Following the upgrade you will need to use the standard approach to overriding template files, as described in the documentation.', array(1 => $config->fatalErrorTemplate)) . '</p>';
49 }
f431d51f 50 }
a40fd1ac
CW
51 if ($rev == '4.7.alpha4') {
52 // CRM-17004 Warn of Moneris removal
87a33a95
CW
53 $count = 1;
54 // Query only works in 4.3+
55 if (version_compare($currentVer, "4.3.0") > 0) {
56 $count = CRM_Core_DAO::singleValueQuery("SELECT COUNT(id) FROM civicrm_payment_processor WHERE payment_processor_type_id IN (SELECT id FROM civicrm_payment_processor_type WHERE name = 'Moneris')");
57 }
58 if ($count && !function_exists('moneris_civicrm_managed')) {
a40fd1ac
CW
59 $preUpgradeMessage .= '<p>' . ts('The %1 payment processor is no longer bundled with CiviCRM. After upgrading you will need to install the extension to continue using it.', array(1 => 'Moneris')) . '</p>';
60 }
61 }
f431d51f
J
62 }
63
6cc25669
CW
64 /**
65 * Compute any messages which should be displayed after upgrade.
66 *
67 * @param string $postUpgradeMessage
68 * alterable.
69 * @param string $rev
70 * an intermediate version; note that setPostUpgradeMessage is called repeatedly with different $revs.
6cc25669
CW
71 */
72 public function setPostUpgradeMessage(&$postUpgradeMessage, $rev) {
6dbe2c23
CW
73 if ($rev == '4.7.alpha1') {
74 $config = CRM_Core_Config::singleton();
bf6a5362 75 // FIXME: Performing an upgrade step during postUpgrade message phase is probably bad
6dbe2c23
CW
76 $editor_id = self::updateWysiwyg();
77 $msg = NULL;
78 $ext_href = 'href="' . CRM_Utils_System::url('civicrm/admin/extensions', 'reset=1') . '"';
79 $dsp_href = 'href="' . CRM_Utils_System::url('civicrm/admin/setting/preferences/display', 'reset=1') . '"';
80 $blog_href = 'href="https://civicrm.org/blogs/colemanw/big-changes-wysiwyg-editing-47"';
81 switch ($editor_id) {
82 // TinyMCE
83 case 1:
84 $msg = ts('Your configured editor "TinyMCE" is no longer part of the main CiviCRM download. To continue using it, visit the <a %1>Manage Extensions</a> page to download and install the TinyMCE extension.', array(1 => $ext_href));
85 break;
86
87 // Drupal/Joomla editor
88 case 3:
89 case 4:
90 $msg = ts('CiviCRM no longer integrates with the "%1 Default Editor." Your wysiwyg setting has been reset to the built-in CKEditor. <a %2>Learn more...</a>', array(1 => $config->userFramework, 2 => $blog_href));
91 break;
92 }
93 if ($msg) {
94 $postUpgradeMessage .= '<p>' . $msg . '</p>';
95 }
96 $postUpgradeMessage .= '<p>' . ts('CiviCRM now includes the easy-to-use CKEditor Configurator. To customize the features and display of your wysiwyg editor, visit the <a %1>Display Preferences</a> page. <a %2>Learn more...</a>', array(1 => $dsp_href, 2 => $blog_href)) . '</p>';
dd55005c 97
98 $postUpgradeMessage .= '<br /><br />' . ts('Default version of the following System Workflow Message Templates have been modified: <ul><li>Personal Campaign Pages - Owner Notification</li></ul> If you have modified these templates, please review the new default versions and implement updates as needed to your copies (Administer > Communications > Message Templates > System Workflow Messages).');
f431d51f
J
99
100 $postUpgradeMessage .= '<p>' . ts('The custom fatal error template setting has been removed.') . '</p>';
6dbe2c23 101 }
6cc25669
CW
102 }
103
6cc25669
CW
104 /**
105 * Upgrade function.
106 *
107 * @param string $rev
108 */
109 public function upgrade_4_7_alpha1($rev) {
b604d7ec 110 $this->addTask('Migrate \'on behalf of\' information to module_data', 'migrateOnBehalfOfInfo');
bf6a5362 111 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
f806379b 112 $this->addTask(ts('Migrate Settings to %1', array(1 => $rev)), 'migrateSettings', $rev);
b604d7ec 113 $this->addTask('Add Getting Started dashlet', 'addGettingStartedDashlet', $rev);
a40fd1ac
CW
114 }
115
116 /**
117 * Upgrade function.
118 *
119 * @param string $rev
120 */
121 public function upgrade_4_7_alpha4($rev) {
122 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
058b8a5e 123 $this->addTask(ts('Remove %1', array(1 => 'Moneris')), 'removePaymentProcessorType', 'Moneris');
b2222b9f 124 $this->addTask('Update Smart Groups', 'fixContactTypeInSmartGroups');
6cc25669
CW
125 }
126
0094ac08
CW
127 /**
128 * Upgrade function.
129 *
130 * @param string $rev
131 */
132 public function upgrade_4_7_beta2($rev) {
133 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
134 $this->addTask('Delete unused file', 'deleteVersionCheckCacheFile');
135 }
136
fb1f3850
DRJ
137 /**
138 * Upgrade function.
139 *
140 * @param string $rev
141 */
902e557f 142 public function upgrade_4_7_beta6($rev) {
13599400 143 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
fb1f3850 144 $this->addTask('Disable flexible jobs extension', 'disableFlexibleJobsExtension');
20d5377e 145 $this->addTask('Add Index to financial_trxn trxn_id field', 'addIndexFinancialTrxnTrxnID');
fb1f3850
DRJ
146 }
147
8ca47f5c 148 /**
149 * Upgrade function.
150 *
151 * @param string $rev
152 */
153 public function upgrade_4_7_1($rev) {
2af0b023 154 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
8ca47f5c 155 $this->addTask('Add Index to civicrm_contribution creditnote_id field', 'addIndexContributionCreditNoteID');
156 }
157
2179c899 158 /**
159 * Upgrade function.
160 *
161 * @param string $rev
162 */
163 public function upgrade_4_7_2($rev) {
2af0b023 164 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
2179c899 165 $this->addTask('Fix Index on civicrm_financial_item combined entity_id + entity_table', 'addCombinedIndexFinancialItemEntityIDEntityType');
1f395432 166 $this->addTask('enable financial account relationships for chargeback & refund', 'addRefundAndChargeBackAccountsIfNotExist');
3fe26f4c 167 $this->addTask('Add Index to civicrm_contribution.source', 'addIndexContributionSource');
2179c899 168 }
169
fd28b6a0 170 /**
171 * Upgrade function.
172 *
173 * @param string $rev
174 */
175 public function upgrade_4_7_3($rev) {
2af0b023 176 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
fd28b6a0 177 $this->addTask('Add Index to civicrm_contribution.total_amount', 'addIndexContributionAmount');
178 }
179
6eb752fa 180 /**
181 * Upgrade function.
182 *
183 * @param string $rev
184 */
185 public function upgrade_4_7_4($rev) {
2af0b023 186 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
6eb752fa 187 $this->addTask('Add Contact Deleted by Merge Activity Type', 'addDeletedByMergeActivityType');
188 }
189
2cbdd085
J
190 /**
191 * Upgrade function.
192 *
193 * @param string $rev
194 */
6a2d3987 195 public function upgrade_4_7_7($rev) {
2cbdd085 196 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
6a2d3987
J
197 // https://issues.civicrm.org/jira/browse/CRM-18006
198 if (CRM_Core_DAO::checkTableExists('civicrm_install_canary')) {
199 CRM_Core_DAO::executeQuery('ALTER TABLE civicrm_install_canary ENGINE=InnoDB');
200 }
2cbdd085
J
201 }
202
2af0b023
CW
203 /**
204 * Upgrade function.
205 *
206 * @param string $rev
207 */
6a2d3987 208 public function upgrade_4_7_8($rev) {
2af0b023 209 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
6a2d3987 210 $this->addTask('Upgrade mailing foreign key constraints', 'upgradeMailingFKs');
065ffec9
TO
211 }
212
da1ecd73
SL
213 /**
214 * Upgrade function.
215 *
216 * @param string $rev
217 */
e8a4535e 218 public function upgrade_4_7_10($rev) {
da1ecd73 219 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
e8a4535e 220 $this->addTask(ts('Upgrade Add Help Pre and Post Fields to price value table'), 'addHelpPreAndHelpPostFieldsPriceFieldValue');
8e2e96a5 221 $this->addTask(ts('Alter index and type for image URL'), 'alterIndexAndTypeForImageURL');
da1ecd73
SL
222 }
223
2af0b023
CW
224 /*
225 * Important! All upgrade functions MUST call the 'runSql' task.
226 * Uncomment and use the following template for a new upgrade version
227 * (change the x in the function name):
228 */
229
230 // /**
231 // * Upgrade function.
232 // *
233 // * @param string $rev
234 // */
235 // public function upgrade_4_7_x($rev) {
236 // $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
237 // // Additional tasks here...
238 // }
239
6cc25669
CW
240 /**
241 * CRM-16354
242 *
6dbe2c23 243 * @return int
6cc25669 244 */
6dbe2c23 245 public static function updateWysiwyg() {
aaffa79f 246 $editorID = Civi::settings()->get('editor_id');
6dbe2c23
CW
247 // Previously a numeric value indicated one of 4 wysiwyg editors shipped in core, and no value indicated 'Textarea'
248 // Now the options are "Textarea", "CKEditor", and the rest have been dropped from core.
249 $newEditor = $editorID ? "CKEditor" : "Textarea";
08ef4ddd 250 Civi::settings()->set('editor_id', $newEditor);
6cc25669 251
6dbe2c23 252 return $editorID;
6cc25669
CW
253 }
254
f806379b
TO
255 /**
256 * Migrate any last remaining options from `civicrm_domain.config_backend` to `civicrm_setting`.
257 * Cleanup setting schema.
258 *
259 * @param CRM_Queue_TaskContext $ctx
260 * @return bool
261 */
262 public function migrateSettings(CRM_Queue_TaskContext $ctx) {
4cc9e637
TO
263 // Tip: If there are problems with adding the new uniqueness index, try inspecting:
264 // SELECT name, domain_id, contact_id, count(*) AS dupes FROM civicrm_setting cs GROUP BY name, domain_id, contact_id HAVING dupes > 1;
265
266 // Nav records are expendable. https://forum.civicrm.org/index.php?topic=36933.0
267 CRM_Core_DAO::executeQuery('DELETE FROM civicrm_setting WHERE contact_id IS NOT NULL AND name = "navigation"');
3ddd2901 268
726e6261
SL
269 CRM_Core_DAO::executeQuery('ALTER TABLE civicrm_setting DROP INDEX index_group_name');
270 CRM_Core_DAO::executeQuery('ALTER TABLE civicrm_setting DROP COLUMN group_name');
271
3ddd2901
SL
272 // Handle Strange activity_tab_filter settings.
273 CRM_Core_DAO::executeQuery('CREATE TABLE civicrm_activity_setting LIKE civicrm_setting');
726e6261 274 CRM_Core_DAO::executeQuery('ALTER TABLE civicrm_activity_setting ADD UNIQUE INDEX index_domain_contact_name (domain_id, contact_id, name)');
3ddd2901 275 CRM_Core_DAO::executeQuery('INSERT INTO civicrm_activity_setting (name, contact_id, domain_id, value)
726e6261 276 SELECT DISTINCT name, contact_id, domain_id, value
3ddd2901
SL
277 FROM civicrm_setting
278 WHERE name = "activity_tab_filter"
279 AND value is not NULL');
ee4d8422 280 CRM_Core_DAO::executeQuery('DELETE FROM civicrm_setting WHERE name = "activity_tab_filter"');
4cc9e637 281
e6a2c901 282 $date = CRM_Utils_Time::getTime('Y-m-d H:i:s');
f806379b 283 CRM_Core_DAO::executeQuery('ALTER TABLE civicrm_setting ADD UNIQUE INDEX index_domain_contact_name (domain_id, contact_id, name)');
e6a2c901
SL
284 CRM_Core_DAO::executeQuery("INSERT INTO civicrm_setting (name, contact_id, domain_id, value, is_domain, created_id, created_date)
285 SELECT name, contact_id, domain_id, value, 0, contact_id,'$date'
3ddd2901 286 FROM civicrm_activity_setting
e6a2c901
SL
287 WHERE name = 'activity_tab_filter'
288 AND value is not NULL"
d09d52ce 289 );
3ddd2901 290 CRM_Core_DAO::executeQuery('DROP TABLE civicrm_activity_setting');
f806379b
TO
291
292 $domainDao = CRM_Core_DAO::executeQuery('SELECT id, config_backend FROM civicrm_domain');
293 while ($domainDao->fetch()) {
294 $settings = CRM_Upgrade_Incremental_php_FourSeven::convertBackendToSettings($domainDao->id, $domainDao->config_backend);
295 CRM_Core_Error::debug_var('convertBackendToSettings', array(
296 'domainId' => $domainDao->id,
297 'backend' => $domainDao->config_backend,
298 'settings' => $settings,
299 ));
300
301 foreach ($settings as $name => $value) {
302 $rowParams = array(
303 1 => array($domainDao->id, 'Positive'),
304 2 => array($name, 'String'),
305 3 => array(serialize($value), 'String'),
306 );
307 $settingId = CRM_Core_DAO::singleValueQuery(
308 'SELECT id FROM civicrm_setting WHERE domain_id = %1 AND name = %2',
309 $rowParams);
310 if (!$settingId) {
311 CRM_Core_DAO::executeQuery(
312 'INSERT INTO civicrm_setting (domain_id, name, value, is_domain) VALUES (%1,%2,%3,1)',
313 $rowParams);
314 }
315 }
316 }
317
9e726168 318 CRM_Core_DAO::executeQuery('ALTER TABLE civicrm_domain DROP COLUMN config_backend');
f806379b
TO
319
320 return TRUE;
321 }
322
323 /**
324 * Take a config_backend blob and produce an equivalent list of settings.
325 *
326 * @param int $domainId
327 * Domain ID.
328 * @param string $config_backend
329 * Serialized blob.
330 * @return array
331 */
332 public static function convertBackendToSettings($domainId, $config_backend) {
333 if (!$config_backend) {
334 return array();
335 }
336
337 $backend = unserialize($config_backend);
338 if (!$backend) {
339 return array();
340 }
341
342 $mappings = \CRM_Core_Config_MagicMerge::getPropertyMap();
343 $settings = array();
344 foreach ($backend as $propertyName => $propertyValue) {
345 if (isset($mappings[$propertyName][0]) && preg_match('/^setting/', $mappings[$propertyName][0])) {
346 // $mapping format: $propertyName => Array(0 => $type, 1 => $setting|NULL).
347 $settingName = isset($mappings[$propertyName][1]) ? $mappings[$propertyName][1] : $propertyName;
348 $settings[$settingName] = $propertyValue;
349 }
350 }
351
352 return $settings;
353 }
354
0a95c936 355 /**
356 * Add Getting Started dashlet to dashboard
357 *
358 * @param \CRM_Queue_TaskContext $ctx
359 *
360 * @return bool
361 */
362 public function addGettingStartedDashlet(CRM_Queue_TaskContext $ctx) {
9c4a04f2 363 $sql = "SELECT count(*) FROM civicrm_dashboard WHERE name='getting-started'";
e1674273 364 $res = CRM_Core_DAO::singleValueQuery($sql);
365 $domainId = CRM_Core_Config::domainID();
366 if ($res <= 0) {
367 $sql = "INSERT INTO `civicrm_dashboard`
a8b704c5 368 ( `domain_id`, `name`, `label`, `url`, `permission`, `permission_operator`, `column_no`, `is_minimized`, `is_active`, `weight`, `fullscreen_url`, `is_fullscreen`, `is_reserved`) VALUES ( {$domainId}, 'getting-started', 'Getting Started', 'civicrm/dashlet/getting-started?reset=1&snippet=5', 'access CiviCRM', NULL, 0, 0, 1, 0, 'civicrm/dashlet/getting-started?reset=1&snippet=5&context=dashletFullscreen', 1, 1)";
e1674273 369 CRM_Core_DAO::executeQuery($sql);
370 // Add default position for Getting Started Dashlet ( left column)
371 $sql = "INSERT INTO `civicrm_dashboard_contact` (dashboard_id, contact_id, column_no, is_active)
372SELECT (SELECT MAX(id) FROM `civicrm_dashboard`), contact_id, 0, IF (SUM(is_active) > 0, 1, 0)
429da6a1 373FROM `civicrm_dashboard_contact` JOIN `civicrm_contact` WHERE civicrm_dashboard_contact.contact_id = civicrm_contact.id GROUP BY contact_id";
e1674273 374 CRM_Core_DAO::executeQuery($sql);
375 }
0a95c936 376 return TRUE;
e1674273 377 }
4175ee03 378
6b1e1a2c 379 /**
380 * Migrate on-behalf information to uf_join.module_data as on-behalf columns will be dropped
381 * on DB upgrade
382 *
383 * @param CRM_Queue_TaskContext $ctx
384 *
385 * @return bool
386 * TRUE for success
387 */
388 public static function migrateOnBehalfOfInfo(CRM_Queue_TaskContext $ctx) {
d3e92c88 389 $domain = new CRM_Core_DAO_Domain();
390 $domain->find(TRUE);
6b1e1a2c 391
d3e92c88 392 // fetch onBehalf entry in UFJoin table
6b1e1a2c 393 $ufGroupDAO = new CRM_Core_DAO_UFJoin();
394 $ufGroupDAO->module = 'OnBehalf';
395 $ufGroupDAO->find(TRUE);
396
d3e92c88 397 $forOrgColums = array();
398 if ($domain->locales) {
399 $locales = explode(CRM_Core_DAO::VALUE_SEPARATOR, $domain->locales);
400 foreach ($locales as $locale) {
401 $forOrgColums[] = "for_organization_{$locale}";
402 }
403 }
404 else {
405 $forOrgColums[] = "for_organization";
406 }
407
408 $query = "
409 SELECT " . implode(", ", $forOrgColums) . ", uj.id as join_id, uj.uf_group_id as uf_group_id
410 FROM civicrm_contribution_page cp
411 INNER JOIN civicrm_uf_join uj ON uj.entity_id = cp.id AND uj.module = 'OnBehalf'";
412 $dao = CRM_Core_DAO::executeQuery($query, array(), TRUE, NULL, FALSE, FALSE);
6b1e1a2c 413
414 if ($dao->N) {
6b1e1a2c 415 while ($dao->fetch()) {
416 $onBehalfParams['on_behalf'] = array('is_for_organization' => $dao->is_for_organization);
417 if ($domain->locales) {
6b1e1a2c 418 foreach ($locales as $locale) {
419 $for_organization = "for_organization_{$locale}";
420 $onBehalfParams['on_behalf'] += array(
421 $locale => array(
422 'for_organization' => $dao->$for_organization,
423 ),
424 );
425 }
426 }
427 else {
428 $onBehalfParams['on_behalf'] += array(
429 'default' => array(
430 'for_organization' => $dao->for_organization,
431 ),
432 );
433 }
434 $ufJoinParam = array(
435 'id' => $dao->join_id,
436 'module' => 'on_behalf',
d3e92c88 437 'uf_group_id' => $dao->uf_group_id,
6b1e1a2c 438 'module_data' => json_encode($onBehalfParams),
439 );
440 CRM_Core_BAO_UFJoin::create($ufJoinParam);
441 }
442 }
443
444 return TRUE;
445 }
cb804cd9 446
b2222b9f
CW
447 /**
448 * CRM-11782 - Get rid of VALUE_SEPARATOR character in saved search form values
449 *
450 * @param \CRM_Queue_TaskContext $ctx
451 *
452 * @return bool
453 */
454 public function fixContactTypeInSmartGroups(CRM_Queue_TaskContext $ctx) {
455 $sep = CRM_Core_DAO::VALUE_SEPARATOR;
456 $dao = CRM_Core_DAO::executeQuery("SELECT id, form_values FROM civicrm_saved_search WHERE form_values LIKE '%$sep%'");
457 while ($dao->fetch()) {
458 $formValues = unserialize($dao->form_values);
459 if (isset($formValues['contact_type']) && is_array($formValues['contact_type'])) {
460 $newVals = array();
461 foreach ($formValues['contact_type'] as $key => $val) {
462 $newVals[str_replace($sep, '__', $key)] = is_string($val) ? str_replace($sep, '__', $val) : $val;
463 }
464 $formValues['contact_type'] = $newVals;
465 }
466 CRM_Core_DAO::executeQuery("UPDATE civicrm_saved_search SET form_values = %1 WHERE id = {$dao->id}", array(1 => array(serialize($formValues), 'String')));
467 }
468
469 return TRUE;
470 }
471
0094ac08
CW
472 /**
473 * CRM-17637 - Ths file location has been moved; delete the old one
474 *
475 * @param \CRM_Queue_TaskContext $ctx
476 *
477 * @return bool
478 */
479 public function deleteVersionCheckCacheFile(CRM_Queue_TaskContext $ctx) {
480 $config = CRM_Core_Config::singleton();
481 $cacheFile = $config->uploadDir . 'version-info-cache.json';
482 if (file_exists($cacheFile)) {
483 unlink($cacheFile);
484 }
485 return TRUE;
486 }
487
fb1f3850
DRJ
488 /**
489 * CRM-17669 and CRM-17686, make scheduled jobs more flexible, disable the 4.6 extension if installed
490 *
491 * @param \CRM_Queue_TaskContext $ctx
492 *
493 * @return bool
494 */
495 public function disableFlexibleJobsExtension(CRM_Queue_TaskContext $ctx) {
d357221c
DRJ
496 try {
497 civicrm_api3('Extension', 'disable', array('key' => 'com.klangsoft.flexiblejobs'));
498 }
499 catch (CiviCRM_API3_Exception $e) {
500 // just ignore if the extension isn't installed
501 }
fb1f3850
DRJ
502
503 return TRUE;
504 }
505
20d5377e 506 /**
507 * CRM-17752 add index to civicrm_financial_trxn.trxn_id (deliberately non-unique).
508 *
509 * @param \CRM_Queue_TaskContext $ctx
510 *
511 * @return bool
512 */
513 public function addIndexFinancialTrxnTrxnID(CRM_Queue_TaskContext $ctx) {
514 $tables = array('civicrm_financial_trxn' => array('trxn_id'));
515 CRM_Core_BAO_SchemaHandler::createIndexes($tables);
516 return TRUE;
517 }
518
8ca47f5c 519 /**
520 * CRM-17882 Add index to civicrm_contribution.credit_note_id.
521 *
522 * @param \CRM_Queue_TaskContext $ctx
523 *
524 * @return bool
525 */
526 public function addIndexContributionCreditNoteID(CRM_Queue_TaskContext $ctx) {
527 $tables = array('civicrm_contribution' => array('creditnote_id'));
528 CRM_Core_BAO_SchemaHandler::createIndexes($tables);
529 return TRUE;
530 }
531
2179c899 532 /**
533 * CRM-17775 Add correct index for table civicrm_financial_item.
534 *
535 * Note that the entity ID should always precede the entity_table as
536 * it is more unique. This is better for performance and does not cause fallback
537 * to no index if table it omitted.
538 *
539 * @return bool
540 */
541 public function addCombinedIndexFinancialItemEntityIDEntityType() {
542 CRM_Core_BAO_SchemaHandler::dropIndexIfExists('civicrm_financial_item', 'UI_id');
543 CRM_Core_BAO_SchemaHandler::dropIndexIfExists('civicrm_financial_item', 'IX_Entity');
544 CRM_Core_BAO_SchemaHandler::createIndexes(array(
545 'civicrm_financial_item' => array(array('entity_id', 'entity_table')),
546 ));
547 return TRUE;
548 }
549
1f395432 550 /**
551 * CRM-17951 Add accounts option values for refund and chargeback.
552 *
553 * Add Chargeback contribution status and Chargeback and Contra account relationships,
554 * checking first if one exists.
555 */
556 public function addRefundAndChargeBackAccountsIfNotExist() {
557 // First we enable and edit the record for Credit contra - this exists but is disabled for most sites.
558 // Using the ensure function (below) will not enabled a disabled option (by design).
559 CRM_Core_DAO::executeQuery("UPDATE civicrm_option_value v
560 INNER JOIN civicrm_option_group g on v.option_group_id=g.id and g.name='account_relationship'
561 SET v.is_active=1, v.label='Credit/Contra Revenue Account is', v.name='Credit/Contra Revenue Account is', v.description='Credit/Contra Revenue Account is'
562 WHERE v.name = 'Credit/Contra Account is';");
563
564 CRM_Core_BAO_OptionValue::ensureOptionValueExists(array(
565 'option_group_id' => 'account_relationship',
4a907feb
EM
566 'name' => 'Chargeback Account is',
567 'label' => ts('Chargeback Account is'),
1f395432 568 'is_active' => TRUE,
569 'component_id' => 'CiviContribute',
570 ));
571
572 CRM_Core_BAO_OptionValue::ensureOptionValueExists(array(
573 'option_group_id' => 'contribution_status',
574 'name' => 'Chargeback',
575 'label' => ts('Chargeback'),
576 'is_active' => TRUE,
577 'component_id' => 'CiviContribute',
578 ));
579 return TRUE;
580 }
581
3fe26f4c 582 /**
583 * CRM-17999 Add index to civicrm_contribution.source.
584 *
585 * @param \CRM_Queue_TaskContext $ctx
586 *
587 * @return bool
588 */
589 public function addIndexContributionSource(CRM_Queue_TaskContext $ctx) {
590 CRM_Core_BAO_SchemaHandler::createIndexes(array('civicrm_contribution' => array('source')));
591 return TRUE;
592 }
593
fd28b6a0 594 /**
595 * CRM-18124 Add index to civicrm_contribution.total_amount.
596 *
597 * Note that I made this a combined index with receive_date because the issue included
598 * both criteria and they seemed likely to be used in conjunction to me in other cases.
599 *
600 * @param \CRM_Queue_TaskContext $ctx
601 *
602 * @return bool
603 */
604 public function addIndexContributionAmount(CRM_Queue_TaskContext $ctx) {
605 CRM_Core_BAO_SchemaHandler::createIndexes(array(
606 'civicrm_contribution' => array(array('total_amount', 'receive_date')),
607 ));
608 return TRUE;
609 }
610
6eb752fa 611 /**
612 * CRM-18124 Add index to civicrm_contribution.total_amount.
613 *
614 * Note that I made this a combined index with receive_date because the issue included
615 * both criteria and they seemed likely to be used in conjunction to me in other cases.
616 *
617 * @param \CRM_Queue_TaskContext $ctx
618 *
619 * @return bool
620 */
621 public function addDeletedByMergeActivityType(CRM_Queue_TaskContext $ctx) {
622 CRM_Core_BAO_OptionValue::ensureOptionValueExists(array(
623 'option_group_id' => 'activity_type',
624 'name' => 'Contact Deleted by Merge',
625 'label' => ts('Contact Deleted by Merge'),
626 'description' => ts('Contact was merged into another contact'),
627 'is_active' => TRUE,
e14e412b 628 'filter' => 1,
6eb752fa 629 ));
630 return TRUE;
631 }
632
da1ecd73
SL
633 /**
634 * CRM-12252 Add Help Pre and Help Post Fields for Price Field Value Table.
635 *
636 * @param \CRM_Queue_TaskContext $ctx
637 *
638 * @return bool
639 */
640 public function addHelpPreAndHelpPostFieldsPriceFieldValue(CRM_Queue_TaskContext $ctx) {
641 $domain = new CRM_Core_DAO_Domain();
642 $domain->find(TRUE);
643 if ($domain->locales) {
644 $locales = explode(CRM_Core_DAO::VALUE_SEPARATOR, $domain->locales);
645 foreach ($locales as $locale) {
01ee8ba6 646 if (!CRM_Core_BAO_SchemaHandler::checkIfFieldExists("civicrm_price_field_value", "help_pre_{$locale}")) {
3dc870a2
SL
647 CRM_Core_DAO::executeQuery("ALTER TABLE `civicrm_price_field_value`
648 ADD COLUMN `help_pre_{$locale}` text COLLATE utf8_unicode_ci COMMENT 'Price field option pre help text.'", array(), TRUE, NULL, FALSE, FALSE);
da1ecd73 649 }
01ee8ba6 650 if (!CRM_Core_BAO_SchemaHandler::checkIfFieldExists("civicrm_price_field_value", "help_post_{$locale}")) {
3dc870a2
SL
651 CRM_Core_DAO::executeQuery("ALTER TABLE `civicrm_price_field_value`
652 ADD COLUMN `help_post_{$locale}` text COLLATE utf8_unicode_ci COMMENT 'Price field option post help text.'", array(), TRUE, NULL, FALSE, FALSE);
da1ecd73
SL
653 }
654 }
01ee8ba6 655 CRM_Core_I18n_Schema::rebuildMultilingualSchema($locales, NULL);
da1ecd73
SL
656 }
657 else {
658 if (!CRM_Core_BAO_SchemaHandler::checkIfFieldExists('civicrm_price_field_value', 'help_pre')) {
3dc870a2
SL
659 CRM_Core_DAO::executeQuery("ALTER TABLE `civicrm_price_field_value`
660 ADD COLUMN `help_pre` text COLLATE utf8_unicode_ci COMMENT 'Price field option pre help text.'");
da1ecd73
SL
661 }
662 if (!CRM_Core_BAO_SchemaHandler::checkIfFieldExists('civicrm_price_field_value', 'help_post')) {
3dc870a2
SL
663 CRM_Core_DAO::executeQuery("ALTER TABLE `civicrm_price_field_value`
664 ADD COLUMN `help_post` text COLLATE utf8_unicode_ci COMMENT 'Price field option post help text.'");
da1ecd73
SL
665 }
666 }
667 return TRUE;
668 }
669
2cbdd085
J
670 /**
671 * CRM-18345 Don't delete mailing data on email/phone deletion
672 * Implemented here in CRM-18526
673 *
674 * @param \CRM_Queue_TaskContext $ctx
675 *
676 * @return bool
677 */
678 public function upgradeMailingFKs(CRM_Queue_TaskContext $ctx) {
679
680 // Safely drop the foreign keys
169475b7
SL
681 CRM_Core_BAO_SchemaHandler::safeRemoveFK('civicrm_mailing_event_queue', 'FK_civicrm_mailing_event_queue_email_id');
682 CRM_Core_BAO_SchemaHandler::safeRemoveFK('civicrm_mailing_event_queue', 'FK_civicrm_mailing_event_queue_phone_id');
683 CRM_Core_BAO_SchemaHandler::safeRemoveFK('civicrm_mailing_recipients', 'FK_civicrm_mailing_recipients_email_id');
684 CRM_Core_BAO_SchemaHandler::safeRemoveFK('civicrm_mailing_recipients', 'FK_civicrm_mailing_recipients_phone_id');
2cbdd085
J
685
686 // Set up the new foreign keys
687 CRM_Core_DAO::executeQuery("SET FOREIGN_KEY_CHECKS = 0;");
688
689 CRM_Core_DAO::executeQuery("
690 ALTER TABLE `civicrm_mailing_event_queue`
691 ADD CONSTRAINT `FK_civicrm_mailing_event_queue_email_id`
692 FOREIGN KEY (`email_id`)
693 REFERENCES `civicrm_email`(`id`)
694 ON DELETE SET NULL
695 ON UPDATE RESTRICT;
696 ");
697
698 CRM_Core_DAO::executeQuery("
699 ALTER TABLE `civicrm_mailing_event_queue`
700 ADD CONSTRAINT `FK_civicrm_mailing_event_queue_phone_id`
701 FOREIGN KEY (`phone_id`)
702 REFERENCES `civicrm_phone`(`id`)
703 ON DELETE SET NULL
704 ON UPDATE RESTRICT;
705 ");
706
707 CRM_Core_DAO::executeQuery("
708 ALTER TABLE `civicrm_mailing_recipients`
709 ADD CONSTRAINT `FK_civicrm_mailing_recipients_email_id`
710 FOREIGN KEY (`email_id`)
711 REFERENCES `civicrm_email`(`id`)
712 ON DELETE SET NULL
713 ON UPDATE RESTRICT;
714 ");
715
716 CRM_Core_DAO::executeQuery("
717 ALTER TABLE `civicrm_mailing_recipients`
718 ADD CONSTRAINT `FK_civicrm_mailing_recipients_phone_id`
719 FOREIGN KEY (`phone_id`)
720 REFERENCES `civicrm_phone`(`id`)
721 ON DELETE SET NULL
722 ON UPDATE RESTRICT;
723 ");
724
725 CRM_Core_DAO::executeQuery("SET FOREIGN_KEY_CHECKS = 1;");
726
727 return TRUE;
728 }
729
8e2e96a5 730 /**
731 * CRM-19100 - Alter Index and Type for Image URL
732 * @return bool
733 */
734 public static function alterIndexAndTypeForImageURL() {
98daafd5 735 $length = array();
736 CRM_Core_BAO_SchemaHandler::dropIndexIfExists('civicrm_contact', 'index_image_url');
8e2e96a5 737 CRM_Core_DAO::executeQuery("ALTER TABLE `civicrm_contact` CHANGE `image_URL` `image_URL` TEXT CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT NULL COMMENT 'optional URL for preferred image (photo, logo, etc.) to display for this contact.'");
98daafd5 738
739 $length['civicrm_contact']['image_URL'] = 128;
740 CRM_Core_BAO_SchemaHandler::createIndexes(array('civicrm_contact' => array('image_URL')), 'index', $length);
8e2e96a5 741
742 return TRUE;
743 }
744
6cc25669 745}