# -*- mode: ruby -*-
# vi: set ft=ruby :

# Leave this alone
VAGRANTFILE_API_VERSION = "2"

# General VM Parameters - 8Gb and 4CPUs
VM_MEM = "8192"
VM_CPU = "4"

if ENV.has_key?("PCP_VAGRANT_MODE")
  pcp_mode = ENV['PCP_VAGRANT_MODE']
else
  pcp_mode = "qa"
end

def qa_groups
  if ENV.has_key?("PCP_QA_GROUPS")
    return ENV['PCP_QA_GROUPS']
  else
    return  "-g sanity -g pmda.linux -x flakey"
  end
end

# to be used for determining groups to test
# based on the git diff
def change_range
  if ENV.has_key?("PCP_CHANGE_RANGE")
    return ENV['PCP_CHANGE_RANGE']
  else
    return ""
  end
end
#env['PCP_CHANGE_RANGE']

############################################################
# Host Definititions
############################################################

pcp_hosts = {
        :fedora30 => {
                :hostname => "fedora30",
                :ipaddress => "10.100.10.25",
                :box => "fedora/30-cloud-base",
                :script => "fedora.sh",
                :qa => "-g sanity -g pmda.linux -x flakey",
                :distro_name => "f30"
        },
        :ubuntu2204 => {
                :hostname => "ubuntu2204",
                :ipaddress => "10.100.10.26",
                :box => "performancecopilot/ubuntu2204",
                :script => "ubuntu.sh",
                :qa => "-g sanity -g pmda.linux -x flakey",
                :distro_name => "jammy"
        },
        :ubuntu1804 => {
                :hostname => "ubuntu1804",
                :ipaddress => "10.100.10.24",
                :box => "performancecopilot/ubuntu1804",
                :script => "ubuntu.sh",
                :qa => "-g sanity -g pmda.linux -x flakey",
                :distro_name => "bionic"
        },
        :ubuntu1604 => {
                :hostname => "ubuntu1604",
                :ipaddress => "10.100.10.23",
                :box => "performancecopilot/ubuntu1604",
                :script => "ubuntu.sh",
                :qa => "-g sanity -g pmda.linux -x flakey",
                :distro_name => "xenial"
        },
        :centos7 => {
                :hostname => "centos7",
                :ipaddress => "10.100.10.20",
                :box => "centos/7",
                :script => "centos.sh",
                :qa => "-g sanity -g pmda.linux -x flakey",
                :distro_name => "el7"
        },
        :centos6 => {
               :hostname => "centos6",
                :ipaddress => "10.100.10.19",
                :box => "centos/6",
                :script => "centos.sh",
                :qa => "-g sanity -g pmda.linux -x flakey",
                :distro_name => "el6"
        },
        :fedora29 => {
                :hostname => "fedora29",
                :ipaddress => "10.100.10.18",
                :box => "fedora/29-cloud-base",
                :script => "fedora.sh",
                :qa => "-g sanity -g pmda.linux -x flakey",
                :distro_name => "f29"
        },
        :fedora28 => {
                :hostname => "fedora28",
                :ipaddress => "10.100.10.17",
                :box => "fedora/28-cloud-base",
                :script => "fedora.sh",
                :qa => "-g sanity -g pmda.linux -x flakey",
                :distro_name => "f28"
        },
        :debian9 => {
                :hostname => "debian9",
                :ipaddress => "10.100.10.14",
                :box => "generic/debian9",
                :script => "debian.sh",
                :qa => "-g sanity -g pmda.linux -x flakey",
                :distro_name => "stretch"
        },
        :debian8 => {
                :hostname => "debian8",
                :ipaddress => "10.100.10.13",
                :box => "performancecopilot/debian8",
                :script => "debian.sh",
                :qa => "-g sanity -g pmda.linux -x flakey",
                :distro_name => "jessie"
        },
        :freebsd12 => {
                :hostname => "freebsd12",
                :ipaddress => "10.100.10.11",
                :box => "generic/openbsd12",
                :script => "openbsd.sh",
                :qa => "-g sanity -x flakey",
                :distro_name => "freebsd12"
        },
        :freebsd11 => {
                :hostname => "freebsd11",
                :ipaddress => "10.100.10.10",
                :box => "generic/freebsd11",
                :script => "openbsd.sh",
                :qa => "-g sanity -x flakey",
                :distro_name => "freebsd11"
        },
        :openbsd6 => {
                :hostname => "openbsd6",
                :ipaddress => "10.100.10.9",
                :box => "generic/openbsd6",
                :script => "openbsd.sh",
                :qa => "-g sanity -x flakey",
                :distro_name => "openbsd6"
        },
        :opensuse42 => {
                :hostname => "opensuse42",
                :ipaddress => "10.100.10.8",
                :box => "generic/opensuse42",
                :script => "opensuse.sh",
                :qa => "-g sanity -g pmda.linux -x flakey",
                :distro_name => "opensuse42"
        }
}


