Merge pull request #2462 from NileemaJadhav/HR-253
[civicrm-core.git] / CRM / Core / BAO / SchemaHandler.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
232624b1 4 | CiviCRM version 4.4 |
6a488035
TO
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2013
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(
44 'name' => TABLE_NAME,
45 * 'attributes' => ATTRIBUTES,
46 * 'fields' => array(
47 * array(
48 'name' => FIELD_NAME,
49 * 'type' => FIELD_SQL_TYPE,
50 // can be field, index, constraint
51 * 'class' => FIELD_CLASS_TYPE,
52 * 'primary' => BOOLEAN,
53 * 'required' => BOOLEAN,
54 * 'searchable' => true,
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 /**
65 * Function for creating a civiCRM-table
66 *
67 * @param String $tableName name of the table to be created.
68 * @param Array $tableAttributes array containing atrributes for the table that needs to be created
69 *
70 * @return true if successfully created, false otherwise
71 *
72 * @static
73 * @access public
74 */
75 static function createTable(&$params) {
76 $sql = self::buildTableSQL($params);
77 // do not i18n-rewrite
78 $dao = CRM_Core_DAO::executeQuery($sql, array(), TRUE, NULL, FALSE, FALSE);
79 $dao->free();
80
81 $config = CRM_Core_Config::singleton();
82 if ($config->logging) {
83 // logging support
84 $logging = new CRM_Logging_Schema;
85 $logging->fixSchemaDifferencesFor($params['name'], null, FALSE);
86 }
87
88 // always do a trigger rebuild for this table
89 CRM_Core_DAO::triggerRebuild($params['name']);
90
91 return TRUE;
92 }
93
94 static function buildTableSQL(&$params) {
95 $sql = "CREATE TABLE {$params['name']} (";
96 if (isset($params['fields']) &&
97 is_array($params['fields'])
98 ) {
99 $separator = "\n";
100 $prefix = NULL;
101 foreach ($params['fields'] as $field) {
102 $sql .= self::buildFieldSQL($field, $separator, $prefix);
103 $separator = ",\n";
104 }
105 foreach ($params['fields'] as $field) {
106 $sql .= self::buildPrimaryKeySQL($field, $separator, $prefix);
107 }
108 foreach ($params['fields'] as $field) {
109 $sql .= self::buildSearchIndexSQL($field, $separator, $prefix);
110 }
111 if (isset($params['indexes'])) {
112 foreach ($params['indexes'] as $index) {
113 $sql .= self::buildIndexSQL($index, $separator, $prefix);
114 }
115 }
116 foreach ($params['fields'] as $field) {
117 $sql .= self::buildForeignKeySQL($field, $separator, $prefix, $params['name']);
118 }
119 }
120 $sql .= "\n) {$params['attributes']};";
121 return $sql;
122 }
123
124 static function buildFieldSQL(&$params, $separator, $prefix) {
125 $sql = '';
126 $sql .= $separator;
127 $sql .= str_repeat(' ', 8);
128 $sql .= $prefix;
129 $sql .= "`{$params['name']}` {$params['type']}";
130
131 if (CRM_Utils_Array::value('required', $params)) {
132 $sql .= " NOT NULL";
133 }
134
135 if (CRM_Utils_Array::value('attributes', $params)) {
136 $sql .= " {$params['attributes']}";
137 }
138
139 if (CRM_Utils_Array::value('default', $params) &&
140 $params['type'] != 'text'
141 ) {
142 $sql .= " DEFAULT {$params['default']}";
143 }
144
145 if (CRM_Utils_Array::value('comment', $params)) {
146 $sql .= " COMMENT '{$params['comment']}'";
147 }
148
149 return $sql;
150 }
151
152 static function buildPrimaryKeySQL(&$params, $separator, $prefix) {
153 $sql = NULL;
154 if (CRM_Utils_Array::value('primary', $params)) {
155 $sql .= $separator;
156 $sql .= str_repeat(' ', 8);
157 $sql .= $prefix;
158 $sql .= "PRIMARY KEY ( {$params['name']} )";
159 }
160 return $sql;
161 }
162
163 static function buildSearchIndexSQL(&$params, $separator, $prefix, $indexExist = FALSE) {
164 $sql = NULL;
165
166 // dont index blob
167 if ($params['type'] == 'text') {
168 return $sql;
169 }
170
171 //create index only for searchable fields during ADD,
172 //create index only if field is become searchable during MODIFY,
173 //drop index only if field is no more searchable and index was exist.
174 if (CRM_Utils_Array::value('searchable', $params) && !$indexExist) {
175 $sql .= $separator;
176 $sql .= str_repeat(' ', 8);
177 $sql .= $prefix;
178 $sql .= "INDEX_{$params['name']} ( {$params['name']} )";
179 }
180 elseif (!CRM_Utils_Array::value('searchable', $params) && $indexExist) {
181 $sql .= $separator;
182 $sql .= str_repeat(' ', 8);
183 $sql .= "DROP INDEX INDEX_{$params['name']}";
184 }
185 return $sql;
186 }
187
188 static function buildIndexSQL(&$params, $separator, $prefix) {
189 $sql = '';
190 $sql .= $separator;
191 $sql .= str_repeat(' ', 8);
192 if ($params['unique']) {
193 $sql .= 'UNIQUE INDEX';
194 $indexName = 'unique';
195 }
196 else {
197 $sql .= 'INDEX';
198 $indexName = 'index';
199 }
200 $indexFields = NULL;
201
202 foreach ($params as $name => $value) {
203 if (substr($name, 0, 11) == 'field_name_') {
204 $indexName .= "_{$value}";
205 $indexFields .= " $value,";
206 }
207 }
208 $indexFields = substr($indexFields, 0, -1);
209
210 $sql .= " $indexName ( $indexFields )";
211 return $sql;
212 }
213
214 static function changeFKConstraint($tableName, $fkTableName) {
215 $fkName = "{$tableName}_entity_id";
216 if (strlen($fkName) >= 48) {
217 $fkName = substr($fkName, 0, 32) . "_" . substr(md5($fkName), 0, 16);
218 }
219 $dropFKSql = "
220ALTER TABLE {$tableName}
221 DROP FOREIGN KEY `FK_{$fkName}`;";
222
223 $dao = CRM_Core_DAO::executeQuery($dropFKSql);
224 $dao->free();
225
226 $addFKSql = "
227ALTER TABLE {$tableName}
228 ADD CONSTRAINT `FK_{$fkName}` FOREIGN KEY (`entity_id`) REFERENCES {$fkTableName} (`id`) ON DELETE CASCADE;";
229 // CRM-7007: do not i18n-rewrite this query
230 $dao = CRM_Core_DAO::executeQuery($addFKSql, array(), TRUE, NULL, FALSE, FALSE);
231 $dao->free();
232
233 return TRUE;
234 }
235
236 static function buildForeignKeySQL(&$params, $separator, $prefix, $tableName) {
237 $sql = NULL;
238 if (CRM_Utils_Array::value('fk_table_name', $params) &&
239 CRM_Utils_Array::value('fk_field_name', $params)
240 ) {
241 $sql .= $separator;
242 $sql .= str_repeat(' ', 8);
243 $sql .= $prefix;
244 $fkName = "{$tableName}_{$params['name']}";
245 if (strlen($fkName) >= 48) {
246 $fkName = substr($fkName, 0, 32) . "_" . substr(md5($fkName), 0, 16);
247 }
248
249 $sql .= "CONSTRAINT FK_$fkName FOREIGN KEY ( `{$params['name']}` ) REFERENCES {$params['fk_table_name']} ( {$params['fk_field_name']} ) ";
250 $sql .= CRM_Utils_Array::value('fk_attributes', $params);
251 }
252 return $sql;
253 }
254
255 static function alterFieldSQL(&$params, $indexExist = FALSE, $triggerRebuild = TRUE) {
256 $sql = str_repeat(' ', 8);
257 $sql .= "ALTER TABLE {$params['table_name']}";
258
259 // lets suppress the required flag, since that can cause sql issue
260 $params['required'] = FALSE;
261
262 switch ($params['operation']) {
263 case 'add':
264 $separator = "\n";
265 $prefix = "ADD ";
266 $sql .= self::buildFieldSQL($params, $separator, "ADD COLUMN ");
267 $separator = ",\n";
268 $sql .= self::buildPrimaryKeySQL($params, $separator, "ADD PRIMARY KEY ");
269 $sql .= self::buildSearchIndexSQL($params, $separator, "ADD INDEX ");
270 $sql .= self::buildForeignKeySQL($params, $separator, "ADD ", $params['table_name']);
271 break;
272
273 case 'modify':
274 $separator = "\n";
275 $prefix = "MODIFY ";
276 $sql .= self::buildFieldSQL($params, $separator, $prefix);
277 $separator = ",\n";
278 $sql .= self::buildSearchIndexSQL($params, $separator, "ADD INDEX ", $indexExist);
279 break;
280
281 case 'delete':
282 $sql .= " DROP COLUMN `{$params['name']}`";
283 if (CRM_Utils_Array::value('primary', $params)) {
284 $sql .= ", DROP PRIMARY KEY";
285 }
286 if (CRM_Utils_Array::value('fk_table_name', $params)) {
287 $sql .= ", DROP FOREIGN KEY FK_{$params['fkName']}";
288 }
289 break;
290 }
291
292 // CRM-7007: do not i18n-rewrite this query
293 $dao = CRM_Core_DAO::executeQuery($sql, array(), TRUE, NULL, FALSE, FALSE);
294 $dao->free();
295
296 $config = CRM_Core_Config::singleton();
297 if ($config->logging) {
298 // logging support: if we’re adding a column (but only then!) make sure the potential relevant log table gets a column as well
299 if ($params['operation'] == 'add') {
300 $logging = new CRM_Logging_Schema;
12de149a 301 $logging->fixSchemaDifferencesFor($params['table_name'], array('ADD' => array($params['name'])), FALSE);
6a488035
TO
302 }
303 }
304
305 if($triggerRebuild) {
306 CRM_Core_DAO::triggerRebuild($params['table_name']);
307 }
308
309 return TRUE;
310 }
311
312 /**
313 * Function to delete a civiCRM-table
314 *
315 * @param String $tableName name of the table to be created.
316 *
317 * @return true if successfully deleted, false otherwise
318 *
319 * @static
320 * @access public
321 */
322 static function dropTable($tableName) {
323 $sql = "DROP TABLE $tableName";
324 $dao = CRM_Core_DAO::executeQuery($sql);
325 }
326
327 static function dropColumn($tableName, $columnName) {
328 $sql = "ALTER TABLE $tableName DROP COLUMN $columnName";
329 $dao = CRM_Core_DAO::executeQuery($sql);
330 }
331
332 static function changeUniqueToIndex($tableName, $dropUnique = TRUE) {
333 if ($dropUnique) {
334 $sql = "ALTER TABLE $tableName
335DROP INDEX `unique_entity_id` ,
336ADD INDEX `FK_{$tableName}_entity_id` ( `entity_id` )";
337 }
338 else {
339 $sql = " ALTER TABLE $tableName
340DROP INDEX `FK_{$tableName}_entity_id` ,
341ADD UNIQUE INDEX `unique_entity_id` ( `entity_id` )";
342 }
343 $dao = CRM_Core_DAO::executeQuery($sql);
344 }
345
346 static function createIndexes(&$tables, $createIndexPrefix = 'index', $substrLenghts = array(
347 )) {
348 $queries = array();
349
350 require_once 'CRM/Core/DAO/Domain.php';
351 $domain = new CRM_Core_DAO_Domain;
352 $domain->find(TRUE);
353 $locales = explode(CRM_Core_DAO::VALUE_SEPARATOR, $domain->locales);
354
355 // if we're multilingual, cache the information on internationalised fields
356 static $columns = NULL;
357 if (!CRM_Utils_System::isNull($locales) and $columns === NULL) {
358 $columns = CRM_Core_I18n_SchemaStructure::columns();
359 }
360
361 foreach ($tables as $table => $fields) {
362 $query = "SHOW INDEX FROM $table";
363 $dao = CRM_Core_DAO::executeQuery($query);
364
365 $currentIndexes = array();
366 while ($dao->fetch()) {
367 $currentIndexes[] = $dao->Key_name;
368 }
369
370 // now check for all fields if the index exists
371 foreach ($fields as $field) {
372 // handle indices over substrings, CRM-6245
373 // $lengthName is appended to index name, $lengthSize is the field size modifier
374 $lengthName = isset($substrLenghts[$table][$field]) ? "_{$substrLenghts[$table][$field]}" : '';
375 $lengthSize = isset($substrLenghts[$table][$field]) ? "({$substrLenghts[$table][$field]})" : '';
376
377 $names = array("index_{$field}{$lengthName}", "FK_{$table}_{$field}{$lengthName}", "UI_{$field}{$lengthName}", "{$createIndexPrefix}_{$field}{$lengthName}");
378
379 // skip to the next $field if one of the above $names exists; handle multilingual for CRM-4126
380 foreach ($names as $name) {
381 $regex = '/^' . preg_quote($name) . '(_[a-z][a-z]_[A-Z][A-Z])?$/';
382 if (preg_grep($regex, $currentIndexes)) {
383 continue 2;
384 }
385 }
386
387 // the index doesn't exist, so create it
388 // if we're multilingual and the field is internationalised, do it for every locale
389 if (!CRM_Utils_System::isNull($locales) and isset($columns[$table][$field])) {
390 foreach ($locales as $locale) {
391 $queries[] = "CREATE INDEX {$createIndexPrefix}_{$field}{$lengthName}_{$locale} ON {$table} ({$field}_{$locale}{$lengthSize})";
392 }
393 }
394 else {
395 $queries[] = "CREATE INDEX {$createIndexPrefix}_{$field}{$lengthName} ON {$table} ({$field}{$lengthSize})";
396 }
397 }
398 }
399
400 // run the queries without i18n-rewriting
401 $dao = new CRM_Core_DAO;
402 foreach ($queries as $query) {
403 $dao->query($query, FALSE);
404 }
405 }
406
407 static function alterFieldLength($customFieldID, $tableName, $columnName, $length) {
408 // first update the custom field tables
409 $sql = "
410UPDATE civicrm_custom_field
411SET text_length = %1
412WHERE id = %2
413";
414 $params = array(1 => array($length, 'Integer'),
415 2 => array($customFieldID, 'Integer'),
416 );
417 CRM_Core_DAO::executeQuery($sql, $params);
418
419 $sql = "
420SELECT is_required, default_value
421FROM civicrm_custom_field
422WHERE id = %2
423";
424 $dao = CRM_Core_DAO::executeQuery($sql, $params);
425
426 if ($dao->fetch()) {
427 $clause = '';
428
429 if ($dao->is_required) {
430 $clause = " NOT NULL";
431 }
432
433 if (!empty($dao->default_value)) {
434 $clause .= " DEFAULT '{$dao->default_value}'";
435 }
436 // now modify the column
437 $sql = "
438ALTER TABLE {$tableName}
439MODIFY {$columnName} varchar( $length )
440 $clause
441";
442 CRM_Core_DAO::executeQuery($sql);
443 }
444 else {
445 CRM_Core_Error::fatal(ts('Could Not Find Custom Field Details for %1, %2, %3',
446 array(
447 1 => $tableName,
448 2 => $columnName,
449 3 => $customFieldID
450 )
451 ));
452 }
453 }
454}
455