Added installer script (Unfinished)
This commit is contained in:
parent
89d50dac6d
commit
e52a05bc8f
3 changed files with 103 additions and 7 deletions
51
src/installer/hash_check.php
Normal file
51
src/installer/hash_check.php
Normal file
|
@ -0,0 +1,51 @@
|
|||
<?php
|
||||
|
||||
// Check for NCC
|
||||
if(!file_exists(__DIR__ . DIRECTORY_SEPARATOR . 'autoload.php'))
|
||||
{
|
||||
print('Could not find \'autoload.php\', this script is intended to be executed during the redistribution process');
|
||||
exit(1);
|
||||
}
|
||||
require(__DIR__ . DIRECTORY_SEPARATOR . 'autoload.php');
|
||||
|
||||
// Start script
|
||||
function scanContents($dir, &$results = array())
|
||||
{
|
||||
$files = scandir($dir);
|
||||
|
||||
foreach ($files as $key => $value)
|
||||
{
|
||||
$path = realpath($dir . DIRECTORY_SEPARATOR . $value);
|
||||
if (!is_dir($path))
|
||||
{
|
||||
$results[] = str_ireplace(__DIR__ . DIRECTORY_SEPARATOR, (string)null, $path);
|
||||
}
|
||||
else if ($value != '.' && $value != '..')
|
||||
{
|
||||
scanContents($path, $results);
|
||||
}
|
||||
}
|
||||
|
||||
return $results;
|
||||
}
|
||||
|
||||
ncc\Utilities\Console::out('Creating checksum.bin ...');
|
||||
|
||||
$excluded_files = [
|
||||
'hash_check.php',
|
||||
'checksum.bin'
|
||||
];
|
||||
|
||||
$hash_values = [];
|
||||
foreach(scanContents(__DIR__) as $file)
|
||||
{
|
||||
|
||||
if(!in_array($file, $excluded_files))
|
||||
{
|
||||
$hash_values[$file] = hash_file('sha256', __DIR__ . DIRECTORY_SEPARATOR . $file);
|
||||
}
|
||||
}
|
||||
|
||||
file_put_contents(__DIR__ . DIRECTORY_SEPARATOR . 'checksum.bin', \ncc\ZiProto\ZiProto::encode($hash_values));
|
||||
ncc\Utilities\Console::out('Created checksum.bin');
|
||||
exit(0);
|
Loading…
Add table
Add a link
Reference in a new issue