summaryrefslogtreecommitdiffstats
path: root/app/post.go
diff options
context:
space:
mode:
authorChristopher Brown <ccbrown112@gmail.com>2018-02-12 13:05:01 -0600
committerChristopher Brown <ccbrown112@gmail.com>2018-02-12 13:05:01 -0600
commit141cfd2f9b5715e5eb8d09d9bc5073700a1360fa (patch)
tree5844a5a0929085a0e6484d8db8c4e83219760cf3 /app/post.go
parent1ae680aefae2deb1e9d07d7c2a1c863ec807a79f (diff)
downloadchat-141cfd2f9b5715e5eb8d09d9bc5073700a1360fa.tar.gz
chat-141cfd2f9b5715e5eb8d09d9bc5073700a1360fa.tar.bz2
chat-141cfd2f9b5715e5eb8d09d9bc5073700a1360fa.zip
remove willnorris/imageproxy support
Diffstat (limited to 'app/post.go')
-rw-r--r--app/post.go20
1 files changed, 0 insertions, 20 deletions
diff --git a/app/post.go b/app/post.go
index be9374e10..30a627d3d 100644
--- a/app/post.go
+++ b/app/post.go
@@ -6,8 +6,6 @@ package app
import (
"crypto/hmac"
"crypto/sha1"
- "crypto/sha256"
- "encoding/base64"
"encoding/hex"
"encoding/json"
"fmt"
@@ -904,18 +902,6 @@ func (a *App) ImageProxyAdder() func(string) string {
mac.Write([]byte(url))
digest := hex.EncodeToString(mac.Sum(nil))
return proxyURL + digest + "/" + hex.EncodeToString([]byte(url))
- case "willnorris/imageproxy":
- options := strings.Split(options, "|")
- if len(options) > 1 {
- mac := hmac.New(sha256.New, []byte(options[1]))
- mac.Write([]byte(url))
- digest := base64.URLEncoding.EncodeToString(mac.Sum(nil))
- if options[0] == "" {
- return proxyURL + "s" + digest + "/" + url
- }
- return proxyURL + options[0] + ",s" + digest + "/" + url
- }
- return proxyURL + options[0] + "/" + url
}
return url
@@ -938,12 +924,6 @@ func (a *App) ImageProxyRemover() (f func(string) string) {
}
}
}
- case "willnorris/imageproxy":
- if strings.HasPrefix(url, proxyURL) {
- if slash := strings.IndexByte(url[len(proxyURL):], '/'); slash >= 0 {
- return url[len(proxyURL)+slash+1:]
- }
- }
}
return url