style: cleanup formatting, spelling

- use project-custom dictionary
- cleanup spelling mistakes
- rename functions to conform with camelCase for spellcheck
- reformat file: spacing, indentation
This commit is contained in:
Asif Bacchus 2021-05-15 09:15:57 -06:00
parent 8b201ca047
commit c73a3b8531
5 changed files with 182 additions and 147 deletions

View File

@ -0,0 +1,12 @@
<component name="ProjectDictionaryState">
<dictionary name="asif">
<words>
<w>borgbackup</w>
<w>borghelper</w>
<w>borgvars</w>
<w>listall</w>
<w>makevars</w>
<w>viewarchive</w>
</words>
</dictionary>
</component>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ContentModelUserStore">
<attachedFolders />
<explicitIncludes />
<explicitExcludes />
</component>
</project>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="RIDER_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$/../.." />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

View File

@ -7,4 +7,7 @@
<inspection_tool class="SubjectLimit" enabled="true" level="ERROR" enabled_by_default="true" /> <inspection_tool class="SubjectLimit" enabled="true" level="ERROR" enabled_by_default="true" />
</profile> </profile>
</component> </component>
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project> </project>

View File

@ -17,6 +17,7 @@ trap trapExit 1 2 3 6
### functions ### functions
cleanup() { cleanup() {
# remove borg temp directory, if it exists # remove borg temp directory, if it exists
# shellcheck disable=SC2154
if [ -d "${borgBaseDir}/tmp" ]; then if [ -d "${borgBaseDir}/tmp" ]; then
if ! rm -rf "${borgBaseDir}/tmp" >/dev/null 2>&1; then if ! rm -rf "${borgBaseDir}/tmp" >/dev/null 2>&1; then
consoleError 3 "Script completed successfully but could not remove temporary directory at '$borgBaseDir/tmp'. Sorry to be messy." consoleError 3 "Script completed successfully but could not remove temporary directory at '$borgBaseDir/tmp'. Sorry to be messy."
@ -37,61 +38,61 @@ consoleError() {
scriptHelp() { scriptHelp() {
printf "\n" printf "\n"
textblock "${bold}Usage: borghelper.sh [parameters]${norm}" textBlock "${bold}Usage: borghelper.sh [parameters]${norm}"
printf "\n" printf "\n"
textblock "Simple script to read connection parameters from a flat text file and process borg 'info', 'list' and 'restore' commands without the very long command lines that are required when specifying repo names and passwords, etc." textBlock "Simple script to read connection parameters from a flat text file and process borg 'info', 'list' and 'restore' commands without the very long command lines that are required when specifying repo names and passwords, etc."
printf "\n" printf "\n"
textblock "${magenta}The script has the following parameters:${norm}" textBlock "${magenta}The script has the following parameters:${norm}"
printf "\n" printf "\n"
textblock "${magenta}--- Required Parameters ---${norm}" textBlock "${magenta}--- Required Parameters ---${norm}"
printf "\n" printf "\n"
ptextblock "-v|--vars" textBlockParams "-v|--vars"
textblock "Path to the .borgvars file from which to read borg connection information. This is not required if run with '--makevars'." textBlock "Path to the .borgvars file from which to read borg connection information. This is not required if run with '--makevars'."
printf "\n" printf "\n"
textblock "${magenta}--- Operation Modes ---${norm}" textBlock "${magenta}--- Operation Modes ---${norm}"
printf "\n" printf "\n"
ptextblock "--makevars" textBlockParams "--makevars"
textblock "Create a sample .borgvars file that you can fill in and use with this script." textBlock "Create a sample .borgvars file that you can fill in and use with this script."
ptextblock "-i|--info" textBlockParams "-i|--info"
textblock "Get information about a specified borg repo archive. Requires you supply '--archive'." textBlock "Get information about a specified borg repo archive. Requires you supply '--archive'."
ptextblock "-l|--list" textBlockParams "-l|--list"
textblock "List contents of a specified borg repo archive. Requires you supply '--archive'. You can optionally specify a file/pattern to search for using '--file'." textBlock "List contents of a specified borg repo archive. Requires you supply '--archive'. You can optionally specify a file/pattern to search for using '--file'."
ptextblock "-la|--list-all" textBlockParams "-la|--list-all"
textblock "List all available archives within the repo specified in your .borgvars file." textBlock "List all available archives within the repo specified in your .borgvars file."
ptextblock "-r|--restore" textBlockParams "-r|--restore"
textblock "Restore the specified borg repo archive/file(s). Requires you supply '--archive'." textBlock "Restore the specified borg repo archive/file(s). Requires you supply '--archive'."
printf "\n" printf "\n"
textblock "${magenta}--- Selector Parameters ---${norm}" textBlock "${magenta}--- Selector Parameters ---${norm}"
printf "\n" printf "\n"
ptextblock "-a|--archive" textBlockParams "-a|--archive"
textblock "The archive within your borg repo you wish to work with." textBlock "The archive within your borg repo you wish to work with."
ptextblock "--exclude" textBlockParams "--exclude"
textblock "Pattern (python/borg) of files to exclude from a restore operation." textBlock "Pattern (python/borg) of files to exclude from a restore operation."
ptextblock "-f|--file" textBlockParams "-f|--file"
textblock "Specific file/pattern (python/borg) within an archive for which you want to restore or search. Requires that you supply '--archive'." textBlock "Specific file/pattern (python/borg) within an archive for which you want to restore or search. Requires that you supply '--archive'."
ptextblock "-p|--path" textBlockParams "-p|--path"
textblock "Path to which you want your archive/files restored. This script will attempt to create the directory for you if it does not already exist." textBlock "Path to which you want your archive/files restored. This script will attempt to create the directory for you if it does not already exist."
printf "\n" printf "\n"
textblock "${magenta}--- Restore Options ---${norm}" textBlock "${magenta}--- Restore Options ---${norm}"
printf "\n" printf "\n"
ptextblock "--progress" textBlockParams "--progress"
textblock "Display progress indicator during restore operations. WARNING: This can drastically slow down operations on larger archives!" textBlock "Display progress indicator during restore operations. WARNING: This can drastically slow down operations on larger archives!"
ptextblock "--verbose" textBlockParams "--verbose"
textblock "List the individual files being processed during restore operations." textBlock "List the individual files being processed during restore operations."
printf "\n" printf "\n"
textblock "${magenta}--- Other Parameters ---${norm}" textBlock "${magenta}--- Other Parameters ---${norm}"
printf "\n" printf "\n"
ptextblock "-h|-?|--help" textBlockParams "-h|-?|--help"
textblock "This help screen." textBlock "This help screen."
printf "\n" printf "\n"
exit 0 exit 0
} }
textblock() { textBlock() {
printf "%s\n" "$1" | fold -w "$width" -s printf "%s\n" "$1" | fold -w "$width" -s
} }
ptextblock() { textBlockParams() {
printf "%s%s%s\n" "$cyan" "$1" "$norm" printf "%s%s%s\n" "$cyan" "$1" "$norm"
} }
@ -101,7 +102,6 @@ trapExit () {
exit 99 exit 99
} }
### text formatting presets ### text formatting presets
if command -v tput >/dev/null; then if command -v tput >/dev/null; then
bold=$(tput bold) bold=$(tput bold)
@ -119,7 +119,6 @@ else
width=80 width=80
fi fi
### pre-requisites ### pre-requisites
# is user root? # is user root?
@ -221,7 +220,6 @@ while [ $# -gt 0 ]; do
shift shift
done done
### process 'makevars' operation ### process 'makevars' operation
if [ "$operation" = 'makevars' ]; then if [ "$operation" = 'makevars' ]; then
if ! printf "sshKeyFile=\nborgBaseDir=\nborgRepo=\nborgRepoPassword=\nborgRepoKey=\nborgRemote=\n" >./sample.borgvars; then if ! printf "sshKeyFile=\nborgBaseDir=\nborgRepo=\nborgRepoPassword=\nborgRepoKey=\nborgRemote=\n" >./sample.borgvars; then
@ -275,8 +273,8 @@ if [ "$operation" = 'restore' ]; then
if [ -d "$restorePath" ]; then if [ -d "$restorePath" ]; then
# convert to absolute path # convert to absolute path
restorePath=$( restorePath=$(
cd "$restorePath" || \ cd "$restorePath" ||
consoleError 5 'Cannot access specified restore directory.'; \ consoleError 5 'Cannot access specified restore directory.'
pwd -P pwd -P
) )
if ! touch "${restorePath}/touch.test" >/dev/null 2>&1; then if ! touch "${restorePath}/touch.test" >/dev/null 2>&1; then
@ -288,8 +286,8 @@ if [ "$operation" = 'restore' ]; then
else else
# convert to absolute path # convert to absolute path
restorePath=$( restorePath=$(
cd "$restorePath" || \ cd "$restorePath" ||
consoleError 5 'Cannot access specified restore directory.'; \ consoleError 5 'Cannot access specified restore directory.'
pwd -P pwd -P
) )
if ! touch "${restorePath}/touch.test" >/dev/null 2>&1; then if ! touch "${restorePath}/touch.test" >/dev/null 2>&1; then
@ -305,10 +303,12 @@ fi
case "${varsFile}" in case "${varsFile}" in
/*) /*)
# absolute path, no need to rewrite variable # absolute path, no need to rewrite variable
# shellcheck disable=SC1090
. "${varsFile}" . "${varsFile}"
;; ;;
*) *)
# relative path, prepend './' to create absolute path # relative path, prepend './' to create absolute path
# shellcheck disable=SC1090
. "./${varsFile}" . "./${varsFile}"
;; ;;
esac esac
@ -322,6 +322,7 @@ fi
export BORG_BASE_DIR="${borgBaseDir%/}" export BORG_BASE_DIR="${borgBaseDir%/}"
## check path to SSH keyfile ## check path to SSH keyfile
# shellcheck disable=SC2154
if [ -z "${sshKeyFile}" ]; then if [ -z "${sshKeyFile}" ]; then
consoleError 2 "$varsFile: 'sshKeyFile' is not specified." consoleError 2 "$varsFile: 'sshKeyFile' is not specified."
elif [ ! -f "${sshKeyFile}" ]; then elif [ ! -f "${sshKeyFile}" ]; then
@ -330,12 +331,14 @@ fi
export BORG_RSH="ssh -i ${sshKeyFile}" export BORG_RSH="ssh -i ${sshKeyFile}"
# check borg repo connect string # check borg repo connect string
# shellcheck disable=SC2154
if [ -z "${borgRepo}" ]; then if [ -z "${borgRepo}" ]; then
consoleError 2 "$varsFile: 'borgRepo' is not specified." consoleError 2 "$varsFile: 'borgRepo' is not specified."
fi fi
export BORG_REPO="${borgRepo}" export BORG_REPO="${borgRepo}"
# check borg repo password # check borg repo password
# shellcheck disable=SC2154
if [ -n "${borgRepoPassword}" ]; then if [ -n "${borgRepoPassword}" ]; then
export BORG_PASSPHRASE="${borgRepoPassword}" export BORG_PASSPHRASE="${borgRepoPassword}"
elif [ "${borgRepoPassword}" = 'none' ]; then elif [ "${borgRepoPassword}" = 'none' ]; then
@ -345,14 +348,15 @@ else
fi fi
# check borg keyfile if supplied # check borg keyfile if supplied
# shellcheck disable=SC2154
if [ -n "${borgRepoKey}" ]; then if [ -n "${borgRepoKey}" ]; then
export BORG_KEY_FILE="${borgRepoKey}" export BORG_KEY_FILE="${borgRepoKey}"
fi fi
# export borg remote path, if specified # export borg remote path, if specified
# shellcheck disable=SC2154
if [ -n "${borgRemote}" ]; then export BORG_REMOTE_PATH="${borgRemote}"; fi if [ -n "${borgRemote}" ]; then export BORG_REMOTE_PATH="${borgRemote}"; fi
### create borg temp dir: ### create borg temp dir:
## python requires a writable temporary directory when unpacking borg and ## python requires a writable temporary directory when unpacking borg and
## executing commands. This defaults to /tmp but many systems mount /tmp with ## executing commands. This defaults to /tmp but many systems mount /tmp with
@ -367,7 +371,6 @@ if [ ! -d "${borgBaseDir}/tmp" ]; then
fi fi
export TMPDIR="${borgBaseDir}/tmp" export TMPDIR="${borgBaseDir}/tmp"
### execute borg operations ### execute borg operations
# info operations # info operations
@ -388,29 +391,31 @@ elif [ "$operation" = 'restore' ]; then
if [ -z "$fileName" ]; then if [ -z "$fileName" ]; then
# restore entire archive # restore entire archive
if [ "$exclusions" ]; then if [ "$exclusions" ]; then
# shellcheck disable=SC2086
borg --show-rc ${commonOptions} extract ${restoreOptions} ::"${archiveName}" --exclude "${exclusions}" borg --show-rc ${commonOptions} extract ${restoreOptions} ::"${archiveName}" --exclude "${exclusions}"
else else
# shellcheck disable=SC2086
borg --show-rc ${commonOptions} extract ${restoreOptions} ::"${archiveName}" borg --show-rc ${commonOptions} extract ${restoreOptions} ::"${archiveName}"
fi fi
elif [ "$fileName" ]; then elif [ "$fileName" ]; then
# restore file/pattern # restore file/pattern
if [ "$exclusions" ]; then if [ "$exclusions" ]; then
# shellcheck disable=SC2086
borg --show-rc ${commonOptions} extract ${restoreOptions} ::"${archiveName}" "${fileName}" --exclude "${exclusions}" borg --show-rc ${commonOptions} extract ${restoreOptions} ::"${archiveName}" "${fileName}" --exclude "${exclusions}"
else else
# shellcheck disable=SC2086
borg --show-rc ${commonOptions} extract ${restoreOptions} ::"${archiveName}" "${fileName}" borg --show-rc ${commonOptions} extract ${restoreOptions} ::"${archiveName}" "${fileName}"
fi fi
fi fi
fi fi
### exit gracefully ### exit gracefully
cleanup cleanup
exit 0 exit 0
### exit codes ### exit codes
# 0: no errors, script completed successfully # 0: no errors, script completed successfully
# 1: parameter error (missing, non-existant or invalid input) # 1: parameter error (missing, non-existent or invalid input)
# 2: parameter missing/invalid in .borgvars file # 2: parameter missing/invalid in .borgvars file
# 3: could not create/remove borg tmp directory # 3: could not create/remove borg tmp directory
# 4: could not write sample borgvars file (permissions?) # 4: could not write sample borgvars file (permissions?)