deployer/recipe/symfony.php
Anton Medvedev 29a643b623 v7
2020-05-16 18:02:17 +03:00

171 lines
4.1 KiB
PHP

<?php
/* (c) Anton Medvedev <anton@medv.io>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Deployer;
require_once __DIR__ . '/common.php';
/**
* Symfony Configuration
*/
// Symfony build set
set('symfony_env', 'prod');
// Symfony shared dirs
set('shared_dirs', ['app/logs']);
// Symfony shared files
set('shared_files', ['app/config/parameters.yml']);
// Symfony writable dirs
set('writable_dirs', ['app/cache', 'app/logs']);
// Clear paths
set('clear_paths', ['web/app_*.php', 'web/config.php']);
// Assets
set('assets', ['web/css', 'web/images', 'web/js']);
// Requires non symfony-core package `kriswallsmith/assetic` to be installed
set('dump_assets', false);
// Environment vars
set('env', function () {
return [
'SYMFONY_ENV' => get('symfony_env')
];
});
set('composer_options', function () {
$debug = get('symfony_env') === 'dev';
return sprintf('{{composer_action}} --verbose --prefer-dist --no-progress --no-interaction %s --optimize-autoloader --no-suggest', (!$debug ? '--no-dev' : ''));
});
// Adding support for the Symfony3 directory structure
set('bin_dir', 'app');
set('var_dir', 'app');
// Symfony console bin
set('bin/console', function () {
return sprintf('{{release_path}}/%s/console', trim(get('bin_dir'), '/'));
});
// Symfony console opts
set('console_options', function () {
$options = '--no-interaction --env={{symfony_env}}';
return get('symfony_env') !== 'prod' ? $options : sprintf('%s --no-debug', $options);
});
// Migrations configuration file
set('migrations_config', '');
/**
* Create cache dir
*/
task('deploy:create_cache_dir', function () {
// Set cache dir
set('cache_dir', '{{release_path}}/' . trim(get('var_dir'), '/') . '/cache');
// Remove cache dir if it exist
run('if [ -d "{{cache_dir}}" ]; then rm -rf {{cache_dir}}; fi');
// Create cache dir
run('mkdir -p {{cache_dir}}');
// Set rights
run("chmod -R g+w {{cache_dir}}");
})->desc('Create cache dir');
/**
* Normalize asset timestamps
*/
task('deploy:assets', function () {
$assets = implode(' ', array_map(function ($asset) {
return "{{release_path}}/$asset";
}, get('assets')));
run(sprintf('find %s -exec touch -t %s {} \';\' &> /dev/null || true', $assets, date('YmdHi.s')));
})->desc('Normalize asset timestamps');
/**
* Install assets from public dir of bundles
*/
task('deploy:assets:install', function () {
run('{{bin/php}} {{bin/console}} assets:install {{console_options}} {{release_path}}/web');
})->desc('Install bundle assets');
/**
* Dump all assets to the filesystem
*/
task('deploy:assetic:dump', function () {
if (get('dump_assets')) {
run('{{bin/php}} {{bin/console}} assetic:dump {{console_options}}');
}
})->desc('Dump assets');
/**
* Clear Cache
*/
task('deploy:cache:clear', function () {
run('{{bin/php}} {{bin/console}} cache:clear {{console_options}} --no-warmup');
})->desc('Clear cache');
/**
* Warm up cache
*/
task('deploy:cache:warmup', function () {
run('{{bin/php}} {{bin/console}} cache:warmup {{console_options}}');
})->desc('Warm up cache');
/**
* Migrate database
*/
task('database:migrate', function () {
$options = '{{console_options}} --allow-no-migration';
if (get('migrations_config') !== '') {
$options = sprintf('%s --configuration={{release_path}}/{{migrations_config}}', $options);
}
run(sprintf('{{bin/php}} {{bin/console}} doctrine:migrations:migrate %s', $options));
})->desc('Migrate database');
/**
* Main task
*/
task('deploy', [
'deploy:info',
'deploy:setup',
'deploy:lock',
'deploy:release',
'deploy:update_code',
'deploy:clear_paths',
'deploy:create_cache_dir',
'deploy:shared',
'deploy:assets',
'deploy:vendors',
'deploy:assets:install',
'deploy:assetic:dump',
'deploy:cache:clear',
'deploy:cache:warmup',
'deploy:writable',
'deploy:symlink',
'deploy:unlock',
'deploy:cleanup',
])->desc('Deploy your project');
// Display success message on completion
after('deploy', 'success');