#!/usr/bin/env bash
set -eo pipefail
[[ $DOKKU_TRACE ]] && set -x
source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions"
source "$PLUGIN_AVAILABLE_PATH/nginx-vhosts/functions"

trigger-nginx-vhosts-proxy-build-config() {
  declare desc="build nginx config to proxy app containers from command line"
  declare trigger="proxy-build-config"
  declare APP="$1"

  [[ -z "$APP" ]] && dokku_log_fail "Please specify an app to run the command on"
  if [[ "$(plugn trigger proxy-type "$APP")" == "nginx" ]]; then
    plugn trigger network-build-config "$APP"
    nginx_build_config "$APP"
  fi
}

trigger-nginx-vhosts-proxy-build-config "$@"
