Compare commits
	
		
			24 Commits
		
	
	
		
			v4.1.5
			...
			6236265f1a
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 6236265f1a | |||
| 7233ced080 | |||
| d78cb4e50d | |||
| 8a441d757e | |||
| 6ac1015718 | |||
| f20c2b24f0 | |||
| 113445ca43 | |||
| bdb7851064 | |||
| cdb30f2dc0 | |||
| fb8bfa6a9c | |||
| 79adf18d9a | |||
| 7ce71dfca8 | |||
| 3bcd4f3f6d | |||
| d4ef1c70e0 | |||
| c9e107d2fd | |||
| b6b4f2e5b8 | |||
| 432593a0f3 | |||
| 6629caf459 | |||
| 8bcc99b898 | |||
| 05694ed022 | |||
| 67bd712590 | |||
| a90482de8c | |||
| 261bbee1a4 | |||
| fcf492c661 | 
@@ -13,7 +13,7 @@ executors:
 | 
				
			|||||||
  nodejs:
 | 
					  nodejs:
 | 
				
			||||||
    docker:
 | 
					    docker:
 | 
				
			||||||
      - image: node:18
 | 
					      - image: node:18
 | 
				
			||||||
    resource_class: medium
 | 
					    resource_class: large
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
jobs:
 | 
					jobs:
 | 
				
			||||||
@@ -23,14 +23,11 @@ jobs:
 | 
				
			|||||||
    steps:
 | 
					    steps:
 | 
				
			||||||
      - checkout:
 | 
					      - checkout:
 | 
				
			||||||
          path: ~/scwrypts
 | 
					          path: ~/scwrypts
 | 
				
			||||||
      - run:
 | 
					      - run: |
 | 
				
			||||||
          name: pytest
 | 
					 | 
				
			||||||
          command: |
 | 
					 | 
				
			||||||
          : \
 | 
					          : \
 | 
				
			||||||
              && pip install . .[test] \
 | 
					            && pip install -e . \
 | 
				
			||||||
            && pytest \
 | 
					            && pytest \
 | 
				
			||||||
            ;
 | 
					            ;
 | 
				
			||||||
      - run: pip install build && python -m build
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  python-publish:
 | 
					  python-publish:
 | 
				
			||||||
    executor: python
 | 
					    executor: python
 | 
				
			||||||
