2024-02-27 06:22:05 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2024-02-29 07:41:01 +00:00
|
|
|
# Repository URL
|
|
|
|
REPO_URL="https://git.vdb.to/cerc-io/snowballtools-base"
|
|
|
|
|
|
|
|
# Get the latest commit hash from the repository
|
|
|
|
LATEST_HASH=$(git ls-remote $REPO_URL HEAD | awk '{print $1}')
|
|
|
|
|
|
|
|
# Extract version from ../frontend/package.json
|
|
|
|
PACKAGE_VERSION=$(jq -r '.version' ../frontend/package.json)
|
|
|
|
|
|
|
|
# Current date and time for note
|
|
|
|
CURRENT_DATE_TIME=$(date -u)
|
|
|
|
|
2024-02-29 16:59:23 +00:00
|
|
|
CONFIG_FILE=config.yml
|
2024-04-03 14:56:34 +00:00
|
|
|
REGISTRY_BOND_ID="99c0e9aec0ac1b8187faa579be3b54f93fafb6060ac1fd29170b860df605be32"
|
2024-02-29 16:59:23 +00:00
|
|
|
|
|
|
|
# Reference: https://git.vdb.to/cerc-io/test-progressive-web-app/src/branch/main/scripts
|
|
|
|
|
|
|
|
# Get latest version from registry and increment application-record version
|
|
|
|
NEW_APPLICATION_VERSION=$(yarn --silent laconic -c $CONFIG_FILE cns record list --type ApplicationRecord --all --name "snowballtools-base-frontend" 2>/dev/null | jq -r -s ".[] | sort_by(.createTime) | reverse | [ .[] | select(.bondId == \"$REGISTRY_BOND_ID\") ] | .[0].attributes.version" | awk -F. -v OFS=. '{$NF += 1 ; print}')
|
|
|
|
|
|
|
|
if [ -z "$NEW_APPLICATION_VERSION" ] || [ "1" == "$NEW_APPLICATION_VERSION" ]; then
|
|
|
|
# Set application-record version if no previous records were found
|
|
|
|
NEW_APPLICATION_VERSION=0.0.1
|
2024-02-29 07:41:01 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Generate application-deployment-request.yml
|
2024-06-22 21:24:40 +00:00
|
|
|
cat >./records/application-deployment-request.yml <<EOF
|
2024-02-29 07:41:01 +00:00
|
|
|
record:
|
|
|
|
type: ApplicationDeploymentRequest
|
|
|
|
version: '1.0.0'
|
|
|
|
name: snowballtools-base-frontend@$PACKAGE_VERSION
|
|
|
|
application: crn://snowballtools/applications/snowballtools-base-frontend@$PACKAGE_VERSION
|
|
|
|
dns: dashboard
|
|
|
|
config:
|
|
|
|
env:
|
2024-05-22 14:21:00 +00:00
|
|
|
LACONIC_HOSTED_CONFIG_server_url: https://snowballtools-base-api-001.apps.snowballtools.com
|
|
|
|
LACONIC_HOSTED_CONFIG_github_clientid: b7c63b235ca1dd5639ab
|
2024-06-22 21:24:40 +00:00
|
|
|
LACONIC_HOSTED_CONFIG_github_templaterepo: snowball-tools/test-progressive-web-app
|
|
|
|
LACONIC_HOSTED_CONFIG_github_pwa_templaterepo: snowball-tools/test-progressive-web-app
|
|
|
|
LACONIC_HOSTED_CONFIG_github_image_upload_templaterepo: snowball-tools/image-upload-pwa-example
|
2024-05-22 14:21:00 +00:00
|
|
|
LACONIC_HOSTED_CONFIG_wallet_connect_id: eda9ba18042a5ea500f358194611ece2
|
2024-02-29 07:41:01 +00:00
|
|
|
meta:
|
|
|
|
note: Added by Snowball @ $CURRENT_DATE_TIME
|
|
|
|
repository: "$REPO_URL"
|
|
|
|
repository_ref: $LATEST_HASH
|
|
|
|
EOF
|
|
|
|
|
|
|
|
# Generate application-record.yml with incremented version
|
2024-06-22 21:24:40 +00:00
|
|
|
cat >./records/application-record.yml <<EOF
|
2024-02-29 07:41:01 +00:00
|
|
|
record:
|
|
|
|
type: ApplicationRecord
|
|
|
|
version: $NEW_APPLICATION_VERSION
|
|
|
|
repository_ref: $LATEST_HASH
|
|
|
|
repository: ["$REPO_URL"]
|
|
|
|
app_type: webapp
|
|
|
|
name: snowballtools-base-frontend
|
|
|
|
app_version: $PACKAGE_VERSION
|
|
|
|
EOF
|
|
|
|
|
|
|
|
echo "Files generated successfully."
|
|
|
|
|
2024-02-27 06:22:05 +00:00
|
|
|
RECORD_FILE=records/application-record.yml
|
|
|
|
|
|
|
|
# Publish ApplicationRecord
|
2024-06-18 17:15:31 +00:00
|
|
|
publish_response=$(yarn --silent laconic -c $CONFIG_FILE cns record publish --filename $RECORD_FILE)
|
|
|
|
rc=$?
|
|
|
|
if [ $rc -ne 0 ]; then
|
|
|
|
echo "FATAL: Failed to publish record"
|
|
|
|
exit $rc
|
|
|
|
fi
|
|
|
|
RECORD_ID=$(echo $publish_response | jq -r '.id')
|
2024-02-27 06:22:05 +00:00
|
|
|
echo "ApplicationRecord published"
|
|
|
|
echo $RECORD_ID
|
|
|
|
|
|
|
|
# Set name to record
|
|
|
|
REGISTRY_APP_CRN="crn://snowballtools/applications/snowballtools-base-frontend"
|
|
|
|
|
2024-02-29 16:59:23 +00:00
|
|
|
sleep 2
|
2024-02-29 07:41:01 +00:00
|
|
|
yarn --silent laconic -c $CONFIG_FILE cns name set "$REGISTRY_APP_CRN@${PACKAGE_VERSION}" "$RECORD_ID"
|
2024-06-18 17:15:31 +00:00
|
|
|
rc=$?
|
|
|
|
if [ $rc -ne 0 ]; then
|
|
|
|
echo "FATAL: Failed to set name: $REGISTRY_APP_CRN@${PACKAGE_VERSION}"
|
|
|
|
exit $rc
|
|
|
|
fi
|
2024-02-29 16:59:23 +00:00
|
|
|
sleep 2
|
2024-02-29 07:41:01 +00:00
|
|
|
yarn --silent laconic -c $CONFIG_FILE cns name set "$REGISTRY_APP_CRN@${LATEST_HASH}" "$RECORD_ID"
|
2024-06-18 17:15:31 +00:00
|
|
|
rc=$?
|
|
|
|
if [ $rc -ne 0 ]; then
|
|
|
|
echo "FATAL: Failed to set hash"
|
|
|
|
exit $rc
|
|
|
|
fi
|
2024-02-29 16:59:23 +00:00
|
|
|
sleep 2
|
2024-02-27 06:22:05 +00:00
|
|
|
# Set name if latest release
|
|
|
|
yarn --silent laconic -c $CONFIG_FILE cns name set "$REGISTRY_APP_CRN" "$RECORD_ID"
|
2024-06-18 17:15:31 +00:00
|
|
|
rc=$?
|
|
|
|
if [ $rc -ne 0 ]; then
|
|
|
|
echo "FATAL: Failed to set release"
|
|
|
|
exit $rc
|
|
|
|
fi
|
2024-02-27 06:22:05 +00:00
|
|
|
echo "$REGISTRY_APP_CRN set for ApplicationRecord"
|
|
|
|
|
|
|
|
# Check if record found for REGISTRY_APP_CRN
|
2024-06-18 17:15:31 +00:00
|
|
|
query_response=$(yarn --silent laconic -c $CONFIG_FILE cns name resolve "$REGISTRY_APP_CRN")
|
|
|
|
rc=$?
|
|
|
|
if [ $rc -ne 0 ]; then
|
|
|
|
echo "FATAL: Failed to query name"
|
|
|
|
exit $rc
|
|
|
|
fi
|
|
|
|
APP_RECORD=$(echo $query_response | jq '.[0]')
|
2024-02-27 06:22:05 +00:00
|
|
|
if [ -z "$APP_RECORD" ] || [ "null" == "$APP_RECORD" ]; then
|
|
|
|
echo "No record found for $REGISTRY_APP_CRN."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
RECORD_FILE=records/application-deployment-request.yml
|
|
|
|
|
2024-02-29 16:59:23 +00:00
|
|
|
sleep 2
|
2024-06-18 17:15:31 +00:00
|
|
|
deployment_response=$(yarn --silent laconic -c $CONFIG_FILE cns record publish --filename $RECORD_FILE)
|
|
|
|
if [ $rc -ne 0 ]; then
|
|
|
|
echo "FATAL: Failed to query deployment request"
|
|
|
|
exit $rc
|
|
|
|
fi
|
|
|
|
DEPLOYMENT_REQUEST_ID=$(echo $deployment_response | jq -r '.id')
|
2024-02-27 06:22:05 +00:00
|
|
|
echo "ApplicationDeploymentRequest published"
|
|
|
|
echo $DEPLOYMENT_REQUEST_ID
|