summaryrefslogtreecommitdiffstats
path: root/pattern-specifications.md
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2021-03-13 16:42:12 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-03-13 16:42:12 +0000
commit8cef151937e74a20049a5be2546d5f761a1ee5de (patch)
tree30de89024109eff10978e6b95ebd9b403a3e37b7 /pattern-specifications.md
parentInitial commit. (diff)
downloadfoxyproxy-firefox-extension-8cef151937e74a20049a5be2546d5f761a1ee5de.tar.xz
foxyproxy-firefox-extension-8cef151937e74a20049a5be2546d5f761a1ee5de.zip
Adding upstream version 7.5.1+dfsg.upstream/7.5.1+dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'pattern-specifications.md')
-rw-r--r--pattern-specifications.md84
1 files changed, 84 insertions, 0 deletions
diff --git a/pattern-specifications.md b/pattern-specifications.md
new file mode 100644
index 0000000..34ede37
--- /dev/null
+++ b/pattern-specifications.md
@@ -0,0 +1,84 @@
+# pseudo-code for proxy selection
+
+## Suppose we have 6 proxy definitions + Default:
+
+### Proxy foo1
+ a. http proxy on 123.123.123.123:8080
+ b. username/password auth
+ b. whitelist pattern "*.google.com"
+ c. blacklist pattern "foo.google.com"
+
+### Proxy foo2
+ a. socks proxy on 999.999.99.999:1080
+ b. username/password auth
+ c. whitelist pattern "*.facebook.com"
+
+### Proxy foo3
+ a. PAC at https://192.168.1.1/proxy.pac
+ b. no username/password auth
+ c. whitelist pattern "*.internalstuffs.zzz" (intranet address)
+
+### Proxy foo4
+ a. PAC at https://192.168.1.2/proxy.pac
+ b no username/password auth
+ c. whitelist pattern "*.internalstuffs.yyy" (intranet address)
+
+### Proxy foo5
+ a. System settings
+ b. no username/password auth (no applicable for system settings anyway)
+ c. whitelist pattern "*.bar.com"
+
+### Proxy foo6
+ a. WPAD (auto-detect, not supported by Firefox proxyAPI right now)
+ b. no username/password auth (no applicable for system settings anyway)
+ c. whitelist pattern "*.bar.com"
+
+### Default
+ a. Set to DIRECT (no proxy)
+ b. no username/password auth
+ c. no patterns -- not supported by FoxyProxy
+
+## User sets mode to "patterns"
+
+
+### Suppose URL about to be loaded by browser is https://www.google.com/
+
+http proxy on 123.123.123.123:8080 is used to load the URL
+
+```const proxySettings = {
+ proxyType: "manual",
+ http: "http://123.123.123.123:8080",
+ httpProxyAll: true,
+ autoLogin: true
+};
+proxy.settings.set(proxySettings)```
+
+### Suppose URL about to be loaded by browser is https://foo.google.com/
+
+This matches the blacklist pattern in proxy `foo1`. Blacklist patterns take precedence
+over whitelist patterns. So `foo1` is not used to load this URL. The other proxy patterns
+are checked. None match, so `Default` is used.
+
+```const proxySettings = {
+ proxyType: "none",
+ autoLogin: true,
+ httpProxyAll: true // I don't know if this is necessary but cannot hurt
+};
+proxy.settings.set(proxySettings)```
+
+### Suppose URL about to be loaded by browser is https://www.facebook.com/index.html
+
+socks proxy on 999.999.99.999:1080 is used to load the URL
+
+### Suppose URL about to be loaded by browser is https://internalstuffs.zzz/payroll/my-paycheck.pdf
+
+https://192.168.1.1/proxy.pac is used to load the URL. FoxyProxy doesn't know what this PAC
+is doing. Maybe it has its own URL pattern matching, maybe not. Does not matter.
+
+```const proxySettings = {
+ autoConfigUrl: pacUrl that user specified
+ autoLogin: true,
+ httpProxyAll: true // I don't know if this is necessary but cannot hurt
+};
+proxy.settings.set(proxySettings)```
+