-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathDataIntegrity.php
328 lines (285 loc) · 10.7 KB
/
DataIntegrity.php
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
<?php
namespace Vimeo\MysqlEngine;
final class DataIntegrity
{
/**
* @return mixed
*/
protected static function getDefaultValueForColumn(
FakePdoInterface $conn,
string $php_type,
bool $nullable,
?string $default,
?string $column_name = null,
?string $database_name = null,
?string $table_name = null,
bool $auto_increment = false
) {
if ($default !== null) {
if ($default === 'CURRENT_TIMESTAMP') {
$default = \date('Y-m-d H:i:s', time());
}
switch ($php_type) {
case 'int':
return (int) $default;
case 'float':
return (float) $default;
default:
return $default;
}
}
if ($nullable) {
return null;
}
if ($auto_increment && $column_name && $database_name && $table_name) {
return $conn->getServer()->getNextAutoIncrementValue($database_name, $table_name, $column_name);
}
switch ($php_type) {
case 'int':
return 0;
case 'float':
return 0.0;
default:
return '';
}
}
/**
* @param array<string, mixed> $row
*
* @return array<string, mixed>
*/
public static function ensureColumnsPresent(
FakePdoInterface $conn,
array $row,
Schema\TableDefinition $table_definition
) {
foreach ($table_definition->columns as $column_name => $column) {
$php_type = $column->getPhpType();
$column_nullable = $column->isNullable();
$column_default = $column instanceof Schema\Column\Defaultable ? $column->getDefault() : null;
if (!array_key_exists($column_name, $row)) {
$row[$column_name] = self::getDefaultValueForColumn(
$conn,
$php_type,
$column_nullable,
$column_default,
$column_name,
$table_definition->databaseName,
$table_definition->name,
$column instanceof Schema\Column\IntegerColumn && $column->isAutoIncrement()
);
} else {
if ($row[$column_name] === null) {
if ($column_nullable) {
continue;
} else {
$row[$column_name] = self::coerceValueToColumn($conn, $column, null);
}
} else {
switch ($php_type) {
case 'int':
if (\is_bool($row[$column_name])) {
$row[$column_name] = (int) $row[$column_name];
} else {
if (!\is_int($row[$column_name])) {
$row[$column_name] = (int) $row[$column_name];
}
}
break;
case 'float':
if (!\is_float($row[$column_name])) {
$row[$column_name] = (double) $row[$column_name];
}
break;
default:
if (!\is_string($row[$column_name])) {
$row[$column_name] = (string) $row[$column_name];
}
break;
}
}
}
}
return $row;
}
/**
* @param array<string, mixed> $row
*
* @return array<string, mixed>
*/
public static function coerceToSchema(
FakePdoInterface $conn,
array $row,
Schema\TableDefinition $table_definition
) {
$row = self::ensureColumnsPresent($conn, $row, $table_definition);
foreach ($row as $column_name => $value) {
if (!isset($table_definition->columns[$column_name])) {
throw new \Exception(
"Column '$column_name' not found on '{$table_definition->name}', expecting "
. '\'' . implode('\', \'', array_keys($table_definition->columns)) . '\''
);
}
$column = $table_definition->columns[$column_name];
$row[$column_name] = self::coerceValueToColumn($conn, $column, $value);
}
return $row;
}
/**
* @return false|float|int|null|string
*/
public static function coerceValueToColumn(
FakePdoInterface $conn,
Schema\Column $column,
$value
) {
$php_type = $column->getPhpType();
if ($column->isNullable() && $value === null) {
return null;
}
if ($column instanceof Schema\Column\NumberColumn) {
if ($value === '') {
$value = 0;
} elseif (\is_bool($value)) {
$value = (int) $value;
}
if (!\is_numeric($value)) {
if ($value === null && !$conn->useStrictMode()) {
$value = 0;
} else {
throw new Processor\InvalidValueException(
'Number column expects a numeric value, but saw ' . var_export($value, true)
);
}
}
if ((float) $value > $column->getMaxValue()) {
if ($conn->useStrictMode()) {
throw new Processor\InvalidValueException('Value ' . $value . ' out of acceptable range');
}
$value = $column->getMaxValue();
} elseif ((float) $value < $column->getMinValue()) {
if ($conn->useStrictMode()) {
throw new Processor\InvalidValueException('Value ' . $value . ' out of acceptable range');
}
$value = $column->getMinValue();
}
}
if ($column instanceof Schema\Column\CharacterColumn) {
if (!is_string($value)) {
$value = (string) $value;
}
if (\strlen($value) > $column->getMaxStringLength()) {
if ($conn->useStrictMode()) {
throw new Processor\InvalidValueException(
'String length for ' . $value . ' larger than expected ' . $column->getMaxStringLength()
);
}
$value = \substr($value, 0, $column->getMaxStringLength());
}
}
switch ($php_type) {
case 'int':
return (int) $value;
case 'string':
$value = (string) $value;
if ($column instanceof Schema\Column\DateTime || $column instanceof Schema\Column\Timestamp) {
if (\strlen($value) === 10) {
$value .= ' 00:00:00';
}
if ($value === '' || $value[0] === '-') {
$value = '0000-00-00 00:00:00';
} elseif (\preg_match(
'/^([0-9]{2,4}-[0-1][0-9]-[0-3][0-9]|[0-9]+)$/',
$value
)) {
$value = (new \DateTime($value))->format('Y-m-d H:i:s');
}
}
if ($column instanceof Schema\Column\Date) {
if (\strlen($value) === 19) {
$value = \substr($value, 0, 10);
} elseif ($value[0] === '-' || $value === '') {
$value = '0000-00-00';
} elseif (\preg_match('/^[0-9]+$/', (string) $value)) {
$value = (new \DateTime($value))->format('Y-m-d');
}
}
if ($column instanceof Schema\Column\Decimal) {
return \number_format((float) $value, $column->getDecimalScale(), '.', '');
}
return $value;
case 'float':
return (float) $value;
case 'null':
if ($value === null) {
return null;
}
return (string) $value;
default:
throw new \Exception(
"DataIntegrity::coerceValueToSchema found unknown type for field: '{$php_type}'"
);
}
}
/**
* @param array<int, array<string, mixed>> $table
* @param array<string, mixed> $new_row
*
* @return array{0:string, 1:int}|null
*/
public static function checkUniqueConstraints(
array $table,
array $new_row,
Schema\TableDefinition $table_definition,
?int $update_row_id = null
) {
$unique_keys = [];
foreach ($table_definition->indexes as $name => $index) {
if ($index->type === 'PRIMARY') {
$unique_keys['PRIMARY'] = $index->columns;
} else {
if ($index->type === 'UNIQUE') {
$unique_keys[$name] = $index->columns;
}
}
}
foreach ($unique_keys as $name => $unique_key) {
if ($name !== 'PRIMARY') {
foreach ($unique_key as $key) {
if ($new_row[$key] === null) {
continue 2;
}
}
}
foreach ($table as $row_id => $existing_row) {
if ($row_id === $update_row_id) {
continue;
}
$different_keys = array_filter(
$unique_key,
function ($key) use ($existing_row, $new_row) {
return $existing_row[$key] !== $new_row[$key] || !isset($new_row[$key]);
}
);
// if all keys in the row match
if (!$different_keys) {
$dupe_unique_key_value = \implode(
', ',
\array_map(
function ($field) use ($existing_row) {
return (string) $existing_row[$field];
},
$unique_key
)
);
return [
"Duplicate entry '{$dupe_unique_key_value}' for key"
. " '{$name}' in table '{$table_definition->name}'",
$row_id
];
}
}
}
return null;
}
}