CRM-20600 - Upgrader - Display warning if asset-caching is likely to fail
[civicrm-core.git] / CRM / Upgrade / Incremental / php / FourSeven.php
CommitLineData
6cc25669
CW
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
0f03f337 6 | Copyright CiviCRM LLC (c) 2004-2017 |
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 }
b9446a4c 62 if ($rev == '4.7.13') {
4b9e9cda
SL
63 $preUpgradeMessage .= '<p>' . ts('A new permission has been added called %1 This Permission is now used to control access to the Manage Tags screen', array(1 => 'manage tags')) . '</p>';
64 }
17511f38
TO
65 if ($rev == '4.7.22') {
66 // Based on support inquiries for 4.7.21, show message during 4.7.22.
67 // For affected users, this issue prevents loading the regular status screen.
68 if (!$this->checkImageUploadDir()) {
69 $preUpgradeMessage .= '<p>' . ts('There appears to be an inconsistency in the configuration of "Image Upload URL" and "Image Upload Directory".') . '</p>'
70 . '<p>'
71 . ts('Further advice will be displayed at the end of the upgrade.')
72 . '</p>';
73 }
74 }
f431d51f
J
75 }
76
6cc25669
CW
77 /**
78 * Compute any messages which should be displayed after upgrade.
79 *
80 * @param string $postUpgradeMessage
81 * alterable.
82 * @param string $rev
83 * an intermediate version; note that setPostUpgradeMessage is called repeatedly with different $revs.
6cc25669
CW
84 */
85 public function setPostUpgradeMessage(&$postUpgradeMessage, $rev) {
6dbe2c23
CW
86 if ($rev == '4.7.alpha1') {
87 $config = CRM_Core_Config::singleton();
bf6a5362 88 // FIXME: Performing an upgrade step during postUpgrade message phase is probably bad
6dbe2c23
CW
89 $editor_id = self::updateWysiwyg();
90 $msg = NULL;
91 $ext_href = 'href="' . CRM_Utils_System::url('civicrm/admin/extensions', 'reset=1') . '"';
92 $dsp_href = 'href="' . CRM_Utils_System::url('civicrm/admin/setting/preferences/display', 'reset=1') . '"';
93 $blog_href = 'href="https://civicrm.org/blogs/colemanw/big-changes-wysiwyg-editing-47"';
94 switch ($editor_id) {
95 // TinyMCE
96 case 1:
97 $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));
98 break;
99
100 // Drupal/Joomla editor
101 case 3:
102 case 4:
103 $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));
104 break;
105 }
106 if ($msg) {
107 $postUpgradeMessage .= '<p>' . $msg . '</p>';
108 }
109 $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 110
111 $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
112
113 $postUpgradeMessage .= '<p>' . ts('The custom fatal error template setting has been removed.') . '</p>';
6dbe2c23 114 }
a742ee50
TO
115 //if ($rev == '4.7.11') {
116 // $postUpgradeMessage .= '<br /><br />' . ts("WARNING: For increased security, profile submissions embedded in remote sites are no longer allowed to create or edit data by default. If you need to allow users to submit profiles from external sites, you can restore this at Administer > System Settings > Misc (Undelete, PDFs, Limits, Logging, Captcha, etc.) > 'Accept profile submissions from external sites'");
117 //}
11769bd1 118 if ($rev == '4.7.11') {
9867e465 119 $postUpgradeMessage .= '<br /><br />' . ts("By default, CiviCRM now disables the ability to import directly from SQL. To use this feature, you must explicitly grant permission 'import SQL datasource'.");
11769bd1 120 }
c7c54ade
CW
121 if ($rev == '4.7.14') {
122 $ck_href = 'href="' . CRM_Utils_System::url('civicrm/admin/ckeditor') . '"';
123 $postUpgradeMessage .= '<p>' . ts('CiviMail no longer forces CKEditor to add html/head/body tags to email content because some sites place these in the message header/footer. This was added in 4.7.5 and is now disabled by default.')
3444e690 124 . '<br />' . ts('You can re-enable it by visiting the <a %1>CKEditor Config</a> screen and setting "fullPage = true" under the Advanced Options of the CiviMail preset.', array(1 => $ck_href))
c7c54ade
CW
125 . '</p>';
126 }
c4aa623c 127 if ($rev == '4.7.19') {
7dffc2a7 128 $postUpgradeMessage .= '<br /><br />' . ts('Default version of the following System Workflow Message Templates have been modified: <ul><li>Additional Payment Receipt or Refund Notification</li><li>Contribution Invoice</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).');
eca6c81c
SL
129 $check = CRM_Core_DAO::singleValueQuery("SELECT count(id) FROM civicrm_domain");
130 $smsCheck = CRM_Core_DAO::singleValueQuery("SELECT count(id) FROM civicrm_sms_provider");
131 if ($check > 1 && (bool) $smsCheck) {
132 $postUpgradeMessage .= '<p>civicrm_sms_provider ' . ts('has now had a domain id column added. As there is more than 1 domains in this install you need to manually set the domain id for the providers in this install') . '</p>';
133 }
c4aa623c 134 }
17511f38
TO
135 if ($rev == '4.7.22') {
136 // Based on support inquiries for 4.7.21, show message during 4.7.22.
137 // For affected users, this issue prevents loading the regular status screen.
138 if (!$this->checkImageUploadDir()) {
139 $config = CRM_Core_Config::singleton();
140 $postUpgradeMessage .=
141 '<h3>' . ts('Warning') . '</h3>'
142 . '<p>' . ts('There appears to be an inconsistency in the configuration of "Image Upload URL" and "Image Upload Directory".') . '</p>'
143 . sprintf("<ul><li><b>imageUploadDir</b>: <code>%s</code></li><li><b>imageUploadURL</b>: <code>%s</code></li></ul>", htmlentities($config->imageUploadDir), htmlentities($config->imageUploadURL))
144 . '<p>'
145 . ts('You may need to check that: <ul><li>(a) the path and URL match,</li><li> (b) the httpd/htaccess policy allows requests for files inside this folder,</li><li>and (c) the web domain matches the normal web domain.</ul>')
146 . '</p>'
147 . '<p><em>'
148 . ts('(Note: Although files should be readable, it is best if they are not listable or browseable.)')
149 . '</em></p>'
150 . '<p>'
151 . ts('If this remains unresolved, then some important screens may fail to load.')
152 . '</p>';
153 }
154 }
a058f8a1 155 if ($rev == '4.7.23') {
9cad3ff4
CW
156 $postUpgradeMessage .= '<br /><br />' . ts('Default version of the following System Workflow Message Templates have been modified: <ul><li>Contribution Invoice</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).');
157 }
6cc25669
CW
158 }
159
6cc25669
CW
160 /**
161 * Upgrade function.
162 *
163 * @param string $rev
164 */
165 public function upgrade_4_7_alpha1($rev) {
8c748d50 166 $this->addTask('Drop action scheudle mapping foreign key', 'dropActionScheudleMappingForeignKey');
b604d7ec 167 $this->addTask('Migrate \'on behalf of\' information to module_data', 'migrateOnBehalfOfInfo');
bf6a5362 168 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
f806379b 169 $this->addTask(ts('Migrate Settings to %1', array(1 => $rev)), 'migrateSettings', $rev);
b604d7ec 170 $this->addTask('Add Getting Started dashlet', 'addGettingStartedDashlet', $rev);
a40fd1ac
CW
171 }
172
173 /**
174 * Upgrade function.
175 *
176 * @param string $rev
177 */
178 public function upgrade_4_7_alpha4($rev) {
179 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
058b8a5e 180 $this->addTask(ts('Remove %1', array(1 => 'Moneris')), 'removePaymentProcessorType', 'Moneris');
b2222b9f 181 $this->addTask('Update Smart Groups', 'fixContactTypeInSmartGroups');
6cc25669
CW
182 }
183
0094ac08
CW
184 /**
185 * Upgrade function.
186 *
187 * @param string $rev
188 */
189 public function upgrade_4_7_beta2($rev) {
190 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
191 $this->addTask('Delete unused file', 'deleteVersionCheckCacheFile');
192 }
193
fb1f3850
DRJ
194 /**
195 * Upgrade function.
196 *
197 * @param string $rev
198 */
902e557f 199 public function upgrade_4_7_beta6($rev) {
13599400 200 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
fb1f3850 201 $this->addTask('Disable flexible jobs extension', 'disableFlexibleJobsExtension');
20d5377e 202 $this->addTask('Add Index to financial_trxn trxn_id field', 'addIndexFinancialTrxnTrxnID');
fb1f3850
DRJ
203 }
204
8ca47f5c 205 /**
206 * Upgrade function.
207 *
208 * @param string $rev
209 */
210 public function upgrade_4_7_1($rev) {
2af0b023 211 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
8ca47f5c 212 $this->addTask('Add Index to civicrm_contribution creditnote_id field', 'addIndexContributionCreditNoteID');
213 }
214
2179c899 215 /**
216 * Upgrade function.
217 *
218 * @param string $rev
219 */
220 public function upgrade_4_7_2($rev) {
2af0b023 221 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
2179c899 222 $this->addTask('Fix Index on civicrm_financial_item combined entity_id + entity_table', 'addCombinedIndexFinancialItemEntityIDEntityType');
1f395432 223 $this->addTask('enable financial account relationships for chargeback & refund', 'addRefundAndChargeBackAccountsIfNotExist');
3fe26f4c 224 $this->addTask('Add Index to civicrm_contribution.source', 'addIndexContributionSource');
2179c899 225 }
226
fd28b6a0 227 /**
228 * Upgrade function.
229 *
230 * @param string $rev
231 */
232 public function upgrade_4_7_3($rev) {
2af0b023 233 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
fd28b6a0 234 $this->addTask('Add Index to civicrm_contribution.total_amount', 'addIndexContributionAmount');
235 }
236
6eb752fa 237 /**
238 * Upgrade function.
239 *
240 * @param string $rev
241 */
242 public function upgrade_4_7_4($rev) {
2af0b023 243 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
6eb752fa 244 $this->addTask('Add Contact Deleted by Merge Activity Type', 'addDeletedByMergeActivityType');
245 }
246
2cbdd085
J
247 /**
248 * Upgrade function.
249 *
250 * @param string $rev
251 */
6a2d3987 252 public function upgrade_4_7_7($rev) {
2cbdd085 253 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
6a2d3987
J
254 // https://issues.civicrm.org/jira/browse/CRM-18006
255 if (CRM_Core_DAO::checkTableExists('civicrm_install_canary')) {
256 CRM_Core_DAO::executeQuery('ALTER TABLE civicrm_install_canary ENGINE=InnoDB');
257 }
2cbdd085
J
258 }
259
2af0b023
CW
260 /**
261 * Upgrade function.
262 *
263 * @param string $rev
264 */
6a2d3987 265 public function upgrade_4_7_8($rev) {
2af0b023 266 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
6a2d3987 267 $this->addTask('Upgrade mailing foreign key constraints', 'upgradeMailingFKs');
065ffec9
TO
268 }
269
da1ecd73
SL
270 /**
271 * Upgrade function.
272 *
273 * @param string $rev
274 */
e8a4535e 275 public function upgrade_4_7_10($rev) {
da1ecd73 276 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
b5095b43
CW
277 $this->addTask('Upgrade Add Help Pre and Post Fields to price value table', 'addHelpPreAndHelpPostFieldsPriceFieldValue');
278 $this->addTask('Alter index and type for image URL', 'alterIndexAndTypeForImageURL');
da1ecd73
SL
279 }
280
00c27b41
CW
281 /**
282 * Upgrade function.
283 *
284 * @param string $rev
285 */
286 public function upgrade_4_7_11($rev) {
287 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
288 $this->addTask('Dashboard schema updates', 'dashboardSchemaUpdate');
b5095b43 289 $this->addTask('Fill in setting "remote_profile_submissions"', 'migrateRemoteSubmissionsSetting');
00c27b41
CW
290 }
291
7c61320c
SL
292 /**
293 * Upgrade function.
294 *
295 * @param string $rev
296 */
297 public function upgrade_4_7_12($rev) {
298 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
b5095b43 299 $this->addTask('Add Data Type column to civicrm_option_group', 'addDataTypeColumnToOptionGroupTable');
7c61320c 300 }
cb5962bd
SL
301 /**
302 * Upgrade function.
303 *
304 * @param string $rev
305 */
306 public function upgrade_4_7_13($rev) {
307 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
6846f088
CW
308 $this->addTask('CRM-19372 - Add column to allow for payment processors to set what card types are accepted', 'addColumn',
309 'civicrm_payment_processor', 'accepted_credit_cards', "text DEFAULT NULL COMMENT 'array of accepted credit card types'");
cb5962bd
SL
310 }
311
7ad5ae6a
CW
312 /**
313 * Upgrade function.
314 *
315 * @param string $rev
316 */
317 public function upgrade_4_7_14($rev) {
318 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
319 $this->addTask('Add WYSIWYG Editor Presets', 'addWysiwygPresets');
320 }
7c61320c 321
b412f764
CW
322 /**
323 * Upgrade function.
324 *
325 * @param string $rev
326 */
327 public function upgrade_4_7_15($rev) {
6846f088
CW
328 $this->addTask('CRM-19626 - Add min_amount column to civicrm_price_set', 'addColumn',
329 'civicrm_price_set', 'min_amount', "INT(10) UNSIGNED DEFAULT '0' COMMENT 'Minimum Amount required for this set.'");
b412f764
CW
330 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
331 }
332
703875d8
TO
333 /**
334 * Upgrade function.
335 *
336 * @param string $rev
337 */
338 public function upgrade_4_7_16($rev) {
73c5338d
CW
339 $this->addTask('CRM-19723 - Add icon column to civicrm_option_value', 'addColumn',
340 'civicrm_option_value', 'icon', "varchar(255) COMMENT 'crm-i icon class' DEFAULT NULL");
341 $this->addTask('CRM-19769 - Add color column to civicrm_tag', 'addColumn',
342 'civicrm_tag', 'color', "varchar(255) COMMENT 'Hex color value e.g. #ffffff' DEFAULT NULL");
343 $this->addTask('CRM-19779 - Add color column to civicrm_option_value', 'addColumn',
344 'civicrm_option_value', 'color', "varchar(255) COMMENT 'Hex color value e.g. #ffffff' DEFAULT NULL");
703875d8 345 $this->addTask('Add new CiviMail fields', 'addMailingTemplateType');
cd063b10
CW
346 $this->addTask('CRM-19770 - Add is_star column to civicrm_activity', 'addColumn',
347 'civicrm_activity', 'is_star', "tinyint DEFAULT '0' COMMENT 'Activity marked as favorite.'");
73c5338d 348 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
703875d8
TO
349 }
350
36610486 351 /**
352 * Upgrade function.
353 *
354 * @param string $rev
355 */
356 public function upgrade_4_7_18($rev) {
357 $this->addTask('Update Kenyan Provinces', 'updateKenyanProvinces');
358 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
359 }
360
8712faa9
PN
361 /**
362 * Upgrade function.
363 *
364 * @param string $rev
365 */
366 public function upgrade_4_7_19($rev) {
040073c9
CW
367 if (CRM_Core_BAO_SchemaHandler::checkIfFieldExists('civicrm_financial_account', 'opening_balance')) {
368 $query = "SELECT id FROM civicrm_financial_account WHERE opening_balance <> 0 OR current_period_opening_balance <> 0";
369 $result = CRM_Core_DAO::executeQuery($query);
370 if (!$result->N) {
371 $this->addTask('Drop Column current_period_opening_balance From civicrm_financial_account table.', 'dropColumn', 'civicrm_financial_account', 'current_period_opening_balance');
372 $this->addTask('Drop Column opening_balance From civicrm_financial_account table.', 'dropColumn', 'civicrm_financial_account', 'opening_balance');
373 }
8712faa9 374 }
4eae8dda 375 $this->addTask('CRM-19961 - Add domain_id column to civicrm_sms_provider', 'addColumn',
61612722 376 'civicrm_sms_provider', 'domain_id', "int(10) unsigned COMMENT 'Which Domain is this sms provier for'");
4eae8dda 377 $this->addTask('CRM-19961 - Populate domain id table and perhaps add foreign key', 'populateSMSProviderDomainId');
8712faa9 378 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
ccfd6962 379 $this->addTask('CRM-16633 - Add "Change Case Subject" activity', 'addChangeCaseSubjectActivityType');
460931ca
JP
380 $this->addTask('Add is_public column to civicrm_custom_group', 'addColumn',
381 'civicrm_custom_group', 'is_public', "boolean DEFAULT '1' COMMENT 'Is this property public?'");
8712faa9
PN
382 }
383
6f0dad97
SL
384 /**
385 * Upgrade function.
386 *
387 * @param string $rev
388 */
389 public function upgrade_4_7_20($rev) {
390 $this->addtask('Fix Schema on civicrm_action_schedule', 'fixSchemaOnCiviCRMActionSchedule');
391 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
040073c9
CW
392 $this->addTask('Add activity_status column to civicrm_mail_settings', 'addColumn',
393 'civicrm_mail_settings', 'activity_status', "varchar (255) DEFAULT NULL COMMENT 'Name of status to use when creating email to activity.'");
6f0dad97
SL
394 }
395
9cad3ff4
CW
396 /**
397 * Upgrade function.
398 *
399 * @param string $rev
400 */
a058f8a1 401 public function upgrade_4_7_23($rev) {
9cad3ff4
CW
402 $this->addTask('CRM-20387 - Add invoice_number column to civicrm_contribution', 'addColumn',
403 'civicrm_contribution', 'invoice_number', "varchar(255) COMMENT 'Human readable invoice number' DEFAULT NULL");
404 $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
405 }
406
2af0b023 407 /*
2cbdbcef 408 * Important! All upgrade functions MUST add a 'runSql' task.
2af0b023
CW
409 * Uncomment and use the following template for a new upgrade version
410 * (change the x in the function name):
411 */
412
413 // /**
414 // * Upgrade function.
415 // *
416 // * @param string $rev
417 // */
418 // public function upgrade_4_7_x($rev) {
419 // $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
420 // // Additional tasks here...
b5095b43
CW
421 // // Note: do not use ts() in the addTask description because it adds unnecessary strings to transifex.
422 // // The above is an exception because 'Upgrade DB to %1: SQL' is generic & reusable.
2af0b023
CW
423 // }
424
6cc25669
CW
425 /**
426 * CRM-16354
427 *
6dbe2c23 428 * @return int
6cc25669 429 */
6dbe2c23 430 public static function updateWysiwyg() {
aaffa79f 431 $editorID = Civi::settings()->get('editor_id');
6dbe2c23
CW
432 // Previously a numeric value indicated one of 4 wysiwyg editors shipped in core, and no value indicated 'Textarea'
433 // Now the options are "Textarea", "CKEditor", and the rest have been dropped from core.
434 $newEditor = $editorID ? "CKEditor" : "Textarea";
08ef4ddd 435 Civi::settings()->set('editor_id', $newEditor);
6cc25669 436
6dbe2c23 437 return $editorID;
6cc25669
CW
438 }
439
f806379b
TO
440 /**
441 * Migrate any last remaining options from `civicrm_domain.config_backend` to `civicrm_setting`.
442 * Cleanup setting schema.
443 *
444 * @param CRM_Queue_TaskContext $ctx
445 * @return bool
446 */
5c9edd99 447 public static function migrateSettings(CRM_Queue_TaskContext $ctx) {
4cc9e637
TO
448 // Tip: If there are problems with adding the new uniqueness index, try inspecting:
449 // SELECT name, domain_id, contact_id, count(*) AS dupes FROM civicrm_setting cs GROUP BY name, domain_id, contact_id HAVING dupes > 1;
450
451 // Nav records are expendable. https://forum.civicrm.org/index.php?topic=36933.0
452 CRM_Core_DAO::executeQuery('DELETE FROM civicrm_setting WHERE contact_id IS NOT NULL AND name = "navigation"');
3ddd2901 453
726e6261
SL
454 CRM_Core_DAO::executeQuery('ALTER TABLE civicrm_setting DROP INDEX index_group_name');
455 CRM_Core_DAO::executeQuery('ALTER TABLE civicrm_setting DROP COLUMN group_name');
456
3ddd2901
SL
457 // Handle Strange activity_tab_filter settings.
458 CRM_Core_DAO::executeQuery('CREATE TABLE civicrm_activity_setting LIKE civicrm_setting');
726e6261 459 CRM_Core_DAO::executeQuery('ALTER TABLE civicrm_activity_setting ADD UNIQUE INDEX index_domain_contact_name (domain_id, contact_id, name)');
3ddd2901 460 CRM_Core_DAO::executeQuery('INSERT INTO civicrm_activity_setting (name, contact_id, domain_id, value)
726e6261 461 SELECT DISTINCT name, contact_id, domain_id, value
3ddd2901
SL
462 FROM civicrm_setting
463 WHERE name = "activity_tab_filter"
464 AND value is not NULL');
ee4d8422 465 CRM_Core_DAO::executeQuery('DELETE FROM civicrm_setting WHERE name = "activity_tab_filter"');
4cc9e637 466
e6a2c901 467 $date = CRM_Utils_Time::getTime('Y-m-d H:i:s');
f806379b 468 CRM_Core_DAO::executeQuery('ALTER TABLE civicrm_setting ADD UNIQUE INDEX index_domain_contact_name (domain_id, contact_id, name)');
e6a2c901
SL
469 CRM_Core_DAO::executeQuery("INSERT INTO civicrm_setting (name, contact_id, domain_id, value, is_domain, created_id, created_date)
470 SELECT name, contact_id, domain_id, value, 0, contact_id,'$date'
3ddd2901 471 FROM civicrm_activity_setting
e6a2c901
SL
472 WHERE name = 'activity_tab_filter'
473 AND value is not NULL"
d09d52ce 474 );
3ddd2901 475 CRM_Core_DAO::executeQuery('DROP TABLE civicrm_activity_setting');
f806379b
TO
476
477 $domainDao = CRM_Core_DAO::executeQuery('SELECT id, config_backend FROM civicrm_domain');
478 while ($domainDao->fetch()) {
479 $settings = CRM_Upgrade_Incremental_php_FourSeven::convertBackendToSettings($domainDao->id, $domainDao->config_backend);
480 CRM_Core_Error::debug_var('convertBackendToSettings', array(
481 'domainId' => $domainDao->id,
482 'backend' => $domainDao->config_backend,
483 'settings' => $settings,
484 ));
485
486 foreach ($settings as $name => $value) {
487 $rowParams = array(
488 1 => array($domainDao->id, 'Positive'),
489 2 => array($name, 'String'),
490 3 => array(serialize($value), 'String'),
491 );
492 $settingId = CRM_Core_DAO::singleValueQuery(
493 'SELECT id FROM civicrm_setting WHERE domain_id = %1 AND name = %2',
494 $rowParams);
495 if (!$settingId) {
496 CRM_Core_DAO::executeQuery(
497 'INSERT INTO civicrm_setting (domain_id, name, value, is_domain) VALUES (%1,%2,%3,1)',
498 $rowParams);
499 }
500 }
501 }
502
9e726168 503 CRM_Core_DAO::executeQuery('ALTER TABLE civicrm_domain DROP COLUMN config_backend');
f806379b
TO
504
505 return TRUE;
506 }
507
508 /**
509 * Take a config_backend blob and produce an equivalent list of settings.
510 *
511 * @param int $domainId
512 * Domain ID.
513 * @param string $config_backend
514 * Serialized blob.
515 * @return array
516 */
517 public static function convertBackendToSettings($domainId, $config_backend) {
518 if (!$config_backend) {
519 return array();
520 }
521
522 $backend = unserialize($config_backend);
523 if (!$backend) {
524 return array();
525 }
526
527 $mappings = \CRM_Core_Config_MagicMerge::getPropertyMap();
528 $settings = array();
529 foreach ($backend as $propertyName => $propertyValue) {
530 if (isset($mappings[$propertyName][0]) && preg_match('/^setting/', $mappings[$propertyName][0])) {
531 // $mapping format: $propertyName => Array(0 => $type, 1 => $setting|NULL).
532 $settingName = isset($mappings[$propertyName][1]) ? $mappings[$propertyName][1] : $propertyName;
533 $settings[$settingName] = $propertyValue;
534 }
535 }
536
537 return $settings;
538 }
539
0a95c936 540 /**
541 * Add Getting Started dashlet to dashboard
542 *
543 * @param \CRM_Queue_TaskContext $ctx
544 *
545 * @return bool
546 */
5c9edd99 547 public static function addGettingStartedDashlet(CRM_Queue_TaskContext $ctx) {
9c4a04f2 548 $sql = "SELECT count(*) FROM civicrm_dashboard WHERE name='getting-started'";
e1674273 549 $res = CRM_Core_DAO::singleValueQuery($sql);
550 $domainId = CRM_Core_Config::domainID();
551 if ($res <= 0) {
552 $sql = "INSERT INTO `civicrm_dashboard`
a8b704c5 553 ( `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 554 CRM_Core_DAO::executeQuery($sql);
555 // Add default position for Getting Started Dashlet ( left column)
556 $sql = "INSERT INTO `civicrm_dashboard_contact` (dashboard_id, contact_id, column_no, is_active)
557SELECT (SELECT MAX(id) FROM `civicrm_dashboard`), contact_id, 0, IF (SUM(is_active) > 0, 1, 0)
429da6a1 558FROM `civicrm_dashboard_contact` JOIN `civicrm_contact` WHERE civicrm_dashboard_contact.contact_id = civicrm_contact.id GROUP BY contact_id";
e1674273 559 CRM_Core_DAO::executeQuery($sql);
560 }
0a95c936 561 return TRUE;
e1674273 562 }
4175ee03 563
6b1e1a2c 564 /**
565 * Migrate on-behalf information to uf_join.module_data as on-behalf columns will be dropped
566 * on DB upgrade
567 *
568 * @param CRM_Queue_TaskContext $ctx
569 *
570 * @return bool
571 * TRUE for success
572 */
573 public static function migrateOnBehalfOfInfo(CRM_Queue_TaskContext $ctx) {
d3e92c88 574 $domain = new CRM_Core_DAO_Domain();
575 $domain->find(TRUE);
6b1e1a2c 576
d3e92c88 577 // fetch onBehalf entry in UFJoin table
6b1e1a2c 578 $ufGroupDAO = new CRM_Core_DAO_UFJoin();
579 $ufGroupDAO->module = 'OnBehalf';
580 $ufGroupDAO->find(TRUE);
581
f635ab77 582 $forOrgColums = array('is_for_organization');
d3e92c88 583 if ($domain->locales) {
584 $locales = explode(CRM_Core_DAO::VALUE_SEPARATOR, $domain->locales);
585 foreach ($locales as $locale) {
586 $forOrgColums[] = "for_organization_{$locale}";
587 }
588 }
589 else {
590 $forOrgColums[] = "for_organization";
591 }
592
593 $query = "
594 SELECT " . implode(", ", $forOrgColums) . ", uj.id as join_id, uj.uf_group_id as uf_group_id
595 FROM civicrm_contribution_page cp
596 INNER JOIN civicrm_uf_join uj ON uj.entity_id = cp.id AND uj.module = 'OnBehalf'";
597 $dao = CRM_Core_DAO::executeQuery($query, array(), TRUE, NULL, FALSE, FALSE);
6b1e1a2c 598
599 if ($dao->N) {
6b1e1a2c 600 while ($dao->fetch()) {
601 $onBehalfParams['on_behalf'] = array('is_for_organization' => $dao->is_for_organization);
602 if ($domain->locales) {
6b1e1a2c 603 foreach ($locales as $locale) {
604 $for_organization = "for_organization_{$locale}";
605 $onBehalfParams['on_behalf'] += array(
606 $locale => array(
607 'for_organization' => $dao->$for_organization,
608 ),
609 );
610 }
611 }
612 else {
613 $onBehalfParams['on_behalf'] += array(
614 'default' => array(
615 'for_organization' => $dao->for_organization,
616 ),
617 );
618 }
619 $ufJoinParam = array(
620 'id' => $dao->join_id,
621 'module' => 'on_behalf',
d3e92c88 622 'uf_group_id' => $dao->uf_group_id,
6b1e1a2c 623 'module_data' => json_encode($onBehalfParams),
624 );
625 CRM_Core_BAO_UFJoin::create($ufJoinParam);
626 }
627 }
628
629 return TRUE;
9e42a501
TO
630 }
631
632 /**
633 * v4.7.11 adds a new setting "remote_profile_submissions". This is
634 * long-standing feature that existing sites may be using; however, it's
635 * a bit prone to abuse. For new sites, the default is to disable it
636 * (since that is more secure). For existing sites, the default is to
637 * enable it (since that is more compatible).
638 *
639 * @param \CRM_Queue_TaskContext $ctx
640 *
641 * @return bool
642 */
5c9edd99 643 public static function migrateRemoteSubmissionsSetting(CRM_Queue_TaskContext $ctx) {
9e42a501
TO
644 $domains = CRM_Core_DAO::executeQuery("SELECT DISTINCT d.id FROM civicrm_domain d LEFT JOIN civicrm_setting s ON d.id=s.domain_id AND s.name = 'remote_profile_submissions' WHERE s.id IS NULL");
645 while ($domains->fetch()) {
646 CRM_Core_DAO::executeQuery(
647 "INSERT INTO civicrm_setting (`name`, `value`, `domain_id`, `is_domain`, `contact_id`, `component_id`, `created_date`, `created_id`)
648 VALUES (%2, %3, %4, %5, NULL, NULL, %6, NULL)",
649 array(
650 2 => array('remote_profile_submissions', 'String'),
651 3 => array('s:1:"1";', 'String'),
652 4 => array($domains->id, 'Integer'),
653 5 => array(1, 'Integer'),
654 6 => array(date('Y-m-d H:i:s'), 'String'),
655 )
656 );
657 }
658 return TRUE;
6b1e1a2c 659 }
cb804cd9 660
b2222b9f
CW
661 /**
662 * CRM-11782 - Get rid of VALUE_SEPARATOR character in saved search form values
663 *
664 * @param \CRM_Queue_TaskContext $ctx
665 *
666 * @return bool
667 */
5c9edd99 668 public static function fixContactTypeInSmartGroups(CRM_Queue_TaskContext $ctx) {
b2222b9f
CW
669 $sep = CRM_Core_DAO::VALUE_SEPARATOR;
670 $dao = CRM_Core_DAO::executeQuery("SELECT id, form_values FROM civicrm_saved_search WHERE form_values LIKE '%$sep%'");
671 while ($dao->fetch()) {
672 $formValues = unserialize($dao->form_values);
673 if (isset($formValues['contact_type']) && is_array($formValues['contact_type'])) {
674 $newVals = array();
675 foreach ($formValues['contact_type'] as $key => $val) {
676 $newVals[str_replace($sep, '__', $key)] = is_string($val) ? str_replace($sep, '__', $val) : $val;
677 }
678 $formValues['contact_type'] = $newVals;
679 }
680 CRM_Core_DAO::executeQuery("UPDATE civicrm_saved_search SET form_values = %1 WHERE id = {$dao->id}", array(1 => array(serialize($formValues), 'String')));
681 }
682
683 return TRUE;
684 }
685
0094ac08
CW
686 /**
687 * CRM-17637 - Ths file location has been moved; delete the old one
688 *
689 * @param \CRM_Queue_TaskContext $ctx
690 *
691 * @return bool
692 */
5c9edd99 693 public static function deleteVersionCheckCacheFile(CRM_Queue_TaskContext $ctx) {
0094ac08
CW
694 $config = CRM_Core_Config::singleton();
695 $cacheFile = $config->uploadDir . 'version-info-cache.json';
696 if (file_exists($cacheFile)) {
697 unlink($cacheFile);
698 }
699 return TRUE;
700 }
701
fb1f3850
DRJ
702 /**
703 * CRM-17669 and CRM-17686, make scheduled jobs more flexible, disable the 4.6 extension if installed
704 *
705 * @param \CRM_Queue_TaskContext $ctx
706 *
707 * @return bool
708 */
5c9edd99 709 public static function disableFlexibleJobsExtension(CRM_Queue_TaskContext $ctx) {
d357221c
DRJ
710 try {
711 civicrm_api3('Extension', 'disable', array('key' => 'com.klangsoft.flexiblejobs'));
712 }
713 catch (CiviCRM_API3_Exception $e) {
714 // just ignore if the extension isn't installed
715 }
fb1f3850
DRJ
716
717 return TRUE;
718 }
719
20d5377e 720 /**
721 * CRM-17752 add index to civicrm_financial_trxn.trxn_id (deliberately non-unique).
722 *
723 * @param \CRM_Queue_TaskContext $ctx
724 *
725 * @return bool
726 */
5c9edd99 727 public static function addIndexFinancialTrxnTrxnID(CRM_Queue_TaskContext $ctx) {
20d5377e 728 $tables = array('civicrm_financial_trxn' => array('trxn_id'));
729 CRM_Core_BAO_SchemaHandler::createIndexes($tables);
730 return TRUE;
731 }
732
8ca47f5c 733 /**
734 * CRM-17882 Add index to civicrm_contribution.credit_note_id.
735 *
736 * @param \CRM_Queue_TaskContext $ctx
737 *
738 * @return bool
739 */
5c9edd99 740 public static function addIndexContributionCreditNoteID(CRM_Queue_TaskContext $ctx) {
8ca47f5c 741 $tables = array('civicrm_contribution' => array('creditnote_id'));
742 CRM_Core_BAO_SchemaHandler::createIndexes($tables);
743 return TRUE;
744 }
745
2179c899 746 /**
747 * CRM-17775 Add correct index for table civicrm_financial_item.
748 *
749 * Note that the entity ID should always precede the entity_table as
750 * it is more unique. This is better for performance and does not cause fallback
751 * to no index if table it omitted.
752 *
753 * @return bool
754 */
5c9edd99 755 public static function addCombinedIndexFinancialItemEntityIDEntityType() {
2179c899 756 CRM_Core_BAO_SchemaHandler::dropIndexIfExists('civicrm_financial_item', 'UI_id');
757 CRM_Core_BAO_SchemaHandler::dropIndexIfExists('civicrm_financial_item', 'IX_Entity');
758 CRM_Core_BAO_SchemaHandler::createIndexes(array(
759 'civicrm_financial_item' => array(array('entity_id', 'entity_table')),
760 ));
761 return TRUE;
762 }
763
1f395432 764 /**
765 * CRM-17951 Add accounts option values for refund and chargeback.
766 *
767 * Add Chargeback contribution status and Chargeback and Contra account relationships,
768 * checking first if one exists.
769 */
5c9edd99 770 public static function addRefundAndChargeBackAccountsIfNotExist() {
1f395432 771 // First we enable and edit the record for Credit contra - this exists but is disabled for most sites.
772 // Using the ensure function (below) will not enabled a disabled option (by design).
773 CRM_Core_DAO::executeQuery("UPDATE civicrm_option_value v
774 INNER JOIN civicrm_option_group g on v.option_group_id=g.id and g.name='account_relationship'
775 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'
776 WHERE v.name = 'Credit/Contra Account is';");
777
778 CRM_Core_BAO_OptionValue::ensureOptionValueExists(array(
779 'option_group_id' => 'account_relationship',
4a907feb
EM
780 'name' => 'Chargeback Account is',
781 'label' => ts('Chargeback Account is'),
1f395432 782 'is_active' => TRUE,
783 'component_id' => 'CiviContribute',
784 ));
785
786 CRM_Core_BAO_OptionValue::ensureOptionValueExists(array(
787 'option_group_id' => 'contribution_status',
788 'name' => 'Chargeback',
789 'label' => ts('Chargeback'),
790 'is_active' => TRUE,
791 'component_id' => 'CiviContribute',
792 ));
793 return TRUE;
794 }
795
3fe26f4c 796 /**
797 * CRM-17999 Add index to civicrm_contribution.source.
798 *
799 * @param \CRM_Queue_TaskContext $ctx
800 *
801 * @return bool
802 */
5c9edd99 803 public static function addIndexContributionSource(CRM_Queue_TaskContext $ctx) {
3fe26f4c 804 CRM_Core_BAO_SchemaHandler::createIndexes(array('civicrm_contribution' => array('source')));
805 return TRUE;
806 }
807
fd28b6a0 808 /**
809 * CRM-18124 Add index to civicrm_contribution.total_amount.
810 *
811 * Note that I made this a combined index with receive_date because the issue included
812 * both criteria and they seemed likely to be used in conjunction to me in other cases.
813 *
814 * @param \CRM_Queue_TaskContext $ctx
815 *
816 * @return bool
817 */
5c9edd99 818 public static function addIndexContributionAmount(CRM_Queue_TaskContext $ctx) {
fd28b6a0 819 CRM_Core_BAO_SchemaHandler::createIndexes(array(
820 'civicrm_contribution' => array(array('total_amount', 'receive_date')),
821 ));
822 return TRUE;
823 }
824
6eb752fa 825 /**
826 * CRM-18124 Add index to civicrm_contribution.total_amount.
827 *
828 * Note that I made this a combined index with receive_date because the issue included
829 * both criteria and they seemed likely to be used in conjunction to me in other cases.
830 *
831 * @param \CRM_Queue_TaskContext $ctx
832 *
833 * @return bool
834 */
5c9edd99 835 public static function addDeletedByMergeActivityType(CRM_Queue_TaskContext $ctx) {
6eb752fa 836 CRM_Core_BAO_OptionValue::ensureOptionValueExists(array(
837 'option_group_id' => 'activity_type',
838 'name' => 'Contact Deleted by Merge',
839 'label' => ts('Contact Deleted by Merge'),
840 'description' => ts('Contact was merged into another contact'),
841 'is_active' => TRUE,
e14e412b 842 'filter' => 1,
6eb752fa 843 ));
844 return TRUE;
845 }
846
da1ecd73
SL
847 /**
848 * CRM-12252 Add Help Pre and Help Post Fields for Price Field Value Table.
849 *
850 * @param \CRM_Queue_TaskContext $ctx
851 *
852 * @return bool
853 */
5c9edd99 854 public static function addHelpPreAndHelpPostFieldsPriceFieldValue(CRM_Queue_TaskContext $ctx) {
da1ecd73
SL
855 $domain = new CRM_Core_DAO_Domain();
856 $domain->find(TRUE);
857 if ($domain->locales) {
858 $locales = explode(CRM_Core_DAO::VALUE_SEPARATOR, $domain->locales);
859 foreach ($locales as $locale) {
01ee8ba6 860 if (!CRM_Core_BAO_SchemaHandler::checkIfFieldExists("civicrm_price_field_value", "help_pre_{$locale}")) {
3dc870a2
SL
861 CRM_Core_DAO::executeQuery("ALTER TABLE `civicrm_price_field_value`
862 ADD COLUMN `help_pre_{$locale}` text COLLATE utf8_unicode_ci COMMENT 'Price field option pre help text.'", array(), TRUE, NULL, FALSE, FALSE);
da1ecd73 863 }
01ee8ba6 864 if (!CRM_Core_BAO_SchemaHandler::checkIfFieldExists("civicrm_price_field_value", "help_post_{$locale}")) {
3dc870a2
SL
865 CRM_Core_DAO::executeQuery("ALTER TABLE `civicrm_price_field_value`
866 ADD COLUMN `help_post_{$locale}` text COLLATE utf8_unicode_ci COMMENT 'Price field option post help text.'", array(), TRUE, NULL, FALSE, FALSE);
da1ecd73
SL
867 }
868 }
01ee8ba6 869 CRM_Core_I18n_Schema::rebuildMultilingualSchema($locales, NULL);
da1ecd73
SL
870 }
871 else {
872 if (!CRM_Core_BAO_SchemaHandler::checkIfFieldExists('civicrm_price_field_value', 'help_pre')) {
3dc870a2
SL
873 CRM_Core_DAO::executeQuery("ALTER TABLE `civicrm_price_field_value`
874 ADD COLUMN `help_pre` text COLLATE utf8_unicode_ci COMMENT 'Price field option pre help text.'");
da1ecd73
SL
875 }
876 if (!CRM_Core_BAO_SchemaHandler::checkIfFieldExists('civicrm_price_field_value', 'help_post')) {
3dc870a2
SL
877 CRM_Core_DAO::executeQuery("ALTER TABLE `civicrm_price_field_value`
878 ADD COLUMN `help_post` text COLLATE utf8_unicode_ci COMMENT 'Price field option post help text.'");
da1ecd73
SL
879 }
880 }
881 return TRUE;
882 }
883
8c748d50
SL
884 /**
885 * CRM-18464 Check if Foreign key exists and also drop any index of same name accidentially created.
886 *
887 * @param \CRM_Queue_TaskContext $ctx
888 *
889 * @return bool
890 */
891 public static function dropActionScheudleMappingForeignKey(CRM_Queue_TaskContext $ctx) {
892 CRM_Core_BAO_SchemaHandler::safeRemoveFK('civicrm_action_schedule', 'FK_civicrm_action_schedule_mapping_id');
8c748d50
SL
893 return TRUE;
894 }
895
2cbdd085
J
896 /**
897 * CRM-18345 Don't delete mailing data on email/phone deletion
898 * Implemented here in CRM-18526
899 *
900 * @param \CRM_Queue_TaskContext $ctx
901 *
902 * @return bool
903 */
5c9edd99 904 public static function upgradeMailingFKs(CRM_Queue_TaskContext $ctx) {
2cbdd085
J
905
906 // Safely drop the foreign keys
169475b7
SL
907 CRM_Core_BAO_SchemaHandler::safeRemoveFK('civicrm_mailing_event_queue', 'FK_civicrm_mailing_event_queue_email_id');
908 CRM_Core_BAO_SchemaHandler::safeRemoveFK('civicrm_mailing_event_queue', 'FK_civicrm_mailing_event_queue_phone_id');
909 CRM_Core_BAO_SchemaHandler::safeRemoveFK('civicrm_mailing_recipients', 'FK_civicrm_mailing_recipients_email_id');
910 CRM_Core_BAO_SchemaHandler::safeRemoveFK('civicrm_mailing_recipients', 'FK_civicrm_mailing_recipients_phone_id');
2cbdd085
J
911
912 // Set up the new foreign keys
913 CRM_Core_DAO::executeQuery("SET FOREIGN_KEY_CHECKS = 0;");
914
915 CRM_Core_DAO::executeQuery("
916 ALTER TABLE `civicrm_mailing_event_queue`
917 ADD CONSTRAINT `FK_civicrm_mailing_event_queue_email_id`
918 FOREIGN KEY (`email_id`)
919 REFERENCES `civicrm_email`(`id`)
920 ON DELETE SET NULL
921 ON UPDATE RESTRICT;
922 ");
923
924 CRM_Core_DAO::executeQuery("
925 ALTER TABLE `civicrm_mailing_event_queue`
926 ADD CONSTRAINT `FK_civicrm_mailing_event_queue_phone_id`
927 FOREIGN KEY (`phone_id`)
928 REFERENCES `civicrm_phone`(`id`)
929 ON DELETE SET NULL
930 ON UPDATE RESTRICT;
931 ");
932
933 CRM_Core_DAO::executeQuery("
934 ALTER TABLE `civicrm_mailing_recipients`
935 ADD CONSTRAINT `FK_civicrm_mailing_recipients_email_id`
936 FOREIGN KEY (`email_id`)
937 REFERENCES `civicrm_email`(`id`)
938 ON DELETE SET NULL
939 ON UPDATE RESTRICT;
940 ");
941
942 CRM_Core_DAO::executeQuery("
943 ALTER TABLE `civicrm_mailing_recipients`
944 ADD CONSTRAINT `FK_civicrm_mailing_recipients_phone_id`
945 FOREIGN KEY (`phone_id`)
946 REFERENCES `civicrm_phone`(`id`)
947 ON DELETE SET NULL
948 ON UPDATE RESTRICT;
949 ");
950
951 CRM_Core_DAO::executeQuery("SET FOREIGN_KEY_CHECKS = 1;");
952
953 return TRUE;
954 }
955
00c27b41
CW
956 /**
957 * CRM-17663 - Dashboard schema changes
958 *
959 * @param \CRM_Queue_TaskContext $ctx
960 *
961 * @return bool
962 */
5c9edd99 963 public static function dashboardSchemaUpdate(CRM_Queue_TaskContext $ctx) {
00c27b41
CW
964 if (!CRM_Core_BAO_SchemaHandler::checkIfIndexExists('civicrm_dashboard_contact', 'index_dashboard_id_contact_id')) {
965 // Delete any stray duplicate rows and add unique index to prevent new dupes and enable INSERT/UPDATE combo query
966 CRM_Core_DAO::executeQuery('DELETE c1 FROM civicrm_dashboard_contact c1, civicrm_dashboard_contact c2 WHERE c1.contact_id = c2.contact_id AND c1.dashboard_id = c2.dashboard_id AND c1.id > c2.id');
967 CRM_Core_DAO::executeQuery('ALTER TABLE civicrm_dashboard_contact ADD UNIQUE INDEX index_dashboard_id_contact_id (dashboard_id, contact_id);');
968 }
87568e34
SL
969 $domain = new CRM_Core_DAO_Domain();
970 $domain->find(TRUE);
242055d3
CW
971 CRM_Core_BAO_SchemaHandler::dropColumn('civicrm_dashboard_contact', 'content');
972 CRM_Core_BAO_SchemaHandler::dropColumn('civicrm_dashboard_contact', 'is_minimized');
973 CRM_Core_BAO_SchemaHandler::dropColumn('civicrm_dashboard_contact', 'is_fullscreen');
974 CRM_Core_BAO_SchemaHandler::dropColumn('civicrm_dashboard_contact', 'created_date');
975 CRM_Core_BAO_SchemaHandler::dropColumn('civicrm_dashboard', 'is_fullscreen');
976 CRM_Core_BAO_SchemaHandler::dropColumn('civicrm_dashboard', 'is_minimized');
977 CRM_Core_BAO_SchemaHandler::dropColumn('civicrm_dashboard', 'column_no');
978 CRM_Core_BAO_SchemaHandler::dropColumn('civicrm_dashboard', 'weight');
979
980 CRM_Core_DAO::executeQuery('UPDATE civicrm_dashboard SET url = REPLACE(url, "&snippet=5", ""), fullscreen_url = REPLACE(fullscreen_url, "&snippet=5", "")');
a8f56d71
CW
981
982 if (!CRM_Core_BAO_SchemaHandler::checkIfFieldExists('civicrm_dashboard', 'cache_minutes')) {
8c3f9072
SL
983 CRM_Core_DAO::executeQuery('ALTER TABLE civicrm_dashboard ADD COLUMN cache_minutes int unsigned NOT NULL DEFAULT 60 COMMENT "Number of minutes to cache dashlet content in browser localStorage."',
984 array(), TRUE, NULL, FALSE, FALSE);
985 }
986 if ($domain->locales) {
987 $locales = explode(CRM_Core_DAO::VALUE_SEPARATOR, $domain->locales);
988 CRM_Core_I18n_Schema::rebuildMultilingualSchema($locales, NULL);
a8f56d71
CW
989 }
990
991 CRM_Core_DAO::executeQuery('UPDATE civicrm_dashboard SET cache_minutes = 1440 WHERE name = "blog"');
992 CRM_Core_DAO::executeQuery('UPDATE civicrm_dashboard SET cache_minutes = 7200 WHERE name IN ("activity","getting-started")');
242055d3 993 return TRUE;
00c27b41
CW
994 }
995
8e2e96a5 996 /**
997 * CRM-19100 - Alter Index and Type for Image URL
998 * @return bool
999 */
1000 public static function alterIndexAndTypeForImageURL() {
98daafd5 1001 $length = array();
1002 CRM_Core_BAO_SchemaHandler::dropIndexIfExists('civicrm_contact', 'index_image_url');
8e2e96a5 1003 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 1004
1005 $length['civicrm_contact']['image_URL'] = 128;
1006 CRM_Core_BAO_SchemaHandler::createIndexes(array('civicrm_contact' => array('image_URL')), 'index', $length);
8e2e96a5 1007
1008 return TRUE;
1009 }
1010
bc854509 1011 /**
1012 * Add mailing template type.
1013 *
1014 * @return bool
1015 */
703875d8
TO
1016 public static function addMailingTemplateType() {
1017 if (!CRM_Core_DAO::checkFieldExists('civicrm_mailing', 'template_type', FALSE)) {
1018 CRM_Core_DAO::executeQuery('
1019 ALTER TABLE civicrm_mailing
1020 ADD COLUMN `template_type` varchar(64) NOT NULL DEFAULT \'traditional\' COMMENT \'The language/processing system used for email templates.\',
1021 ADD COLUMN `template_options` longtext COMMENT \'Advanced options used by the email templating system. (JSON encoded)\'
1022 ');
1023 }
1024 return TRUE;
1025 }
1026
d0e7e124
SL
1027 /**
1028 * CRM-18651 Add DataType column to Option Group Table
1029 * @return bool
1030 */
1031 public static function addDataTypeColumnToOptionGroupTable() {
7c61320c 1032 if (!CRM_Core_BAO_SchemaHandler::checkIfFieldExists('civicrm_option_group', 'data_type')) {
a37e4e6c
SL
1033 CRM_Core_DAO::executeQuery("ALTER TABLE `civicrm_option_group` ADD COLUMN `data_type` varchar(128) COLLATE utf8_unicode_ci DEFAULT NULL comment 'Data Type of Option Group.'",
1034 array(), TRUE, NULL, FALSE, FALSE);
1035 }
1036 $domain = new CRM_Core_DAO_Domain();
1037 $domain->find(TRUE);
1038 if ($domain->locales) {
1039 $locales = explode(CRM_Core_DAO::VALUE_SEPARATOR, $domain->locales);
1040 CRM_Core_I18n_Schema::rebuildMultilingualSchema($locales, NULL);
d0e7e124 1041 }
a37e4e6c 1042
d0e7e124
SL
1043 CRM_Core_DAO::executeQuery("UPDATE `civicrm_option_group` SET `data_type` = 'Integer'
1044 WHERE name IN ('activity_type', 'gender', 'payment_instrument', 'participant_role', 'event_type')");
1045 return TRUE;
1046 }
1047
7ad5ae6a
CW
1048 /**
1049 * CRM-19372 Add field to store accepted credit credit cards for a payment processor.
1050 * @return bool
1051 */
1052 public static function addWysiwygPresets() {
1053 CRM_Core_BAO_OptionGroup::ensureOptionGroupExists(array(
1054 'name' => 'wysiwyg_presets',
1055 'title' => ts('WYSIWYG Editor Presets'),
1056 'is_reserved' => 1,
1057 ));
1058 $values = array(
1059 'default' => array('label' => ts('Default'), 'is_default' => 1),
1060 'civimail' => array('label' => ts('CiviMail'), 'component_id' => 'CiviMail'),
1061 'civievent' => array('label' => ts('CiviEvent'), 'component_id' => 'CiviEvent'),
1062 );
1063 foreach ($values as $name => $value) {
34273b2a 1064 CRM_Core_BAO_OptionValue::ensureOptionValueExists($value + array(
7ad5ae6a
CW
1065 'name' => $name,
1066 'option_group_id' => 'wysiwyg_presets',
1067 ));
1068 }
1069 $fileName = Civi::paths()->getPath('[civicrm.files]/persist/crm-ckeditor-config.js');
99316116 1070 // Ensure the config file contains the allowedContent setting
7ad5ae6a
CW
1071 if (file_exists($fileName)) {
1072 $config = file_get_contents($fileName);
1073 $pos = strrpos($config, '};');
1074 $setting = "\n\tconfig.allowedContent = true;\n";
1075 $config = substr_replace($config, $setting, $pos, 0);
1076 unlink($fileName);
949a87e8
CW
1077 $newFileName = Civi::paths()->getPath('[civicrm.files]/persist/crm-ckeditor-default.js');
1078 file_put_contents($newFileName, $config);
7ad5ae6a 1079 }
7ad5ae6a
CW
1080 return TRUE;
1081 }
1082
36610486 1083 /**
1084 * Update Kenyan Provinces to reflect changes per CRM-20062
1085 *
1086 * @param \CRM_Queue_TaskContext $ctx
1087 */
35e62234 1088 public static function updateKenyanProvinces(CRM_Queue_TaskContext $ctx) {
36610486 1089 $kenyaCountryID = CRM_Core_DAO::singleValueQuery('SELECT max(id) from civicrm_country where iso_code = "KE"');
1090 $oldProvinces = array(
1091 'Nairobi Municipality',
1092 'Coast',
1093 'North-Eastern Kaskazini Mashariki',
1094 'Rift Valley',
1095 'Western Magharibi',
1096 );
1097 self::deprecateStateProvinces($kenyaCountryID, $oldProvinces);
1098 return TRUE;
1099 }
1100
1101 /**
1102 * Deprecate provinces that no longer exist.
1103 *
1104 * @param int $countryID
1105 * @param array $provinces
1106 */
1107 public static function deprecateStateProvinces($countryID, $provinces) {
1108 foreach ($provinces as $province) {
1109 $existingStateID = CRM_Core_DAO::singleValueQuery("
1110 SELECT id FROM civicrm_state_province
1111 WHERE country_id = %1
1112 AND name = %2
1113 ",
1114 array(1 => array($countryID, 'Int'), 2 => array($province, 'String')));
1115
1116 if (!$existingStateID) {
1117 continue;
1118 }
1119 if (!CRM_Core_DAO::singleValueQuery("
1120 SELECT count(*) FROM civicrm_address
1121 WHERE state_province_id = %1
1122 ", array(1 => array($existingStateID, 'Int')))
1123 ) {
1124 CRM_Core_DAO::executeQuery("DELETE FROM civicrm_state_province WHERE id = %1", array(1 => array($existingStateID, 'Int')));
1125 }
1126 else {
1127 $params = array('1' => array(ts("Former - $province"), 'String'));
1128 CRM_Core_DAO::executeQuery("
1129 UPDATE civicrm_state_province SET name = %1 WHERE id = $existingStateID
1130 ", $params);
1131 }
1132 }
1133 }
1134
4eae8dda
SL
1135 /**
1136 * CRM-19961
1137 * Poputate newly added domain id column and add foriegn key onto table.
1138 */
1139 public static function populateSMSProviderDomainId() {
1140 $count = CRM_Core_DAO::singleValueQuery("SELECT count(id) FROM civicrm_domain");
9cec4195 1141 if ($count == 1) {
4eae8dda
SL
1142 CRM_Core_DAO::executeQuery("UPDATE civicrm_sms_provider SET domain_id = (SELECT id FROM civicrm_domain)");
1143 }
27e82c24 1144 if (!parent::checkFKExists('civicrm_sms_provider', 'FK_civicrm_sms_provider_domain_id')) {
f5078cc0
SL
1145 CRM_Core_DAO::executeQuery("SET FOREIGN_KEY_CHECKS = 0;");
1146 CRM_Core_DAO::executeQuery("ALTER TABLE `civicrm_sms_provider`
1147 ADD CONSTRAINT FK_civicrm_sms_provider_domain_id
1148 FOREIGN KEY (`domain_id`) REFERENCES `civicrm_domain`(`id`)
1149 ON DELETE SET NULL");
4eae8dda 1150
f5078cc0
SL
1151 CRM_Core_DAO::executeQuery("SET FOREIGN_KEY_CHECKS = 1;");
1152 }
4eae8dda
SL
1153 return TRUE;
1154 }
1155
ccfd6962
CW
1156 /**
1157 * CRM-16633 - Add activity type for Change Case Status
1158 *
1159 * @param \CRM_Queue_TaskContext $ctx
1160 *
1161 * @return bool
1162 */
1163 public static function addChangeCaseSubjectActivityType(CRM_Queue_TaskContext $ctx) {
1164 CRM_Core_BAO_OptionValue::ensureOptionValueExists(array(
1165 'option_group_id' => 'activity_type',
1166 'name' => 'Change Case Subject',
1167 'label' => ts('Change Case Subject'),
1168 'is_active' => TRUE,
1169 'component_id' => 'CiviCase',
1170 'icon' => 'fa-pencil-square-o',
1171 ));
1172 return TRUE;
1173 }
1174
6f0dad97
SL
1175 /**
1176 * CRM-19986 fix schema differnces in civicrm_action_schedule
1177 */
1178 public static function fixSchemaOnCiviCRMActionSchedule() {
27e82c24 1179 if (!parent::checkFKExists('civicrm_action_schedule', 'FK_civicrm_action_schedule_sms_template_id')) {
6f0dad97
SL
1180 CRM_Core_DAO::executeQuery("ALTER TABLE `civicrm_action_schedule`
1181 ADD CONSTRAINT FK_civicrm_action_schedule_sms_template_id
1182 FOREIGN KEY (`sms_template_id`) REFERENCES `civicrm_msg_template`(`id`)
1183 ON DELETE SET NULL");
1184 }
1185 CRM_Core_DAO::executeQuery("ALTER TABLE `civicrm_action_schedule`
1186 CHANGE `mapping_id` `mapping_id` varchar(64) COLLATE
1187 utf8_unicode_ci DEFAULT NULL COMMENT 'Name/ID of the mapping to use on this table'");
1188 return TRUE;
1189 }
1190
17511f38
TO
1191 /**
1192 * @return bool
1193 */
1194 protected function checkImageUploadDir() {
1195 $config = CRM_Core_Config::singleton();
1196 $check = new CRM_Utils_Check_Component_Security();
1197 return $config->imageUploadDir && $config->imageUploadURL && $check->isDirAccessible($config->imageUploadDir, $config->imageUploadURL);
1198 }
1199
6cc25669 1200}