MigrationHelper.php
11.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
<?php
/**
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Migrations\View\Helper;
use Cake\Utility\Hash;
use Cake\Utility\Inflector;
use Cake\View\Helper;
use Cake\View\View;
/**
* Migration Helper class for output of field data in migration files.
*
* MigrationHelper encloses all methods needed while working with HTML pages.
*/
class MigrationHelper extends Helper
{
/**
* Schemas list for tables analyzed during migration baking
*
* @var array
*/
protected $schemas = [];
/**
* Stores the ``$this->table()`` statements issued while baking.
* It helps prevent duplicate calls in case of complex conditions
*
* @var array
*/
public $tableStatements = [];
/**
* Constructor
*
* ### Settings
*
* - `collection` \Cake\Database\Schema\Collection
*
* @param \Cake\View\View $View The View this helper is being attached to.
* @param array $config Configuration settings for the helper.
*/
public function __construct(View $View, array $config = [])
{
parent::__construct($View, $config);
}
/**
* Returns the method to be used for the Table::save()
*
* @param string $action Name of action to take against the table
* @return string
*/
public function tableMethod($action)
{
if ($action === 'drop_table') {
return 'drop';
}
if ($action === 'create_table') {
return 'create';
}
return 'update';
}
/**
* Returns the method to be used for the index manipulation
*
* @param string $action Name of action to take against the table
* @return string
*/
public function indexMethod($action)
{
if ($action === 'drop_field') {
return 'removeIndex';
}
return 'addIndex';
}
/**
* Returns the method to be used for the column manipulation
*
* @param string $action Name of action to take against the table
* @return string
*/
public function columnMethod($action)
{
if ($action === 'drop_field') {
return 'removeColumn';
}
return 'addColumn';
}
/**
* Returns the Cake\Database\Schema\Table for $table
*
* @param string $table Name of the table to get the Schema for
* @return \Cake\Database\Schema\Table
*/
protected function schema($table)
{
if (isset($this->schemas[$table])) {
return $this->schemas[$table];
}
$collection = $this->config('collection');
$schema = $collection->describe($table);
$this->schemas[$table] = $schema;
return $schema;
}
/**
* Returns an array of column data for a given table
*
* @param string $table Name of the table to retrieve columns for
* @return array
*/
public function columns($table)
{
$tableSchema = $this->schema($table);
$columns = [];
$tablePrimaryKeys = $tableSchema->primaryKey();
foreach ($tableSchema->columns() as $column) {
if (in_array($column, $tablePrimaryKeys)) {
continue;
}
$columns[$column] = $this->column($tableSchema, $column);
}
return $columns;
}
/**
* Returns an array of indexes for a given table
*
* @param string $table Name of the table to retrieve indexes for
* @return array
*/
public function indexes($table)
{
$tableSchema = $this->schema($table);
$tableIndexes = $tableSchema->indexes();
$indexes = [];
if (!empty($tableIndexes)) {
foreach ($tableIndexes as $name) {
$indexes[$name] = $tableSchema->index($name);
}
}
return $indexes;
}
/**
* Returns an array of constraints for a given table
*
* @param string $table Name of the table to retrieve constraints for
* @return array
*/
public function constraints($table)
{
$tableSchema = $this->schema($table);
$constraints = [];
$tableConstraints = $tableSchema->constraints();
if (empty($tableConstraints)) {
return $constraints;
}
if ($tableConstraints[0] === 'primary') {
unset($tableConstraints[0]);
}
if (!empty($tableConstraints)) {
foreach ($tableConstraints as $name) {
$constraint = $tableSchema->constraint($name);
if (isset($constraint['update'])) {
$constraint['update'] = strtoupper(Inflector::underscore($constraint['update']));
$constraint['delete'] = strtoupper(Inflector::underscore($constraint['delete']));
}
$constraints[$name] = $constraint;
}
}
return $constraints;
}
/**
* Returns the primary key data for a given table
*
* @param string $table Name of the table ot retrieve primary key for
* @return array
*/
public function primaryKeys($table)
{
$collection = $this->config('collection');
$tableSchema = $collection->describe($table);
$primaryKeys = [];
$tablePrimaryKeys = $tableSchema->primaryKey();
foreach ($tableSchema->columns() as $column) {
if (in_array($column, $tablePrimaryKeys)) {
$primaryKeys[] = ['name' => $column, 'info' => $this->column($tableSchema, $column)];
}
}
return $primaryKeys;
}
/**
* Returns whether the $tables list given as arguments contains primary keys
* unsigned.
*
* @param array $tables List of tables to check
* @return bool
*/
public function hasUnsignedPrimaryKey($tables)
{
foreach ($tables as $table) {
$collection = $this->config('collection');
$tableSchema = $collection->describe($table);
$tablePrimaryKeys = $tableSchema->primaryKey();
foreach ($tablePrimaryKeys as $primaryKey) {
$column = $tableSchema->column($primaryKey);
if (isset($column['unsigned']) && $column['unsigned'] === true) {
return true;
}
}
}
return false;
}
/**
* Returns the primary key columns name for a given table
*
* @param string $table Name of the table ot retrieve primary key for
* @return array
*/
public function primaryKeysColumnsList($table)
{
$primaryKeys = $this->primaryKeys($table);
$primaryKeysColumns = Hash::extract($primaryKeys, '{n}.name');
sort($primaryKeysColumns);
return $primaryKeysColumns;
}
/**
* Returns an array of column data for a single column
*
* @param \Cake\Database\Schema\Table $tableSchema Name of the table to retrieve columns for
* @param string $column A column to retrieve data for
* @return array
*/
public function column($tableSchema, $column)
{
return [
'columnType' => $tableSchema->columnType($column),
'options' => $this->attributes($tableSchema->name(), $column),
];
}
/**
* Returns a string-like representation of a value
*
* @param string $value A value to represent as a string
* @return mixed
*/
public function value($value)
{
if ($value === null || $value === 'null' || $value === 'NULL') {
return 'null';
}
if ($value === 'true' || $value === 'false') {
return $value;
}
if (is_bool($value)) {
return $value ? 'true' : 'false';
}
if (is_numeric($value) || ctype_digit($value)) {
return (float)$value;
}
return sprintf("'%s'", addslashes($value));
}
/**
* Returns an array of attributes for a given table column
*
* @param string $table Name of the table to retrieve columns for
* @param string $column A column to retrieve attributes for
* @return array
*/
public function attributes($table, $column)
{
$collection = $this->config('collection');
$tableSchema = $collection->describe($table);
$validOptions = [
'length', 'limit',
'default', 'null',
'precision', 'scale',
'after', 'update',
'comment', 'unsigned',
'signed', 'properties',
'autoIncrement'
];
$attributes = [];
$options = $tableSchema->column($column);
foreach ($options as $_option => $value) {
$option = $_option;
switch ($_option) {
case 'length':
$option = 'limit';
break;
case 'unsigned':
$option = 'signed';
$value = (bool)!$value;
break;
case 'unique':
$value = (bool)$value;
break;
}
if (!in_array($option, $validOptions)) {
continue;
}
$attributes[$option] = $value;
}
ksort($attributes);
return $attributes;
}
/**
* Returns an array converted into a formatted multiline string
*
* @param array $list array of items to be stringified
* @param array $options options to use
* @return string
*/
public function stringifyList(array $list, array $options = [])
{
$options += [
'indent' => 2
];
if (!$list) {
return '';
}
ksort($list);
foreach ($list as $k => &$v) {
if (is_array($v)) {
$v = $this->stringifyList($v, [
'indent' => $options['indent'] + 1
]);
$v = sprintf('[%s]', $v);
} else {
$v = $this->value($v);
}
if (!is_numeric($k)) {
$v = "'$k' => $v";
}
}
$start = $end = '';
$join = ', ';
if ($options['indent']) {
$join = ',';
$start = "\n" . str_repeat(" ", $options['indent']);
$join .= $start;
$end = "\n" . str_repeat(" ", $options['indent'] - 1);
}
return $start . implode($join, $list) . ',' . $end;
}
/**
* Returns a $this->table() statement only if it was not issued already
*
* @param string $table Table for which the statement is needed
* @return string
*/
public function tableStatement($table)
{
if (!isset($this->tableStatements[$table])) {
$this->tableStatements[$table] = true;
return '$this->table(\'' . $table . '\')';
}
return '';
}
}