EXPECTED_PLATFORM="darwin"
EXPECTED_ACK_FILE="provisioning/osxsierra.legally.ok"
platform_ok_to_use_OSX=RUBY_PLATFORM.include?(EXPECTED_PLATFORM)
eula_acknowledged = File.exists?(EXPECTED_ACK_FILE)
ok_to_use_OSX = platform_ok_to_use_OSX && eula_acknowledged

############################################################
# Only allowed to use oxssierra image if the underlying platform
# is a Mac and that the user has checked
# 
# see OSXREADME.md for more details
############################################################
if(ok_to_use_OSX)
	pcp_hosts[:osxsierra]={
					:hostname => "osxSierra",
					:ipaddress => "10.100.10.60",
					# https://github.com/AndrewDryga/vagrant-box-osx
					# TODO - this base image takes flipping ages to provision
					# due to PCP dependencies that need to be built by
					# Homebrew (eg. qt5, gettext)
					# it would be better to have a base image based off this
					# box that has these pre-installed
					:box => "http://files.dryga.com/boxes/osx-sierra-0.3.1.box",
					:script => "osxsierra.sh"
	}
end

############################################################
# Common Config Setup, hostnames, etc
# So VMs could talk to each other if we wanted
############################################################

$script_common = ""

# We set our own IP
$script_common << "sed -i '/127.0.1.1/d' /etc/hosts\n"
# Fix bogus entries that some os use
$script_common << "sed -i '/127.0.0.1/d' /etc/hosts\n"
$script_common << "echo \"127.0.0.1 localhost.localdomain localhost\" >> /etc/hosts\n"

pcp_hosts.each_pair do |name, options|
        ipaddr = options[:ipaddress]
	hostname = options[:hostname]
        $script_common << "echo \"#{ipaddr} #{hostname} #{hostname}.localdomain\" >> /etc/hosts\n"
end

$script_common << "domainname localdomain"

############################################################
# Main Vagrant Init : Loop over Host configs
############################################################

Vagrant.configure(VAGRANTFILE_API_VERSION) do |global_config|

  global_config.ssh.forward_x11 = true
  global_config.ssh.forward_agent = true
  global_config.ssh.insert_key = false


  if Vagrant.has_plugin?("vagrant-cachier")
    global_config.cache.scope = :box
  end

  # Global shared folder for pcp source.  Copy it so we have our own to muck around in
  global_config.vm.synced_folder ".", "/vagrant", type: "rsync", rsync_auto: true, :rsync__exclude => ["qaresults/", "./pcp-*/" ], :rsync__args => ["--verbose", "--archive", "--delete", "-z", "--no-owner", "--no-group" ]

  pcp_hosts.each_pair do |name, options|
    global_config.vm.define name do |config|

       config.vm.provider "virtualbox" do |v|
          v.name = "Vagrant PCP - #{name}"
          v.customize ["modifyvm", :id, "--groups", "/VagrantPCP", "--memory", VM_MEM, "--cpus", VM_CPU]
       end

       config.vm.box = options[:box]

       # VM specific shared folder for qa results
       # config.vm.synced_folder "./qaresults/#{name}", "/qaresults", mount_options: ["dmode=777", "fmode=666"], create: true

       # TODO - this appears to fail with `vagrant provision osxsierra`
       config.vm.synced_folder "./qaresults/#{name}", "/qaresults", create: true, type: "rsync"

       config.vm.hostname = "#{options[:hostname]}"
       config.vm.network :private_network, ip: options[:ipaddress]

       # Setup networking etc
       config.vm.provision :shell, :inline => $script_common

       # Do platfrom specifics: install packages, etc
       config.vm.provision :shell, path: "provisioning/#{options[:script]}"

       # Run QA and copy results back to host
       config.vm.provision :shell, path: "provisioning/qa.sh", args: [ qa_groups, change_range ]
       if pcp_mode == "release"
         config.vm.provision :shell, path: "provisioning/release.sh", args: [ "#{ options[:distro_name] }" ]
       elsif pcp_mode == "nightly"
         config.vm.provision :shell, path: "provisioning/release.sh", args: [ "#{ options[:distro_name] }".concat("-testing") ]
       end
    end
  end
end
