- Added a cleanup method to the migration process
This commit is contained in:
parent
564a05a1d4
commit
e3e922e3bf
|
@ -3,7 +3,7 @@
|
|||
|
||||
array_shift($argv);
|
||||
|
||||
$opt = getopt('c::f:v', [ 'folder:', 'confirm', 'verbose' ]);
|
||||
$opt = getopt('c::f:v', [ 'folder:', 'confirm', 'verbose', 'clean' ]);
|
||||
|
||||
if ( ! $opt ) {
|
||||
exit("Bad arguments provided, you must specify a fullpath using the -f or --folder option\n");
|
||||
|
@ -30,59 +30,68 @@ foreach ($iterator as $info) {
|
|||
|
||||
$content = file_get_contents($info->getPathname());
|
||||
|
||||
foreach(explode(PHP_EOL, $content) as $lineIdx => $line) {
|
||||
if ( isset($opt['clean']) ) {
|
||||
foreach (explode(PHP_EOL, $content) as $lineIdx => $line) {
|
||||
if ( $pos = strpos($line, '# migrated from: ') ) {
|
||||
$attr = true;
|
||||
|
||||
$newContent[] = $newLine = substr($line, 0, $pos);
|
||||
|
||||
echo sprintf("Changed line '%s' \n", trim($newLine));
|
||||
}
|
||||
else {
|
||||
$newContent[] = $line;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
else {
|
||||
foreach (explode(PHP_EOL, $content) as $lineIdx => $line) {
|
||||
$tline = trim($line);
|
||||
|
||||
if ($tline === "/**") {
|
||||
$opened = true;
|
||||
}
|
||||
elseif ($tline === '*/') {
|
||||
} elseif ($tline === '*/') {
|
||||
$opened = false;
|
||||
}
|
||||
elseif (substr($tline, 0, 1) === '*') {
|
||||
} elseif (substr($tline, 0, 1) === '*') {
|
||||
$annotation = trim(substr($tline, 1));
|
||||
|
||||
if (strpos($annotation, '@') === 0 ) {
|
||||
if (strpos($annotation, '@') === 0) {
|
||||
$argpos = strpos($annotation, '(');
|
||||
|
||||
if ($argpos !== false) {
|
||||
$name = substr($annotation, 1, $argpos - 1);
|
||||
$args = substr($annotation, $argpos + 1, strrpos($annotation, ')') - $argpos - 1);
|
||||
|
||||
try{
|
||||
try {
|
||||
$array = eval("return [{$args}];");
|
||||
|
||||
$renderedArgs = [];
|
||||
|
||||
foreach($array as $key => $argument) {
|
||||
foreach ($array as $key => $argument) {
|
||||
|
||||
if ( is_array($argument) ) {
|
||||
if (is_array($argument)) {
|
||||
$argument = var_export($argument, true);
|
||||
}
|
||||
elseif ( is_bool($argument) ) {
|
||||
} elseif (is_bool($argument)) {
|
||||
$argument = $argument ? 'true' : 'false';
|
||||
}
|
||||
elseif (! is_numeric($argument) ) {
|
||||
} elseif (!is_numeric($argument)) {
|
||||
$argument = "\"$argument\"";
|
||||
}
|
||||
|
||||
if (is_numeric($key)) {
|
||||
$renderedArgs[] = $argument;
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
$renderedArgs[] = "$key: $argument";
|
||||
}
|
||||
}
|
||||
|
||||
$renderedArgs = implode(', ', $renderedArgs);
|
||||
}
|
||||
catch(\Throwable $e) {
|
||||
} catch (\Throwable $e) {
|
||||
echo sprintf("!!! WARNING : %s in file (%s) line %d ; using previous notation.\n", $e->getMessage(), $info->getPathname(), $lineIdx + 1);
|
||||
|
||||
$renderedArgs = str_replace(' => ', ': ', $args);
|
||||
}
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
$name = substr($annotation, 1);
|
||||
$renderedArgs = "";
|
||||
}
|
||||
|
@ -91,11 +100,11 @@ foreach ($iterator as $info) {
|
|||
|
||||
$newContent[] = $attribute;
|
||||
}
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
$newContent[] = $line;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$newContent = implode(PHP_EOL, $newContent);
|
||||
|
||||
|
|
Loading…
Reference in New Issue