blob: b2e0111c3a79c2ce4d1d3d133680681f1995b83b (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
#!/bin/sh
set -e
BOOKMARDS=~/notes/bookmarks.md
run() {
echo "Run $1"
echo "$1" | grep -qE '^~?/' || true
echo $?
if echo "$1" | grep -qE '^\?'; then # We do search on duckduckgo
surf "https://duckduckgo.com/?q=${L#?}&t=surf&kk=-1&ia=web" &
elif echo "$1" | grep -qE '^~?/'; then # This is local path
surf "${1/#\~/$HOME}" &
elif echo "$1" | grep -qE '^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+'; then # This ipv4 address
surf "$1" &
else # We follow address
LPROTOCOL="$(echo "$1" | sed -n 's#^\([^:]*\)://.*#\1#p')"
LHOST="$(echo "$1" | sed -n 's#^[^:]*://##;s#^\([^/]\+\)/\?.*#\1#p')"
LPATH="$(echo "$1" | sed 's#^[^:]*://##;s#^[^/]\+/\?##')"
if ! getent hosts "$LHOST" >/dev/null; then
if getent hosts "$LHOST.cz" >/dev/null; then
LHOST="$LHOST.cz"
elif getent hosts "$LHOST.org" >/dev/null; then
LHOST="$LHOST.org"
elif getent hosts "$LHOST.com" >/dev/null; then
LHOST="$LHOST.com"
fi
# TODO what to do when we can't expand it?
fi
# Decide on protocol (if connection to 443 is not possible then use http otherwise https)
if [ -z "$LPROTOCOL" ]; then # We already have protocol (given explicitly)
if nc -z -w1 "$LHOST" 443 2>/dev/null; then
LPROTOCOL="https"
else
LPROTOCOL="http"
fi
fi
surf "$LPROTOCOL://$LHOST/$LPATH" &
fi
}
if [ -n "$1" ]; then
run "$1"
exit
else
# Note: Bookmarks starts with '* '
sed -n 's/\* //p' "$BOOKMARDS" | dmenu -p 'surf' | while read L; do
run "$L"
done
fi
|