summaryrefslogtreecommitdiffstats
path: root/app/post.go
diff options
context:
space:
mode:
authorJosta Yee <jostyee@users.noreply.github.com>2017-03-20 21:20:42 +0800
committerenahum <nahumhbl@gmail.com>2017-03-20 10:20:42 -0300
commite86add77ad311a7b7112e67731770695d5d4a72d (patch)
tree6591c3d8f136171dffcaf80a35bc82ef593a0b87 /app/post.go
parent76f8420a52f44f62fa7fe1a777ad1de66e72c034 (diff)
downloadchat-e86add77ad311a7b7112e67731770695d5d4a72d.tar.gz
chat-e86add77ad311a7b7112e67731770695d5d4a72d.tar.bz2
chat-e86add77ad311a7b7112e67731770695d5d4a72d.zip
Add http_proxy support for http client (#5571)
- if 'http_proxy' environment variable is set, respect it when creating http client - otherwise initialize a http client with timeout settings Add ogjson to cache even when it fails in this way we can prevent from requesting unparsable urls repeatedly Extend expire time of cached link preview data to a week There's no need to invalidate cache and send request again frequently Revert timeout Revert cache_expire_time
Diffstat (limited to 'app/post.go')
-rw-r--r--app/post.go36
1 files changed, 31 insertions, 5 deletions
diff --git a/app/post.go b/app/post.go
index c4d128399..f969b6c6b 100644
--- a/app/post.go
+++ b/app/post.go
@@ -4,7 +4,10 @@
package app
import (
+ "net"
"net/http"
+ "net/url"
+ "os"
"regexp"
"time"
@@ -17,13 +20,35 @@ import (
)
var (
- c = &http.Client{
- Timeout: 5 * time.Second,
- }
+ httpClient *http.Client
+ httpTimeout = time.Duration(5 * time.Second)
linkWithTextRegex = regexp.MustCompile(`<([^<\|]+)\|([^>]+)>`)
)
+func dialTimeout(network, addr string) (net.Conn, error) {
+ return net.DialTimeout(network, addr, httpTimeout)
+}
+
+func init() {
+ p, ok := os.LookupEnv("HTTP_PROXY")
+ if ok {
+ if u, err := url.Parse(p); err == nil {
+ httpClient = &http.Client{
+ Transport: &http.Transport{
+ Proxy: http.ProxyURL(u),
+ Dial: dialTimeout,
+ },
+ }
+ return
+ }
+ }
+
+ httpClient = &http.Client{
+ Timeout: httpTimeout,
+ }
+}
+
func CreatePostAsUser(post *model.Post, siteURL string) (*model.Post, *model.AppError) {
// Check that channel has not been deleted
var channel *model.Channel
@@ -484,14 +509,15 @@ func GetFileInfosForPost(postId string, readFromMaster bool) ([]*model.FileInfo,
func GetOpenGraphMetadata(url string) *opengraph.OpenGraph {
og := opengraph.NewOpenGraph()
- res, err := c.Get(url)
+ res, err := httpClient.Get(url)
if err != nil {
+ l4g.Error(err.Error())
return og
}
defer CloseBody(res)
if err := og.ProcessHTML(res.Body); err != nil {
- return og
+ l4g.Error(err.Error())
}
return og