#!/bin/sh
# This file is in the public domain.

set -eu

if ! git --version >/dev/null; then
  echo "git not installed"
  exit 1
fi

# Make sure that "git pull" et al. also update
# submodules to avoid accidental rollbacks.
git config --local submodule.recurse true || true

echo "$0: Updating submodules"
# Caution: We do NOT want to fetch the latest version with --remote,
# but instead always the one that's recorded in the repository.
echo | git submodule update --init --force || true

# This is more portable than `which' but comes with
# the caveat of not(?) properly working on busybox's ash:
existence()
{
    command -v "$1" >/dev/null 2>&1
}

# Freeze non-generated SQL files that must no longer be edited.
for n in 0001 0005 0006 0007 0008
do
    chmod -w src/exchangedb/sql-schema/exchange-$n.sql &>/dev/null || true
done
for n in 0002 0003 0004 0009 0010 0011
do
    chmod -w src/exchangedb/sql-schema/$n-*.sql &>/dev/null || true
done
for n in 0001
do
    chmod -w src/exchangedb/sql-schema/auditor-triggers-$n.sql* &>/dev/null || true
done
for n in 0001
do
    chmod -w src/auditordb/auditor-$n.sql &>/dev/null || true
done
for n in 0002 0003
do
    chmod -w src/auditordb/$n-*.sql &> /dev/null || true
done

if existence uncrustify; then
    echo "Installing uncrustify hook and configuration"
    # Install uncrustify format symlink (if possible)
    ln -s contrib/uncrustify.cfg uncrustify.cfg 2> /dev/null || true
    # Install pre-commit hook (if possible)
    ln -s ../../contrib/uncrustify_precommit .git/hooks/pre-commit 2> /dev/null || true
else
    echo "Uncrustify not detected, hook not installed. Please install uncrustify if you plan on doing development"
fi


# Generate Makefile.am in contrib/
#cd contrib
#rm -f Makefile.am
#echo 'dist_amlspapkgdata_DATA = \' > Makefile.am.ext
#find wallet-core/aml-backoffice/ -type f | sort | awk '{print "  " $1 " \\" }' >> Makefile.am.ext
## Remove extra '\' at the end of the file
#truncate -s -2 Makefile.am.ext
#
#echo "" >> Makefile.am.ext
#echo 'dist_kycspapkgdata_DATA = \' >> Makefile.am.ext
#find wallet-core/kyc/ -type f | sort | awk '{print "  " $1 " \\" }' >> Makefile.am.ext
## Remove extra '\' at the end of the file
#truncate -s -2 Makefile.am.ext
#
#echo "" >> Makefile.am.ext
#echo 'dist_auditorspapkgdata_DATA = \' >> Makefile.am.ext
#find wallet-core/auditor-backoffice/ -type f | sort | awk '{print "  " $1 " \\" }' >> Makefile.am.ext
## Remove extra '\' at the end of the file
#truncate -s -2 Makefile.am.ext
#
#
#cat Makefile.am.in Makefile.am.ext >> Makefile.am
## Prevent accidental editing of the generated Makefile.am
#chmod -w Makefile.am
#cd ..
#
#echo "$0: Running autoreconf"
#autoreconf -fi
