1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/flarum_ynh.git synced 2024-09-03 18:36:24 +02:00
flarum_ynh/scripts/experimental_helpers/ynh_composer__2

63 lines
2.4 KiB
Text
Raw Normal View History

2020-06-12 01:55:21 +02:00
#!/bin/bash
# Execute a command with Composer
#
2020-06-25 22:39:45 +02:00
# usage: ynh_composer_exec [--user=app] [--phpversion=phpversion] [--workdir=$final_path] --commands="commands"
# | arg: -u, --user - User to execute composer with.
# | arg: -v, --phpversion - PHP version to use with composer.
2020-06-12 01:55:21 +02:00
# | arg: -w, --workdir - The directory from where the command will be executed. Default $final_path.
# | arg: -c, --commands - Commands to execute.
ynh_composer_exec () {
# Declare an array to define the options of this helper.
2020-06-25 22:39:45 +02:00
local legacy_args=uvwc
declare -Ar args_array=( [u]=user= [v]=phpversion= [w]=workdir= [c]=commands= )
local user
2020-06-12 01:55:21 +02:00
local phpversion
local workdir
local commands
# Manage arguments with getopts
ynh_handle_getopts_args "$@"
2020-06-25 22:39:45 +02:00
user="${user:-$app}"
2020-06-12 01:55:21 +02:00
workdir="${workdir:-$final_path}"
phpversion="${phpversion:-$YNH_PHP_VERSION}"
COMPOSER_HOME="$workdir/.composer" \
2020-06-25 22:39:45 +02:00
exec_as $user php${phpversion} "$workdir/composer.phar" $commands \
2020-06-12 01:55:21 +02:00
-d "$workdir" --no-interaction
}
# Install and initialize Composer in the given directory
#
# usage: ynh_install_composer [--phpversion=phpversion] [--workdir=$final_path] [--install_args="--optimize-autoloader"]
2020-06-25 22:39:45 +02:00
# | arg: -u, --user - User to execute composer with.
2020-06-12 01:55:21 +02:00
# | arg: -v, --phpversion - PHP version to use with composer
# | arg: -w, --workdir - The directory from where the command will be executed. Default $final_path.
# | arg: -a, --install_args - Additional arguments provided to the composer install. Argument --no-dev already include
ynh_install_composer () {
# Declare an array to define the options of this helper.
local legacy_args=vwa
2020-06-25 22:39:45 +02:00
declare -Ar args_array=( [u]=user= [v]=phpversion= [w]=workdir= [a]=install_args=)
local user
2020-06-12 01:55:21 +02:00
local phpversion
local workdir
local install_args
# Manage arguments with getopts
ynh_handle_getopts_args "$@"
2020-06-25 22:39:45 +02:00
user="${user:-$app}"
2020-06-12 01:55:21 +02:00
workdir="${workdir:-$final_path}"
phpversion="${phpversion:-$YNH_PHP_VERSION}"
install_args="${install_args:-}"
curl -sS https://getcomposer.org/installer \
| COMPOSER_HOME="$workdir/.composer" \
php${phpversion} -- --install-dir="$workdir" \
|| ynh_die "Unable to install Composer."
2020-06-25 22:39:45 +02:00
# Making sure workdir is writable
chown -R $user: $workdir
2020-06-12 01:55:21 +02:00
# update dependencies to create composer.lock
2020-06-25 22:39:45 +02:00
ynh_composer_exec --user=$user --phpversion="${phpversion}" --workdir="$workdir" --commands="install --no-dev $install_args" \
2020-06-12 01:55:21 +02:00
|| ynh_die "Unable to update core dependencies with Composer."
}