temp commit

This commit is contained in:
Adw8 2024-11-06 12:15:55 +05:30
parent cbc00a5902
commit 87ef21082b

View File

@ -44,72 +44,74 @@ EOF
echo "Files generated successfully"
RECORD_FILE=records/application-record.yml
echo "Application record: "
cat $RECORD_FILE
# Publish ApplicationRecord
publish_response=$(yarn --silent laconic -c $CONFIG_FILE registry 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')
echo "ApplicationRecord published"
echo $RECORD_ID
# publish_response=$(yarn --silent laconic -c $CONFIG_FILE registry 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')
# echo "ApplicationRecord published"
# echo $RECORD_ID
# Set name to record
REGISTRY_APP_LRN="lrn://$AUTHORITY/applications/deploy-frontend"
# REGISTRY_APP_LRN="lrn://$AUTHORITY/applications/deploy-frontend"
sleep 2
yarn --silent laconic -c $CONFIG_FILE registry name set "$REGISTRY_APP_LRN@${PACKAGE_VERSION}" "$RECORD_ID"
rc=$?
if [ $rc -ne 0 ]; then
echo "FATAL: Failed to set name: $REGISTRY_APP_LRN@${PACKAGE_VERSION}"
exit $rc
fi
sleep 2
yarn --silent laconic -c $CONFIG_FILE registry name set "$REGISTRY_APP_LRN@${LATEST_HASH}" "$RECORD_ID"
rc=$?
if [ $rc -ne 0 ]; then
echo "FATAL: Failed to set hash"
exit $rc
fi
sleep 2
# Set name if latest release
yarn --silent laconic -c $CONFIG_FILE registry name set "$REGISTRY_APP_LRN" "$RECORD_ID"
rc=$?
if [ $rc -ne 0 ]; then
echo "FATAL: Failed to set release"
exit $rc
fi
echo "$REGISTRY_APP_LRN set for ApplicationRecord"
# sleep 2
# yarn --silent laconic -c $CONFIG_FILE registry name set "$REGISTRY_APP_LRN@${PACKAGE_VERSION}" "$RECORD_ID"
# rc=$?
# if [ $rc -ne 0 ]; then
# echo "FATAL: Failed to set name: $REGISTRY_APP_LRN@${PACKAGE_VERSION}"
# exit $rc
# fi
# sleep 2
# yarn --silent laconic -c $CONFIG_FILE registry name set "$REGISTRY_APP_LRN@${LATEST_HASH}" "$RECORD_ID"
# rc=$?
# if [ $rc -ne 0 ]; then
# echo "FATAL: Failed to set hash"
# exit $rc
# fi
# sleep 2
# # Set name if latest release
# yarn --silent laconic -c $CONFIG_FILE registry name set "$REGISTRY_APP_LRN" "$RECORD_ID"
# rc=$?
# if [ $rc -ne 0 ]; then
# echo "FATAL: Failed to set release"
# exit $rc
# fi
# echo "$REGISTRY_APP_LRN set for ApplicationRecord"
# Check if record found for REGISTRY_APP_LRN
query_response=$(yarn --silent laconic -c $CONFIG_FILE registry name resolve "$REGISTRY_APP_LRN")
rc=$?
if [ $rc -ne 0 ]; then
echo "FATAL: Failed to query name"
exit $rc
fi
APP_RECORD=$(echo $query_response | jq '.[0]')
if [ -z "$APP_RECORD" ] || [ "null" == "$APP_RECORD" ]; then
echo "No record found for $REGISTRY_APP_LRN."
exit 1
fi
# # Check if record found for REGISTRY_APP_LRN
# query_response=$(yarn --silent laconic -c $CONFIG_FILE registry name resolve "$REGISTRY_APP_LRN")
# rc=$?
# if [ $rc -ne 0 ]; then
# echo "FATAL: Failed to query name"
# exit $rc
# fi
# APP_RECORD=$(echo $query_response | jq '.[0]')
# if [ -z "$APP_RECORD" ] || [ "null" == "$APP_RECORD" ]; then
# echo "No record found for $REGISTRY_APP_LRN."
# exit 1
# fi
# Get payment address for deployer
paymentAddress=$(yarn --silent laconic -c config.yml registry name resolve "$DEPLOYER_LRN" | jq -r '.[0].attributes.paymentAddress')
paymentAmount=$(yarn --silent laconic -c config.yml registry name resolve "$DEPLOYER_LRN" | jq -r '.[0].attributes.minimumPayment' | sed 's/alnt//g')
# Pay deployer if paymentAmount is not null
if [[ -n "$paymentAmount" && "$paymentAmount" != "null" ]]; then
payment=$(yarn --silent laconic -c config.yml registry tokens send --address "$paymentAddress" --type alnt --quantity "$paymentAmount")
# # Get payment address for deployer
# paymentAddress=$(yarn --silent laconic -c config.yml registry name resolve "$DEPLOYER_LRN" | jq -r '.[0].attributes.paymentAddress')
# paymentAmount=$(yarn --silent laconic -c config.yml registry name resolve "$DEPLOYER_LRN" | jq -r '.[0].attributes.minimumPayment' | sed 's/alnt//g')
# # Pay deployer if paymentAmount is not null
# if [[ -n "$paymentAmount" && "$paymentAmount" != "null" ]]; then
# payment=$(yarn --silent laconic -c config.yml registry tokens send --address "$paymentAddress" --type alnt --quantity "$paymentAmount")
# Extract the transaction hash
txHash=$(echo "$payment" | jq -r '.tx.hash')
echo "Paid deployer with txHash as $txHash"
# # Extract the transaction hash
# txHash=$(echo "$payment" | jq -r '.tx.hash')
# echo "Paid deployer with txHash as $txHash"
else
echo "Payment amount is null; skipping payment."
fi
# else
# echo "Payment amount is null; skipping payment."
# fi
# Generate application-deployment-request.yml
cat >./records/application-deployment-request.yml <<EOF
@ -136,13 +138,15 @@ record:
EOF
RECORD_FILE=records/application-deployment-request.yml
echo "Application deployment request"
cat $RECORD_FILE
sleep 2
deployment_response=$(yarn --silent laconic -c $CONFIG_FILE registry 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')
echo "ApplicationDeploymentRequest published"
echo $DEPLOYMENT_REQUEST_ID
# deployment_response=$(yarn --silent laconic -c $CONFIG_FILE registry 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')
# echo "ApplicationDeploymentRequest published"
# echo $DEPLOYMENT_REQUEST_ID