Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
O
oh-my-fish
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
oh-my-fish
Commits
75396dba
Commit
75396dba
authored
May 31, 2015
by
Justin Hileman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[split] Move proxy plugin to oh-my-fish/plugin-proxy
https://github.com/oh-my-fish/plugin-proxy
parent
0eac6bb0
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
102 deletions
+0
-102
plugins/proxy/README.md
plugins/proxy/README.md
+0
-54
plugins/proxy/_proxy_set.fish
plugins/proxy/_proxy_set.fish
+0
-15
plugins/proxy/noproxy.fish
plugins/proxy/noproxy.fish
+0
-3
plugins/proxy/proxy.fish
plugins/proxy/proxy.fish
+0
-25
plugins/proxy/proxy.load
plugins/proxy/proxy.load
+0
-5
No files found.
plugins/proxy/README.md
deleted
100644 → 0
View file @
0eac6bb0
proxy plugin
============
The proxy plugin provides a couple helper functions to those of us who are
stuck behind HTTP/HTTPS/FTP proxies that require authentication. The variables
it exports are used by many command-line and GUI applications on Linux, as well
as
[
MacPorts
][
1
]
and
[
Homebrew
][
2
]
on OS X.
Both uppercase and lowercase versions of the proxy environment variables are
set, some applications are case sensitive. If you'd like to learn more about
the use of these variables, this
[
Arch Wiki Article
][
3
]
is a good place to
start.
## Usage
In all cases you will need to add 'proxy' to your fish_plugins list in
config.fish
### No authentication
If you just want to have the proxy plugin configure all the environment
variables, you may set proxy_host:
set proxy_host myproxy.example.com:8000
The proxy plugin will prepend
`http://`
for you. Here's the result:
~> set -x |grep proxy
ALL_PROXY http://myproxy.example.com:8000
FTP_PROXY http://myproxy.example.com:8000
HTTPS_PROXY http://myproxy.example.com:8000
HTTP_PROXY http://myproxy.example.com:8000
all_proxy http://myproxy.example.com:8000
ftp_proxy http://myproxy.example.com:8000
http_proxy http://myproxy.example.com:8000
https_proxy http://myproxy.example.com:8000
### With authentication
Set your proxy host and username:
set proxy_host myproxy.example.com:8000
set proxy_user mylogin
When you need to make use of the proxy, just run
`proxy`
. It will prompt you
for a password and setup your environment.
If you didn't setup a proxy_user variable, you will be prompted for a username.
If you wish to clear your proxy variables, run
`noproxy`
.
[
1
]:
http://www.macports.org/
[
2
]:
http://brew.sh/
[
3
]:
https://wiki.archlinux.org/index.php/proxy_settings
plugins/proxy/_proxy_set.fish
deleted
100644 → 0
View file @
0eac6bb0
function _proxy_set -a proxy \
-d "Set all proxy vars to specified value"
set -l envars http_proxy HTTP_PROXY \
https_proxy HTTPS_PROXY \
ftp_proxy FTP_PROXY \
all_proxy ALL_PROXY
for envar in $envars
if test $proxy = '-e'
set -e $envar
else
set -gx $envar $proxy
end
end
end
plugins/proxy/noproxy.fish
deleted
100644 → 0
View file @
0eac6bb0
function noproxy -d "Clear all proxy environment variables"
_proxy_set -e
end
plugins/proxy/proxy.fish
deleted
100644 → 0
View file @
0eac6bb0
function proxy -d "Setup proxy environment variables"
if not set -q proxy_host
echo "Error: You must set proxy_host to your proxy hostname:port in config.fish"
echo "You may also set proxy_user to your username"
return
end
# Get user & password
set -l user $proxy_user
if not set -q proxy_user
read -p "echo -n 'Proxy User: '" user
end
# Hacky way to read password in fish
echo -n 'Proxy Password: '
stty -echo
head -n 1 | read -l pass
stty echo
echo
# URL encode password
set -l chars (echo $pass | sed -E -e 's/./\n\\0/g;/^$/d;s/\n//')
printf '%%%02x' "'"$chars"'" | read -l encpass
_proxy_set "http://$user:$encpass@$proxy_host"
end
plugins/proxy/proxy.load
deleted
100644 → 0
View file @
0eac6bb0
# Initial proxy setup (no username/password)
if set -q proxy_host
_proxy_set "http://$proxy_host"
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment