1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* |
5
|
|
|
* The MIT License (MIT) |
6
|
|
|
* |
7
|
|
|
* Copyright (c) 2015 Daniel Popiniuc |
8
|
|
|
* |
9
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy |
10
|
|
|
* of this software and associated documentation files (the "Software"), to deal |
11
|
|
|
* in the Software without restriction, including without limitation the rights |
12
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
13
|
|
|
* copies of the Software, and to permit persons to whom the Software is |
14
|
|
|
* furnished to do so, subject to the following conditions: |
15
|
|
|
* |
16
|
|
|
* The above copyright notice and this permission notice shall be included in all |
17
|
|
|
* copies or substantial portions of the Software. |
18
|
|
|
* |
19
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
20
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
21
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
22
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
23
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
24
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
25
|
|
|
* SOFTWARE. |
26
|
|
|
* |
27
|
|
|
*/ |
28
|
|
|
|
29
|
|
|
namespace danielgp\fk_scale_mysql; |
30
|
|
|
|
31
|
|
|
trait ConfigurationForAction |
32
|
|
|
{ |
33
|
|
|
|
34
|
|
|
private $superGlobals; |
35
|
|
|
|
36
|
|
|
/** |
37
|
|
|
* Manages the configuration for parameters to scale FK |
38
|
|
|
* |
39
|
|
|
* Default values are targeting "world" database |
40
|
|
|
* which can be downloaded from http://dev.mysql.com/doc/index-other.html |
41
|
|
|
* |
42
|
|
|
* @return array |
43
|
|
|
*/ |
44
|
|
|
protected function targetElementsToModify($sGb) |
45
|
|
|
{ |
46
|
|
|
$this->superGlobals = $sGb; |
47
|
|
|
return [ |
48
|
|
|
'Database' => $this->manageInputWithDefaults([ |
49
|
|
|
'InputName' => 'db', |
50
|
|
|
'DefaultValue' => 'world', |
51
|
|
|
]), |
52
|
|
|
'Table' => $this->manageInputWithDefaults([ |
53
|
|
|
'InputName' => 'tbl', |
54
|
|
|
'DefaultValue' => 'country', |
55
|
|
|
]), |
56
|
|
|
'Column' => $this->manageInputWithDefaults([ |
57
|
|
|
'InputName' => 'fld', |
58
|
|
|
'DefaultValue' => 'Code', |
59
|
|
|
]), |
60
|
|
|
'NewDataType' => $this->manageInputWithDefaults([ |
61
|
|
|
'InputName' => 'dt', |
62
|
|
|
'DefaultValue' => 'CHAR(6)', |
63
|
|
|
]), |
64
|
|
|
]; |
65
|
|
|
} |
66
|
|
|
|
67
|
|
|
private function manageInputWithDefaults($inArray) |
68
|
|
|
{ |
69
|
|
|
if (is_null($this->superGlobals->get($inArray['InputName']))) { |
70
|
|
|
$this->superGlobals->request->set($inArray['InputName'], $inArray['DefaultValue']); |
71
|
|
|
} |
72
|
|
|
return filter_var($this->superGlobals->get($inArray['InputName']), FILTER_SANITIZE_STRING); |
73
|
|
|
} |
74
|
|
|
|
75
|
|
|
protected function countTransmitedParameters($inParameters) |
76
|
|
|
{ |
77
|
|
|
$transmited = 0; |
78
|
|
|
foreach ($inParameters as $parameterName) { |
79
|
|
|
if (!is_null($this->superGlobals->get($parameterName))) { |
80
|
|
|
$transmited++; |
81
|
|
|
} |
82
|
|
|
} |
83
|
|
|
return (count($inParameters) === $transmited); |
84
|
|
|
} |
85
|
|
|
} |
86
|
|
|
|