configure-> protected: env_pgadmin4.sh
Configure the pgadmin4 environment according to a preset routine.
#!/bin/sh
###############################################################################
## COPYRIGHT (C) 2022-2024 NEW ENTITY OPERATIONS INC. ALL RIGHTS RESERVED
## CREATED: 2022/02/13
## INSTANCE: configure/protected/env_pgadmin4.sh
## MODIFIED: 2024/01/01
## OVERVIEW: Restart your virtual environment inside of pgadmin4 and download
## the required programs
## HISTORY: VERSION 1.3
## -> 2022/02/13 (VERSION 1.0) Development
## -> 2023/12/17 (VERSION 1.1)
## -> 2023/12/19 (VERSION 1.2)
## -> 2024/01/01 (VERSION 1.3) Production
###############################################################################
## Documentation:
## This script depends on postgresql already being correctly configured
## To help you with this, please ensure the following works
## 1.) You have to turn on postgres:
## sudo systemctl start postgresql
## 2.) You can check the status by doing:
## sudo systemctl status
## NOTE* if you plan on overloading the systemd unit file in
## /etc/systemd/system - You have to make the pgadmin4 dropin to stop and start
## pgadmin4
## 3.) Become the postgres user if you would like, create if necessary
## sudo -iu postgres
## 4.) As the postgres user, you can check you database by doing
## psql -l
###############################################################################
## Credentials:
## For connections: Make the DB only available for the postgres user
## with a hashed password. This can change when you need to later.
##
## USE USERNAME@YOUREMAIL.com
## Password should be moderately complex
## Grand access to additional users either through a coket or through the
## network as needed
##
## The password to login to the postgres user is ...
## The postgres users system login password is ...
###############################################################################
## Add filesystem routines that an be run as a batch below:
## This file sources paths from $dugout_dir/system_paths.dugout
###############################################################################
## Source the wrappers
. "$wrappers_generic"
## ACS CHECK
helper_acs_check "configure"
## Change directoreis to the trine instance
if [ "$(id -u)" -ne "$SCRIPT_ACS_RUNNER_CONFIGURE" ]; then
echo "--------------------------------------------------------------------"
printf "%b env_pgadmin4.sh %b\n" "${tmodLabelHeading}" "${tmodReset}"
printf " -> %s\n" "${PATH_PGADMIN4}"
echo "--------------------------------------------------------------------"
if [ -d "${PATH_PGADMIN4}" ]; then
CWD="$(pwd)"
perform_tree_walk_protected "${PATH_PGADMIN4}"
printf "Navigated to the location: %s\n" "$PATH_PGADMIN4"
echo "confirm operation with 1, kill the operations with 0"
## Get the confirmation cue: 1
## Or, pass the destruction cue: 0
printf "Confirm operations?: \n" >&2
read -r confirmation_check
## Provide a password option
#read -sp 'Provide password: ' password_check
if [ "${confirmation_check}" = "1" ]; then
echo "The operation was continued with the continuation key, 1"
## Make sure there are no blank variables in a -R remove function so you don't
## Don't accidentially nuke your machine
## Remove the previous virtual environment and cache
if [ -n "${PATH_PGADMIN4}${PATH_PYCACHE}" ]; then
perform_removal_generic "-R" "${PATH_PGADMIN4}${PATH_PYCACHE}"
else
printf "%s was not located... can't remove it.\n" "${PATH_PGADMIN4}${PATH_PYCACHE}"
fi
if [ -n "${PATH_PGADMIN4}${PATH_VE_PGADMIN4}" ]; then
perform_removal_generic "-R" "${PATH_PGADMIN4}${PATH_VE_PGADMIN4}"
else
printf "%s was not located... can't remove it.\n" "${PATH_PGADMIN4}${PATH_VE_PGADMIN4}"
fi
## Create a new virtual environment in the relative position
perform_system_action "python" "-m" "${PATH_V_STARTER}" "${PATH_VE_PGADMIN4}"
## Activate the virtual environment
perform_system_action "source" "${PATH_VEA_PGADMIN4}"
## Upgrade pip
perform_system_action "pip" "install" "--upgrade" "pip"
## Install the packages: Needs to be made dynamic
perform_system_action "pip" "install" "pgadmin4"
perform_system_action "pip" "install" "gevent"
## Optional
perform_system_action "pip" "install" "simple-websocket"
## Change if you need a restrictive user. Will set to permissive OWNER_1 by default
#extended_lockeddown_mint_operations "find" "${PATH_PGADMIN4}${PATH_VE_PGADMIN4}" "d" "chmod" "00050"
#extended_lockeddown_mint_operations "find" "${PATH_PGADMIN4}${PATH_VE_PGADMIN4}" "f" "chmod" "00040"
## mint the environment with the standard blueprint
determine_mint_logic "chown" "${BLUEPRINT_OWNER_1}" "-R ${PATH_PGADMIN4}${PATH_VE_PGADMIN4}"
## deactivate the ve
perform_system_action "deactivate"
## pgadmin4
perform_system_action "systemctl" "restart" "pgadmin4"
## Complete
echo "-----------------------------------------------------------------"
printf "You have configured the location: %s with %s\n" "${PATH_PGADMIN4}${PATH_VE_PGADMIN4}" "${BLUEPRINT_OWNER_1}"
echo "-----------------------------------------------------------------"
else
echo "The opertion was terminated by the user with the destruction key: 0"
fi
perform_tree_walk_protected "${CWD}"
else
printf "There was no environment: %s to configure. Falling back...\n" "%PATH_PGADMIN4"
fi
else
printf "You can't perform this configuration operation unless you're a standard user: You're currently running as user: %s\n" "$SCRIPT_ACS_RUNNER_CONFIGURE"
fi