New Entity AI

Draft 1.0:
Index


configure-> protected: env_trine.sh



Configure the trine 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_trine.sh
## MODIFIED: 2024/01/01
## OVERVIEW: Restart your virtual environment inside of trine and download
## the required programs
## HISTORY: VERSION 1.5
## -> 2022/02/13 (VERSION 1.0) Development
## -> 2023/10/18 (VERSION 1.1)
## -> 2023/12/16 (VERSION 1.2)
## -> 2023/12/17 (VERSION 1.3)
## -> 2023/12/19 (VERSION 1.4)
## -> 2024/01/01 (VERSION 1.5) Production
###############################################################################
## 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_trine.sh %b\n" "${tmodLabelHeading}" "${tmodReset}"
 printf " -> %s\n" "${PATH_TRINE}"
 echo "--------------------------------------------------------------------"
 if [ -d "${PATH_TRINE}" ]; then
  CWD="$(pwd)"
  perform_tree_walk_protected "${PATH_TRINE}"
  printf "Navigated to the location: %s\n" "$PATH_TRINE"
  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_TRINE}${PATH_PYCACHE}" ];then
    perform_removal_generic "-R" "${PATH_TRINE}${PATH_PYCACHE}"
   else
    printf "%s was not located... can't remove it.\n" "${PATH_TRINE}${PATH_PYCACHE}"
   fi
   if [ -n "${PATH_TRINE}${PATH_VE_TRINE}" ]; then
    perform_removal_generic "-R" "$PATH_TRINE$PATH_VE_TRINE"
   else
    printf "%s was not located... can't remove it.\n" "${PATH_TRINE}${PATH_VE_TRINE}"
   fi
   ## Create a new virtual environment in the relative position
   perform_system_action "python" "-m" "${PATH_V_STARTER}" "${PATH_VE_TRINE}"
   ## Activate the virtual environment
   perform_system_action "source" "${PATH_VEA_TRINE}"
   ## Upgrade pip
   perform_system_action "pip" "install" "--upgrade" "pip"
   ## Install the packages: Needs to be made dynamic
   perform_system_action "pip" "install" "-r" "${PATH_TRINE}${SLUG_PACKAGES}"
   ## Change to create a more secure location
   #extended_lockeddown_mint_operations "find" "${PATH_TRINE}${PATH_VE_TRINE}" "d" "chmod" "00050"
   #extended_lockeddown_mint_operations "find" "${PATH_TRINE}${PATH_VE_TRINE}" "f" "chmod" "00040"
   ## mint the environment with the standard blueprint
   #determine_mint_logic "chown" "${BLUEPRINT_OPENPACKAGER}" "-R ${PATH_TRINE}${PATH_VE_TRINE}"
   ## deactivate the ve
   perform_system_action "deactivate"
   ## restart trine
   perform_system_action "systemctl" "restart" "trine"
   ## Complete
   echo "-----------------------------------------------------------------"
   printf "You have configured the location: %s with %s\n" "${PATH_TRINE}${PATH_VE_TRINE}" "${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_TRINE}"
 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