@@ -14,20 +14,42 @@ set_tmux_option() {
14
14
}
15
15
16
16
get_remote_info () {
17
- local command=$1
18
- local pane_pid=$( tmux display-message -p " #{pane_pid}" )
19
-
20
17
# 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 //' )
22
19
# Fetch configuration with given cmd
23
20
ssh -G $cmd 2> /dev/null | grep -E -e ' ^host\s' -e ' ^port\s' -e ' ^user\s' | sort | cut -f 2 -d ' ' | xargs
24
21
}
25
22
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
+
26
44
get_info () {
45
+ local host port user
27
46
# If command is ssh, fetch connection info
28
47
if ssh_connected; then
29
48
read -r host port user <<< $( get_remote_info )
30
49
fi
50
+ if containered; then
51
+ read -r host port user <<< $( get_container_info )
52
+ fi
31
53
# Return requested info
32
54
case " $1 " in
33
55
" user" ) # user from ssh info or `whoami`
@@ -49,10 +71,20 @@ get_info() {
49
71
}
50
72
51
73
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)
56
75
57
76
[[ $cmd =~ " ssh " ]] || [[ $cmd =~ " sshpass " ]]
58
77
}
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