Merge pull request #17698 from agh1/checkwpbasepage
[civicrm-core.git] / CRM / Core / CodeGen / Specification.php
CommitLineData
5e434adf
ARW
1<?php
2
3/**
4 * Read the schema specification and parse into internal data structures
5 */
6class CRM_Core_CodeGen_Specification {
7 public $tables;
8 public $database;
9
10 protected $classNames;
11
12 /**
13 * Read and parse.
14 *
77b97be7 15 * @param $schemaPath
6a0b768e
TO
16 * @param string $buildVersion
17 * Which version of the schema to build.
518fa0ee 18 * @param bool $verbose
5e434adf 19 */
644ba48e 20 public function parse($schemaPath, $buildVersion, $verbose = TRUE) {
5e434adf
ARW
21 $this->buildVersion = $buildVersion;
22
644ba48e
TO
23 if ($verbose) {
24 echo "Parsing schema description " . $schemaPath . "\n";
25 }
5e434adf 26 $dbXML = CRM_Core_CodeGen_Util_Xml::parse($schemaPath);
5e434adf 27
644ba48e
TO
28 if ($verbose) {
29 echo "Extracting database information\n";
30 }
5e434adf 31 $this->database = &$this->getDatabase($dbXML);
5e434adf 32
be2fb01f 33 $this->classNames = [];
5e434adf 34
041ecc95 35 // TODO: peel DAO-specific stuff out of getTables, and spec reading into its own class
644ba48e
TO
36 if ($verbose) {
37 echo "Extracting table information\n";
38 }
5e434adf
ARW
39 $this->tables = $this->getTables($dbXML, $this->database);
40
41 $this->resolveForeignKeys($this->tables, $this->classNames);
42 $this->tables = $this->orderTables($this->tables);
43
44 // add archive tables here
481a74f4
TO
45 foreach ($this->tables as $name => $table) {
46 if ($table['archive'] == 'true') {
5e434adf
ARW
47 $name = 'archive_' . $table['name'];
48 $table['name'] = $name;
49 $table['archive'] = 'false';
481a74f4 50 if (isset($table['foreignKey'])) {
5e434adf
ARW
51 foreach ($table['foreignKey'] as $fkName => $fkValue) {
52 if ($this->tables[$fkValue['table']]['archive'] == 'true') {
53 $table['foreignKey'][$fkName]['table'] = 'archive_' . $table['foreignKey'][$fkName]['table'];
acb1052e
WA
54 $table['foreignKey'][$fkName]['uniqName']
55 = str_replace('FK_', 'FK_archive_', $table['foreignKey'][$fkName]['uniqName']);
5e434adf
ARW
56 }
57 }
58 $archiveTables[$name] = $table;
59 }
60 }
61 }
62 }
63
2558c2b0
EM
64 /**
65 * @param $dbXML
66 *
67 * @return array
68 */
00be9182 69 public function &getDatabase(&$dbXML) {
be2fb01f 70 $database = ['name' => trim((string ) $dbXML->name)];
5e434adf
ARW
71
72 $attributes = '';
73 $this->checkAndAppend($attributes, $dbXML, 'character_set', 'DEFAULT CHARACTER SET ', '');
74 $this->checkAndAppend($attributes, $dbXML, 'collate', 'COLLATE ', '');
75 $database['attributes'] = $attributes;
76
77 $tableAttributes_modern = $tableAttributes_simple = '';
78 $this->checkAndAppend($tableAttributes_modern, $dbXML, 'table_type', 'ENGINE=', '');
79 $this->checkAndAppend($tableAttributes_simple, $dbXML, 'table_type', 'TYPE=', '');
80 $database['tableAttributes_modern'] = trim($tableAttributes_modern . ' ' . $attributes);
81 $database['tableAttributes_simple'] = trim($tableAttributes_simple);
82
83 $database['comment'] = $this->value('comment', $dbXML, '');
84
85 return $database;
86 }
87
2558c2b0
EM
88 /**
89 * @param $dbXML
90 * @param $database
91 *
92 * @return array
93 */
00be9182 94 public function getTables($dbXML, &$database) {
be2fb01f 95 $tables = [];
5e434adf
ARW
96 foreach ($dbXML->tables as $tablesXML) {
97 foreach ($tablesXML->table as $tableXML) {
eb59d669 98 if ($this->value('drop', $tableXML, 0) > 0 && version_compare($this->value('drop', $tableXML, 0), $this->buildVersion, '<=')) {
5e434adf
ARW
99 continue;
100 }
101
eb59d669 102 if (version_compare($this->value('add', $tableXML, 0), $this->buildVersion, '<=')) {
5e434adf
ARW
103 $this->getTable($tableXML, $database, $tables);
104 }
105 }
106 }
107
108 return $tables;
109 }
110
2558c2b0
EM
111 /**
112 * @param $tables
100fef9d 113 * @param string $classNames
2558c2b0 114 */
00be9182 115 public function resolveForeignKeys(&$tables, &$classNames) {
5e434adf
ARW
116 foreach (array_keys($tables) as $name) {
117 $this->resolveForeignKey($tables, $classNames, $name);
118 }
119 }
120
2558c2b0
EM
121 /**
122 * @param $tables
100fef9d
CW
123 * @param string $classNames
124 * @param string $name
2558c2b0 125 */
00be9182 126 public function resolveForeignKey(&$tables, &$classNames, $name) {
5e434adf
ARW
127 if (!array_key_exists('foreignKey', $tables[$name])) {
128 return;
129 }
130
131 foreach (array_keys($tables[$name]['foreignKey']) as $fkey) {
132 $ftable = $tables[$name]['foreignKey'][$fkey]['table'];
133 if (!array_key_exists($ftable, $classNames)) {
134 echo "$ftable is not a valid foreign key table in $name\n";
135 continue;
136 }
137 $tables[$name]['foreignKey'][$fkey]['className'] = $classNames[$ftable];
138 $tables[$name]['foreignKey'][$fkey]['fileName'] = str_replace('_', '/', $classNames[$ftable]) . '.php';
139 $tables[$name]['fields'][$fkey]['FKClassName'] = $classNames[$ftable];
140 }
141 }
142
2558c2b0
EM
143 /**
144 * @param $tables
145 *
146 * @return array
147 */
00be9182 148 public function orderTables(&$tables) {
be2fb01f 149 $ordered = [];
5e434adf
ARW
150
151 while (!empty($tables)) {
152 foreach (array_keys($tables) as $name) {
153 if ($this->validTable($tables, $ordered, $name)) {
154 $ordered[$name] = $tables[$name];
155 unset($tables[$name]);
156 }
157 }
158 }
159 return $ordered;
160 }
161
2558c2b0
EM
162 /**
163 * @param $tables
100fef9d
CW
164 * @param int $valid
165 * @param string $name
2558c2b0
EM
166 *
167 * @return bool
168 */
00be9182 169 public function validTable(&$tables, &$valid, $name) {
5e434adf
ARW
170 if (!array_key_exists('foreignKey', $tables[$name])) {
171 return TRUE;
172 }
173
174 foreach (array_keys($tables[$name]['foreignKey']) as $fkey) {
175 $ftable = $tables[$name]['foreignKey'][$fkey]['table'];
176 if (!array_key_exists($ftable, $valid) && $ftable !== $name) {
177 return FALSE;
178 }
179 }
180 return TRUE;
181 }
182
2558c2b0
EM
183 /**
184 * @param $tableXML
185 * @param $database
186 * @param $tables
187 */
00be9182 188 public function getTable($tableXML, &$database, &$tables) {
5e434adf
ARW
189 $name = trim((string ) $tableXML->name);
190 $klass = trim((string ) $tableXML->class);
191 $base = $this->value('base', $tableXML);
192 $sourceFile = "xml/schema/{$base}/{$klass}.xml";
193 $daoPath = "{$base}/DAO/";
3cef3c00 194 $baoPath = __DIR__ . '/../../../' . str_replace(' ', '', "{$base}/BAO/");
5e434adf
ARW
195 $pre = str_replace('/', '_', $daoPath);
196 $this->classNames[$name] = $pre . $klass;
197
198 $localizable = FALSE;
199 foreach ($tableXML->field as $fieldXML) {
200 if ($fieldXML->localizable) {
201 $localizable = TRUE;
202 break;
203 }
204 }
205
be2fb01f 206 $table = [
5e434adf
ARW
207 'name' => $name,
208 'base' => $daoPath,
209 'sourceFile' => $sourceFile,
210 'fileName' => $klass . '.php',
211 'objectName' => $klass,
449c4e6b
CW
212 'title' => $tableXML->title ?? self::nameToTitle($klass),
213 'icon' => $tableXML->icon ?? NULL,
5e434adf
ARW
214 'labelName' => substr($name, 8),
215 'className' => $this->classNames[$name],
3cef3c00 216 'bao' => (file_exists($baoPath . $klass . '.php') ? str_replace('DAO', 'BAO', $this->classNames[$name]) : $this->classNames[$name]),
217 'entity' => $klass,
5e434adf
ARW
218 'attributes_simple' => trim($database['tableAttributes_simple']),
219 'attributes_modern' => trim($database['tableAttributes_modern']),
220 'comment' => $this->value('comment', $tableXML),
221 'localizable' => $localizable,
222 'log' => $this->value('log', $tableXML, 'false'),
223 'archive' => $this->value('archive', $tableXML, 'false'),
be2fb01f 224 ];
5e434adf 225
be2fb01f 226 $fields = [];
5e434adf 227 foreach ($tableXML->field as $fieldXML) {
eb59d669 228 if ($this->value('drop', $fieldXML, 0) > 0 && version_compare($this->value('drop', $fieldXML, 0), $this->buildVersion, '<=')) {
5e434adf
ARW
229 continue;
230 }
231
eb59d669 232 if (version_compare($this->value('add', $fieldXML, 0), $this->buildVersion, '<=')) {
5e434adf
ARW
233 $this->getField($fieldXML, $fields);
234 }
235 }
236
237 $table['fields'] = &$fields;
5e434adf
ARW
238
239 if ($this->value('primaryKey', $tableXML)) {
240 $this->getPrimaryKey($tableXML->primaryKey, $fields, $table);
241 }
242
5e434adf 243 if ($this->value('index', $tableXML)) {
be2fb01f 244 $index = [];
5e434adf 245 foreach ($tableXML->index as $indexXML) {
eb59d669 246 if ($this->value('drop', $indexXML, 0) > 0 && version_compare($this->value('drop', $indexXML, 0), $this->buildVersion, '<=')) {
5e434adf
ARW
247 continue;
248 }
249
250 $this->getIndex($indexXML, $fields, $index);
251 }
6b86d84f 252 CRM_Core_BAO_SchemaHandler::addIndexSignature($name, $index);
5e434adf
ARW
253 $table['index'] = &$index;
254 }
255
256 if ($this->value('foreignKey', $tableXML)) {
be2fb01f 257 $foreign = [];
5e434adf 258 foreach ($tableXML->foreignKey as $foreignXML) {
5e434adf 259
eb59d669 260 if ($this->value('drop', $foreignXML, 0) > 0 && version_compare($this->value('drop', $foreignXML, 0), $this->buildVersion, '<=')) {
5e434adf
ARW
261 continue;
262 }
eb59d669 263 if (version_compare($this->value('add', $foreignXML, 0), $this->buildVersion, '<=')) {
5e434adf
ARW
264 $this->getForeignKey($foreignXML, $fields, $foreign, $name);
265 }
266 }
267 $table['foreignKey'] = &$foreign;
268 }
269
270 if ($this->value('dynamicForeignKey', $tableXML)) {
be2fb01f 271 $dynamicForeign = [];
5e434adf 272 foreach ($tableXML->dynamicForeignKey as $foreignXML) {
eb59d669 273 if ($this->value('drop', $foreignXML, 0) > 0 && version_compare($this->value('drop', $foreignXML, 0), $this->buildVersion, '<=')) {
5e434adf
ARW
274 continue;
275 }
eb59d669 276 if (version_compare($this->value('add', $foreignXML, 0), $this->buildVersion, '<=')) {
5e434adf
ARW
277 $this->getDynamicForeignKey($foreignXML, $dynamicForeign, $name);
278 }
279 }
280 $table['dynamicForeignKey'] = $dynamicForeign;
281 }
282
283 $tables[$name] = &$table;
5e434adf
ARW
284 }
285
2558c2b0
EM
286 /**
287 * @param $fieldXML
288 * @param $fields
289 */
00be9182 290 public function getField(&$fieldXML, &$fields) {
353ffa53 291 $name = trim((string ) $fieldXML->name);
be2fb01f 292 $field = ['name' => $name, 'localizable' => ((bool) $fieldXML->localizable) ? 1 : 0];
353ffa53 293 $type = (string ) $fieldXML->type;
5e434adf
ARW
294 switch ($type) {
295 case 'varchar':
296 case 'char':
297 $field['length'] = (int) $fieldXML->length;
298 $field['sqlType'] = "$type({$field['length']})";
299 $field['phpType'] = 'string';
300 $field['crmType'] = 'CRM_Utils_Type::T_STRING';
301 $field['size'] = $this->getSize($fieldXML);
302 break;
303
5e434adf
ARW
304 case 'text':
305 $field['sqlType'] = $field['phpType'] = $type;
306 $field['crmType'] = 'CRM_Utils_Type::T_' . strtoupper($type);
5e545f38
CW
307 // CRM-13497 see fixme below
308 $field['rows'] = isset($fieldXML->html) ? $this->value('rows', $fieldXML->html) : NULL;
309 $field['cols'] = isset($fieldXML->html) ? $this->value('cols', $fieldXML->html) : NULL;
310 break;
2aa397bc 311
acb1052e 312 break;
5e434adf
ARW
313
314 case 'datetime':
315 $field['sqlType'] = $field['phpType'] = $type;
316 $field['crmType'] = 'CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME';
317 break;
318
319 case 'boolean':
320 // need this case since some versions of mysql do not have boolean as a valid column type and hence it
321 // is changed to tinyint. hopefully after 2 yrs this case can be removed.
322 $field['sqlType'] = 'tinyint';
a296e35e 323 $field['phpType'] = 'bool';
5e434adf
ARW
324 $field['crmType'] = 'CRM_Utils_Type::T_' . strtoupper($type);
325 break;
326
327 case 'decimal':
328 $length = $fieldXML->length ? $fieldXML->length : '20,2';
329 $field['sqlType'] = 'decimal(' . $length . ')';
330 $field['phpType'] = 'float';
331 $field['crmType'] = 'CRM_Utils_Type::T_MONEY';
fb607354 332 $field['precision'] = $length . ',';
5e434adf
ARW
333 break;
334
335 case 'float':
336 $field['sqlType'] = 'double';
337 $field['phpType'] = 'float';
338 $field['crmType'] = 'CRM_Utils_Type::T_FLOAT';
339 break;
340
341 default:
3ab3ff17
SL
342 $field['phpType'] = $this->value('phpType', $fieldXML, $type);
343 $field['sqlType'] = $type;
e0674c37 344 if ($type == 'int unsigned' || $type == 'tinyint') {
a296e35e 345 $field['phpType'] = 'int';
5e434adf
ARW
346 $field['crmType'] = 'CRM_Utils_Type::T_INT';
347 }
348 else {
3ab3ff17 349 $field['crmType'] = $this->value('crmType', $fieldXML, 'CRM_Utils_Type::T_' . strtoupper($type));
5e434adf
ARW
350 }
351 break;
352 }
353
354 $field['required'] = $this->value('required', $fieldXML);
353ffa53
TO
355 $field['collate'] = $this->value('collate', $fieldXML);
356 $field['comment'] = $this->value('comment', $fieldXML);
357 $field['default'] = $this->value('default', $fieldXML);
358 $field['import'] = $this->value('import', $fieldXML);
5e434adf
ARW
359 if ($this->value('export', $fieldXML)) {
360 $field['export'] = $this->value('export', $fieldXML);
361 }
362 else {
363 $field['export'] = $this->value('import', $fieldXML);
364 }
365 $field['rule'] = $this->value('rule', $fieldXML);
366 $field['title'] = $this->value('title', $fieldXML);
367 if (!$field['title']) {
368 $field['title'] = $this->composeTitle($name);
369 }
370 $field['headerPattern'] = $this->value('headerPattern', $fieldXML);
371 $field['dataPattern'] = $this->value('dataPattern', $fieldXML);
372 $field['uniqueName'] = $this->value('uniqueName', $fieldXML);
74db51d3 373 $field['uniqueTitle'] = $this->value('uniqueTitle', $fieldXML);
2a5c9b4d 374 $field['serialize'] = $this->value('serialize', $fieldXML);
5e545f38 375 $field['html'] = $this->value('html', $fieldXML);
f5c0f096 376 $field['contactType'] = $this->value('contactType', $fieldXML);
1713a0ec
CW
377 if (isset($fieldXML->permission)) {
378 $field['permission'] = trim($this->value('permission', $fieldXML));
379 $field['permission'] = $field['permission'] ? array_filter(array_map('trim', explode(',', $field['permission']))) : [];
380 if (isset($fieldXML->permission->or)) {
381 $field['permission'][] = array_filter(array_map('trim', explode(',', $fieldXML->permission->or)));
382 }
383 }
5e545f38 384 if (!empty($field['html'])) {
be2fb01f 385 $validOptions = [
5e545f38 386 'type',
24317d89 387 'formatType',
80a96508 388 'label',
8ada2bfd 389 'controlField',
5e545f38
CW
390 /* Fixme: prior to CRM-13497 these were in a flat structure
391 // CRM-13497 moved them to be nested within 'html' but there's no point
392 // making that change in the DAOs right now since we are in the process of
393 // moving to docrtine anyway.
394 // So translating from nested xml back to flat structure for now.
395 'rows',
396 'cols',
397 'size', */
be2fb01f
CW
398 ];
399 $field['html'] = [];
5e545f38 400 foreach ($validOptions as $htmlOption) {
9b873358 401 if (!empty($fieldXML->html->$htmlOption)) {
5e545f38
CW
402 $field['html'][$htmlOption] = $this->value($htmlOption, $fieldXML->html);
403 }
404 }
405 }
313df5ee
SV
406
407 // in multilingual context popup, we need extra information to create appropriate widget
408 if ($fieldXML->localizable) {
409 if (isset($fieldXML->html)) {
410 $field['widget'] = (array) $fieldXML->html;
411 }
412 else {
413 // default
be2fb01f 414 $field['widget'] = ['type' => 'Text'];
313df5ee
SV
415 }
416 if (isset($fieldXML->required)) {
417 $field['widget']['required'] = $this->value('required', $fieldXML);
418 }
419 }
65c86f7d 420 if (isset($fieldXML->localize_context)) {
421 $field['localize_context'] = $fieldXML->localize_context;
422 }
a9d0587b 423 $field['add'] = $this->value('add', $fieldXML);
5e434adf 424 $field['pseudoconstant'] = $this->value('pseudoconstant', $fieldXML);
9b873358 425 if (!empty($field['pseudoconstant'])) {
5e434adf 426 //ok this is a bit long-winded but it gets there & is consistent with above approach
be2fb01f
CW
427 $field['pseudoconstant'] = [];
428 $validOptions = [
5e434adf
ARW
429 // Fields can specify EITHER optionGroupName OR table, not both
430 // (since declaring optionGroupName means we are using the civicrm_option_value table)
431 'optionGroupName',
432 'table',
433 // If table is specified, keyColumn and labelColumn are also required
434 'keyColumn',
435 'labelColumn',
436 // Non-translated machine name for programmatic lookup. Defaults to 'name' if that column exists
437 'nameColumn',
a8fdb24e
CW
438 // Column to fetch in "abbreviate" context
439 'abbrColumn',
76c1631a 440 // Where clause snippet (will be joined to the rest of the query with AND operator)
5e434adf 441 'condition',
b44e3f84 442 // callback function incase of static arrays
cc6443c4 443 'callback',
14f42e31
CW
444 // Path to options edit form
445 'optionEditPath',
be2fb01f 446 ];
5e434adf 447 foreach ($validOptions as $pseudoOption) {
9b873358 448 if (!empty($fieldXML->pseudoconstant->$pseudoOption)) {
5e434adf
ARW
449 $field['pseudoconstant'][$pseudoOption] = $this->value($pseudoOption, $fieldXML->pseudoconstant);
450 }
451 }
14f42e31
CW
452 if (!isset($field['pseudoconstant']['optionEditPath']) && !empty($field['pseudoconstant']['optionGroupName'])) {
453 $field['pseudoconstant']['optionEditPath'] = 'civicrm/admin/options/' . $field['pseudoconstant']['optionGroupName'];
454 }
5e434adf
ARW
455 // For now, fields that have option lists that are not in the db can simply
456 // declare an empty pseudoconstant tag and we'll add this placeholder.
457 // That field's BAO::buildOptions fn will need to be responsible for generating the option list
458 if (empty($field['pseudoconstant'])) {
459 $field['pseudoconstant'] = 'not in database';
460 }
461 }
462 $fields[$name] = &$field;
463 }
464
2558c2b0 465 /**
100fef9d 466 * @param string $name
2558c2b0
EM
467 *
468 * @return string
469 */
00be9182 470 public function composeTitle($name) {
5e434adf
ARW
471 $names = explode('_', strtolower($name));
472 $title = '';
473 for ($i = 0; $i < count($names); $i++) {
474 if ($names[$i] === 'id' || $names[$i] === 'is') {
475 // id's do not get titles
476 return NULL;
477 }
478
479 if ($names[$i] === 'im') {
480 $names[$i] = 'IM';
481 }
482 else {
483 $names[$i] = ucfirst(trim($names[$i]));
484 }
485
486 $title = $title . ' ' . $names[$i];
487 }
488 return trim($title);
489 }
490
2558c2b0 491 /**
21ca2cb6 492 * @param object $primaryXML
493 * @param array $fields
494 * @param array $table
2558c2b0 495 */
00be9182 496 public function getPrimaryKey(&$primaryXML, &$fields, &$table) {
5e434adf
ARW
497 $name = trim((string ) $primaryXML->name);
498
5e434adf
ARW
499 // set the autoincrement property of the field
500 $auto = $this->value('autoincrement', $primaryXML);
022785d8
JJ
501 if (isset($fields[$name])) {
502 $fields[$name]['autoincrement'] = $auto;
503 }
5e434adf 504 $fields[$name]['autoincrement'] = $auto;
be2fb01f 505 $primaryKey = [
5e434adf
ARW
506 'name' => $name,
507 'autoincrement' => $auto,
be2fb01f 508 ];
022785d8
JJ
509
510 // populate fields
511 foreach ($primaryXML->fieldName as $v) {
512 $fieldName = (string) ($v);
513 $length = (string) ($v['length']);
514 if (strlen($length) > 0) {
515 $fieldName = "$fieldName($length)";
516 }
517 $primaryKey['field'][] = $fieldName;
518 }
519
520 // when field array is empty set it to the name of the primary key.
521 if (empty($primaryKey['field'])) {
522 $primaryKey['field'][] = $name;
523 }
524
525 // all fieldnames have to be defined and should exist in schema.
526 foreach ($primaryKey['field'] as $fieldName) {
527 if (!$fieldName) {
528 echo "Invalid field defination for index $name\n";
529 return;
530 }
531 $parenOffset = strpos($fieldName, '(');
532 if ($parenOffset > 0) {
533 $fieldName = substr($fieldName, 0, $parenOffset);
534 }
535 if (!array_key_exists($fieldName, $fields)) {
536 echo "Table does not contain $fieldName\n";
537 print_r($fields);
538 exit();
539 }
540 }
541
5e434adf
ARW
542 $table['primaryKey'] = &$primaryKey;
543 }
544
2558c2b0
EM
545 /**
546 * @param $indexXML
547 * @param $fields
548 * @param $indices
549 */
00be9182 550 public function getIndex(&$indexXML, &$fields, &$indices) {
5e434adf
ARW
551 //echo "\n\n*******************************************************\n";
552 //echo "entering getIndex\n";
553
be2fb01f 554 $index = [];
5e434adf 555 // empty index name is fine
353ffa53
TO
556 $indexName = trim((string) $indexXML->name);
557 $index['name'] = $indexName;
be2fb01f 558 $index['field'] = [];
5e434adf
ARW
559
560 // populate fields
561 foreach ($indexXML->fieldName as $v) {
2aa397bc
TO
562 $fieldName = (string) ($v);
563 $length = (string) ($v['length']);
5e434adf
ARW
564 if (strlen($length) > 0) {
565 $fieldName = "$fieldName($length)";
566 }
567 $index['field'][] = $fieldName;
568 }
569
570 $index['localizable'] = FALSE;
571 foreach ($index['field'] as $fieldName) {
572 if (isset($fields[$fieldName]) and $fields[$fieldName]['localizable']) {
573 $index['localizable'] = TRUE;
574 break;
575 }
576 }
577
578 // check for unique index
579 if ($this->value('unique', $indexXML)) {
580 $index['unique'] = TRUE;
581 }
582
5e434adf
ARW
583 // field array cannot be empty
584 if (empty($index['field'])) {
585 echo "No fields defined for index $indexName\n";
586 return;
587 }
588
589 // all fieldnames have to be defined and should exist in schema.
590 foreach ($index['field'] as $fieldName) {
591 if (!$fieldName) {
592 echo "Invalid field defination for index $indexName\n";
593 return;
594 }
595 $parenOffset = strpos($fieldName, '(');
596 if ($parenOffset > 0) {
597 $fieldName = substr($fieldName, 0, $parenOffset);
598 }
599 if (!array_key_exists($fieldName, $fields)) {
600 echo "Table does not contain $fieldName\n";
601 print_r($fields);
602 exit();
603 }
604 }
605 $indices[$indexName] = &$index;
606 }
607
2558c2b0
EM
608 /**
609 * @param $foreignXML
610 * @param $fields
611 * @param $foreignKeys
100fef9d 612 * @param string $currentTableName
2558c2b0 613 */
00be9182 614 public function getForeignKey(&$foreignXML, &$fields, &$foreignKeys, &$currentTableName) {
5e434adf
ARW
615 $name = trim((string ) $foreignXML->name);
616
617 /** need to make sure there is a field of type name */
618 if (!array_key_exists($name, $fields)) {
2aa397bc 619 echo "foreign $name in $currentTableName does not have a field definition, ignoring\n";
5e434adf
ARW
620 return;
621 }
622
623 /** need to check for existence of table and key **/
624 $table = trim($this->value('table', $foreignXML));
be2fb01f 625 $foreignKey = [
5e434adf
ARW
626 'name' => $name,
627 'table' => $table,
628 'uniqName' => "FK_{$currentTableName}_{$name}",
629 'key' => trim($this->value('key', $foreignXML)),
630 'import' => $this->value('import', $foreignXML, FALSE),
631 'export' => $this->value('import', $foreignXML, FALSE),
b44e3f84 632 // we do this matching in a separate phase (resolveForeignKeys)
5e434adf
ARW
633 'className' => NULL,
634 'onDelete' => $this->value('onDelete', $foreignXML, FALSE),
be2fb01f 635 ];
5e434adf
ARW
636 $foreignKeys[$name] = &$foreignKey;
637 }
638
2558c2b0
EM
639 /**
640 * @param $foreignXML
641 * @param $dynamicForeignKeys
642 */
00be9182 643 public function getDynamicForeignKey(&$foreignXML, &$dynamicForeignKeys) {
be2fb01f 644 $foreignKey = [
5e434adf
ARW
645 'idColumn' => trim($foreignXML->idColumn),
646 'typeColumn' => trim($foreignXML->typeColumn),
647 'key' => trim($this->value('key', $foreignXML)),
be2fb01f 648 ];
5e434adf
ARW
649 $dynamicForeignKeys[] = $foreignKey;
650 }
651
2558c2b0
EM
652 /**
653 * @param $key
654 * @param $object
655 * @param null $default
656 *
657 * @return null|string
658 */
5e434adf
ARW
659 protected function value($key, &$object, $default = NULL) {
660 if (isset($object->$key)) {
661 return (string ) $object->$key;
662 }
663 return $default;
664 }
665
2558c2b0
EM
666 /**
667 * @param $attributes
668 * @param $object
100fef9d 669 * @param string $name
2558c2b0
EM
670 * @param null $pre
671 * @param null $post
672 */
5e434adf
ARW
673 protected function checkAndAppend(&$attributes, &$object, $name, $pre = NULL, $post = NULL) {
674 if (!isset($object->$name)) {
675 return;
676 }
677
678 $value = $pre . trim($object->$name) . $post;
679 $this->append($attributes, ' ', trim($value));
680 }
681
2558c2b0
EM
682 /**
683 * @param $str
684 * @param $delim
685 * @param $name
686 */
5e434adf
ARW
687 protected function append(&$str, $delim, $name) {
688 if (empty($name)) {
689 return;
690 }
691
692 if (is_array($name)) {
693 foreach ($name as $n) {
694 if (empty($n)) {
695 continue;
696 }
697 if (empty($str)) {
698 $str = $n;
699 }
700 else {
701 $str .= $delim . $n;
702 }
703 }
704 }
705 else {
706 if (empty($str)) {
707 $str = $name;
708 }
709 else {
710 $str .= $delim . $name;
711 }
712 }
713 }
714
715 /**
fe482240 716 * Sets the size property of a textfield.
ea3ddccf 717 *
718 * @param string $fieldXML
719 *
720 * @return null|string
5e434adf
ARW
721 */
722 protected function getSize($fieldXML) {
723 // Extract from <size> tag if supplied
5e545f38 724 if (!empty($fieldXML->html) && $this->value('size', $fieldXML->html)) {
54f5e87f 725 return $this->value('size', $fieldXML->html);
5e434adf
ARW
726 }
727 // Infer from <length> tag if <size> was not explicitly set or was invalid
f53213b2
TM
728 // This map is slightly different from CRM_Core_Form_Renderer::$_sizeMapper
729 // Because we usually want fields to render as smaller than their maxlength
be2fb01f 730 $sizes = [
f53213b2
TM
731 2 => 'TWO',
732 4 => 'FOUR',
733 6 => 'SIX',
734 8 => 'EIGHT',
735 16 => 'TWELVE',
736 32 => 'MEDIUM',
737 64 => 'BIG',
be2fb01f 738 ];
f53213b2
TM
739 foreach ($sizes as $length => $name) {
740 if ($fieldXML->length <= $length) {
741 return "CRM_Utils_Type::$name";
742 }
743 }
744 return 'CRM_Utils_Type::HUGE';
5e434adf 745 }
96025800 746
449c4e6b
CW
747 /**
748 * Converts an entity name to a user friendly string.
749 *
750 * @param string $name
751 * return string
752 */
753 public static function nameToTitle(string $name) {
754 $name = preg_replace('/([a-z])([A-Z])/', '$1 $2', $name);
755 return CRM_Utils_String::pluralize($name);
756 }
757
5e434adf 758}