#!/usr/bin/env bash

# Copyright (c) 2021 - 2022 by Apex.AI Inc. All rights reserved.
#
# This program and the accompanying materials are made available under the
# terms of the Apache Software License 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0, or the MIT license
# which is available at https://opensource.org/licenses/MIT.
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0 OR MIT

# This script prepares the commit messages to include
# the issued ID at the beginning of the message.

COLOR_RESET='\033[0m'
COLOR_GREEN='\033[1;32m'
COLOR_YELLOW='\033[1;33m'

branch_name=$(git rev-parse --abbrev-ref HEAD)
branch_issue_number='0'

if [[ "$branch_name" =~ ^iox-[0-9]+ ]]; then
    branch_issue_number="$(echo "$branch_name" | grep -Eo 'iox-[0-9]+' | grep -Eo '[0-9]+')"
elif [[ "$branch_name" =~ ^iox-#[0-9]+ ]]; then
    branch_issue_number="$(echo "$branch_name" | grep -Eo 'iox-#[0-9]+' | grep -Eo '[0-9]+')"
    echo -e "$COLOR_YELLOW"
    echo -e "Warning: The branch name uses an obsolet convention with a hash in front of the issue number."
    echo -e "Please don't use this pattern in the future!"
    echo -e "$COLOR_RESET"
else
    echo -e "$COLOR_YELLOW"
    echo -e "Warning: The branch name doesn't follow the convention of 'iox-ISSUE_NUMBER'."
    echo -e "Commit message won't be autoformatted."
    echo -e "$COLOR_RESET"
    exit 0
fi

commit_msg=$(cat $1)
if [[ $commit_msg =~ ^iox-#[0-9]+ ]]; then
    commit_issue_number="$(echo "$commit_msg" | grep -Eo 'iox-#[0-9]+' | grep -Eo '[0-9]+')"
    if [[ "$commit_issue_number" != "$branch_issue_number" ]]; then
        echo -e "$COLOR_YELLOW"
        echo -e "Warning: Commit message issue number does not fit to branch issue number: '$branch_issue_number'"
        echo -e "Is this on purpose?"
        echo -e "Commit message will not be autoformatted."
        echo -e "$COLOR_RESET"
        exit 0
    fi
else
    echo -e "$COLOR_GREEN"
    echo -e "Info: Commit message does not start with issue number: '$commit_msg'"
    echo -e "Commit message will be autoformatted."
    echo -e "iox-#$branch_issue_number $(cat $1)" > $1
    echo -e "$COLOR_RESET"
fi