@@ -38,7 +35,7 @@ jobs:
 | 
				
			|||||||
    steps:
 | 
					    steps:
 | 
				
			||||||
      - checkout:
 | 
					      - checkout:
 | 
				
			||||||
          path: ~/scwrypts
 | 
					          path: ~/scwrypts
 | 
				
			||||||
      - run: pip install build && python -m build
 | 
					      - python/dist
 | 
				
			||||||
      - run: pip install twine && twine upload dist/*
 | 
					      - run: pip install twine && twine upload dist/*
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  nodejs-test:
 | 
					  nodejs-test:
 | 
				
			||||||
@@ -69,7 +66,6 @@ jobs:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
      - run: pnpm test
 | 
					      - run: pnpm test
 | 
				
			||||||
      - run: pnpm lint
 | 
					      - run: pnpm lint
 | 
				
			||||||
      - run: pnpm build
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  nodejs-publish:
 | 
					  nodejs-publish:
 | 
				
			||||||
    executor: nodejs
 | 
					    executor: nodejs
 | 
				
			||||||
@@ -97,62 +93,25 @@ jobs:
 | 
				
			|||||||
          paths:
 | 
					          paths:
 | 
				
			||||||
            - .pnpm-store
 | 
					            - .pnpm-store
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      - run:
 | 
					      - run: pnpm build
 | 
				
			||||||
          name: publish
 | 
					      - run: pnpm version $(git describe --tags)
 | 
				
			||||||
          command: |
 | 
					
 | 
				
			||||||
            : \
 | 
					 | 
				
			||||||
              && [ $CIRCLE_TAG ] \
 | 
					 | 
				
			||||||
              && pnpm build \
 | 
					 | 
				
			||||||
              && pnpm version $CIRCLE_TAG \
 | 
					 | 
				
			||||||
              && pnpm set //registry.npmjs.org/:_authToken=$NPM_TOKEN \
 | 
					 | 
				
			||||||
              && pnpm publish --no-git-checks \
 | 
					 | 
				
			||||||
              ;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
workflows:
 | 
					workflows:
 | 
				
			||||||
  python-dev:
 | 
					 | 
				
			||||||
    jobs:
 | 
					 | 
				
			||||||
      - python-test:
 | 
					 | 
				
			||||||
          filters:
 | 
					 | 
				
			||||||
            branches:
 | 
					 | 
				
			||||||
              ignore: /^main$/
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  python:
 | 
					  python:
 | 
				
			||||||
    jobs:
 | 
					    jobs:
 | 
				
			||||||
      - python-test:
 | 
					      - python-test
 | 
				
			||||||
          filters:
 | 
					 | 
				
			||||||
            tags:
 | 
					 | 
				
			||||||
              only: /^v\d+\.\d+\.\d+.*$/
 | 
					 | 
				
			||||||
            branches:
 | 
					 | 
				
			||||||
              ignore: /^.*$/
 | 
					 | 
				
			||||||
      - python-publish:
 | 
					      - python-publish:
 | 
				
			||||||
          requires: [python-test]
 | 
					          requires: [python-test]
 | 
				
			||||||
          context: [pypi-yage]
 | 
					 | 
				
			||||||
          filters:
 | 
					 | 
				
			||||||
            tags:
 | 
					 | 
				
			||||||
              only: /^v\d+\.\d+\.\d+.*$/
 | 
					 | 
				
			||||||
            branches:
 | 
					 | 
				
			||||||
              ignore: /^.*$/
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  nodejs-dev:
 | 
					 | 
				
			||||||
    jobs:
 | 
					 | 
				
			||||||
      - nodejs-test:
 | 
					 | 
				
			||||||
          filters:
 | 
					          filters:
 | 
				
			||||||
            branches:
 | 
					            branches:
 | 
				
			||||||
              ignore: /^main$/
 | 
					              only: main
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  nodejs:
 | 
					  nodejs:
 | 
				
			||||||
    jobs:
 | 
					    jobs:
 | 
				
			||||||
      - nodejs-test:
 | 
					      - nodejs-test
 | 
				
			||||||
          filters:
 | 
					 | 
				
			||||||
            tags:
 | 
					 | 
				
			||||||
              only: /^v\d+\.\d+\.\d+.*$/
 | 
					 | 
				
			||||||
            branches:
 | 
					 | 
				
			||||||
              ignore: /^.*$/
 | 
					 | 
				
			||||||
      - nodejs-publish:
 | 
					      - nodejs-publish:
 | 
				
			||||||
          requires: [nodejs-test]
 | 
					          requires: [nodejs-test]
 | 
				
			||||||
          context: [npm-wrynegade]
 | 
					 | 
				
			||||||
          filters:
 | 
					          filters:
 | 
				
			||||||
            tags:
 | 
					 | 
				
			||||||
              only: /^v\d+\.\d+\.\d+.*$/
 | 
					 | 
				
			||||||
            branches:
 | 
					            branches:
 | 
				
			||||||
              ignore: /^.*$/
 | 
					              only: main
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										19
									
								
								.github/workflows/automatic-release.yaml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										19
									
								
								.github/workflows/automatic-release.yaml
									
									
									
									
										vendored
									
									
								
							@@ -1,19 +0,0 @@
 | 
				
			|||||||
---
 | 
					 | 
				
			||||||
name: Automatic Tag-release
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
on:  # yamllint disable-line rule:truthy
 | 
					 | 
				
			||||||
  push:
 | 
					 | 
				
			||||||
    branches-ignore:
 | 
					 | 
				
			||||||
      - '**'
 | 
					 | 
				
			||||||
    tags:
 | 
					 | 
				
			||||||
      - 'v*.*.*'
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
jobs:
 | 
					 | 
				
			||||||
  automatic-tag-release:
 | 
					 | 
				
			||||||
    runs-on: ubuntu-latest
 | 
					 | 
				
			||||||
    steps:
 | 
					 | 
				
			||||||
      - uses: actions/checkout@v4
 | 
					 | 
				
			||||||
      - uses: marvinpinto/action-automatic-releases@latest
 | 
					 | 
				
			||||||
        with:
 | 
					 | 
				
			||||||
          repo_token: "${{ secrets.GITHUB_TOKEN }}"
 | 
					 | 
				
			||||||
          prerelease: false
 | 
					 | 
				
			||||||
@@ -29,7 +29,6 @@ runs:
 | 
				
			|||||||
        repository: wrynegade/scwrypts
 | 
					        repository: wrynegade/scwrypts
 | 
				
			||||||
        path: ./wrynegade/scwrypts
 | 
					        path: ./wrynegade/scwrypts
 | 
				
			||||||
        ref: ${{ inputs.version }}
 | 
					        ref: ${{ inputs.version }}
 | 
				
			||||||
        fetch-tags: true
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    - name: check dependencies
 | 
					    - name: check dependencies
 | 
				
			||||||
      shell: bash
 | 
					      shell: bash
 | 
				
			||||||
@@ -52,7 +51,7 @@ runs:
 | 
				
			|||||||
        } > $HOME/.scwrypts.apt-get.log 2>&1
 | 
					        } > $HOME/.scwrypts.apt-get.log 2>&1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        echo "updating virtual dependencies"
 | 
					        echo "updating virtual dependencies"
 | 
				
			||||||
        $GITHUB_WORKSPACE/wrynegade/scwrypts/scwrypts \
 | 
					        $GITHUB_WORKSPACE/wrynegade/scwrypts/scwrypts -n \
 | 
				
			||||||
          --name scwrypts/virtualenv/update-all \
 | 
					          --name scwrypts/virtualenv/update-all \
 | 
				
			||||||
          --group scwrypts \
 | 
					          --group scwrypts \
 | 
				
			||||||
          --type zsh \
 | 
					          --type zsh \
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										3
									
								
								py/lib/.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								py/lib/.gitignore
									
									
									
									
										vendored
									
									
								
							@@ -1,4 +1 @@
 | 
				
			|||||||
dist/
 | 
					dist/
 | 
				
			||||||
__pycache__/
 | 
					 | 
				
			||||||
*.py[cod]
 | 
					 | 
				
			||||||
*.so
 | 
					 | 
				
			||||||
 
 | 
				
			|||||||
@@ -55,5 +55,6 @@ source = 'versioningit'
 | 
				
			|||||||
[tool.hatch.build.targets.wheel]
 | 
					[tool.hatch.build.targets.wheel]
 | 
				
			||||||
packages = ['./']
 | 
					packages = ['./']
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[tool.versioningit.vcs]
 | 
					[tool.versioningit]
 | 
				
			||||||
match = ['v[0-9]*.[0-9]*.[0-9]*']
 | 
					match = ['v*']
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -41,7 +41,7 @@ def scwrypts(*args, patterns=None, name=None, group=None, _type=None, log_level=
 | 
				
			|||||||
        depth = int(depth) + 1
 | 
					        depth = int(depth) + 1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    return run(
 | 
					    return run(
 | 
				
			||||||
        f'SUBSCWRYPT={depth} {executable} {" ".join(pre_args)} -- {" ".join(args)}',
 | 
					        f'SUBSCWRYPT={depth} {executable} {pre_args} -- {" ".join(args)}',
 | 
				
			||||||
        shell=True,
 | 
					        shell=True,
 | 
				
			||||||
        executable='/bin/zsh',
 | 
					        executable='/bin/zsh',
 | 
				
			||||||
        check=False,
 | 
					        check=False,
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										388
									
								
								run
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										388
									
								
								run
									
									
									
									
									
										Executable file
									
								
							@@ -0,0 +1,388 @@
 | 
				
			|||||||
 | 
					#!/bin/zsh
 | 
				
			||||||
 | 
					export EXECUTION_DIR=$(pwd)
 | 
				
			||||||
 | 
					source "${0:a:h}/zsh/lib/import.driver.zsh" || exit 42
 | 
				
			||||||
 | 
					#####################################################################
 | 
				
			||||||
 | 
					() {
 | 
				
			||||||
 | 
						cd "$SCWRYPTS_ROOT__scwrypts"
 | 
				
			||||||
 | 
						GIT_SCWRYPTS() { git -C "$SCWRYPTS_ROOT__scwrypts" $@; }
 | 
				
			||||||
 | 
						local ERRORS=0
 | 
				
			||||||
 | 
						local USAGE='
 | 
				
			||||||
 | 
							usage: scwrypts [...options...] [...patterns...] -- [...script options...]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							options:
 | 
				
			||||||
 | 
							  selection
 | 
				
			||||||
 | 
							    -m, --name <scwrypt-name>   only run the script if there is an exact match
 | 
				
			||||||
 | 
							                                  (requires type and group)
 | 
				
			||||||
 | 
							    -g, --group <group-name>    only use scripts from the indicated group
 | 
				
			||||||
 | 
							    -t, --type <type-name>      only use scripts of the indicated type
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							  runtime
 | 
				
			||||||
 | 
							    -y, --yes              auto-accept all [yn] prompts through current scwrypt
 | 
				
			||||||
 | 
							    -e, --env <env-name>   set environment; overwrites SCWRYPTS_ENV
 | 
				
			||||||
 | 
							    -n                     shorthand for "--log-level 0"
 | 
				
			||||||
 | 
							    -v, --log-level [0-4]  set scwrypts log level to one of the following:
 | 
				
			||||||
 | 
								                         0 : only command output and critical failures; skips logfile
 | 
				
			||||||
 | 
								                         1 : add success / failure messages
 | 
				
			||||||
 | 
								                         2 : (default) include status update messages
 | 
				
			||||||
 | 
														 3 : (CI default) include warning messages
 | 
				
			||||||
 | 
								                         4 : include debug messages
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							  alternate commands
 | 
				
			||||||
 | 
							    -h, --help        display this message and exit
 | 
				
			||||||
 | 
							    -l, --list        print out command list and exit
 | 
				
			||||||
 | 
							        --list-envs   print out environment list and exit
 | 
				
			||||||
 | 
							        --update      update scwrypts library to latest version
 | 
				
			||||||
 | 
							        --version     print out scwrypts version and exit
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							patterns:
 | 
				
			||||||
 | 
							  - a list of glob patterns to loose-match a scwrypt by name
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							script options:
 | 
				
			||||||
 | 
							  - everything after "--" is forwarded to the scwrypt you run
 | 
				
			||||||
 | 
							    ("-- --help" will provide more information)
 | 
				
			||||||
 | 
						'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						#####################################################################
 | 
				
			||||||
 | 
						### cli argument parsing and global configuration ###################
 | 
				
			||||||
 | 
						#####################################################################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						local ENV_NAME="$SCWRYPTS_ENV"
 | 
				
			||||||
 | 
						local SEARCH_PATTERNS=()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						local VARSPLIT SEARCH_GROUP SEARCH_TYPE SEARCH_NAME
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						[ ! $SCWRYPTS_LOG_LEVEL ] && {
 | 
				
			||||||
 | 
							local SCWRYPTS_LOG_LEVEL
 | 
				
			||||||
 | 
							[ $CI ] && SCWRYPTS_LOG_LEVEL=3 || SCWRYPTS_LOG_LEVEL=2
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						while [[ $# -gt 0 ]]
 | 
				
			||||||
 | 
						do
 | 
				
			||||||
 | 
							case $1 in
 | 
				
			||||||
 | 
								-[a-z][a-z]* )
 | 
				
			||||||
 | 
									VARSPLIT=$(echo "$1 " | sed 's/^\(-.\)\(.*\) /\1 -\2/')
 | 
				
			||||||
 | 
									set -- $(echo " $VARSPLIT ") ${@:2}
 | 
				
			||||||
 | 
									;;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								### alternate commands ###################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								-h | --help )
 | 
				
			||||||
 | 
									USAGE
 | 
				
			||||||
 | 
									return 0
 | 
				
			||||||
 | 
									;;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								-l | --list )
 | 
				
			||||||
 | 
									SCWRYPTS__GET_AVAILABLE_SCWRYPTS
 | 
				
			||||||
 | 
									return 0
 | 
				
			||||||
 | 
									;;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								--list-envs )
 | 
				
			||||||
 | 
									SCWRYPTS__GET_ENV_NAMES
 | 
				
			||||||
 | 
									return 0
 | 
				
			||||||
 | 
									;;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								--version )
 | 
				
			||||||
 | 
									echo scwrypts $(GIT_SCWRYPTS describe --tags)
 | 
				
			||||||
 | 
									return 0
 | 
				
			||||||
 | 
									;;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								--update )
 | 
				
			||||||
 | 
									GIT_SCWRYPTS fetch --quiet origin main
 | 
				
			||||||
 | 
									GIT_SCWRYPTS fetch --quiet origin main --tags
 | 
				
			||||||
 | 
									local SYNC_STATUS=$?
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
									GIT_SCWRYPTS diff --exit-code origin/main -- . >/dev/null 2>&1
 | 
				
			||||||
 | 
									local DIFF_STATUS=$?
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
									[[ $SYNC_STATUS -eq 0 ]] && [[ $DIFF_STATUS -eq 0 ]] && {
 | 
				
			||||||
 | 
										SUCCESS 'already up-to-date with origin/main'
 | 
				
			||||||
 | 
									} || {
 | 
				
			||||||
 | 
										GIT_SCWRYPTS rebase --autostash origin/main \
 | 
				
			||||||
 | 
											&& SUCCESS 'up-to-date with origin/main' \
 | 
				
			||||||
 | 
											&& GIT_SCWRYPTS log -n1 \
 | 
				
			||||||
 | 
											|| {
 | 
				
			||||||
 | 
												GIT_SCWRYPTS rebase --abort
 | 
				
			||||||
 | 
												ERROR 'unable to update scwrypts; please try manual upgrade'
 | 
				
			||||||
 | 
												REMINDER "installation in '$(pwd)'"
 | 
				
			||||||
 | 
											}
 | 
				
			||||||
 | 
									}
 | 
				
			||||||
 | 
									return 0
 | 
				
			||||||
 | 
									;;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								### scwrypts filters #####################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								-m | --name )
 | 
				
			||||||
 | 
									[ $2 ] || { ERROR "missing value for argument $1"; break; }
 | 
				
			||||||
 | 
									SEARCH_NAME=$2
 | 
				
			||||||
 | 
									shift 1
 | 
				
			||||||
 | 
									;;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								-g | --group )
 | 
				
			||||||
 | 
									[ $2 ] || { ERROR "missing value for argument $1"; break; }
 | 
				
			||||||
 | 
									SEARCH_GROUP=$2
 | 
				
			||||||
 | 
									shift 1
 | 
				
			||||||
 | 
									;;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								-t | --type )
 | 
				
			||||||
 | 
									[ $2 ] || { ERROR "missing value for argument $1"; break; }
 | 
				
			||||||
 | 
									SEARCH_TYPE=$2
 | 
				
			||||||
 | 
									shift 1
 | 
				
			||||||
 | 
									;;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								### runtime settings #####################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								-y | --yes ) export __SCWRYPTS_YES=1 ;;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								-n | --no-log )
 | 
				
			||||||
 | 
									SCWRYPTS_LOG_LEVEL=0
 | 
				
			||||||
 | 
									[[ $1 =~ ^--no-log$ ]] && WARNING 'the --no-log flag is deprecated and will be removed in scwrypts v4.2'
 | 
				
			||||||
 | 
									;;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								-v | --log-level )
 | 
				
			||||||
 | 
									[[ $2 =~ ^[0-4]$ ]] || ERROR "invalid setting for log-level '$2'"
 | 
				
			||||||
 | 
									SCWRYPTS_LOG_LEVEL=$2
 | 
				
			||||||
 | 
									shift 1
 | 
				
			||||||
 | 
									;;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								-e | --env )
 | 
				
			||||||
 | 
									[ $2 ] || { ERROR "missing value for argument $1"; break; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
									[ $ENV_NAME ] && DEBUG 'overwriting session environment'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
									ENV_NAME="$2"
 | 
				
			||||||
 | 
									STATUS "using CLI environment '$ENV_NAME'"
 | 
				
			||||||
 | 
									shift 1
 | 
				
			||||||
 | 
									;;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								##########################################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								--  ) shift 1; break ;; # pass arguments after '--' to the scwrypt
 | 
				
			||||||
 | 
								--* ) ERROR "unrecognized argument '$1'" ;;
 | 
				
			||||||
 | 
								*   ) SEARCH_PATTERNS+=($1) ;;
 | 
				
			||||||
 | 
							esac
 | 
				
			||||||
 | 
							shift 1
 | 
				
			||||||
 | 
						done
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						[ $SEARCH_NAME ] && {
 | 
				
			||||||
 | 
							[ $SEARCH_TYPE  ] || ERROR '--name requires --type argument'
 | 
				
			||||||
 | 
							[ $SEARCH_GROUP ] || ERROR '--name requires --group argument'
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						CHECK_ERRORS
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						#####################################################################
 | 
				
			||||||
 | 
						### scwrypts selection / filtering ##################################
 | 
				
			||||||
 | 
						#####################################################################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						local SCWRYPTS_AVAILABLE
 | 
				
			||||||
 | 
						SCWRYPTS_AVAILABLE=$(SCWRYPTS__GET_AVAILABLE_SCWRYPTS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						##########################################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						[ $SEARCH_NAME ] && SCWRYPTS_AVAILABLE=$({
 | 
				
			||||||
 | 
							echo $SCWRYPTS_AVAILABLE | head -n1
 | 
				
			||||||
 | 
							echo $SCWRYPTS_AVAILABLE | sed -e 's/\x1b\[[0-9;]*m//g' | grep "^$SEARCH_NAME *$SEARCH_TYPE *$SEARCH_GROUP\$"
 | 
				
			||||||
 | 
						}) || {
 | 
				
			||||||
 | 
							[ $SEARCH_TYPE ] && {
 | 
				
			||||||
 | 
								SCWRYPTS_AVAILABLE=$(\
 | 
				
			||||||
 | 
									{
 | 
				
			||||||
 | 
										echo $SCWRYPTS_AVAILABLE | head -n1
 | 
				
			||||||
 | 
										echo $SCWRYPTS_AVAILABLE | grep ' [^/]*'$SEARCH_TYPE'[^/]* '
 | 
				
			||||||
 | 
									} \
 | 
				
			||||||
 | 
									| awk '{$2=""; print $0;}' \
 | 
				
			||||||
 | 
									| sed 's/ \+$/'$(printf $__COLOR_RESET)'/; s/ \+/^/g'  \
 | 
				
			||||||
 | 
									| column -ts '^'
 | 
				
			||||||
 | 
								)
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							[ $SEARCH_GROUP ] && {
 | 
				
			||||||
 | 
								SCWRYPTS_AVAILABLE=$(
 | 
				
			||||||
 | 
									{
 | 
				
			||||||
 | 
										echo $SCWRYPTS_AVAILABLE | head -n1
 | 
				
			||||||
 | 
										echo $SCWRYPTS_AVAILABLE | grep "$SEARCH_GROUP"'[^/]*$'
 | 
				
			||||||
 | 
									} \
 | 
				
			||||||
 | 
									| awk '{$NF=""; print $0;}' \
 | 
				
			||||||
 | 
									| sed 's/ \+$/'$(printf $__COLOR_RESET)'/; s/ \+/^/g'  \
 | 
				
			||||||
 | 
									| column -ts '^'
 | 
				
			||||||
 | 
								)
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							[[ ${#SEARCH_PATTERNS[@]} -gt 0 ]] && {
 | 
				
			||||||
 | 
								POTENTIAL_ERROR+="\n   PATTERNS : $SEARCH_PATTERNS"
 | 
				
			||||||
 | 
								local P
 | 
				
			||||||
 | 
								for P in ${SEARCH_PATTERNS[@]}
 | 
				
			||||||
 | 
								do
 | 
				
			||||||
 | 
									SCWRYPTS_AVAILABLE=$(
 | 
				
			||||||
 | 
										{
 | 
				
			||||||
 | 
											echo $SCWRYPTS_AVAILABLE | head -n1
 | 
				
			||||||
 | 
											echo $SCWRYPTS_AVAILABLE | grep $P
 | 
				
			||||||
 | 
										}
 | 
				
			||||||
 | 
									)
 | 
				
			||||||
 | 
								done
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						[[ $(echo $SCWRYPTS_AVAILABLE | wc -l) -lt 2 ]] && {
 | 
				
			||||||
 | 
							FAIL 1 "$(echo "
 | 
				
			||||||
 | 
							no such scwrypt exists
 | 
				
			||||||
 | 
							  NAME     : '$SEARCH_NAME'
 | 
				
			||||||
 | 
							  TYPE     : '$SEARCH_TYPE'
 | 
				
			||||||
 | 
							  GROUP    : '$SEARCH_GROUP'
 | 
				
			||||||
 | 
							  PATTERNS : '$SEARCH_PATTERNS'
 | 
				
			||||||
 | 
							" | sed "1d; \$d; /''$/d")"
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						##########################################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						[[ $(echo $SCWRYPTS_AVAILABLE | wc -l) -eq 2 ]] \
 | 
				
			||||||
 | 
							&& SCWRYPT_SELECTION=$(echo $SCWRYPTS_AVAILABLE | tail -n1) \
 | 
				
			||||||
 | 
							|| SCWRYPT_SELECTION=$(echo $SCWRYPTS_AVAILABLE | FZF "select a script to run" --header-lines 1) \
 | 
				
			||||||
 | 
							;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						[ $SCWRYPT_SELECTION ] || exit 2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						##########################################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						local NAME TYPE GROUP
 | 
				
			||||||
 | 
						SCWRYPTS__SEPARATE_SCWRYPT_SELECTION $SCWRYPT_SELECTION
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						export SCWRYPT_NAME=$NAME
 | 
				
			||||||
 | 
						export SCWRYPT_TYPE=$TYPE
 | 
				
			||||||
 | 
						export SCWRYPT_GROUP=$GROUP
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						#####################################################################
 | 
				
			||||||
 | 
						### environment variables and configuration validation ##############
 | 
				
			||||||
 | 
						#####################################################################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						local ENV_REQUIRED=true \
 | 
				
			||||||
 | 
							&& [ ! $CI ] \
 | 
				
			||||||
 | 
							&& [[ ! $SCWRYPT_NAME =~ scwrypts/logs ]] \
 | 
				
			||||||
 | 
							&& [[ ! $SCWRYPT_NAME =~ scwrypts/environment ]] \
 | 
				
			||||||
 | 
							|| ENV_REQUIRED=false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						local REQUIRED_ENVIRONMENT_REGEX=$(eval echo '$SCWRYPTS_REQUIRED_ENVIRONMENT_REGEX__'$SCWRYPT_GROUP)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						[[ $ENV_REQUIRED =~ true ]] && {
 | 
				
			||||||
 | 
							[ ! $ENV_NAME ] && ENV_NAME=$(SCWRYPTS__SELECT_ENV)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							for GROUP in ${SCWRYPTS_GROUPS[@]}
 | 
				
			||||||
 | 
							do
 | 
				
			||||||
 | 
								local ENV_FILE=$(SCWRYPTS__GET_ENV_FILE "$ENV_NAME" "$GROUP")
 | 
				
			||||||
 | 
								source "$ENV_FILE" || FAIL 5 "missing or invalid environment '$GROUP/$ENV_NAME'"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								for f in $(eval 'echo $SCWRYPTS_STATIC_CONFIG__'$GROUP)
 | 
				
			||||||
 | 
								do
 | 
				
			||||||
 | 
									source "$f" || FAIL 5 "invalid static config '$f'"
 | 
				
			||||||
 | 
								done
 | 
				
			||||||
 | 
							done
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							export ENV_NAME
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						##########################################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						[ $REQUIRED_ENVIRONMENT_REGEX ] && {
 | 
				
			||||||
 | 
							[[ $ENV_NAME =~ $REQUIRED_ENVIRONMENT_REGEX ]] \
 | 
				
			||||||
 | 
								|| FAIL 5 "group '$SCWRYPT_GROUP' requires current environment name to match '$REQUIRED_ENVIRONMENT_REGEX' (currently $ENV_NAME)"
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						##########################################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						[ ! $SUBSCWRYPT ] && [[ $ENV_NAME =~ prod ]] && {
 | 
				
			||||||
 | 
							STATUS "on '$ENV_NAME'; checking diff against origin/main"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							GIT_SCWRYPTS fetch --quiet origin main
 | 
				
			||||||
 | 
							local SYNC_STATUS=$?
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							GIT_SCWRYPTS diff --exit-code origin/main -- . >&2
 | 
				
			||||||
 | 
							local DIFF_STATUS=$?
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							[[ $SYNC_STATUS -eq 0 ]] && [[ $DIFF_STATUS -eq 0 ]] && {
 | 
				
			||||||
 | 
								SUCCESS 'up-to-date with origin/main'
 | 
				
			||||||
 | 
							} || {
 | 
				
			||||||
 | 
								SCWRYPTS_LOG_LEVEL=3 WARNING "you are trying to run in ${__BRIGHT_RED}production${__YELLOW} but $([[ $SYNC_STATUS -ne 0 ]] && echo 'I am unable to verify your scwrypts version')$([[ $DIFF_STATUS -ne 0 ]] && echo 'your scwrypts is out-of-date (diff listed above)')"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								yN 'continue?' || {
 | 
				
			||||||
 | 
									REMINDER "you can use 'scwrypts --update' to quickly update scwrypts to latest"
 | 
				
			||||||
 | 
									ABORT
 | 
				
			||||||
 | 
								}
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						##########################################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						local RUN_STRING=$(SCWRYPTS__GET_RUNSTRING $SCWRYPT_NAME $SCWRYPT_TYPE $SCWRYPT_GROUP)
 | 
				
			||||||
 | 
						[ "$RUN_STRING" ] || return 42
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						#####################################################################
 | 
				
			||||||
 | 
						### logging and pretty header/footer setup ##########################
 | 
				
			||||||
 | 
						#####################################################################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						local LOGFILE \
 | 
				
			||||||
 | 
							&& [[ $SCWRYPTS_LOG_LEVEL -gt 0 ]] \
 | 
				
			||||||
 | 
							&& [ ! $SUBSCWRYPT ] \
 | 
				
			||||||
 | 
							&& [[ ! $SCWRYPT_NAME =~ scwrypts/logs ]] \
 | 
				
			||||||
 | 
							&& [[ ! $SCWRYPT_NAME =~ interactive ]] \
 | 
				
			||||||
 | 
							&& LOGFILE="$SCWRYPTS_LOG_PATH/$(echo $GROUP/$TYPE/$NAME | sed 's/^\.\///; s/\//\%/g').log" \
 | 
				
			||||||
 | 
							|| LOGFILE='/dev/null' \
 | 
				
			||||||
 | 
							;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						local RUN_MODE=normal
 | 
				
			||||||
 | 
						[[ $LOGFILE      =~ ^/dev/null$ ]] && RUN_MODE=no-logfile
 | 
				
			||||||
 | 
						[[ $SCWRYPT_NAME =~ interactive ]] && RUN_MODE=interactive
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						local HEADER FOOTER
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						[[ $SCWRYPTS_LOG_LEVEL -ge 2 ]] && {
 | 
				
			||||||
 | 
							HEADER=$(
 | 
				
			||||||
 | 
								echo "
 | 
				
			||||||
 | 
									=====================================================================
 | 
				
			||||||
 | 
									script    : $SCWRYPT_GROUP $SCWRYPT_TYPE $SCWRYPT_NAME
 | 
				
			||||||
 | 
									run at    : $(date)
 | 
				
			||||||
 | 
									config    : $ENV_NAME
 | 
				
			||||||
 | 
									log level : $SCWRYPTS_LOG_LEVEL
 | 
				
			||||||
 | 
									\\033[1;33m--- SCWRYPT BEGIN ---------------------------------------------------\\033[0m
 | 
				
			||||||
 | 
								" | sed 's/^\s\+//; 1d'
 | 
				
			||||||
 | 
							)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							FOOTER="\\033[1;33m--- SCWRYPT END   ---------------------------------------------------\\033[0m"
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						[ $SUBSCWRYPT ] && {
 | 
				
			||||||
 | 
							HEADER="\\033[0;33m--- ($SUBSCWRYPT) BEGIN $SCWRYPT_GROUP $SCWRYPT_TYPE $SCWRYPT_NAME ---"
 | 
				
			||||||
 | 
							FOOTER="\\033[0;33m--- ($SUBSCWRYPT) END   $SCWRYPT_GROUP $SCWRYPT_TYPE $SCWRYPT_NAME ---"
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						#####################################################################
 | 
				
			||||||
 | 
						### run the scwrypt #################################################
 | 
				
			||||||
 | 
						#####################################################################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						[ ! $SUBSCWRYPT ] && export SUBSCWRYPT=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						set -o pipefail
 | 
				
			||||||
 | 
						{
 | 
				
			||||||
 | 
							[ $HEADER ] && echo $HEADER
 | 
				
			||||||
 | 
							case $RUN_MODE in
 | 
				
			||||||
 | 
								normal )
 | 
				
			||||||
 | 
									(eval "$RUN_STRING $(printf "%q " "$@")")
 | 
				
			||||||
 | 
									EXIT_CODE=$?
 | 
				
			||||||
 | 
									;;
 | 
				
			||||||
 | 
								no-logfile )
 | 
				
			||||||
 | 
									eval "$RUN_STRING $(printf "%q " "$@")"
 | 
				
			||||||
 | 
									EXIT_CODE=$?
 | 
				
			||||||
 | 
									;;
 | 
				
			||||||
 | 
								interactive )
 | 
				
			||||||
 | 
									eval "$RUN_STRING $(printf "%q " "$@")" </dev/tty >/dev/tty 2>&1
 | 
				
			||||||
 | 
									EXIT_CODE=$?
 | 
				
			||||||
 | 
									;;
 | 
				
			||||||
 | 
							esac
 | 
				
			||||||
 | 
							[ $FOOTER ] && echo $FOOTER
 | 
				
			||||||
 | 
							[[ $EXIT_CODE -eq 0 ]] && EXIT_COLOR='32m' || EXIT_COLOR='31m'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							[[ $SCWRYPTS_LOG_LEVEL -ge 2 ]] && [ ! $SUBSCWRYPT ] \
 | 
				
			||||||
 | 
								&& echo "terminated with\\033[1;$EXIT_COLOR code $EXIT_CODE\\033[0m"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							return $EXIT_CODE
 | 
				
			||||||
 | 
						} 2>&1 | tee --append "$LOGFILE"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					} $@
 | 
				
			||||||
							
								
								
									
										396
									
								
								scwrypts
									
									
									
									
									
								
							
							
						
						
									
										396
									
								
								scwrypts
									
									
									
									
									
								
							@@ -1,396 +1,2 @@
 | 
				
			|||||||
#!/bin/zsh
 | 
					#!/bin/zsh
 | 
				
			||||||
 | 
					source "${0:a:h}/run" $@
 | 
				
			||||||
export EXECUTION_DIR=$(pwd)
 | 
					 | 
				
			||||||
source "$(dirname $(readlink -f "$0"))/zsh/lib/import.driver.zsh" || exit 42
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#####################################################################
 | 
					 | 
				
			||||||
() {
 | 
					 | 
				
			||||||
	cd "$SCWRYPTS_ROOT__scwrypts"
 | 
					 | 
				
			||||||
	GIT_SCWRYPTS() { git -C "$SCWRYPTS_ROOT__scwrypts" $@; }
 | 
					 | 
				
			||||||
	local ERRORS=0
 | 
					 | 
				
			||||||
	local USAGE='
 | 
					 | 
				
			||||||
		usage: scwrypts [...options...] [...patterns...] -- [...script options...]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		options:
 | 
					 | 
				
			||||||
		  selection
 | 
					 | 
				
			||||||
		    -m, --name <scwrypt-name>   only run the script if there is an exact match
 | 
					 | 
				
			||||||
		                                  (requires type and group)
 | 
					 | 
				
			||||||
		    -g, --group <group-name>    only use scripts from the indicated group
 | 
					 | 
				
			||||||
		    -t, --type <type-name>      only use scripts of the indicated type
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		  runtime
 | 
					 | 
				
			||||||
		    -y, --yes              auto-accept all [yn] prompts through current scwrypt
 | 
					 | 
				
			||||||
		    -e, --env <env-name>   set environment; overwrites SCWRYPTS_ENV
 | 
					 | 
				
			||||||
		    -n                     shorthand for "--log-level 0"
 | 
					 | 
				
			||||||
		    -v, --log-level [0-4]  set scwrypts log level to one of the following:
 | 
					 | 
				
			||||||
			                         0 : only command output and critical failures; skips logfile
 | 
					 | 
				
			||||||
			                         1 : add success / failure messages
 | 
					 | 
				
			||||||
									 2 : include status update messages
 | 
					 | 
				
			||||||
									 3 : (default) include warning messages
 | 
					 | 
				
			||||||
			                         4 : include debug messages
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		  alternate commands
 | 
					 | 
				
			||||||
		    -h, --help        display this message and exit
 | 
					 | 
				
			||||||
		    -l, --list        print out command list and exit
 | 
					 | 
				
			||||||
		        --list-envs   print out environment list and exit
 | 
					 | 
				
			||||||
		        --update      update scwrypts library to latest version
 | 
					 | 
				
			||||||
		        --version     print out scwrypts version and exit
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		patterns:
 | 
					 | 
				
			||||||
		  - a list of glob patterns to loose-match a scwrypt by name
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		script options:
 | 
					 | 
				
			||||||
		  - everything after "--" is forwarded to the scwrypt you run
 | 
					 | 
				
			||||||
		    ("-- --help" will provide more information)
 | 
					 | 
				
			||||||
	'
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	#####################################################################
 | 
					 | 
				
			||||||
	### cli argument parsing and global configuration ###################
 | 
					 | 
				
			||||||
	#####################################################################
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	local ENV_NAME="$SCWRYPTS_ENV"
 | 
					 | 
				
			||||||
	local SEARCH_PATTERNS=()
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	local VARSPLIT SEARCH_GROUP SEARCH_TYPE SEARCH_NAME
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	[ ! $SCWRYPTS_LOG_LEVEL ] && local SCWRYPTS_LOG_LEVEL=3
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	while [[ $# -gt 0 ]]
 | 
					 | 
				
			||||||
	do
 | 
					 | 
				
			||||||
		case $1 in
 | 
					 | 
				
			||||||
			-[a-z][a-z]* )
 | 
					 | 
				
			||||||
				VARSPLIT=$(echo "$1 " | sed 's/^\(-.\)\(.*\) /\1 -\2/')
 | 
					 | 
				
			||||||
				set -- throw-away $(echo " $VARSPLIT ") ${@:2}
 | 
					 | 
				
			||||||
				;;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			### alternate commands ###################
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			-h | --help )
 | 
					 | 
				
			||||||
				USAGE
 | 
					 | 
				
			||||||
				return 0
 | 
					 | 
				
			||||||
				;;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			-l | --list )
 | 
					 | 
				
			||||||
				SCWRYPTS__GET_AVAILABLE_SCWRYPTS
 | 
					 | 
				
			||||||
				return 0
 | 
					 | 
				
			||||||
				;;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			--list-envs )
 | 
					 | 
				
			||||||
				SCWRYPTS__GET_ENV_NAMES
 | 
					 | 
				
			||||||
				return 0
 | 
					 | 
				
			||||||
				;;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			--version )
 | 
					 | 
				
			||||||
				echo scwrypts $(GIT_SCWRYPTS describe --tags)
 | 
					 | 
				
			||||||
				return 0
 | 
					 | 
				
			||||||
				;;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			--update )
 | 
					 | 
				
			||||||
				GIT_SCWRYPTS fetch --quiet origin main
 | 
					 | 
				
			||||||
				GIT_SCWRYPTS fetch --quiet origin main --tags
 | 
					 | 
				
			||||||
				local SYNC_STATUS=$?
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
				GIT_SCWRYPTS diff --exit-code origin/main -- . >/dev/null 2>&1
 | 
					 | 
				
			||||||
				local DIFF_STATUS=$?
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
				[[ $SYNC_STATUS -eq 0 ]] && [[ $DIFF_STATUS -eq 0 ]] && {
 | 
					 | 
				
			||||||
					SUCCESS 'already up-to-date with origin/main'
 | 
					 | 
				
			||||||
				} || {
 | 
					 | 
				
			||||||
					GIT_SCWRYPTS rebase --autostash origin/main \
 | 
					 | 
				
			||||||
						&& SUCCESS 'up-to-date with origin/main' \
 | 
					 | 
				
			||||||
						&& GIT_SCWRYPTS log -n1 \
 | 
					 | 
				
			||||||
						|| {
 | 
					 | 
				
			||||||
							GIT_SCWRYPTS rebase --abort
 | 
					 | 
				
			||||||
							ERROR 'unable to update scwrypts; please try manual upgrade'
 | 
					 | 
				
			||||||
							REMINDER "installation in '$(pwd)'"
 | 
					 | 
				
			||||||
						}
 | 
					 | 
				
			||||||
				}
 | 
					 | 
				
			||||||
				return 0
 | 
					 | 
				
			||||||
				;;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			### scwrypts filters #####################
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			-m | --name )
 | 
					 | 
				
			||||||
				[ $2 ] || { ERROR "missing value for argument $1"; break; }
 | 
					 | 
				
			||||||
				SEARCH_NAME=$2
 | 
					 | 
				
			||||||
				shift 1
 | 
					 | 
				
			||||||
				;;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			-g | --group )
 | 
					 | 
				
			||||||
				[ $2 ] || { ERROR "missing value for argument $1"; break; }
 | 
					 | 
				
			||||||
				SEARCH_GROUP=$2
 | 
					 | 
				
			||||||
				shift 1
 | 
					 | 
				
			||||||
				;;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			-t | --type )
 | 
					 | 
				
			||||||
				[ $2 ] || { ERROR "missing value for argument $1"; break; }
 | 
					 | 
				
			||||||
				SEARCH_TYPE=$2
 | 
					 | 
				
			||||||
				shift 1
 | 
					 | 
				
			||||||
				;;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			### runtime settings #####################
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			-y | --yes ) export __SCWRYPTS_YES=1 ;;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			-n | --no-log )
 | 
					 | 
				
			||||||
				SCWRYPTS_LOG_LEVEL=0
 | 
					 | 
				
			||||||
				[[ $1 =~ ^--no-log$ ]] && WARNING 'the --no-log flag is deprecated and will be removed in scwrypts v4.2'
 | 
					 | 
				
			||||||
				;;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			-v | --log-level )
 | 
					 | 
				
			||||||
				[[ $2 =~ ^[0-4]$ ]] || ERROR "invalid setting for log-level '$2'"
 | 
					 | 
				
			||||||
				SCWRYPTS_LOG_LEVEL=$2
 | 
					 | 
				
			||||||
				shift 1
 | 
					 | 
				
			||||||
				;;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			-e | --env )
 | 
					 | 
				
			||||||
				[ $2 ] || { ERROR "missing value for argument $1"; break; }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
				[ $ENV_NAME ] && DEBUG 'overwriting session environment'
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
				ENV_NAME="$2"
 | 
					 | 
				
			||||||
				STATUS "using CLI environment '$ENV_NAME'"
 | 
					 | 
				
			||||||
				shift 1
 | 
					 | 
				
			||||||
				;;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			##########################################
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			--  ) shift 1; break ;; # pass arguments after '--' to the scwrypt
 | 
					 | 
				
			||||||
			--* ) ERROR "unrecognized argument '$1'" ;;
 | 
					 | 
				
			||||||
			*   ) SEARCH_PATTERNS+=($1) ;;
 | 
					 | 
				
			||||||
		esac
 | 
					 | 
				
			||||||
		shift 1
 | 
					 | 
				
			||||||
	done
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	[ $SEARCH_NAME ] && {
 | 
					 | 
				
			||||||
		[ $SEARCH_TYPE  ] || ERROR '--name requires --type argument'
 | 
					 | 
				
			||||||
		[ $SEARCH_GROUP ] || ERROR '--name requires --group argument'
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	CHECK_ERRORS
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	#####################################################################
 | 
					 | 
				
			||||||
	### scwrypts selection / filtering ##################################
 | 
					 | 
				
			||||||
	#####################################################################
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	local SCWRYPTS_AVAILABLE
 | 
					 | 
				
			||||||
	SCWRYPTS_AVAILABLE=$(SCWRYPTS__GET_AVAILABLE_SCWRYPTS)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	##########################################
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	[ $SEARCH_NAME ] && SCWRYPTS_AVAILABLE=$({
 | 
					 | 
				
			||||||
		echo $SCWRYPTS_AVAILABLE | head -n1
 | 
					 | 
				
			||||||
		echo $SCWRYPTS_AVAILABLE | sed -e 's/\x1b\[[0-9;]*m//g' | grep "^$SEARCH_NAME *$SEARCH_TYPE *$SEARCH_GROUP\$"
 | 
					 | 
				
			||||||
	}) || {
 | 
					 | 
				
			||||||
		[ $SEARCH_TYPE ] && {
 | 
					 | 
				
			||||||
			SCWRYPTS_AVAILABLE=$(\
 | 
					 | 
				
			||||||
				{
 | 
					 | 
				
			||||||
					echo $SCWRYPTS_AVAILABLE | head -n1
 | 
					 | 
				
			||||||
					echo $SCWRYPTS_AVAILABLE | grep ' [^/]*'$SEARCH_TYPE'[^/]* '
 | 
					 | 
				
			||||||
				} \
 | 
					 | 
				
			||||||
				| awk '{$2=""; print $0;}' \
 | 
					 | 
				
			||||||
				| sed 's/ \+$/'$(printf $__COLOR_RESET)'/; s/ \+/^/g'  \
 | 
					 | 
				
			||||||
				| column -ts '^'
 | 
					 | 
				
			||||||
			)
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		[ $SEARCH_GROUP ] && {
 | 
					 | 
				
			||||||
			SCWRYPTS_AVAILABLE=$(
 | 
					 | 
				
			||||||
				{
 | 
					 | 
				
			||||||
					echo $SCWRYPTS_AVAILABLE | head -n1
 | 
					 | 
				
			||||||
					echo $SCWRYPTS_AVAILABLE | grep "$SEARCH_GROUP"'[^/]*$'
 | 
					 | 
				
			||||||
				} \
 | 
					 | 
				
			||||||
				| awk '{$NF=""; print $0;}' \
 | 
					 | 
				
			||||||
				| sed 's/ \+$/'$(printf $__COLOR_RESET)'/; s/ \+/^/g'  \
 | 
					 | 
				
			||||||
				| column -ts '^'
 | 
					 | 
				
			||||||
			)
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		[[ ${#SEARCH_PATTERNS[@]} -gt 0 ]] && {
 | 
					 | 
				
			||||||
			POTENTIAL_ERROR+="\n   PATTERNS : $SEARCH_PATTERNS"
 | 
					 | 
				
			||||||
			local P
 | 
					 | 
				
			||||||
			for P in ${SEARCH_PATTERNS[@]}
 | 
					 | 
				
			||||||
			do
 | 
					 | 
				
			||||||
				SCWRYPTS_AVAILABLE=$(
 | 
					 | 
				
			||||||
					{
 | 
					 | 
				
			||||||
						echo $SCWRYPTS_AVAILABLE | head -n1
 | 
					 | 
				
			||||||
						echo $SCWRYPTS_AVAILABLE | grep $P
 | 
					 | 
				
			||||||
					}
 | 
					 | 
				
			||||||
				)
 | 
					 | 
				
			||||||
			done
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	[[ $(echo $SCWRYPTS_AVAILABLE | wc -l) -lt 2 ]] && {
 | 
					 | 
				
			||||||
		FAIL 1 "$(echo "
 | 
					 | 
				
			||||||
		no such scwrypt exists
 | 
					 | 
				
			||||||
		  NAME     : '$SEARCH_NAME'
 | 
					 | 
				
			||||||
		  TYPE     : '$SEARCH_TYPE'
 | 
					 | 
				
			||||||
		  GROUP    : '$SEARCH_GROUP'
 | 
					 | 
				
			||||||
		  PATTERNS : '$SEARCH_PATTERNS'
 | 
					 | 
				
			||||||
		" | sed "1d; \$d; /''$/d")"
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	##########################################
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	[[ $(echo $SCWRYPTS_AVAILABLE | wc -l) -eq 2 ]] \
 | 
					 | 
				
			||||||
		&& SCWRYPT_SELECTION=$(echo $SCWRYPTS_AVAILABLE | tail -n1) \
 | 
					 | 
				
			||||||
		|| SCWRYPT_SELECTION=$(echo $SCWRYPTS_AVAILABLE | FZF "select a script to run" --header-lines 1) \
 | 
					 | 
				
			||||||
		;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	[ $SCWRYPT_SELECTION ] || exit 2
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	##########################################
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	local NAME TYPE GROUP
 | 
					 | 
				
			||||||
	SCWRYPTS__SEPARATE_SCWRYPT_SELECTION $SCWRYPT_SELECTION
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	export SCWRYPT_NAME=$NAME
 | 
					 | 
				
			||||||
	export SCWRYPT_TYPE=$TYPE
 | 
					 | 
				
			||||||
	export SCWRYPT_GROUP=$GROUP
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	#####################################################################
 | 
					 | 
				
			||||||
	### environment variables and configuration validation ##############
 | 
					 | 
				
			||||||
	#####################################################################
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	local ENV_REQUIRED=true \
 | 
					 | 
				
			||||||
		&& [ ! $CI ] \
 | 
					 | 
				
			||||||
		&& [[ ! $SCWRYPT_NAME =~ scwrypts/logs ]] \
 | 
					 | 
				
			||||||
		&& [[ ! $SCWRYPT_NAME =~ scwrypts/environment ]] \
 | 
					 | 
				
			||||||
		|| ENV_REQUIRED=false
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	local REQUIRED_ENVIRONMENT_REGEX=$(eval echo '$SCWRYPTS_REQUIRED_ENVIRONMENT_REGEX__'$SCWRYPT_GROUP)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	[ $ENV_NAME ] && [ $REQUIRED_ENVIRONMENT_REGEX ] && {
 | 
					 | 
				
			||||||
		[[ $ENV_NAME =~ $REQUIRED_ENVIRONMENT_REGEX ]] \
 | 
					 | 
				
			||||||
			|| FAIL 5 "group '$SCWRYPT_GROUP' requires current environment name to match '$REQUIRED_ENVIRONMENT_REGEX' (currently $ENV_NAME)"
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	[[ $ENV_REQUIRED =~ true ]] && {
 | 
					 | 
				
			||||||
		[ ! $ENV_NAME ] && ENV_NAME=$(SCWRYPTS__SELECT_ENV)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		for GROUP in ${SCWRYPTS_GROUPS[@]}
 | 
					 | 
				
			||||||
		do
 | 
					 | 
				
			||||||
			local ENV_FILE=$(SCWRYPTS__GET_ENV_FILE "$ENV_NAME" "$GROUP")
 | 
					 | 
				
			||||||
			source "$ENV_FILE" || FAIL 5 "missing or invalid environment '$GROUP/$ENV_NAME'"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			for f in $(eval 'echo $SCWRYPTS_STATIC_CONFIG__'$GROUP)
 | 
					 | 
				
			||||||
			do
 | 
					 | 
				
			||||||
				source "$f" || FAIL 5 "invalid static config '$f'"
 | 
					 | 
				
			||||||
			done
 | 
					 | 
				
			||||||
		done
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		export ENV_NAME
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	[ $REQUIRED_ENVIRONMENT_REGEX ] && {
 | 
					 | 
				
			||||||
		[[ $ENV_NAME =~ $REQUIRED_ENVIRONMENT_REGEX ]] \
 | 
					 | 
				
			||||||
			|| FAIL 5 "group '$SCWRYPT_GROUP' requires current environment name to match '$REQUIRED_ENVIRONMENT_REGEX' (currently $ENV_NAME)"
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	##########################################
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	[ ! $SUBSCWRYPT ] && export SUBSCWRYPT=0
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	[[ $SUBSCWRYPT -eq 0 ]] && [[ $ENV_NAME =~ prod ]] && [[ $SCWRYPTS_LOG_LEVEL -gt 0 ]] && {
 | 
					 | 
				
			||||||
		STATUS "on '$ENV_NAME'; checking diff against origin/main"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		local WARNING_MESSAGE
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		[ ! $WARNING_MESSAGE ] && {
 | 
					 | 
				
			||||||
			GIT_SCWRYPTS fetch --quiet origin main \
 | 
					 | 
				
			||||||
				|| WARNING_MESSAGE='I am unable to verify your scwrypts version'
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		[ ! $WARNING_MESSAGE ] && {
 | 
					 | 
				
			||||||
			GIT_SCWRYPTS diff --exit-code origin/main -- . >/dev/null 2>&1 \
 | 
					 | 
				
			||||||
				|| WARNING_MESSAGE='your scwrypts is currently out-of-date'
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		[ $WARNING_MESSAGE ] && {
 | 
					 | 
				
			||||||
			[[ $SCWRYPTS_LOG_LEVEL -lt 3 ]] && {
 | 
					 | 
				
			||||||
				REMINDER "you are running in ${__BRIGHT_RED}production${__BRIGHT_MAGENTA} and $WARNING_MESSAGE"
 | 
					 | 
				
			||||||
			} || {
 | 
					 | 
				
			||||||
				GIT_SCWRYPTS diff --exit-code origin/main -- . >&2
 | 
					 | 
				
			||||||
				WARNING "you are trying to run in ${__BRIGHT_RED}production${__YELLOW} but $WARNING_MESSAGE (relevant diffs and errors above)"
 | 
					 | 
				
			||||||
				yN 'continue?' || {
 | 
					 | 
				
			||||||
					REMINDER "you can use 'scwrypts --update' to quickly update scwrypts to latest"
 | 
					 | 
				
			||||||
					ABORT
 | 
					 | 
				
			||||||
				}
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	##########################################
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	local RUN_STRING=$(SCWRYPTS__GET_RUNSTRING $SCWRYPT_NAME $SCWRYPT_TYPE $SCWRYPT_GROUP)
 | 
					 | 
				
			||||||
	[ "$RUN_STRING" ] || return 42
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	#####################################################################
 | 
					 | 
				
			||||||
	### logging and pretty header/footer setup ##########################
 | 
					 | 
				
			||||||
	#####################################################################
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	local LOGFILE \
 | 
					 | 
				
			||||||
		&& [[ $SCWRYPTS_LOG_LEVEL -gt 0 ]] \
 | 
					 | 
				
			||||||
		&& [[ $SUBSCWRYPT -eq 0 ]] \
 | 
					 | 
				
			||||||
		&& [[ ! $SCWRYPT_NAME =~ scwrypts/logs ]] \
 | 
					 | 
				
			||||||
		&& [[ ! $SCWRYPT_NAME =~ interactive ]] \
 | 
					 | 
				
			||||||
		&& LOGFILE="$SCWRYPTS_LOG_PATH/$(echo $GROUP/$TYPE/$NAME | sed 's/^\.\///; s/\//\%/g').log" \
 | 
					 | 
				
			||||||
		|| LOGFILE='/dev/null' \
 | 
					 | 
				
			||||||
		;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	local RUN_MODE=normal
 | 
					 | 
				
			||||||
	[[ $LOGFILE      =~ ^/dev/null$ ]] && RUN_MODE=no-logfile
 | 
					 | 
				
			||||||
	[[ $SCWRYPT_NAME =~ interactive ]] && RUN_MODE=interactive
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	local HEADER FOOTER
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	[[ $SCWRYPTS_LOG_LEVEL -ge 2 ]] && {
 | 
					 | 
				
			||||||
		HEADER=$(
 | 
					 | 
				
			||||||
			echo "
 | 
					 | 
				
			||||||
				=====================================================================
 | 
					 | 
				
			||||||
				script    : $SCWRYPT_GROUP $SCWRYPT_TYPE $SCWRYPT_NAME
 | 
					 | 
				
			||||||
				run at    : $(date)
 | 
					 | 
				
			||||||
				config    : $ENV_NAME
 | 
					 | 
				
			||||||
				log level : $SCWRYPTS_LOG_LEVEL
 | 
					 | 
				
			||||||
				\\033[1;33m--- SCWRYPT BEGIN ---------------------------------------------------\\033[0m
 | 
					 | 
				
			||||||
			" | sed 's/^\s\+//; 1d'
 | 
					 | 
				
			||||||
		)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		FOOTER="\\033[1;33m--- SCWRYPT END   ---------------------------------------------------\\033[0m"
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	[[ $SUBSCWRYPT -eq 0 ]] || {
 | 
					 | 
				
			||||||
		HEADER="\\033[0;33m--- ($SUBSCWRYPT) BEGIN $SCWRYPT_GROUP $SCWRYPT_TYPE $SCWRYPT_NAME ---"
 | 
					 | 
				
			||||||
		FOOTER="\\033[0;33m--- ($SUBSCWRYPT) END   $SCWRYPT_GROUP $SCWRYPT_TYPE $SCWRYPT_NAME ---"
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	#####################################################################
 | 
					 | 
				
			||||||
	### run the scwrypt #################################################
 | 
					 | 
				
			||||||
	#####################################################################
 | 
					 | 
				
			||||||
	set -o pipefail
 | 
					 | 
				
			||||||
	{
 | 
					 | 
				
			||||||
		[ $HEADER ] && echo $HEADER
 | 
					 | 
				
			||||||
		case $RUN_MODE in
 | 
					 | 
				
			||||||
			normal )
 | 
					 | 
				
			||||||
				(eval "$RUN_STRING $(printf "%q " "$@")")
 | 
					 | 
				
			||||||
				EXIT_CODE=$?
 | 
					 | 
				
			||||||
				;;
 | 
					 | 
				
			||||||
			no-logfile )
 | 
					 | 
				
			||||||
				eval "$RUN_STRING $(printf "%q " "$@")"
 | 
					 | 
				
			||||||
				EXIT_CODE=$?
 | 
					 | 
				
			||||||
				;;
 | 
					 | 
				
			||||||
			interactive )
 | 
					 | 
				
			||||||
				eval "$RUN_STRING $(printf "%q " "$@")" </dev/tty >/dev/tty 2>&1
 | 
					 | 
				
			||||||
				EXIT_CODE=$?
 | 
					 | 
				
			||||||
				;;
 | 
					 | 
				
			||||||
		esac
 | 
					 | 
				
			||||||
		[ $FOOTER ] && echo $FOOTER
 | 
					 | 
				
			||||||
		[[ $EXIT_CODE -eq 0 ]] && EXIT_COLOR='32m' || EXIT_COLOR='31m'
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		[[ $SCWRYPTS_LOG_LEVEL -ge 2 ]] && [ ! $SUBSCWRYPT ] \
 | 
					 | 
				
			||||||
			&& echo "terminated with\\033[1;$EXIT_COLOR code $EXIT_CODE\\033[0m"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		return $EXIT_CODE
 | 
					 | 
				
			||||||
	} 2>&1 | tee --append "$LOGFILE"
 | 
					 | 
				
			||||||
} $@
 | 
					 | 
				
			||||||
 
 | 
				
			|||||||
@@ -27,9 +27,6 @@ EKS() {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	local CONTEXT="arn:aws:eks:${AWS_REGION}:${AWS_ACCOUNT}:cluster/${CLUSTER_NAME}"
 | 
						local CONTEXT="arn:aws:eks:${AWS_REGION}:${AWS_ACCOUNT}:cluster/${CLUSTER_NAME}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	kubectl config get-contexts | grep -q $CONTEXT \
 | 
					 | 
				
			||||||
		|| EKS__CLUSTER_LOGIN -c $CLUSTER_NAME >/dev/null
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	local CONTEXT_ARGS=()
 | 
						local CONTEXT_ARGS=()
 | 
				
			||||||
	case $1 in
 | 
						case $1 in
 | 
				
			||||||
		helm ) CONTEXT_ARGS+=(--kube-context $CONTEXT) ;;
 | 
							helm ) CONTEXT_ARGS+=(--kube-context $CONTEXT) ;;
 | 
				
			||||||
@@ -55,7 +52,6 @@ EKS__CLUSTER_LOGIN() {
 | 
				
			|||||||
	"
 | 
						"
 | 
				
			||||||
	REQUIRED_ENV=(AWS_ACCOUNT AWS_REGION) CHECK_ENVIRONMENT || return 1
 | 
						REQUIRED_ENV=(AWS_ACCOUNT AWS_REGION) CHECK_ENVIRONMENT || return 1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 | 
				
			||||||
	local CLUSTER_NAME
 | 
						local CLUSTER_NAME
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	while [[ $# -gt 0 ]]
 | 
						while [[ $# -gt 0 ]]
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -2,10 +2,7 @@
 | 
				
			|||||||
#####################################################################
 | 
					#####################################################################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[ ! $SCWRYPTS_ROOT ] \
 | 
					[ ! $SCWRYPTS_ROOT ] \
 | 
				
			||||||
	&& SCWRYPTS_ROOT="$(cd $(dirname "${0:a:h}"); git rev-parse --show-toplevel 2>/dev/null)"
 | 
						&& SCWRYPTS_ROOT="$(cd $(dirname "${0:a:h}"); git rev-parse --show-toplevel)"
 | 
				
			||||||
 | 
					 | 
				
			||||||
[ ! $SCWRYPTS_ROOT ] && [ -d /usr/share/scwrypts ] \
 | 
					 | 
				
			||||||
	&& SCWRYPTS_ROOT=/usr/share/scwrypts
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#####################################################################
 | 
					#####################################################################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -12,7 +12,7 @@ SCWRYPTS__RUN() {  # context wrapper to run scwrypts within scwrypts
 | 
				
			|||||||
	local EXIT_CODE=0
 | 
						local EXIT_CODE=0
 | 
				
			||||||
	((SUBSCWRYPT+=1))
 | 
						((SUBSCWRYPT+=1))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	SUBSCWRYPT=$SUBSCWRYPT $SCWRYPTS_ROOT/scwrypts $@
 | 
						SUBSCWRYPT=$SUBSCWRYPT $SCWRYPTS_ROOT/run $@
 | 
				
			||||||
	EXIT_CODE=$?
 | 
						EXIT_CODE=$?
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	((SUBSCWRYPT-=1))
 | 
						((SUBSCWRYPT-=1))
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -37,7 +37,7 @@ __CHECK_COREUTILS() {
 | 
				
			|||||||
	do
 | 
						do
 | 
				
			||||||
		__CHECK_DEPENDENCY $UTIL || { ((MISSING_DEPENDENCY_COUNT+=1)); continue; }
 | 
							__CHECK_DEPENDENCY $UTIL || { ((MISSING_DEPENDENCY_COUNT+=1)); continue; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		$UTIL --version 2>&1 | grep 'GNU' | grep -qv 'BSD' || {
 | 
							$UTIL --version 2>&1 | grep -q 'GNU' || {
 | 
				
			||||||
			WARNING "non-GNU version of $UTIL detected"
 | 
								WARNING "non-GNU version of $UTIL detected"
 | 
				
			||||||
			((NON_GNU_DEPENDENCY_COUNT+=1))
 | 
								((NON_GNU_DEPENDENCY_COUNT+=1))
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -6,7 +6,6 @@ source "${0:a:h}/io.print.zsh"
 | 
				
			|||||||
[ ! $ERRORS ] && ERRORS=0
 | 
					[ ! $ERRORS ] && ERRORS=0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
ERROR() {  # command encountered an error
 | 
					ERROR() {  # command encountered an error
 | 
				
			||||||
	[ ! $SCWRYPTS_LOG_LEVEL ] && local SCWRYPTS_LOG_LEVEL=4
 | 
					 | 
				
			||||||
	[[ $SCWRYPTS_LOG_LEVEL -ge 1 ]] \
 | 
						[[ $SCWRYPTS_LOG_LEVEL -ge 1 ]] \
 | 
				
			||||||
		&& PREFIX="ERROR    ✖" COLOR=$__RED            PRINT "$@"
 | 
							&& PREFIX="ERROR    ✖" COLOR=$__RED            PRINT "$@"
 | 
				
			||||||
	((ERRORS+=1))
 | 
						((ERRORS+=1))
 | 
				
			||||||
@@ -14,47 +13,35 @@ ERROR() {  # command encountered an error
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
SUCCESS() {  # command completed successfully
 | 
					SUCCESS() {  # command completed successfully
 | 
				
			||||||
	[ ! $SCWRYPTS_LOG_LEVEL ] && local SCWRYPTS_LOG_LEVEL=4
 | 
					 | 
				
			||||||
	[[ $SCWRYPTS_LOG_LEVEL -ge 1 ]] \
 | 
						[[ $SCWRYPTS_LOG_LEVEL -ge 1 ]] \
 | 
				
			||||||
		&& PREFIX="SUCCESS  ✔" COLOR=$__GREEN          PRINT "$@"
 | 
							&& PREFIX="SUCCESS  ✔" COLOR=$__GREEN          PRINT "$@"
 | 
				
			||||||
	return 0
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
REMINDER() {  # include sysadmin reminder or other important notice to users
 | 
					REMINDER() {  # include sysadmin reminder or other important notice to users
 | 
				
			||||||
	[ ! $SCWRYPTS_LOG_LEVEL ] && local SCWRYPTS_LOG_LEVEL=4
 | 
					 | 
				
			||||||
	[[ $SCWRYPTS_LOG_LEVEL -ge 1 ]] \
 | 
						[[ $SCWRYPTS_LOG_LEVEL -ge 1 ]] \
 | 
				
			||||||
		&& PREFIX="REMINDER " COLOR=$__BRIGHT_MAGENTA PRINT "$@"
 | 
							&& PREFIX="REMINDER " COLOR=$__BRIGHT_MAGENTA PRINT "$@"
 | 
				
			||||||
	return 0
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
STATUS() {  # general status updates (prefer this to generic 'echo')
 | 
					STATUS() {  # general status updates (prefer this to generic 'echo')
 | 
				
			||||||
	[ ! $SCWRYPTS_LOG_LEVEL ] && local SCWRYPTS_LOG_LEVEL=4
 | 
					 | 
				
			||||||
	[[ $SCWRYPTS_LOG_LEVEL -ge 2 ]] \
 | 
						[[ $SCWRYPTS_LOG_LEVEL -ge 2 ]] \
 | 
				
			||||||
		&& PREFIX="STATUS    " COLOR=$__BLUE           PRINT "$@"
 | 
							&& PREFIX="STATUS    " COLOR=$__BLUE           PRINT "$@"
 | 
				
			||||||
	return 0
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
WARNING() {  # warning-level messages; not errors
 | 
					WARNING() {  # warning-level messages; not errors
 | 
				
			||||||
	[ ! $SCWRYPTS_LOG_LEVEL ] && local SCWRYPTS_LOG_LEVEL=4
 | 
					 | 
				
			||||||
	[[ $SCWRYPTS_LOG_LEVEL -ge 3 ]] \
 | 
						[[ $SCWRYPTS_LOG_LEVEL -ge 3 ]] \
 | 
				
			||||||
		&& PREFIX="WARNING  " COLOR=$__YELLOW         PRINT "$@"
 | 
							&& PREFIX="WARNING  " COLOR=$__YELLOW         PRINT "$@"
 | 
				
			||||||
	return 0
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
DEBUG() {  # helpful during development or (sparingly) to help others' development
 | 
					DEBUG() {  # helpful during development or (sparingly) to help others' development
 | 
				
			||||||
	[ ! $SCWRYPTS_LOG_LEVEL ] && local SCWRYPTS_LOG_LEVEL=4
 | 
					 | 
				
			||||||
	[[ $SCWRYPTS_LOG_LEVEL -ge 4 ]] \
 | 
						[[ $SCWRYPTS_LOG_LEVEL -ge 4 ]] \
 | 
				
			||||||
		&& PREFIX="DEBUG    ℹ" COLOR=$__WHITE          PRINT "$@"
 | 
							&& PREFIX="DEBUG    ℹ" COLOR=$__WHITE          PRINT "$@"
 | 
				
			||||||
	return 0
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
PROMPT() {  # you probably want to use yN or INPUT from below
 | 
					PROMPT() {  # you probably want to use yN or INPUT from below
 | 
				
			||||||
	[ ! $SCWRYPTS_LOG_LEVEL ] && local SCWRYPTS_LOG_LEVEL=4
 | 
					 | 
				
			||||||
	[[ $SCWRYPTS_LOG_LEVEL -ge 1 ]] \
 | 
						[[ $SCWRYPTS_LOG_LEVEL -ge 1 ]] \
 | 
				
			||||||
		&& PREFIX="PROMPT   " COLOR=$__CYAN PRINT "$@" \
 | 
							&& PREFIX="PROMPT   " COLOR=$__CYAN PRINT "$@" \
 | 
				
			||||||
		&& PREFIX="USER     ⌨" COLOR=$__BRIGHT_CYAN PRINT '' --no-line-end \
 | 
							&& PREFIX="USER     ⌨" COLOR=$__BRIGHT_CYAN PRINT '' --no-line-end \
 | 
				
			||||||
		;
 | 
							;
 | 
				
			||||||
	return 0
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
FAIL()  { SCWRYPTS_LOG_LEVEL=1 ERROR "${@:2}"; exit $1; }
 | 
					FAIL()  { SCWRYPTS_LOG_LEVEL=1 ERROR "${@:2}"; exit $1; }
 | 
				
			||||||
@@ -224,21 +211,15 @@ READ_YN() {  # yes/no read is suprisingly tricky
 | 
				
			|||||||
	local yn
 | 
						local yn
 | 
				
			||||||
	PROMPT "${USERPROMPT[@]}"
 | 
						PROMPT "${USERPROMPT[@]}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	local PERFORM_FAKE_PROMPT=false
 | 
					 | 
				
			||||||
	case $SKIP_USER_INPUT in
 | 
						case $SKIP_USER_INPUT in
 | 
				
			||||||
		true ) yn=y ;;
 | 
							true ) yn=y ;;
 | 
				
			||||||
		false )
 | 
							false )
 | 
				
			||||||
			[[ $SCWRYPTS_LOG_LEVEL -lt 1 ]] && {
 | 
								[[ $FORCE_USER_INPUT =~ true ]] && [[ $SCWRYPTS_LOG_LEVEL -lt 1 ]] \
 | 
				
			||||||
				[[ $FORCE_USER_INPUT =~ false ]] && [ ! -t 0 ] \
 | 
					 | 
				
			||||||
					|| PERFORM_FAKE_PROMPT=true
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			[[ $PERFORM_FAKE_PROMPT =~ true ]] \
 | 
					 | 
				
			||||||
				&& echo -n "${USERPROMPT[@]} : " >&2
 | 
									&& echo -n "${USERPROMPT[@]} : " >&2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			READ ${READ_ARGS[@]} -s -k yn
 | 
								READ ${READ_ARGS[@]} -s -k yn
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			[[ $PERFORM_FAKE_PROMPT =~ true ]] \
 | 
								[[ $FORCE_USER_INPUT =~ true ]] && [[ $SCWRYPTS_LOG_LEVEL -lt 1 ]] \
 | 
				
			||||||
				&& echo $yn >&2
 | 
									&& echo $yn >&2
 | 
				
			||||||
			;;
 | 
								;;
 | 
				
			||||||
	esac
 | 
						esac
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -26,7 +26,6 @@
 | 
				
			|||||||
		"prettier": "^3.2.5",
 | 
							"prettier": "^3.2.5",
 | 
				
			||||||
		"ts-jest": "^29.1.2",
 | 
							"ts-jest": "^29.1.2",
 | 
				
			||||||
		"ts-node": "^10.9.2",
 | 
							"ts-node": "^10.9.2",
 | 
				
			||||||
		"typescript": "^5.3.3",
 | 
					 | 
				
			||||||
		"uuid": "^9.0.1"
 | 
							"uuid": "^9.0.1"
 | 
				
			||||||
	},
 | 
						},
 | 
				
			||||||
	"eslintConfig": {
 | 
						"eslintConfig": {
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										3
									
								
								zx/lib/pnpm-lock.yaml
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										3
									
								
								zx/lib/pnpm-lock.yaml
									
									
									
										generated
									
									
									
								
							@@ -43,9 +43,6 @@ devDependencies:
 | 
				
			|||||||
  ts-node:
 | 
					  ts-node:
 | 
				
			||||||
    specifier: ^10.9.2
 | 
					    specifier: ^10.9.2
 | 
				
			||||||
    version: 10.9.2(@types/node@20.11.19)(typescript@5.3.3)
 | 
					    version: 10.9.2(@types/node@20.11.19)(typescript@5.3.3)
 | 
				
			||||||
  typescript:
 | 
					 | 
				
			||||||
    specifier: ^5.3.3
 | 
					 | 
				
			||||||
    version: 5.3.3
 | 
					 | 
				
			||||||
  uuid:
 | 
					  uuid:
 | 
				
			||||||
    specifier: ^9.0.1
 | 
					    specifier: ^9.0.1
 | 
				
			||||||
    version: 9.0.1
 | 
					    version: 9.0.1
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -64,9 +64,11 @@ afterEach(() => {
 | 
				
			|||||||
});
 | 
					});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
describe('exact lookup', () => {
 | 
					describe('exact lookup', () => {
 | 
				
			||||||
 | 
					  let output;
 | 
				
			||||||
  beforeEach(async () => {
 | 
					  beforeEach(async () => {
 | 
				
			||||||
    sample.spy.getScwryptsLookup.mockReturnValue(sample.lookup.exact);
 | 
					    sample.spy.getScwryptsLookup.mockReturnValue(sample.lookup.exact);
 | 
				
			||||||
    await scwrypts(sample.options);
 | 
					
 | 
				
			||||||
 | 
					    output = await scwrypts(sample.options);
 | 
				
			||||||
  });
 | 
					  });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  test('gets the correct lookup', () => {
 | 
					  test('gets the correct lookup', () => {
 | 
				
			||||||
@@ -96,6 +98,7 @@ describe('exact lookup', () => {
 | 
				
			|||||||
describe('patterns lookup', () => {
 | 
					describe('patterns lookup', () => {
 | 
				
			||||||
  beforeEach(async () => {
 | 
					  beforeEach(async () => {
 | 
				
			||||||
    sample.spy.getScwryptsLookup.mockReturnValue(sample.lookup.patterns);
 | 
					    sample.spy.getScwryptsLookup.mockReturnValue(sample.lookup.patterns);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    await scwrypts(sample.options);
 | 
					    await scwrypts(sample.options);
 | 
				
			||||||
  });
 | 
					  });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										6
									
								
								zx/package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										6
									
								
								zx/package-lock.json
									
									
									
										generated
									
									
									
								
							@@ -31,7 +31,6 @@
 | 
				
			|||||||
        "prettier": "^3.2.5",
 | 
					        "prettier": "^3.2.5",
 | 
				
			||||||
        "ts-jest": "^29.1.2",
 | 
					        "ts-jest": "^29.1.2",
 | 
				
			||||||
        "ts-node": "^10.9.2",
 | 
					        "ts-node": "^10.9.2",
 | 
				
			||||||
        "typescript": "^5.3.3",
 | 
					 | 
				
			||||||
        "uuid": "^9.0.1"
 | 
					        "uuid": "^9.0.1"
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
@@ -4998,6 +4997,7 @@
 | 
				
			|||||||
      "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz",
 | 
					      "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz",
 | 
				
			||||||
      "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==",
 | 
					      "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==",
 | 
				
			||||||
      "dev": true,
 | 
					      "dev": true,
 | 
				
			||||||
 | 
					      "peer": true,
 | 
				
			||||||
      "bin": {
 | 
					      "bin": {
 | 
				
			||||||
        "tsc": "bin/tsc",
 | 
					        "tsc": "bin/tsc",
 | 
				
			||||||
        "tsserver": "bin/tsserver"
 | 
					        "tsserver": "bin/tsserver"
 | 
				
			||||||
@@ -8596,7 +8596,6 @@
 | 
				
			|||||||
        "prettier": "^3.2.5",
 | 
					        "prettier": "^3.2.5",
 | 
				
			||||||
        "ts-jest": "^29.1.2",
 | 
					        "ts-jest": "^29.1.2",
 | 
				
			||||||
        "ts-node": "^10.9.2",
 | 
					        "ts-node": "^10.9.2",
 | 
				
			||||||
        "typescript": "^5.3.3",
 | 
					 | 
				
			||||||
        "uuid": "^9.0.1"
 | 
					        "uuid": "^9.0.1"
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
@@ -8885,7 +8884,8 @@
 | 
				
			|||||||
      "version": "5.3.3",
 | 
					      "version": "5.3.3",
 | 
				
			||||||
      "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz",
 | 
					      "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz",
 | 
				
			||||||
      "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==",
 | 
					      "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==",
 | 
				
			||||||
      "dev": true
 | 
					      "dev": true,
 | 
				
			||||||
 | 
					      "peer": true
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    "undici-types": {
 | 
					    "undici-types": {
 | 
				
			||||||
      "version": "5.26.5",
 | 
					      "version": "5.26.5",
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user