forked from dailydotdev/daily-monetization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.go
100 lines (88 loc) · 2.2 KB
/
utils.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
package main
import (
"encoding/json"
"errors"
"github.com/afex/hystrix-go/hystrix"
log "github.com/sirupsen/logrus"
"io/ioutil"
"net/http"
"os"
"path"
"regexp"
"strconv"
"strings"
"unicode"
"unicode/utf8"
)
var httpClient *http.Client
func getEnv(key, fallback string) string {
if value, ok := os.LookupEnv(key); ok {
return value
}
return fallback
}
func getJson(req *http.Request, target interface{}) error {
r, err := httpClient.Do(req)
if err != nil {
return err
}
if r.StatusCode == http.StatusOK {
defer r.Body.Close()
return json.NewDecoder(r.Body).Decode(target)
} else {
bodyBytes, err := ioutil.ReadAll(r.Body)
if err != nil {
log.Warn("failed to parse error", err)
}
bodyString := string(bodyBytes)
return errors.New(strconv.Itoa(r.StatusCode) + ": " + bodyString)
}
}
func getJsonHystrix(breakerName string, req *http.Request, target interface{}, ignoreNotFound bool) error {
return hystrix.Do(breakerName,
func() error {
err := getJson(req, target)
if ignoreNotFound && err != nil && err.Error() == "404" {
return nil
}
return err
}, nil)
}
// Regexp definitions
var keyMatchRegex = regexp.MustCompile(`\"(\w+)\":`)
func marshalJSON(v interface{}) ([]byte, error) {
marshalled, err := json.Marshal(v)
converted := keyMatchRegex.ReplaceAllFunc(
marshalled,
func(match []byte) []byte {
// Empty keys are valid JSON, only lowercase if we do not have an
// empty key.
if len(match) > 2 {
// Decode first rune after the double quotes
r, width := utf8.DecodeRune(match[1:])
r = unicode.ToLower(r)
utf8.EncodeRune(match[1:width+1], r)
}
return match
},
)
return converted, err
}
// ShiftPath splits off the first component of p, which will be cleaned of
// relative components before processing. head will never contain a slash and
// tail will always be a rooted path without trailing slash.
func shiftPath(p string) (head, tail string) {
p = path.Clean("/" + p)
i := strings.Index(p[1:], "/") + 1
if i <= 0 {
return p[1:], "/"
}
return p[1:i], p[i:]
}
func getIpAddress(r *http.Request) string {
ip := r.Header.Get("x-forwarded-for")
if len(ip) == 0 {
return r.RemoteAddr
}
return strings.Split(ip, ",")[0]
}