mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-12-26 09:03:48 +08:00
90 lines
2.8 KiB
PHP
Executable file
90 lines
2.8 KiB
PHP
Executable file
#!/usr/bin/php
|
|
<?php
|
|
chdir(__DIR__);
|
|
|
|
$gulp = trim(`which gulp`);
|
|
if (!$gulp) {
|
|
exit('gulp not installed, run as root: npm install --global gulp-cli');
|
|
}
|
|
|
|
$package = json_decode(file_get_contents('package.json'));
|
|
|
|
$zip_destination = "rainloop-{$package->version}.zip";
|
|
$tar_destination = "rainloop-{$package->version}.tar";
|
|
|
|
@unlink($zip_destination);
|
|
@unlink($tar_destination);
|
|
@unlink("{$tar_destination}.gz");
|
|
|
|
passthru($gulp, $return_var);
|
|
if ($return_var) {
|
|
exit("gulp failed with error code {$return_var}\n");
|
|
}
|
|
|
|
if ($gzip = trim(`which gzip`)) {
|
|
// passthru("{$gzip} -k --best -r ".escapeshellarg(__DIR__ . '/rainloop/v/0.0.0/static/js/*.js'), $return_var);
|
|
// passthru("{$gzip} -k --best -r ".escapeshellarg(__DIR__ . '/rainloop/v/0.0.0/static/css/*.css'), $return_var);
|
|
}
|
|
|
|
if ($brotli = trim(`which brotli`)) {
|
|
// passthru("{$brotli} -k --best ".escapeshellarg(__DIR__ . '/rainloop/v/0.0.0/static/js/*.js'), $return_var);
|
|
// passthru("{$brotli} -k --best ".escapeshellarg(__DIR__ . '/rainloop/v/0.0.0/static/js/min/*.js'), $return_var);
|
|
// passthru("{$brotli} -k --best ".escapeshellarg(__DIR__ . '/rainloop/v/0.0.0/static/css/*.css'), $return_var);
|
|
}
|
|
|
|
// Temporary rename folder to speed up PharData
|
|
if (!rename('rainloop/v/0.0.0', "rainloop/v/{$package->version}")){
|
|
exit('Failed to temporary rename rainloop/v/0.0.0');
|
|
}
|
|
register_shutdown_function(function(){
|
|
// Rename folder back to original
|
|
@rename("rainloop/v/{$GLOBALS['package']->version}", 'rainloop/v/0.0.0');
|
|
});
|
|
|
|
$zip = new ZipArchive();
|
|
if (!$zip->open($zip_destination, ZIPARCHIVE::CREATE)) {
|
|
exit("Failed to create {$zip_destination}");
|
|
}
|
|
|
|
$tar = new PharData($tar_destination);
|
|
|
|
$files = new RecursiveIteratorIterator(new RecursiveDirectoryIterator('rainloop/v'), RecursiveIteratorIterator::SELF_FIRST);
|
|
foreach ($files as $file) {
|
|
$file = str_replace('\\', '/', $file);
|
|
echo "{$file}\n";
|
|
// Ignore "." and ".." folders
|
|
if (!in_array(substr($file, strrpos($file, '/')+1), array('.', '..'))) {
|
|
if (is_dir($file)) {
|
|
$zip->addEmptyDir($file);
|
|
} else if (is_file($file)) {
|
|
$zip->addFile($file);
|
|
}
|
|
}
|
|
}
|
|
|
|
$tar->buildFromDirectory('./', "@rainloop/v/{$package->version}@");
|
|
|
|
$zip->addFromString('data/VERSION', $package->version);
|
|
$tar->addFromString('data/VERSION', $package->version);
|
|
|
|
//$zip->addFromString('data/EMPTY', $package->version);
|
|
//$tar->addFromString('data/EMPTY', $package->version);
|
|
|
|
$zip->addFile('_include.php');
|
|
$tar->addFile('_include.php');
|
|
|
|
$index = file_get_contents('index.php');
|
|
$index = str_replace('0.0.0', $package->version, $index);
|
|
$index = str_replace('source', 'community', $index);
|
|
$zip->addFromString('index.php', $index);
|
|
$tar->addFromString('index.php', $index);
|
|
|
|
$zip->addFile('README.md');
|
|
$tar->addFile('README.md');
|
|
|
|
$zip->close();
|
|
|
|
$tar->compress(Phar::GZ);
|
|
unlink($tar_destination);
|
|
|
|
echo "\n{$zip_destination} created\n{$tar_destination}.gz created\n";
|