version fixes
[civicrm-core.git] / CRM / Core / BAO / SchemaHandler.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
6a488035
TO
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * This file contains functions for creating and altering CiviCRM-tables.
38 */
39
40/**
41 * structure, similar to what is used in GenCode.php
42 *
43 * $table = array(
353ffa53 44 * 'name' => TABLE_NAME,
6a488035
TO
45 * 'attributes' => ATTRIBUTES,
46 * 'fields' => array(
47 * array(
353ffa53 48 * 'name' => FIELD_NAME,
6a488035 49 * 'type' => FIELD_SQL_TYPE,
353ffa53 50 * // can be field, index, constraint
6a488035
TO
51 * 'class' => FIELD_CLASS_TYPE,
52 * 'primary' => BOOLEAN,
53 * 'required' => BOOLEAN,
4eeb9a5b 54 * 'searchable' => TRUE,
6a488035
TO
55 * 'fk_table_name' => FOREIGN_KEY_TABLE_NAME,
56 * 'fk_field_name' => FOREIGN_KEY_FIELD_NAME,
57 * 'comment' => COMMENT,
58 * 'default' => DEFAULT, )
59 * ...
60 * ) );
61 */
62class CRM_Core_BAO_SchemaHandler {
63
64 /**
c490a46a 65 * Create a CiviCRM-table
6a488035 66 *
c490a46a 67 * @param array $params
6a488035 68 *
72b3a70c
CW
69 * @return bool
70 * TRUE if successfully created, FALSE otherwise
6a488035 71 *
6a488035 72 */
00be9182 73 public static function createTable(&$params) {
6a488035
TO
74 $sql = self::buildTableSQL($params);
75 // do not i18n-rewrite
76 $dao = CRM_Core_DAO::executeQuery($sql, array(), TRUE, NULL, FALSE, FALSE);
77 $dao->free();
78
79 $config = CRM_Core_Config::singleton();
80 if ($config->logging) {
81 // logging support
8d7a9d07 82 $logging = new CRM_Logging_Schema();
e60f24eb 83 $logging->fixSchemaDifferencesFor($params['name'], NULL, FALSE);
6a488035
TO
84 }
85
86 // always do a trigger rebuild for this table
87 CRM_Core_DAO::triggerRebuild($params['name']);
88
89 return TRUE;
90 }
91
b5c2afd0 92 /**
c490a46a 93 * @param array $params
b5c2afd0
EM
94 *
95 * @return string
96 */
00be9182 97 public static function buildTableSQL(&$params) {
6a488035
TO
98 $sql = "CREATE TABLE {$params['name']} (";
99 if (isset($params['fields']) &&
100 is_array($params['fields'])
101 ) {
102 $separator = "\n";
103 $prefix = NULL;
104 foreach ($params['fields'] as $field) {
105 $sql .= self::buildFieldSQL($field, $separator, $prefix);
106 $separator = ",\n";
107 }
108 foreach ($params['fields'] as $field) {
109 $sql .= self::buildPrimaryKeySQL($field, $separator, $prefix);
110 }
111 foreach ($params['fields'] as $field) {
112 $sql .= self::buildSearchIndexSQL($field, $separator, $prefix);
113 }
114 if (isset($params['indexes'])) {
115 foreach ($params['indexes'] as $index) {
116 $sql .= self::buildIndexSQL($index, $separator, $prefix);
117 }
118 }
119 foreach ($params['fields'] as $field) {
120 $sql .= self::buildForeignKeySQL($field, $separator, $prefix, $params['name']);
121 }
122 }
123 $sql .= "\n) {$params['attributes']};";
124 return $sql;
125 }
126
b5c2afd0 127 /**
c490a46a 128 * @param array $params
b5c2afd0
EM
129 * @param $separator
130 * @param $prefix
131 *
132 * @return string
133 */
00be9182 134 public static function buildFieldSQL(&$params, $separator, $prefix) {
6a488035
TO
135 $sql = '';
136 $sql .= $separator;
137 $sql .= str_repeat(' ', 8);
138 $sql .= $prefix;
139 $sql .= "`{$params['name']}` {$params['type']}";
140
a7488080 141 if (!empty($params['required'])) {
6a488035
TO
142 $sql .= " NOT NULL";
143 }
144
a7488080 145 if (!empty($params['attributes'])) {
6a488035
TO
146 $sql .= " {$params['attributes']}";
147 }
148
a7488080 149 if (!empty($params['default']) &&
6a488035
TO
150 $params['type'] != 'text'
151 ) {
152 $sql .= " DEFAULT {$params['default']}";
153 }
154
a7488080 155 if (!empty($params['comment'])) {
6a488035
TO
156 $sql .= " COMMENT '{$params['comment']}'";
157 }
158
159 return $sql;
160 }
161
b5c2afd0 162 /**
c490a46a 163 * @param array $params
b5c2afd0
EM
164 * @param $separator
165 * @param $prefix
166 *
e60f24eb 167 * @return NULL|string
b5c2afd0 168 */
00be9182 169 public static function buildPrimaryKeySQL(&$params, $separator, $prefix) {
6a488035 170 $sql = NULL;
a7488080 171 if (!empty($params['primary'])) {
6a488035
TO
172 $sql .= $separator;
173 $sql .= str_repeat(' ', 8);
174 $sql .= $prefix;
175 $sql .= "PRIMARY KEY ( {$params['name']} )";
176 }
177 return $sql;
178 }
179
b5c2afd0 180 /**
c490a46a 181 * @param array $params
b5c2afd0
EM
182 * @param $separator
183 * @param $prefix
184 * @param bool $indexExist
185 *
e60f24eb 186 * @return NULL|string
b5c2afd0 187 */
00be9182 188 public static function buildSearchIndexSQL(&$params, $separator, $prefix, $indexExist = FALSE) {
6a488035
TO
189 $sql = NULL;
190
191 // dont index blob
192 if ($params['type'] == 'text') {
193 return $sql;
194 }
195
196 //create index only for searchable fields during ADD,
197 //create index only if field is become searchable during MODIFY,
198 //drop index only if field is no more searchable and index was exist.
a7488080 199 if (!empty($params['searchable']) && !$indexExist) {
6a488035
TO
200 $sql .= $separator;
201 $sql .= str_repeat(' ', 8);
202 $sql .= $prefix;
203 $sql .= "INDEX_{$params['name']} ( {$params['name']} )";
204 }
a7488080 205 elseif (empty($params['searchable']) && $indexExist) {
6a488035
TO
206 $sql .= $separator;
207 $sql .= str_repeat(' ', 8);
208 $sql .= "DROP INDEX INDEX_{$params['name']}";
209 }
210 return $sql;
211 }
212
b5c2afd0 213 /**
c490a46a 214 * @param array $params
b5c2afd0
EM
215 * @param $separator
216 * @param $prefix
217 *
218 * @return string
219 */
00be9182 220 public static function buildIndexSQL(&$params, $separator, $prefix) {
6a488035
TO
221 $sql = '';
222 $sql .= $separator;
223 $sql .= str_repeat(' ', 8);
224 if ($params['unique']) {
225 $sql .= 'UNIQUE INDEX';
226 $indexName = 'unique';
227 }
228 else {
229 $sql .= 'INDEX';
230 $indexName = 'index';
231 }
232 $indexFields = NULL;
233
234 foreach ($params as $name => $value) {
235 if (substr($name, 0, 11) == 'field_name_') {
236 $indexName .= "_{$value}";
237 $indexFields .= " $value,";
238 }
239 }
240 $indexFields = substr($indexFields, 0, -1);
241
242 $sql .= " $indexName ( $indexFields )";
243 return $sql;
244 }
245
b5c2afd0 246 /**
100fef9d
CW
247 * @param string $tableName
248 * @param string $fkTableName
b5c2afd0
EM
249 *
250 * @return bool
251 */
00be9182 252 public static function changeFKConstraint($tableName, $fkTableName) {
6a488035
TO
253 $fkName = "{$tableName}_entity_id";
254 if (strlen($fkName) >= 48) {
255 $fkName = substr($fkName, 0, 32) . "_" . substr(md5($fkName), 0, 16);
256 }
257 $dropFKSql = "
258ALTER TABLE {$tableName}
259 DROP FOREIGN KEY `FK_{$fkName}`;";
260
261 $dao = CRM_Core_DAO::executeQuery($dropFKSql);
262 $dao->free();
263
264 $addFKSql = "
265ALTER TABLE {$tableName}
266 ADD CONSTRAINT `FK_{$fkName}` FOREIGN KEY (`entity_id`) REFERENCES {$fkTableName} (`id`) ON DELETE CASCADE;";
267 // CRM-7007: do not i18n-rewrite this query
268 $dao = CRM_Core_DAO::executeQuery($addFKSql, array(), TRUE, NULL, FALSE, FALSE);
269 $dao->free();
270
271 return TRUE;
272 }
273
b5c2afd0 274 /**
c490a46a 275 * @param array $params
b5c2afd0
EM
276 * @param $separator
277 * @param $prefix
100fef9d 278 * @param string $tableName
b5c2afd0 279 *
e60f24eb 280 * @return NULL|string
b5c2afd0 281 */
00be9182 282 public static function buildForeignKeySQL(&$params, $separator, $prefix, $tableName) {
6a488035 283 $sql = NULL;
8cc574cf 284 if (!empty($params['fk_table_name']) && !empty($params['fk_field_name'])) {
6a488035
TO
285 $sql .= $separator;
286 $sql .= str_repeat(' ', 8);
287 $sql .= $prefix;
288 $fkName = "{$tableName}_{$params['name']}";
289 if (strlen($fkName) >= 48) {
290 $fkName = substr($fkName, 0, 32) . "_" . substr(md5($fkName), 0, 16);
291 }
292
293 $sql .= "CONSTRAINT FK_$fkName FOREIGN KEY ( `{$params['name']}` ) REFERENCES {$params['fk_table_name']} ( {$params['fk_field_name']} ) ";
294 $sql .= CRM_Utils_Array::value('fk_attributes', $params);
295 }
296 return $sql;
297 }
298
b5c2afd0 299 /**
c490a46a 300 * @param array $params
b5c2afd0
EM
301 * @param bool $indexExist
302 * @param bool $triggerRebuild
303 *
304 * @return bool
305 */
00be9182 306 public static function alterFieldSQL(&$params, $indexExist = FALSE, $triggerRebuild = TRUE) {
6a488035
TO
307 $sql = str_repeat(' ', 8);
308 $sql .= "ALTER TABLE {$params['table_name']}";
309
310 // lets suppress the required flag, since that can cause sql issue
311 $params['required'] = FALSE;
312
313 switch ($params['operation']) {
314 case 'add':
315 $separator = "\n";
316 $prefix = "ADD ";
317 $sql .= self::buildFieldSQL($params, $separator, "ADD COLUMN ");
318 $separator = ",\n";
319 $sql .= self::buildPrimaryKeySQL($params, $separator, "ADD PRIMARY KEY ");
320 $sql .= self::buildSearchIndexSQL($params, $separator, "ADD INDEX ");
321 $sql .= self::buildForeignKeySQL($params, $separator, "ADD ", $params['table_name']);
322 break;
323
324 case 'modify':
325 $separator = "\n";
326 $prefix = "MODIFY ";
327 $sql .= self::buildFieldSQL($params, $separator, $prefix);
328 $separator = ",\n";
329 $sql .= self::buildSearchIndexSQL($params, $separator, "ADD INDEX ", $indexExist);
330 break;
331
332 case 'delete':
333 $sql .= " DROP COLUMN `{$params['name']}`";
a7488080 334 if (!empty($params['primary'])) {
6a488035
TO
335 $sql .= ", DROP PRIMARY KEY";
336 }
a7488080 337 if (!empty($params['fk_table_name'])) {
6a488035
TO
338 $sql .= ", DROP FOREIGN KEY FK_{$params['fkName']}";
339 }
340 break;
341 }
342
343 // CRM-7007: do not i18n-rewrite this query
344 $dao = CRM_Core_DAO::executeQuery($sql, array(), TRUE, NULL, FALSE, FALSE);
345 $dao->free();
346
347 $config = CRM_Core_Config::singleton();
348 if ($config->logging) {
721a43a4
EM
349 // CRM-16717 not sure why this was originally limited to add.
350 // For example custom tables can have field length changes - which need to flow through to logging.
351 // Are there any modifies we DON'T was to call this function for (& shouldn't it be clever enough to cope?)
352 if ($params['operation'] == 'add' || $params['operation'] == 'modify') {
8d7a9d07 353 $logging = new CRM_Logging_Schema();
5bfc940e 354 $logging->fixSchemaDifferencesFor($params['table_name'], array(trim($prefix) => array($params['name'])), FALSE);
6a488035
TO
355 }
356 }
357
22e263ad 358 if ($triggerRebuild) {
6a488035
TO
359 CRM_Core_DAO::triggerRebuild($params['table_name']);
360 }
361
362 return TRUE;
363 }
364
365 /**
8d7a9d07 366 * Delete a CiviCRM-table
6a488035 367 *
d3e86119 368 * @param string $tableName
6a0b768e 369 * Name of the table to be created.
6a488035 370 */
00be9182 371 public static function dropTable($tableName) {
6a488035
TO
372 $sql = "DROP TABLE $tableName";
373 $dao = CRM_Core_DAO::executeQuery($sql);
374 }
375
b5c2afd0 376 /**
100fef9d
CW
377 * @param string $tableName
378 * @param string $columnName
b5c2afd0 379 */
00be9182 380 public static function dropColumn($tableName, $columnName) {
6a488035
TO
381 $sql = "ALTER TABLE $tableName DROP COLUMN $columnName";
382 $dao = CRM_Core_DAO::executeQuery($sql);
383 }
384
b5c2afd0 385 /**
100fef9d 386 * @param string $tableName
b5c2afd0
EM
387 * @param bool $dropUnique
388 */
00be9182 389 public static function changeUniqueToIndex($tableName, $dropUnique = TRUE) {
6a488035
TO
390 if ($dropUnique) {
391 $sql = "ALTER TABLE $tableName
392DROP INDEX `unique_entity_id` ,
393ADD INDEX `FK_{$tableName}_entity_id` ( `entity_id` )";
394 }
395 else {
396 $sql = " ALTER TABLE $tableName
397DROP INDEX `FK_{$tableName}_entity_id` ,
398ADD UNIQUE INDEX `unique_entity_id` ( `entity_id` )";
399 }
400 $dao = CRM_Core_DAO::executeQuery($sql);
401 }
402
b5c2afd0
EM
403 /**
404 * @param $tables
405 * @param string $createIndexPrefix
406 * @param array $substrLenghts
407 */
00be9182 408 public static function createIndexes(&$tables, $createIndexPrefix = 'index', $substrLenghts = array()) {
6a488035 409 $queries = array();
c490a46a 410 require_once 'CRM/Core/DAO/Domain.php';
8d7a9d07 411 $domain = new CRM_Core_DAO_Domain();
6a488035
TO
412 $domain->find(TRUE);
413 $locales = explode(CRM_Core_DAO::VALUE_SEPARATOR, $domain->locales);
414
415 // if we're multilingual, cache the information on internationalised fields
416 static $columns = NULL;
417 if (!CRM_Utils_System::isNull($locales) and $columns === NULL) {
418 $columns = CRM_Core_I18n_SchemaStructure::columns();
419 }
420
421 foreach ($tables as $table => $fields) {
422 $query = "SHOW INDEX FROM $table";
423 $dao = CRM_Core_DAO::executeQuery($query);
424
425 $currentIndexes = array();
426 while ($dao->fetch()) {
427 $currentIndexes[] = $dao->Key_name;
428 }
429
430 // now check for all fields if the index exists
431 foreach ($fields as $field) {
432 // handle indices over substrings, CRM-6245
433 // $lengthName is appended to index name, $lengthSize is the field size modifier
434 $lengthName = isset($substrLenghts[$table][$field]) ? "_{$substrLenghts[$table][$field]}" : '';
435 $lengthSize = isset($substrLenghts[$table][$field]) ? "({$substrLenghts[$table][$field]})" : '';
436
353ffa53
TO
437 $names = array(
438 "index_{$field}{$lengthName}",
439 "FK_{$table}_{$field}{$lengthName}",
440 "UI_{$field}{$lengthName}",
8d7a9d07 441 "{$createIndexPrefix}_{$field}{$lengthName}",
353ffa53 442 );
6a488035
TO
443
444 // skip to the next $field if one of the above $names exists; handle multilingual for CRM-4126
445 foreach ($names as $name) {
446 $regex = '/^' . preg_quote($name) . '(_[a-z][a-z]_[A-Z][A-Z])?$/';
447 if (preg_grep($regex, $currentIndexes)) {
448 continue 2;
449 }
450 }
451
452 // the index doesn't exist, so create it
453 // if we're multilingual and the field is internationalised, do it for every locale
454 if (!CRM_Utils_System::isNull($locales) and isset($columns[$table][$field])) {
455 foreach ($locales as $locale) {
456 $queries[] = "CREATE INDEX {$createIndexPrefix}_{$field}{$lengthName}_{$locale} ON {$table} ({$field}_{$locale}{$lengthSize})";
457 }
458 }
459 else {
460 $queries[] = "CREATE INDEX {$createIndexPrefix}_{$field}{$lengthName} ON {$table} ({$field}{$lengthSize})";
461 }
462 }
463 }
464
465 // run the queries without i18n-rewriting
8d7a9d07 466 $dao = new CRM_Core_DAO();
6a488035
TO
467 foreach ($queries as $query) {
468 $dao->query($query, FALSE);
469 }
470 }
471
b5c2afd0 472 /**
100fef9d
CW
473 * @param int $customFieldID
474 * @param string $tableName
475 * @param string $columnName
b5c2afd0
EM
476 * @param $length
477 *
478 * @throws Exception
479 */
00be9182 480 public static function alterFieldLength($customFieldID, $tableName, $columnName, $length) {
6a488035
TO
481 // first update the custom field tables
482 $sql = "
483UPDATE civicrm_custom_field
484SET text_length = %1
485WHERE id = %2
486";
6ea503d4
TO
487 $params = array(
488 1 => array($length, 'Integer'),
6a488035
TO
489 2 => array($customFieldID, 'Integer'),
490 );
491 CRM_Core_DAO::executeQuery($sql, $params);
492
493 $sql = "
494SELECT is_required, default_value
495FROM civicrm_custom_field
496WHERE id = %2
497";
498 $dao = CRM_Core_DAO::executeQuery($sql, $params);
499
500 if ($dao->fetch()) {
501 $clause = '';
502
503 if ($dao->is_required) {
504 $clause = " NOT NULL";
505 }
506
507 if (!empty($dao->default_value)) {
508 $clause .= " DEFAULT '{$dao->default_value}'";
509 }
510 // now modify the column
511 $sql = "
512ALTER TABLE {$tableName}
513MODIFY {$columnName} varchar( $length )
514 $clause
515";
516 CRM_Core_DAO::executeQuery($sql);
517 }
518 else {
519 CRM_Core_Error::fatal(ts('Could Not Find Custom Field Details for %1, %2, %3',
353ffa53
TO
520 array(
521 1 => $tableName,
522 2 => $columnName,
523 3 => $customFieldID,
524 )
525 ));
6a488035
TO
526 }
527 }
96025800 528
6a488035 529}