dugout-> connection_mainframe.dugout
Define default connection-related routines. Assuming that standard tools are in place like SSH and scp, provide standardized wrappers for each type of process that utilizes 1 scoped routine. This applies for the connection tool, 1->N, and the routines, 1->N.
#!/bin/sh
###############################################################################
## COPYRIGHT (C) 2022-2024 NEW ENTITY OPERATIONS INC. ALL RIGHTS RESERVED
## CREATED: 2022/02/13
## INSTANCE: connection_mainframe.dugout
## MODIFIED: 2024/02/06
## OVERVIEW: Define default connection-related routines
## HISTORY: VERSION 1.5
## -> 2022/02/13 (VERSION 1.0) Production
## -> 2023/11/18 (VERSION 1.1)
## -> 2023/12/17 (VERSION 1.2)
## -> 2023/12/19 (VERSION 1.3)
## -> 2024/01/13 (VERSION 1.4)
## -> 2024/02/06 (VERSION 1.5) Production
###############################################################################
## @ based routines (Add in dynamic query-based routines so you don't have to
## keep static locations
###############################################################################
export COMMAND_CONNECTION_ARGS_FROM="${DEFAULT_COMMAND_CONNECTION_FROM}"
export COMMAND_CONNECTION_ARGS_TO="${DEFAULT_COMMAND_CONNECTION_TO}"
## Update your COMMAND_CONNECTION_ARGS_FROM/TO instances
DYNAMIC_CONNECTION_ROUTINE_FROM() {
set -- $*
export COMMAND_CONNECTION_ARGS_FROM="$*"
alert_connection_args_from "${COMMAND_CONNECTION_ARGS_FROM}"
}
DYNAMIC_CONNECTION_ROUTINE_TO() {
set -- $*
export COMMAND_CONNECTION_ARGS_TO="$*"
alert_connection_args_to "${COMMAND_CONNECTION_ARGS_TO}"
}
###############################################################################
## Access a remote web server
###############################################################################
## DEV_SERVER: Default
###############################################################################
## Go to the branch on the external server
GO_TO_BRANCH_DEV_SERVER() {
alert_connection_initiated_ssh "DEV_SERVER"
td_dash_forty
alert_connection_to_destination_with_user "${DSIP}" "${DEVUSER}"
td_dash_forty
alert_connection_details_summary "${DEVUSER}" "${DSIP}"
td_dash_forty
ssh -i "${SLUG_SERVER_KEY}" "${DEVUSER}@${DSIP}"
}
###############################################################################
## Nth DEV_SERVER
###############################################################################
#GO_TO_*CONTEXT*_*LOCATION*() {
# alert_connection_initiated_ssh "*REPLACE SERVER NAME HERE*"
# td_dash_forty
# alert_connection_to_destination_with_user "*REPLACE SERVER DESTINATION IP HERE*" "*REPLACE SERVER ACCESS USER HERE*"
# td_dash_forty
# alert_connection_details_summary "*REPLACE SERVER ACCESS USER HERE*" "*REPLACE SERVER ACCESS IP HERE*"
# td_dash_forty
# ssh -i "*SERVER KEY LOCATION HERE*" "*SERVER ACCESS USER HERE*@*SERVER_ACCESS_IP_HERE*"
#}
###############################################################################
## Copy from a server to a local resource with scp: Branches Enforced
###############################################################################
## Copy from-> Global Development Server Variables
## Use: Transfer from the Development server IP: DSIP
COPY_SLUG_FROM_SERVER() {
alert_connection_initiated_scp "${DSIP}"
td_dash_forty
alert_connection_to_destination_with_user "${DSIP}" "${DEVUSER}"
td_dash_forty
if [ -z "${1}" ]; then
alert_connection_scp_summary_external "${SLUG_SERVER_KEY}" "${DEVUSER}" "${DSIP}" "${DEVUSER}" "${branch_name}" "${bbext}" "${PATH_FROM_STOCK_0}"
td_dash_forty
if [ -d "${PATH_FROM_STOCK_0}" ]; then
if [ -z "${PATH_FROM_STOCK_0}${1}${bbext}" ]; then
scp -i "${SLUG_SERVER_KEY}" "${DEVUSER}@${DSIP}:/home/${DEVUSER}/${branch_name}${bbext}" "${PATH_FROM_STOCK_0}"
else
alert_confirmation_already_exists_overwrite
printf "Confirm with 1, or terminate with 0. \n" >&2
read -r confirmation_check
if [ "$confirmation_check" = "1" ]; then
scp -i "${SLUG_SERVER_KEY}" "${DEVUSER}@${DSIP}:/home/${DEVUSER}/${branch_name}${bbext}" "${PATH_FROM_STOCK_0}"
else
alert_connection_terminated_with_key
fi
fi
else
alert_connection_destination_invalid "${PATH_FROM_STOCK_0}"
fi
else
alert_connection_special_branch_logic "${1}" "${SLUG_SERVER_KEY}" "${DEVUSER}" "${DSIP}" "${DEVUSER}" "${bbext}" "${PATH_FROM_STOCK_0}"
td_dash_forty
if [ -d "${PATH_FROM_STOCK_0}" ]; then
if [ -f "${PATH_FROM_STOCK_0}${1}${bbext}" ]; then
alert_confirmation_already_exists_overwrite
printf "Confirm with 1, or terminate with 0. \n" >&2
read -r confirmation_check
if [ "$confirmation_check" = "1" ]; then
scp -i "${SLUG_SERVER_KEY}" "${DEVUSER}@${DSIP}:/home/${DEVUSER}/${1}${bbext}" "${PATH_FROM_STOCK_0}"
else
alert_connection_terminated_with_key
fi
else
scp -i "${SLUG_SERVER_KEY}" "${DEVUSER}@${DSIP}:/home/${DEVUSER}/${1}${bbext}" "${PATH_FROM_STOCK_0}"
fi
else
alert_connection_destination_invalid "${PATH_FROM_STOCK_0}"
fi
fi
}
## Emulate the mold of the first section in order to extend your access automation routines
#DO_DSIP_*CONTEXT*() {
# scp $DEVUSER@$DSIP:** *LOCAL_LOCATION*
#}
###############################################################################
## Copy to a server from a local resources: Branches Enforced
###############################################################################
## Default copyto slug and destination
COPY_SLUG_TO_SERVER() {
alert_connection_initiated_scp "${DSIP}"
td_dash_forty
alert_connection_to_destination_with_user "${DSIP}" "${DEVUSER}"
td_dash_forty
if [ -z "${1}" ]; then
alert_connection_scp_summary_internal "${SLUG_SERVER_KEY}" "${PATH_FROM_STOCK_0}" "${asset_transfer_location}" "${DEVUSER}" "${DSIP}" "${DDEVPROJECT}"
td_dash_forty
if [ -f "${PATH_FROM_STOCK_0}${asset_transfer_location}" ]; then
scp -i "${SLUG_SERVER_KEY}" "${PATH_FROM_STOCK_0}${asset_transfer_location}" "${DEVUSER}@${DSIP}:/home/${DEVUSER}/${DDEVPROJECT}/"
else
alert_connection_scp_archive_unavailable "${PATH_FROM_STOCK_0}" "${asset_transfer_location}"
fi
else
alert_connection_scp_internal_branch_in_use "${1}"
td_dash_forty
if [ -f "${PATH_FROM_STOCK_0}${1}" ]; then
alert_connection_scp_summary_internal_archive "${SLUG_SERVER_KEY}" "${PATH_FROM_STOCK_0}" "${$asset_transfer_location}" "${DEVUSER}" "${DSIP}" "${DDEVPROJECT}"
scp -i "${SLUG_SERVER_KEY}" "${PATH_FROM_STOCK_0}${asset_transfer_location}" "${DEVUSER}@${DSIP}:/home/${DEVUSER}/${DDEVPROJECT}/"
else
alert_connection_scp_archive_unavailable "${PATH_FROM_STOCK_0}" "${asset_transfer_location}"
alert_confirmation_check_if_directory_transfer_exists
printf "Confirm with 1, or terminate with 0. \n" >&2
read -r confirmation_check
if [ "$confirmation_check" = "1" ]; then
alert_connection_scp_summary_internal "${SLUG_SERVER_KEY}" "${PATH_FROM_STOCK_0}" "${asset_transfer_location}" "${DEVUSER}" "${DSIP}" "${DDEVPROJECT}"
scp -i "${SLUG_SERVER_KEY}" -r "${PATH_FROM_STOCK_0}${asset_transfer_location}" "${DEVUSER}@${DSIP}:/home/${DEVUSER}/${DDEVPROJECT}/"
else
alert_connection_scp_archive_unavailable_no_checks
fi
fi
fi
}
## Emulate the mold of the first section in order to extend your access automation routines
#COPY_*CONTEXT*_SLUG_TO_SERVER() {
# scp -r "*LOCAL_LOCATION*" "${DEVUSER}@${DSIP}:**"
#}