178 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			178 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env zsh
 | 
						|
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:$HOME/bin
 | 
						|
HOSTNAME=$(hostname)
 | 
						|
LOCATION=$(hostname|cut -d . -f2)
 | 
						|
LOCKFILE="${HOME}/lock"
 | 
						|
REF=$(echo "${1:=origin/master}"|sed -e 's!:!/!')
 | 
						|
 | 
						|
# get rpc credentials
 | 
						|
BITCOIN_RPC_USER=$(grep '^rpcuser' /bitcoin/bitcoin.conf | cut -d '=' -f2)
 | 
						|
BITCOIN_RPC_PASS=$(grep '^rpcpassword' /bitcoin/bitcoin.conf | cut -d '=' -f2)
 | 
						|
ELEMENTS_RPC_USER=$(grep '^rpcuser' /elements/elements.conf | cut -d '=' -f2)
 | 
						|
ELEMENTS_RPC_PASS=$(grep '^rpcpassword' /elements/elements.conf | cut -d '=' -f2)
 | 
						|
 | 
						|
# get mysql credentials
 | 
						|
MYSQL_CRED_FILE=${HOME}/.mysql_credentials
 | 
						|
if [ -f "${MYSQL_CRED_FILE}" ];then
 | 
						|
    . ${MYSQL_CRED_FILE}
 | 
						|
fi
 | 
						|
 | 
						|
if [ -f "${LOCKFILE}" ];then
 | 
						|
    echo "upgrade already running? check lockfile ${LOCKFILE}"
 | 
						|
    exit 1
 | 
						|
fi
 | 
						|
 | 
						|
# on exit, remove lockfile but preserve exit code
 | 
						|
trap "rv=\$?; rm -f "${LOCKFILE}"; exit \$rv" INT TERM EXIT
 | 
						|
 | 
						|
# create lockfile
 | 
						|
touch "${LOCKFILE}"
 | 
						|
 | 
						|
# notify logged in users
 | 
						|
echo "Upgrading mempool to ${REF}" | wall
 | 
						|
 | 
						|
update_repo()
 | 
						|
{
 | 
						|
    local site="$1"
 | 
						|
    echo "[*] Upgrading ${site} to ${REF}"
 | 
						|
    cd "$HOME/${site}" || exit 1
 | 
						|
 | 
						|
    git fetch origin || exit 1
 | 
						|
    for remote in origin hunicus mononaut;do
 | 
						|
        git remote add "${remote}" "https://github.com/${remote}/mempool" >/dev/null 2>&1
 | 
						|
        git fetch "${remote}" || exit 1
 | 
						|
    done
 | 
						|
 | 
						|
    if [ $(git tag -l "${REF}") ];then
 | 
						|
        git reset --hard "tags/${REF}" || exit 1
 | 
						|
    elif [ $(git branch -r -l "origin/${REF}") ];then
 | 
						|
        git reset --hard "origin/${REF}" || exit 1
 | 
						|
    else
 | 
						|
        git reset --hard "${REF}" || exit 1
 | 
						|
    fi
 | 
						|
    export HASH=$(git rev-parse HEAD)
 | 
						|
}
 | 
						|
 | 
						|
build_frontend()
 | 
						|
{
 | 
						|
    local site="$1"
 | 
						|
    echo "[*] Building frontend for ${site}"
 | 
						|
    [ -z "${HASH}" ] && exit 1
 | 
						|
    cd "$HOME/${site}/frontend" || exit 1
 | 
						|
    if [ ! -e "mempool-frontend-config.json" ];then
 | 
						|
        cp "${HOME}/mempool/production/mempool-frontend-config.${site}.json" "mempool-frontend-config.json"
 | 
						|
    fi
 | 
						|
    npm install --omit=dev --omit=optional || exit 1
 | 
						|
    npm run build || exit 1
 | 
						|
}
 | 
						|
 | 
						|
build_unfurler()
 | 
						|
{
 | 
						|
    local site="$1"
 | 
						|
    echo "[*] Building unfurler for ${site}"
 | 
						|
    [ -z "${HASH}" ] && exit 1
 | 
						|
    cd "$HOME/${site}/unfurler" || exit 1
 | 
						|
    if [ ! -e "config.json" ];then
 | 
						|
        cp "${HOME}/mempool/production/unfurler-config.${site}.json" "config.json"
 | 
						|
    fi
 | 
						|
    PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true npm install || exit 1
 | 
						|
    npm run build || exit 1
 | 
						|
}
 | 
						|
 | 
						|
