-
Notifications
You must be signed in to change notification settings - Fork 107
/
shellrc.sh
83 lines (73 loc) · 2.68 KB
/
shellrc.sh
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/bin/bash
# plugin to set "generic shellrc" proxy settings for ProxyMan
# shellrc - ~/.bashrc, ~/.zshrc, /etc/environment
# privileges has to be set by the process which starts this script
# This is required for Elementary OS which contains ~/.bashrc without \n
_fix_new_line() {
if [[ $(tail -c 1 "$SHELLRC" | wc --lines) = 0 ]]; then
echo >> "$1"
fi
}
list_proxy() {
echo
echo "${bold}Shell proxy settings : $SHELLRC ${normal}"
lines="$(cat $SHELLRC | grep proxy -i | wc -l)"
if [ "$lines" -gt 0 ]; then
cat $SHELLRC | grep proxy -i
else
echo "${red}None${normal}"
fi
}
unset_proxy() {
if [ ! -e "$SHELLRC" ]; then
return
fi
# extra effort required to avoid removing custom environment variables set
# by the user for personal use
for proxytype in "http" "https" "ftp" "rsync" "no"; do
sed -i "/export ${proxytype}_proxy\=/d" "$SHELLRC"
done
for PROTOTYPE in "HTTP" "HTTPS" "FTP" "RSYNC" "NO"; do
sed -i "/export ${PROTOTYPE}_PROXY\=/d" "$SHELLRC"
done
}
set_proxy() {
unset_proxy
if [ ! -e "$SHELLRC" ]; then
touch "$SHELLRC"
fi
local stmt=""
if [ "$use_auth" = "y" ]; then
stmt="${username}:${password}@"
fi
# caution: do not use / after stmt
echo "export http_proxy=\"http://${stmt}${http_host}:${http_port}/\"" >> "$SHELLRC"
# $https_proxy at the end
echo "export ftp_proxy=\"ftp://${stmt}${ftp_host}:${ftp_port}/\"" >> "$SHELLRC"
echo "export rsync_proxy=\"rsync://${stmt}${rsync_host}:${rsync_port}/\"" >> "$SHELLRC"
echo "export no_proxy=\"${no_proxy}\"" >> "$SHELLRC"
echo "export HTTP_PROXY=\"http://${stmt}${http_host}:${http_port}/\"" >> "$SHELLRC"
# $HTTPS_PROXY at the end
echo "export FTP_PROXY=\"ftp://${stmt}${ftp_host}:${ftp_port}/\"" >> "$SHELLRC"
echo "export RSYNC_PROXY=\"rsync://${stmt}${rsync_host}:${rsync_port}/\"" >> "$SHELLRC"
echo "export NO_PROXY=\"${no_proxy}\"" >> "$SHELLRC"
if [ "$USE_HTTP_PROXY_FOR_HTTPS" = "true" ]; then
echo "export https_proxy=\"http://${stmt}${http_host}:${http_port}/\"" >> "$SHELLRC"
echo "export HTTPS_PROXY=\"http://${stmt}${http_host}:${http_port}/\"" >> "$SHELLRC"
else
echo "export https_proxy=\"https://${stmt}${https_host}:${https_port}/\"" >> "$SHELLRC"
echo "export HTTPS_PROXY=\"https://${stmt}${https_host}:${https_port}/\"" >> "$SHELLRC"
fi
}
export SHELLRC=$2
what_to_do=$1
case $what_to_do in
set) set_proxy
;;
unset) unset_proxy
;;
list) list_proxy
;;
*)
;;
esac