summaryrefslogtreecommitdiffstats
path: root/zsh/oh-my-zsh/plugins/shell-proxy
diff options
context:
space:
mode:
Diffstat (limited to 'zsh/oh-my-zsh/plugins/shell-proxy')
-rw-r--r--zsh/oh-my-zsh/plugins/shell-proxy/.editorconfig3
-rw-r--r--zsh/oh-my-zsh/plugins/shell-proxy/README.md62
-rwxr-xr-xzsh/oh-my-zsh/plugins/shell-proxy/proxy.py78
-rw-r--r--zsh/oh-my-zsh/plugins/shell-proxy/shell-proxy.plugin.zsh37
-rwxr-xr-xzsh/oh-my-zsh/plugins/shell-proxy/ssh-agent.py16
-rwxr-xr-xzsh/oh-my-zsh/plugins/shell-proxy/ssh-proxy.py36
6 files changed, 0 insertions, 232 deletions
diff --git a/zsh/oh-my-zsh/plugins/shell-proxy/.editorconfig b/zsh/oh-my-zsh/plugins/shell-proxy/.editorconfig
deleted file mode 100644
index b7c70d1..0000000
--- a/zsh/oh-my-zsh/plugins/shell-proxy/.editorconfig
+++ /dev/null
@@ -1,3 +0,0 @@
-[*.py]
-indent_size = 4
-indent_style = space
diff --git a/zsh/oh-my-zsh/plugins/shell-proxy/README.md b/zsh/oh-my-zsh/plugins/shell-proxy/README.md
deleted file mode 100644
index b19888c..0000000
--- a/zsh/oh-my-zsh/plugins/shell-proxy/README.md
+++ /dev/null
@@ -1,62 +0,0 @@
-# shell-proxy plugin
-
-This a pure user-space program, shell-proxy setter, written in Python3 and Zsh.
-
-To use it, add `shell-proxy` to the plugins array in your zshrc file:
-
-```zsh
-plugins=(... shell-proxy)
-```
-
-## Key features
-
-- Supports macOS and Linux (Ubuntu, Archlinux, etc.)
-- Supports git via setting `$GIT_SSH`
-- Supports ssh, sftp, scp, slogin and ssh-copy-id via setting aliases
-- Built-in autocomplete
-
-## Usage
-
-### Method 1
-
-Set `SHELLPROXY_URL` environment variable to the URL of the proxy server:
-
-```sh
-SHELLPROXY_URL="http://127.0.0.1:8123"
-proxy enable
-```
-
-### Method 2
-
-Write a program file in `$HOME/.config/proxy` so that the proxy URL is defined dynamically.
-Note that the program file must be executable.
-
-Example:
-
-```sh
-#!/bin/bash
-
-if [[ "$(uname)" = Darwin ]]; then
- echo "http://127.0.0.1:6152" # Surge Mac
-else
- echo "http://127.0.0.1:8123" # polipo
-fi
-```
-
-### Method 3
-
-Use [method 2](#method-2) but define the location of the program file by setting the
-`SHELLPROXY_CONFIG` environment variable:
-
-```sh
-SHELLPROXY_CONFIG="$HOME/.dotfiles/proxy-config"
-```
-
-## Reference
-
-- `$GIT_SSH`: <https://www.git-scm.com/docs/git#Documentation/git.txt-codeGITSSHcode>
-- OpenSSH manual: <https://man.openbsd.org/ssh>
-
-## Maintainer
-
-- [@septs](https://github.com/septs)
diff --git a/zsh/oh-my-zsh/plugins/shell-proxy/proxy.py b/zsh/oh-my-zsh/plugins/shell-proxy/proxy.py
deleted file mode 100755
index 14f2944..0000000
--- a/zsh/oh-my-zsh/plugins/shell-proxy/proxy.py
+++ /dev/null
@@ -1,78 +0,0 @@
-#!/usr/bin/env python3
-import os
-import sys
-from subprocess import check_output, list2cmdline
-
-cwd = os.path.dirname(__file__)
-ssh_agent = os.path.join(cwd, "ssh-agent.py")
-proxy_env = "SHELLPROXY_URL"
-proxy_config = os.environ.get("SHELLPROXY_CONFIG") or os.path.expandvars("$HOME/.config/proxy")
-
-usage="""shell-proxy: no proxy configuration found.
-
-Set `{env}` or create a config file at `{config}`
-See the plugin README for more information.""".format(env=proxy_env, config=proxy_config)
-
-def get_http_proxy():
- default_proxy = os.environ.get(proxy_env)
- if default_proxy:
- return default_proxy
- if os.path.isfile(proxy_config):
- return check_output(proxy_config).decode("utf-8").strip()
- print(usage, file=sys.stderr)
- sys.exit(1)
-
-
-def make_proxies(url: str):
- proxies = {"%s_PROXY" % _: url for _ in ("HTTP", "HTTPS", "FTP", "RSYNC", "ALL")}
- proxies.update({name.lower(): value for (name, value) in proxies.items()})
- proxies["GIT_SSH"] = ssh_agent
- return proxies
-
-
-def merge(mapping: dict):
- return ("%s=%s" % _ for _ in mapping.items())
-
-
-class CommandSet:
- proxies = make_proxies(get_http_proxy())
- aliases = {
- _: "env __SSH_PROGRAM_NAME__=%s %s" % (_, ssh_agent)
- for _ in ("ssh", "sftp", "scp", "slogin", "ssh-copy-id")
- }
-
- def enable(self):
- cmdline("export", *merge(self.proxies))
- cmdline("alias", *merge(self.aliases))
-
- def disable(self):
- cmdline("unset", *self.proxies.keys())
- cmdline("unalias", *self.aliases.keys())
-
- def status(self):
- proxies = (
- "%11s = %s" % (name, os.environ[name])
- for name in self.proxies.keys()
- if name in os.environ
- )
- for _ in proxies:
- cmdline("echo", _)
-
- def usage(self):
- print("usage: proxy {enable,disable,status}", file=sys.stderr)
-
-
-def cmdline(*items):
- print(list2cmdline(items))
-
-
-def main():
- command = CommandSet()
- if len(sys.argv) == 1:
- command.usage()
- sys.exit(1)
- getattr(command, sys.argv[1], command.usage)()
-
-
-if __name__ == "__main__":
- main()
diff --git a/zsh/oh-my-zsh/plugins/shell-proxy/shell-proxy.plugin.zsh b/zsh/oh-my-zsh/plugins/shell-proxy/shell-proxy.plugin.zsh
deleted file mode 100644
index 9d45b52..0000000
--- a/zsh/oh-my-zsh/plugins/shell-proxy/shell-proxy.plugin.zsh
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/usr/bin/bash
-# shellcheck disable=SC1090,SC2154
-
-proxy() {
- # deprecate $DEFAULT_PROXY, use SHELLPROXY_URL instead
- if [[ -n "$DEFAULT_PROXY" && -z "$SHELLPROXY_URL" ]]; then
- echo >&2 "proxy: DEFAULT_PROXY is deprecated, use SHELLPROXY_URL instead"
- SHELLPROXY_URL="$DEFAULT_PROXY"
- unset DEFAULT_PROXY
- fi
-
- # deprecate CONFIG_PROXY, use SHELLPROXY_CONFIG instead
- if [[ -n "$CONFIG_PROXY" && -z "$SHELLPROXY_CONFIG" ]]; then
- echo >&2 "proxy: CONFIG_PROXY is deprecated, use SHELLPROXY_CONFIG instead"
- SHELLPROXY_CONFIG="$CONFIG_PROXY"
- unset CONFIG_PROXY
- fi
-
- # the proxy.py script is in the same directory as this function
- local proxy="${functions_source[$0]:A:h}/proxy.py"
-
- # capture the output of the proxy script and bail out if it fails
- local output
- output="$(SHELLPROXY_URL="$SHELLPROXY_URL" SHELLPROXY_CONFIG="$SHELLPROXY_CONFIG" "$proxy" "$1")" ||
- return $?
-
- # evaluate the output generated by the proxy script
- source <(echo "$output")
-}
-
-_proxy() {
- local -r commands=('enable' 'disable' 'status')
- compset -P '*,'
- compadd -S '' "${commands[@]}"
-}
-
-compdef _proxy proxy
diff --git a/zsh/oh-my-zsh/plugins/shell-proxy/ssh-agent.py b/zsh/oh-my-zsh/plugins/shell-proxy/ssh-agent.py
deleted file mode 100755
index 4ee24b7..0000000
--- a/zsh/oh-my-zsh/plugins/shell-proxy/ssh-agent.py
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env python3
-import os
-import subprocess
-import sys
-
-ssh_proxy = os.path.join(os.path.dirname(__file__), "ssh-proxy.py")
-
-argv = [
- os.environ.get("__SSH_PROGRAM_NAME__", "ssh"),
- "-o",
- "ProxyCommand={} %h %p".format(ssh_proxy),
- "-o",
- "Compression=yes",
-]
-
-subprocess.call(argv + sys.argv[1:], env=os.environ)
diff --git a/zsh/oh-my-zsh/plugins/shell-proxy/ssh-proxy.py b/zsh/oh-my-zsh/plugins/shell-proxy/ssh-proxy.py
deleted file mode 100755
index a498c84..0000000
--- a/zsh/oh-my-zsh/plugins/shell-proxy/ssh-proxy.py
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/usr/bin/env python3
-import os
-import subprocess
-import sys
-from urllib.parse import urlparse
-
-proxy = next(os.environ[_] for _ in ("HTTP_PROXY", "HTTPS_PROXY") if _ in os.environ)
-
-parsed = urlparse(proxy)
-
-proxy_protocols = {
- "http": "connect",
- "https": "connect",
- "socks": "5",
- "socks5": "5",
- "socks4": "4",
- "socks4a": "4",
-}
-
-if parsed.scheme not in proxy_protocols:
- raise TypeError('unsupported proxy protocol: "{}"'.format(parsed.scheme))
-
-def make_argv():
- yield "nc"
- if sys.platform == 'linux':
- # caveats: macOS built-in netcat command not supported proxy-type
- yield "-X" # --proxy-type
- # Supported protocols are 4 (SOCKS v4), 5 (SOCKS v5) and connect (HTTP proxy).
- # Default SOCKS v5 is used.
- yield proxy_protocols[parsed.scheme]
- yield "-x" # --proxy
- yield parsed.netloc # proxy-host:proxy-port
- yield sys.argv[1] # host
- yield sys.argv[2] # port
-
-subprocess.call(make_argv())