#!/bin/bash
#
# vhost-stack
# https://git.stack-source.com/msb/vhost-stack
# Copyright (c) 2022 Matthew Saunders Brown <matthewsaundersbrown@gmail.com>
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)

# load include file
source $(dirname $0)/vhost.sh

help()
{
  thisfilename=$(basename -- "$0")
  echo "Enables Varnish for specified virtualhost."
  echo ""
  echo "usage: $thisfilename -d <domain> [-h]"
  echo ""
  echo "  -h            Print this help."
  echo "  -d <domain>   Domain name (VirtualHost) to enable Varnish for."
  echo ""
  echo "                Creates Varnish config, loads it in Varnish and then"
  echo "                enables Apache proxy to Varnish for virtualhost."
  exit
}

vhost:getoptions "$@"

# check for domain (virtualhost)
if [[ -z $domain ]]; then
  echo "domain is required"
  exit
fi


# make sure virtualhost is enabled via symlink
if [[ ! -h "/etc/apache2/sites-enabled/$domain.conf" ]]; then
  echo "virtualhost is not enabled"
  exit 1
fi

# make sure virtualhost config is in standard location
if [[ ! -f "/etc/apache2/sites-available/$domain.conf" ]]; then
  echo "virtualhost config for $domain not in /etc/apache2/sites-available/"
  exit 1
fi

# grab macro line from virtualhost config
if macro_vhost_line=`grep -m 1 "Use .*" /etc/apache2/sites-available/$domain.conf` ; then
  macro_name=`echo "$macro_vhost_line" | awk '{print $2}'`
else
  echo "$domain is not configured with mod_macro"
  exit 1
fi

# make sure Varnish is not already enabled
if [[ $macro_name =~ ^.*Varnish$ ]]; then
  echo "Varnish already enabled for $domain"
  exit 1
fi

# check for valid HTTPS VHost macro
if [[ $macro_name =~ ^VHost[[:alpha:]]*HTTPS$ ]]; then
  macro_name_new="${macro_name}Varnish"
  vhost_enable="-d $domain -m $macro_name_new"
else
  echo "$domain must be enabled with an HTTPS VHost macro"
  exit 1
fi

# check if VHost macro is for a Subdomain
if [[ "$macro_name" == *"Subdomain"* ]]; then
  vhost_subdomain=`echo "$macro_vhost_line" | awk '{print $5}'`
  vhost_enable=$(echo "$vhost_enable" | sed -e "s/ $vhost_subdomain\./ /")
  vhost_enable="$vhost_enable -o $vhost_subdomain"
fi

# check if VHost macro is for an Alias
if [[ "$macro_name" == *"Alias"* ]]; then
  vhost_alias=`echo "$macro_vhost_line" | awk '{print $5}'`
  vhost_enable="$vhost_enable -o $vhost_alias"
fi

# check for ssl cert
if [[ ! -f "/etc/ssl/letsencrypt/$domain.pem" ]]; then
  echo "$domain.pem cert file does not exist"
  exit 1
fi

# make sure varnish is installed
if [[ ! -f /etc/varnish/sites.d/example.com.vcl ]]; then
  echo "Varnish not installed & configured on this server"
  exit 1
fi

# check for / create varnish config
if [[ ! -f "/etc/varnish/sites.d/$domain.vcl" ]]; then
  # create varnish config
  echo "sub vcl_recv {" > /etc/varnish/sites.d/$domain.vcl
  echo "  if (req.http.host == \"$domain\" || req.http.host == \"www.$domain\") {" >> /etc/varnish/sites.d/$domain.vcl
  echo "    # Uncomment next line to bypass varnish cache" >> /etc/varnish/sites.d/$domain.vcl
  echo "    #return (pass);" >> /etc/varnish/sites.d/$domain.vcl
  echo "    call wordpress;" >> /etc/varnish/sites.d/$domain.vcl
  echo "  }" >> /etc/varnish/sites.d/$domain.vcl
  echo "}" >> /etc/varnish/sites.d/$domain.vcl
  /usr/local/bin/vhost-varnish-update-sites.sh
fi

/usr/local/bin/vhost-enable.sh $vhost_enable