Skip to content

Commit b52e84b

Browse files
committed
Add displaying attached container host and user
1 parent 4bd013e commit b52e84b

File tree

1 file changed

+40
-8
lines changed

1 file changed

+40
-8
lines changed

scripts/shared.sh

+40-8
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,42 @@ set_tmux_option() {
1414
}
1515

1616
get_remote_info() {
17-
local command=$1
18-
local pane_pid=$(tmux display-message -p "#{pane_pid}")
19-
2017
# First get the current pane command pid to get the full command with arguments
21-
local cmd=$({ pgrep -flaP $pane_pid ; ps -o command -p $pane_pid ; } | xargs -I{} echo {} | grep ssh | sed -E 's/^[0-9]*[[:blank:]]*ssh //')
18+
local cmd=$(_current_pane_command | grep -E 'ssh' | sed -E 's/^[0-9]*[[:blank:]]*ssh //')
2219
# Fetch configuration with given cmd
2320
ssh -G $cmd 2>/dev/null | grep -E -e '^host\s' -e '^port\s' -e '^user\s' | sort | cut -f 2 -d ' ' | xargs
2421
}
2522

23+
get_container_info() {
24+
local cmd=$(_current_pane_command | grep -E 'docker|podman' | sed -E 's/^[0-9]*[[:blank:]]* //')
25+
26+
local runner=${cmd%% *}
27+
# @TODO get dynamic named container
28+
if [[ $cmd =~ ' --name' ]]; then
29+
local container=$(echo ${cmd##* --name} | cut -f 1 -d ' ')
30+
container=${container##*=}
31+
else
32+
local all_running_containers=$(docker ps -q | xargs docker inspect)
33+
return
34+
fi
35+
36+
local info=$($runner inspect --format '{{ .Config.Hostname }}/{{ .Config.Domainname }}/{{ .Config.User }}' $container)
37+
local host=$(echo $info | cut -f 1 -d '/')
38+
local domain=$(echo $info | cut -f 2 -d '/')
39+
local user=$(echo $info | cut -f 3 -d '/')
40+
# @TODO `port` is not applicable with container for now
41+
echo "${host}${domain:+.$domain} 0 ${user}"
42+
}
43+
2644
get_info() {
45+
local host port user
2746
# If command is ssh, fetch connection info
2847
if ssh_connected; then
2948
read -r host port user <<<$(get_remote_info)
3049
fi
50+
if containered; then
51+
read -r host port user <<<$(get_container_info)
52+
fi
3153
# Return requested info
3254
case "$1" in
3355
"user") # user from ssh info or `whoami`
@@ -49,10 +71,20 @@ get_info() {
4971
}
5072

5173
ssh_connected() {
52-
local pane_pid=$(tmux display-message -p "#{pane_pid}")
53-
54-
# Get current pane command
55-
local cmd=$(pgrep -flaP $pane_pid)
74+
local cmd=$(_current_pane_command)
5675

5776
[[ $cmd =~ " ssh " ]] || [[ $cmd =~ " sshpass " ]]
5877
}
78+
79+
containered() {
80+
local cmd=$(_current_pane_command)
81+
82+
[[ $cmd =~ " docker " ]] || [[ $cmd =~ " podman " ]]
83+
}
84+
85+
_current_pane_command() {
86+
local pane_pid=$(tmux display-message -p "#{pane_pid}")
87+
88+
# @TODO research, maybe `pgrep -flaP $pane_pid` is enough
89+
{ pgrep -flaP $pane_pid; ps -o command -p $pane_pid; } | xargs -I{} echo {}
90+
}

0 commit comments

Comments
 (0)