forked from deployphp/recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phinx.php
176 lines (143 loc) · 3.73 KB
/
phinx.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
<?php
namespace Deployer;
/**
* Phinx recipe for Deployer
*
* @author Alexey Boyko <[email protected]>
* @contributor Security-Database <[email protected]>
* @copyright 2016 Alexey Boyko
* @license MIT https://github.com/deployphp/recipes/blob/master/LICENSE
*
* @link https://github.com/deployphp/recipes
*
* @see http://deployer.org
* @see https://phinx.org
*/
/**
* Get Phinx command
*
* @return Path to Phinx
*/
set(
'bin/phinx', function () {
$isExistsCmd = 'if [ -f %s ]; then echo true; fi';
try {
$phinxPath = run('which phinx')->toString();
} catch (\RuntimeException $e) {
$phinxPath = null;
}
if ($phinxPath !== null) {
return "phinx";
} else if (run(
sprintf(
$isExistsCmd,
'{{release_path}}/vendor/bin/phinx'
)
)->toBool()
) {
return "{{release_path}}/vendor/bin/phinx";
} else if (run(
sprintf(
$isExistsCmd,
'~/.composer/vendor/bin/phinx'
)
)->toBool()
) {
return '~/.composer/vendor/bin/phinx';
} else {
throw new \RuntimeException(
'Cannot find phinx.
Please specify path to phinx manually'
);
}
}
);
/**
* Make Phinx command from env options
*
* @param string $cmdName Name of command
* @param array $conf Command options(config)
*
* @return string Phinx command to execute
*/
set('phinx_get_cmd', function () {
return function ($cmdName, $conf) {
$phinx = get('phinx_path') ?: get('bin/phinx');
$phinxCmd = "$phinx $cmdName";
$options = '';
foreach ($conf as $name => $value) {
$options .= " --$name $value";
}
$phinxCmd .= $options;
return $phinxCmd;
};
});
/**
* Returns options array that allowed for command
*
* @param array $allowedOptions List of allowed options
*
* @return array Array of options
*/
set('phinx_get_allowed_config', function () {
return function ($allowedOptions) {
$opts = [];
try {
foreach (get('phinx') as $key => $val) {
if (in_array($key, $allowedOptions)) {
$opts[$key] = $val;
}
}
} catch (\RuntimeException $e) {
}
return $opts;
};
});
desc('Migrating database by phinx');
task(
'phinx:migrate', function () {
$ALLOWED_OPTIONS = [
'configuration',
'date',
'environment',
'target',
'parser'
];
$conf = get('phinx_get_allowed_config')($ALLOWED_OPTIONS);
cd('{{release_path}}');
$phinxCmd = get('phinx_get_cmd')('migrate', $conf);
run($phinxCmd);
cd('{{deploy_path}}');
}
);
task(
'phinx:rollback', function () {
$ALLOWED_OPTIONS = [
'configuration',
'date',
'environment',
'target',
'parser'
];
$conf = get('phinx_get_allowed_config')($ALLOWED_OPTIONS);
cd('{{release_path}}');
$phinxCmd = get('phinx_get_cmd')('rollback', $conf);
run($phinxCmd);
cd('{{deploy_path}}');
}
);
task(
'phinx:seed', function () {
$ALLOWED_OPTIONS = [
'configuration',
'environment',
'parser',
'seed'
];
$conf = get('phinx_get_allowed_config')($ALLOWED_OPTIONS);
cd('{{release_path}}');
$phinxCmd = get('phinx_get_cmd')('seed:run', $conf);
run($phinxCmd);
cd('{{deploy_path}}');
}
);