#!/bin/bash

set -e
role=${CONTAINER_ROLE:-app}
env=${APP_ENV:-live}

# General Setup
if [ -x /usr/sbin/sshd -a "${SSH_START}" = "TRUE" ]; then
	[ ! -d /var/run/sshd ] && mkdir /var/run/sshd
	start-stop-daemon --start --pidfile /var/run/sshd.pid --exec /usr/sbin/sshd -- -p 22
fi

# Laravel Specific
if [ "${role}" = "app" -a -e artisan ]; then
	if [ "${env}" != "local" -a -r "artisan" ]; then
		# See if we need to refresh our dependancies
		if [[ -r composer.lock && ( -e .composer.refresh || ! -d vendor ) ]]; then
			su www-data -s /bin/sh -c "composer install" && ( test -e .composer.refresh && rm -f .composer.refresh )
		fi

		if [ -r .migrate ]; then
			echo "Running migration..."
			php artisan migrate
			rm -f .migrate
		fi

		echo "Caching configuration..."
		(php artisan config:cache && php artisan route:cache && php artisan view:cache)
	fi

	exec /usr/local/bin/docker-php-entrypoint "$@"

elif [ "$role" = "queue" -a -e artisan ]; then

	echo "Running the queue..."
	# We'll delay starting in case the app is caching
	sleep 15
	php ${PHP_OPTIONS} artisan queue:work --verbose --tries=${WORK_TRIES:-1} --timeout=${WORK_TIMEOUT:-90} ${WORK_QUEUES:+--queue=${WORK_QUEUES}} ${WORK_MEMORY:+--memory=${WORK_MEMORY}}

elif [ "$role" = "scheduler" -a -e artisan ]; then

	echo "Running the scheduler..."
	# We'll delay starting in case the app is caching
	sleep 15

	while [ true ]; do
		php ${PHP_OPTIONS} artisan schedule:run --verbose --no-interaction &
		sleep 60
	done

else
	echo "NO container role \"${role}\", AND/OR no laravel install, just starting php-fpm"
	exec /usr/local/bin/docker-php-entrypoint "$@"
fi