forked from x/icebergs
184 lines
5.2 KiB
Bash
Executable File
184 lines
5.2 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "${ctx_dev}" = "" ] || [ "${ctx_dev}" = "-" ]; then
|
|
ctx_dev="http://localhost:9095"
|
|
fi
|
|
|
|
ctx_url=$ctx_dev"/code/zsh"
|
|
ctx_get=${ctx_get:="wget -q"}
|
|
ctx_curl=${ctx_curl:="curl"}
|
|
ctx_head=${ctx_head:="Content-Type: application/json"}
|
|
ctx_sid=${ctx_sid:=""}
|
|
|
|
ctx_silent=${ctx_silent:=""}
|
|
ctx_err=${ctx_err:="/dev/null"}
|
|
ctx_welcome=${ctx_welcome:="^_^ Welcome to Context world ^_^"}
|
|
ctx_goodbye=${ctx_goodbye:="^_^ Goodbye to Context world ^_^"}
|
|
|
|
ShyRight() {
|
|
[ "$1" = "" ] && return 1
|
|
[ "$1" = "0" ] && return 1
|
|
[ "$1" = "false" ] && return 1
|
|
[ "$1" = "true" ] && return 0
|
|
return 0
|
|
}
|
|
ShyEcho() {
|
|
ShyRight "$ctx_silent" || echo "$@"
|
|
}
|
|
ShyLog() {
|
|
echo "$@" > $ctx_err
|
|
}
|
|
|
|
ShyWord() {
|
|
echo "$*"|sed -e 's/\ /%20/g' -e 's/\n/\\n/g'
|
|
}
|
|
ShyForm() {
|
|
while [ $# -gt 1 ]; do
|
|
echo -n "`ShyWord "$1"`=`ShyWord "$2"`"
|
|
shift 2 && [ $# -gt 1 ] && echo -n "&"
|
|
done
|
|
}
|
|
ShyGet() {
|
|
local data=`ShyForm "$@" SHELL "${SHELL}" pwd "${PWD}" sid "${ctx_sid}"`
|
|
${ctx_get} "${ctx_url}?${data}"
|
|
}
|
|
ShyLine() {
|
|
echo "$*"|sed -e 's/\"/\\\"/g' -e 's/\n/\\n/g'
|
|
}
|
|
ShyJSON() {
|
|
[ $# -eq 1 ] && echo \"`ShyLine "$1"`\" && return
|
|
echo -n "{"
|
|
while [ $# -gt 1 ]; do
|
|
echo -n \"`ShyLine "$1"`\"\:\"`ShyLine "$2"`\"
|
|
shift 2 && [ $# -gt 1 ] && echo -n ","
|
|
done
|
|
echo -n "}"
|
|
}
|
|
ShyPost() {
|
|
if [ "$SHELL" = "/bin/zsh" ]; then
|
|
ShyJSON "$@" SHELL "${SHELL}" pwd "${PWD}" sid "${ctx_sid}"|read data
|
|
else
|
|
local data=`ShyJSON "$@" SHELL "${SHELL}" pwd "${PWD}" sid "${ctx_sid}"`
|
|
fi
|
|
${ctx_curl} -s "${ctx_url}" -H "${ctx_head}" -d "${data}"
|
|
}
|
|
ShyDownload() {
|
|
${ctx_curl} -s "${ctx_url}" -F "cmd=download" -F "arg=$1" -F "sid=$ctx_sid"
|
|
}
|
|
ShyUpload() {
|
|
${ctx_curl} -s "${ctx_url}" -F "cmd=upload" -F "upload=@$1" -F "sid=$ctx_sid"
|
|
}
|
|
ShyBench() {
|
|
${ctx_curl} -s "${ctx_dev}/publish/boot.sh" | sh -s installs context
|
|
}
|
|
ShySend() {
|
|
local TEMP=`mktemp /tmp/tmp.XXXXXX` && "$@" > $TEMP
|
|
ShyRight "$ctx_silent" || cat $TEMP
|
|
${ctx_curl} -s "${ctx_url}" -F "cmd=sync" -F "arg=$1" -F "args=$*" -F "sub=@$TEMP"\
|
|
-F "SHELL=${SHELL}" -F "pwd=${PWD}" -F "sid=${ctx_sid}"
|
|
}
|
|
ShySends() {
|
|
local cmd=$1 && shift
|
|
local arg=$2 && shift
|
|
local TEMP=`mktemp /tmp/tmp.XXXXXX` && echo "$@" > $TEMP
|
|
ShyRight "$ctx_silent" || cat $TEMP
|
|
${ctx_curl} -s "${ctx_url}" -F "cmd=$cmd" -F "arg=$arg" -F "sub=@$TEMP" \
|
|
-F "SHELL=${SHELL}" -F "pwd=${PWD}" -F "sid=${ctx_sid}"
|
|
}
|
|
ShyRun() {
|
|
ctx_silent=false ShySend "$@"
|
|
}
|
|
Shy() {
|
|
local ctx_res=`ShyPost cmd "$1" arg "$2"`
|
|
case "$ctx_res" in
|
|
"PS1");;
|
|
*) [ -n "${ctx_res}" ] && ShyPost cmd "$1" arg "$2" res `sh -c ${ctx_res}`
|
|
esac
|
|
}
|
|
|
|
ShyLogout() {
|
|
echo ${ctx_goodbye} && [ "$ctx_sid" != "" ] && Shy logout
|
|
}
|
|
ShyLogin() {
|
|
HOST=`hostname` ctx_sid=`ShyPost cmd login share "${ctx_share}" pid "$$" pane "${TMUX_PANE}" hostname "${HOST}" username "${USER}"`
|
|
[ "$ctx_begin" = "" ] && ctx_begin=`history|tail -n1|awk '{print $1}'` && echo "begin: ${ctx_begin}"
|
|
echo "sid: ${ctx_sid}"
|
|
}
|
|
ShyFavor() {
|
|
[ "$READLINE_LINE" != "" ] && set $READLINE_LINE && READLINE_LINE=""
|
|
[ "$1" != "" ] && ctx_tab=$1 && shift; [ "$1" != "" ] && ctx_note=$1 && shift
|
|
[ "$1" != "" ] && ctx_word=$1 || ctx_word=`history|tail -n1|head -n1`
|
|
ShyPost cmd favor arg "${ctx_word}" tab "${ctx_tab}" note "${ctx_note}"
|
|
}
|
|
ShyFavors() {
|
|
[ "$READLINE_LINE" != "" ] && set $READLINE_LINE && READLINE_LINE=""
|
|
ShyPost cmd favor tab "$1" limit "$2"
|
|
}
|
|
ShySync() {
|
|
[ "$ctx_sid" = "" ] && ShyLogin
|
|
|
|
case "$1" in
|
|
"history")
|
|
ctx_end=`history|tail -n1|awk '{print $1}'`
|
|
ctx_begin=${ctx_begin:=$ctx_end}
|
|
ctx_count=`expr $ctx_end - $ctx_begin`
|
|
ShyEcho "sync $ctx_begin-$ctx_end count $ctx_count to $ctx_dev"
|
|
history|tail -n $ctx_count |while read line; do
|
|
ShySends history sub "$line"
|
|
done
|
|
ctx_begin=$ctx_end
|
|
;;
|
|
ps) ShySend ps -ef ;;
|
|
*) ShySend "$@"
|
|
esac
|
|
}
|
|
ShySyncs() {
|
|
case "$1" in
|
|
"base")
|
|
ShySync df &>/dev/null
|
|
ShySync ps &>/dev/null
|
|
ShySync env &>/dev/null
|
|
ShySync free &>/dev/null
|
|
ShySync history
|
|
;;
|
|
*)
|
|
esac
|
|
}
|
|
ShyHelp() {
|
|
ShyPost cmd help arg "$@"
|
|
}
|
|
ShyInit() {
|
|
[ "$ctx_begin" = "" ] && ctx_begin=`history|tail -n1|awk '{print $1}'`
|
|
|
|
case "${SHELL##*/}" in
|
|
"zsh")
|
|
PROMPT='%![%*]%c$ '
|
|
;;
|
|
*)
|
|
PS1="\!-$$-\t[\u@\h]\W\$ "
|
|
PS1="\e[32m\!\e[0m-$$-\e[31m$SPY_OWNER\e[0m@\e[33m$SPY_ROLE\e[0m[\e[32m\t\e[0m]\W\$ "
|
|
PS1="\!-$$-\t[\u@\h]\W\$ "
|
|
PS1="\!-$$-\u@\h[\t]\W\$ "
|
|
;;
|
|
esac
|
|
|
|
if bind &>/dev/null; then
|
|
bind -x '"\C-G\C-R":ShySyncs base'
|
|
bind -x '"\C-G\C-F":ShyFavor'
|
|
bind -x '"\C-Gf":ShyFavor'
|
|
bind -x '"\C-GF":ShyFavors'
|
|
elif bindkey &>/dev/null; then
|
|
bindkey -s '\C-G\C-R' 'ShySyncs base\n'
|
|
setopt nosharehistory
|
|
fi
|
|
|
|
echo "url: ${ctx_url}"
|
|
echo "pid: $$"
|
|
echo "begin: ${ctx_begin}"
|
|
echo "share: ${ctx_share}"
|
|
echo "pane: $TMUX_PANE"
|
|
}
|
|
|
|
ShyInit && trap ShyLogout EXIT
|
|
|