blob: e5b8321903ae42a222464668b32ee8025505dc7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#!/bin/bash
set -euf
thisdir="$(dirname $0)"
pipename="${XDG_RUNTIME_DIR:-/tmp}/echoz-$$.pipe"
jid="$1"
password="$2"
username="$(echo "$jid" | cut -d'@' -f1)"
domain="$(echo "$jid" | cut -d'@' -f2)"
srv="$( ( dig +short SRV "_xmpp-client._tcp.$domain" || echo "0 0 5222 $domain" ) | sort -n)"
host="$(echo "$srv" | cut -d' ' -f4)"
port="$(echo "$srv" | cut -d' ' -f3)"
authstr="$(echo -ne "\0$username\0$password" | base64)"
rm -f "$pipename"
mkfifo "$pipename"
DEBUG_PATH=${DEBUG_PATH:-}
if [[ "x$DEBUG_PATH" != "x" ]]; then
debug_recv="${DEBUG_PATH}recv.xml"
debug_sent="${DEBUG_PATH}sent.xml"
rm -f "$debug_sent" "$debug_recv"
else
debug_recv=/dev/null
debug_sent=/dev/null
fi
stdbuf -i0 -o0 \
openssl s_client \
-starttls xmpp \
-xmpphost "$domain" \
-connect "$host:$port" \
-quiet \
< "$pipename" \
| (echo -ne "$jid $authstr\n"; \
stdbuf -o0 tr '>\n' '\n\001') \
| stdbuf -o0 tee "$debug_recv" \
| stdbuf -o0 "$thisdir/echoz.sed" \
| stdbuf -o0 tee "$debug_sent" \
| stdbuf -o0 tr -d '\n' \
| stdbuf -o0 tr '\001' '\n' \
> "$pipename"
|