mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2024-11-22 12:35:13 +00:00
Add subcommand 'check' and support in tomblib
This commit is contained in:
parent
2f4cf42e74
commit
1f290078bd
@ -33,6 +33,14 @@ class Tomb(object):
|
||||
return None
|
||||
return path
|
||||
|
||||
@classmethod
|
||||
def check(cls, command, stdout=None, stderr=None, no_color=True):
|
||||
try:
|
||||
subprocess.check_call([cls.tombexec, 'check'] + [command], stdout=stdout, stderr=stderr)
|
||||
except subprocess.CalledProcessError:
|
||||
return False
|
||||
return True
|
||||
|
||||
@classmethod
|
||||
def create(cls, tombpath,tombsize,keypath, stdout=None, stderr=None, no_color=True, ignore_swap=False):
|
||||
'''If keypath is None, it will be created adjacent to the tomb.
|
||||
|
25
src/tomb
25
src/tomb
@ -298,8 +298,20 @@ EOF
|
||||
return 0
|
||||
}
|
||||
# }}}
|
||||
# }}}
|
||||
# {{{ - TOMB USAGE
|
||||
check_command() {
|
||||
#generic checks; useful for interaction, to check if there are problems
|
||||
#before wasting user's time
|
||||
|
||||
if ! option_is_set --ignore-swap; then
|
||||
if [[ $1 == 'create' || $1 == 'open' ]]; then
|
||||
if ! check_swap; then
|
||||
error "Swap activated. Disable it with swapoff, or use --ignore-swap"
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
usage() {
|
||||
cat <<EOF
|
||||
|
||||
@ -1624,6 +1636,7 @@ main() {
|
||||
subcommands_opts[source]=""
|
||||
subcommands_opts[status]=""
|
||||
subcommands_opts[resize]="s: -size=s k: -key=k"
|
||||
subcommands_opts[check]="-ignore-swap"
|
||||
# subcommands_opts[translate]=""
|
||||
|
||||
### Detect subcommand
|
||||
@ -1723,14 +1736,13 @@ main() {
|
||||
_warning "steghide not installed. Cannot bury your key"
|
||||
return 1
|
||||
fi
|
||||
encode_key ${CMD2} ${CMD3}
|
||||
;;
|
||||
encode_key $PARAM[1] $PARAM[2] ;;
|
||||
exhume)
|
||||
if [ "$STEGHIDE" = 0 ]; then
|
||||
_warning "steghide not installed. Cannot exhume your key"
|
||||
return 1
|
||||
fi
|
||||
decode_key ${CMD2}
|
||||
decode_key $PARAM[1]
|
||||
;;
|
||||
resize)
|
||||
check_priv
|
||||
@ -1740,8 +1752,9 @@ main() {
|
||||
'source') return 0 ;;
|
||||
install) check_priv ; install_tomb ;;
|
||||
askpass) ask_password ${CMD2} ${CMD3} ;;
|
||||
mktemp) safe_dir ${CMD2} ;;
|
||||
mktemp) safe_dir $PARAM[1] ;;
|
||||
translate) generate_translatable_strings ;;
|
||||
check) check_command $PARAM[1] ;;
|
||||
__default)
|
||||
cat <<EOF
|
||||
Tomb $VERSION - a strong and gentle undertaker for your secrets
|
||||
|
Loading…
Reference in New Issue
Block a user