#!/usr/bin/env bash
[[ " help domains:help " == *" $1 "* ]] || exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x

case "$1" in
  help | domains:help)
    help_content_func () {
      declare desc="return domains plugin help content"
      cat<<help_content
    domains [<app>], List domains
    domains:add <app> DOMAIN, Add a domain to app
    domains:clear <app>, Clear all domains for app
    domains:disable <app>, Disable VHOST support
    domains:enable <app>, Enable VHOST support
    domains:remove <app> DOMAIN, Remove a domain from app
    domains:set-global <domain>, Set global domain name
help_content
    }

    if [[ $1 = "domains:help" ]] ; then
        echo -e 'Usage: dokku domains[:COMMAND]'
        echo ''
        echo 'Manage vhost domains used by the Dokku proxy.'
        echo ''
        echo 'Additional commands:'
        help_content_func | sort | column -c2 -t -s,
    else
        help_content_func
    fi
    ;;

  *)
    exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
    ;;

esac
