#!/usr/bin/env python2

#
# Usage:
#   ./bumper.py
#
# Configurable environment variables:
# - BUMPER_VERSION_6 overrides the 6.x.x version.
# - BUMPER_VERSION_7 overrides the 7.x.x version.
# - BUMPER_USE_STAGING_IMAGES set to "true" causes the
#   docker.elastic.co/staging/ docker registry namespace to be used.
#

import re
import os
import glob
import subprocess
import fileinput

os.chdir(os.path.join(os.path.dirname(__file__), ".."))

versions = {
    7: os.environ.get("BUMPER_VERSION_7", "7.10.0-SNAPSHOT"),
}

chart_version = versions[7]

file_patterns = [
    "*/examples/*/*.y*ml",
    "*/examples/*/README.md",
    "helpers/examples.mk",
    "*/README.md",
    "*/values.y*ml",
    "*/Chart.y*ml",
]

goss_files = ["*/examples/*/test/goss*.y*ml"]


# Anything matching this regex won't have version bumps changed
# This was happening because strings like 127.0.0.1 match for 7.0.0
# "7.0.0-alpha1" is also used in elasticsearch upgrade test and so shouldn't
# been bump
blacklist = re.compile(r".*127.0.0.1.*|.*7.0.0-alpha1.*")

print("Updating versions...")

for major, version in versions.iteritems():
    r = re.compile(r"{0}\.[0-9]*\.[0-9]*-?(SNAPSHOT)?".format(major))
    for pattern in file_patterns:
        for f in glob.glob(pattern):
            print(f)
            for line in fileinput.input([f], inplace=True):
                if re.match(blacklist, line):
                    print(line.rstrip())
                else:
                    if f.endswith("Chart.yaml") and line.startswith("version:"):
                        print(r.sub(chart_version, line.rstrip()))
                    else:
                        print(r.sub(version, line.rstrip()))
    for pattern in goss_files:
        for f in glob.glob(pattern):
            print(f)
            for line in fileinput.input([f], inplace=True):
                # If we have a version with a build id, like 7.6.2-abcdabcd,
                # strip off the latter part and only use the 7.6.2 in the goss
                # tests
                version_without_build_id = re.sub(r"-.*", "", version)
                if re.match(blacklist, line):
                    print(line.rstrip())
                else:
                    print(r.sub(version_without_build_id, line.rstrip()))


if os.environ.get("BUMPER_USE_STAGING_IMAGES") == "true":
    image_file_patterns = file_patterns + [
        "*/tests/*.py",
        "**/templates/*.tpl",
        # some tests use docker images in their makefile
        "*/examples/*/Makefile",
    ]

    print("\nUpdating namespaces...")

    for pattern in image_file_patterns:
        for f in glob.glob(pattern):
            print(f)
            for line in fileinput.input([f], inplace=True):
                print(
                    re.sub(
                        r"docker.elastic.co/.+?/",
                        "docker.elastic.co/staging/",
                        line.rstrip(),
                    )
                )

    print("\nUpdating imagePullSecrets...")

    for f in glob.glob("*/values.y*ml"):
        print(f)
        for line in fileinput.input([f], inplace=True):
            print(
                line.rstrip().replace(
                    "imagePullSecrets: []",
                    "imagePullSecrets: [{name: registry-staging}]",
                )
            )
