mirror of
https://github.com/YunoHost-Apps/roundcube_ynh.git
synced 2024-09-03 20:16:28 +02:00
97 lines
2.6 KiB
Bash
97 lines
2.6 KiB
Bash
#
|
|
# Common variables
|
|
#
|
|
|
|
# Roundcube version
|
|
VERSION=1.1.4
|
|
|
|
# Roundcube complete tarball checksum
|
|
ROUNDCUBE_SOURCE_MD5="051c0a07e744006c57fab7a5db79b5bc"
|
|
|
|
# Remote URL to fetch Roundcube complete tarball
|
|
ROUNDCUBE_SOURCE_URL="https://downloads.sourceforge.net/project/roundcubemail/roundcubemail/${VERSION}/roundcubemail-${VERSION}.tar.gz"
|
|
|
|
# App package root directory should be the parent folder
|
|
PKGDIR=$(cd ../; pwd)
|
|
|
|
#
|
|
# Common helpers
|
|
#
|
|
|
|
# Print a message to stderr and exit
|
|
# usage: print MSG [RETCODE]
|
|
die() {
|
|
printf "%s" "$1" 1>&2
|
|
exit "${2:-1}"
|
|
}
|
|
|
|
# Download and extract Roundcube sources to the given directory
|
|
# usage: extract_roundcube_to DESTDIR
|
|
extract_roundcube() {
|
|
local DESTDIR=$1
|
|
|
|
# retrieve and extract Roundcube tarball
|
|
rc_tarball="${DESTDIR}/roundcube.tar.gz"
|
|
wget -q -O "$rc_tarball" "$ROUNDCUBE_SOURCE_URL" \
|
|
|| die "Unable to download Roundcube tarball"
|
|
echo "$ROUNDCUBE_SOURCE_MD5 $rc_tarball" | md5sum -c >/dev/null \
|
|
|| die "Invalid checksum of downloaded tarball"
|
|
tar xf "$rc_tarball" -C "$DESTDIR" --strip-components 1 \
|
|
|| die "Unable to extract Roundcube tarball"
|
|
rm "$rc_tarball"
|
|
|
|
# apply patches
|
|
(cd "$DESTDIR" \
|
|
&& for p in ${PKGDIR}/patches/*.patch; do patch -p1 < $p; done) \
|
|
|| die "Unable to apply patches to Roundcube"
|
|
|
|
# copy composer.json-dist for Roundcube with complete dependencies
|
|
cp "${PKGDIR}/sources/composer.json-dist" "${DESTDIR}/composer.json-dist"
|
|
}
|
|
|
|
# Execute a command as another user
|
|
# usage: exec_as USER COMMAND [ARG ...]
|
|
exec_as() {
|
|
local USER=$1
|
|
shift 1
|
|
|
|
if [[ $USER = $(whoami) ]]; then
|
|
eval $@
|
|
else
|
|
# use sudo twice to be root and be allowed to use another user
|
|
sudo sudo -u "$USER" $@
|
|
fi
|
|
}
|
|
|
|
# Execute a composer command from a given directory
|
|
# usage: composer_exec AS_USER WORKDIR COMMAND [ARG ...]
|
|
exec_composer() {
|
|
local AS_USER=$1
|
|
local WORKDIR=$2
|
|
shift 2
|
|
|
|
exec_as "$AS_USER" COMPOSER_HOME="${WORKDIR}/.composer" \
|
|
php "${WORKDIR}/composer.phar" $@ \
|
|
-d "${WORKDIR}" --quiet --no-interaction
|
|
}
|
|
|
|
# Install and initialize Composer in the given directory
|
|
# usage: init_composer DESTDIR [AS_USER]
|
|
init_composer() {
|
|
local DESTDIR=$1
|
|
local AS_USER=${2:-admin}
|
|
|
|
# install composer
|
|
curl -sS https://getcomposer.org/installer \
|
|
| exec_as "$AS_USER" COMPOSER_HOME="${DESTDIR}/.composer" \
|
|
php -- --quiet --install-dir="$DESTDIR" \
|
|
|| die "Unable to install Composer"
|
|
|
|
# install composer.json
|
|
exec_as "$AS_USER" \
|
|
cp "${DESTDIR}/composer.json-dist" "${DESTDIR}/composer.json"
|
|
|
|
# update dependencies to create composer.lock
|
|
exec_composer "$AS_USER" "$DESTDIR" install --no-dev \
|
|
|| die "Unable to update Roundcube core dependencies"
|
|
}
|