CLI tools for KevaCoin blockchain
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

132 lines
2.0 KiB

1 year ago
<?php
// Init helper
function _exec(
string $processor,
string $command
): mixed
{
if (false !== exec(sprintf('%s %s', $processor, $command), $output))
{
$rows = [];
foreach($output as $row)
{
$rows[] = $row;
}
if ($result = @json_decode(implode(PHP_EOL, $rows)))
{
return $result;
}
}
return false;
}
// Get clitoris
$clitoris = _exec(
1 year ago
$argv[1],
sprintf(
'%s %s "_CLITOR_IS_"',
'keva_get',
1 year ago
$argv[2]
)
);
print_r(
$clitoris
);
1 year ago
if (empty($clitoris->value))
1 year ago
{
exit(
sprintf(
'%s does not contain _CLITOR_IS_' . PHP_EOL,
$argv[2]
)
);
1 year ago
}
if (!$clitoris = @json_decode(
$clitoris->value
))
{
exit(
sprintf(
'could not decode _CLITOR_IS_ of %s' . PHP_EOL,
$argv[2]
)
);
}
1 year ago
if ($clitoris->version !== '1.0')
{
exit(
sprintf(
'_CLITOR_IS_ of %s not compatible!' . PHP_EOL,
$argv[2]
)
);
}
1 year ago
if (empty($clitoris->file->name))
{
exit(
sprintf(
'_CLITOR_IS_ format issue for %s!' . PHP_EOL,
$argv[2]
)
);
}
1 year ago
// Merge content data
$pieces = [];
foreach (
(array)
_exec(
$argv[1],
sprintf(
'%s %s "\d+"',
'keva_filter',
$argv[2]
)
) as $piece)
1 year ago
{
if (!isset($piece->key) || !isset($piece->value))
{
exit(
'please wait for all pieces sending complete!'
);
}
$pieces[$piece->key] = $piece->value;
print_r(
$piece
);
1 year ago
}
ksort(
$pieces
);
1 year ago
// Save merged data to destination
$filename = isset($argv[3]) ? $argv[3] : sprintf(
'%s/../data/import/[kevacoin][%s]%s',
1 year ago
__DIR__,
$argv[2],
$clitoris->file->name
1 year ago
);
file_put_contents(
$filename,
base64_decode(
implode('', $pieces)
1 year ago
)
);
echo sprintf(
'saved to %s' . PHP_EOL,
$filename
);