build_backend()
 | 
						|
{
 | 
						|
    local site="$1"
 | 
						|
    echo "[*] Building backend for ${site}"
 | 
						|
    [ -z "${HASH}" ] && exit 1
 | 
						|
    cd "$HOME/${site}/backend" || exit 1
 | 
						|
    if [ ! -e "mempool-config.json" ];then
 | 
						|
        cp "${HOME}/mempool/production/mempool-config.${site}.json" "mempool-config.json"
 | 
						|
	sed -i .orig \
 | 
						|
	-e "s!__BITCOIN_RPC_USER__!${BITCOIN_RPC_USER}!" \
 | 
						|
	-e "s!__BITCOIN_RPC_PASS__!${BITCOIN_RPC_PASS}!" \
 | 
						|
	-e "s!__ELEMENTS_RPC_USER__!${ELEMENTS_RPC_USER}!" \
 | 
						|
	-e "s!__ELEMENTS_RPC_PASS__!${ELEMENTS_RPC_PASS}!" \
 | 
						|
        -e "s!__MEMPOOL_MAINNET_USER__!${MEMPOOL_MAINNET_USER}!" \
 | 
						|
        -e "s!__MEMPOOL_MAINNET_PASS__!${MEMPOOL_MAINNET_PASS}!" \
 | 
						|
        -e "s!__MEMPOOL_TESTNET_USER__!${MEMPOOL_TESTNET_USER}!" \
 | 
						|
        -e "s!__MEMPOOL_TESTNET_PASS__!${MEMPOOL_TESTNET_PASS}!" \
 | 
						|
        -e "s!__MEMPOOL_SIGNET_USER__!${MEMPOOL_SIGNET_USER}!" \
 | 
						|
        -e "s!__MEMPOOL_SIGNET_PASS__!${MEMPOOL_SIGNET_PASS}!" \
 | 
						|
        -e "s!__LN_MEMPOOL_MAINNET_USER__!${LN_MEMPOOL_MAINNET_USER}!" \
 | 
						|
        -e "s!__LN_MEMPOOL_MAINNET_PASS__!${LN_MEMPOOL_MAINNET_PASS}!" \
 | 
						|
        -e "s!__LN_MEMPOOL_TESTNET_USER__!${LN_MEMPOOL_TESTNET_USER}!" \
 | 
						|
        -e "s!__LN_MEMPOOL_TESTNET_PASS__!${LN_MEMPOOL_TESTNET_PASS}!" \
 | 
						|
        -e "s!__LN_MEMPOOL_SIGNET_USER__!${LN_MEMPOOL_SIGNET_USER}!" \
 | 
						|
        -e "s!__LN_MEMPOOL_SIGNET_PASS__!${LN_MEMPOOL_SIGNET_PASS}!" \
 | 
						|
        -e "s!__MEMPOOL_LIQUID_USER__!${MEMPOOL_LIQUID_USER}!" \
 | 
						|
        -e "s!__MEMPOOL_LIQUID_PASS__!${MEMPOOL_LIQUID_PASS}!" \
 | 
						|
        -e "s!__MEMPOOL_LIQUIDTESTNET_USER__!${LIQUIDTESTNET_USER}!" \
 | 
						|
        -e "s!__MEMPOOL_LIQUIDTESTNET_PASS__!${MEMPOOL_LIQUIDTESTNET_PASS}!" \
 | 
						|
        -e "s!__MEMPOOL_BISQ_USER__!${MEMPOOL_BISQ_USER}!" \
 | 
						|
        -e "s!__MEMPOOL_BISQ_PASS__!${MEMPOOL_BISQ_PASS}!" \
 | 
						|
	"mempool-config.json"
 | 
						|
    fi
 | 
						|
    npm install --omit=dev --omit=optional || exit 1
 | 
						|
    npm run build || exit 1
 | 
						|
}
 | 
						|
 | 
						|
ship_frontend()
 | 
						|
{
 | 
						|
    local site="$1"
 | 
						|
    cd "$HOME/${site}/frontend" || exit 1
 | 
						|
    mkdir -p "${HOME}/public_html/${site}/"
 | 
						|
    rsync -av "./dist/mempool/browser/" "${HOME}/public_html/${site}/" || exit 1
 | 
						|
}
 | 
						|
 | 
						|
# load nvm if necessary
 | 
						|
export NVM_DIR="${HOME}/.nvm"
 | 
						|
source "${NVM_DIR}/nvm.sh"
 | 
						|
 | 
						|
# what to look for
 | 
						|
frontends=(mainnet liquid bisq)
 | 
						|
backends=(mainnet testnet signet liquid liquidtestnet bisq)
 | 
						|
frontend_repos=()
 | 
						|
backend_repos=()
 | 
						|
 | 
						|
# find which frontend repos we have
 | 
						|
for repo in $frontends;do
 | 
						|
    [ -d "${repo}" ] && frontend_repos+="${repo}"
 | 
						|
done
 | 
						|
 | 
						|
# find which backend repos we have
 | 
						|
for repo in $backends;do
 | 
						|
    [ -d "${repo}" ] && backend_repos+="${repo}"
 | 
						|
    [ -d "${repo}-lightning" ] && backend_repos+="${repo}-lightning"
 | 
						|
done
 | 
						|
 | 
						|
# update all repos
 | 
						|
for repo in $backend_repos;do
 | 
						|
    update_repo "${repo}"
 | 
						|
done
 | 
						|
 | 
						|
# build unfurlers
 | 
						|
for repo in mainnet liquid bisq;do
 | 
						|
    build_unfurler "${repo}"
 | 
						|
done
 | 
						|
 | 
						|
# build backends
 | 
						|
for repo in $backend_repos;do
 | 
						|
    build_backend "${repo}"
 | 
						|
done
 | 
						|
 | 
						|
# build frontends
 | 
						|
for repo in $frontend_repos;do
 | 
						|
    build_frontend "${repo}"
 | 
						|
done
 | 
						|
 | 
						|
# ship frontend dist folders to public_html
 | 
						|
for target in mainnet liquid bisq;do
 | 
						|
    ship_frontend "${target}"
 | 
						|
done
 | 
						|
 | 
						|
# notify everyone
 | 
						|
echo "${HOSTNAME} updated to \`${REF}\` @ \`${HASH}\`" | /usr/local/bin/keybase chat send --nonblock --channel general mempool.dev
 | 
						|
echo "${HOSTNAME} updated to \`${REF}\` @ \`${HASH}\`" | /usr/local/bin/keybase chat send --nonblock --channel general "mempool.ops.${LOCATION}"
 | 
						|
 | 
						|
exit 0
 |