2016-04-03 17:59:27 +00:00
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
2016-04-12 19:23:02 +00:00
|
|
|
"encoding/json"
|
2017-02-02 12:40:28 +00:00
|
|
|
"fmt"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
2016-04-03 17:59:27 +00:00
|
|
|
|
2016-10-02 17:47:31 +00:00
|
|
|
"github.com/DataDog/datadog-go/statsd"
|
2017-02-02 12:40:28 +00:00
|
|
|
"github.com/getsentry/raven-go"
|
2016-08-15 11:37:03 +00:00
|
|
|
"github.com/jmoiron/sqlx"
|
2017-02-02 12:40:28 +00:00
|
|
|
"github.com/valyala/fasthttp"
|
2016-11-19 18:53:55 +00:00
|
|
|
"gopkg.in/redis.v5"
|
2016-04-03 17:59:27 +00:00
|
|
|
)
|
|
|
|
|
2017-02-02 12:40:28 +00:00
|
|
|
// RavenClient is the raven client to which report errors happening.
|
|
|
|
// If nil, errors will just be fmt.Println'd
|
|
|
|
var RavenClient *raven.Client
|
|
|
|
|
2016-04-03 17:59:27 +00:00
|
|
|
// MethodData is a struct containing the data passed over to an API method.
|
|
|
|
type MethodData struct {
|
2017-02-02 12:40:28 +00:00
|
|
|
User Token
|
|
|
|
DB *sqlx.DB
|
|
|
|
Doggo *statsd.Client
|
|
|
|
R *redis.Client
|
|
|
|
Ctx *fasthttp.RequestCtx
|
|
|
|
}
|
|
|
|
|
|
|
|
// ClientIP implements a best effort algorithm to return the real client IP, it parses
|
|
|
|
// X-Real-IP and X-Forwarded-For in order to work properly with reverse-proxies such us: nginx or haproxy.
|
|
|
|
func (md MethodData) ClientIP() string {
|
|
|
|
clientIP := strings.TrimSpace(string(md.Ctx.Request.Header.Peek("X-Real-Ip")))
|
|
|
|
if len(clientIP) > 0 {
|
|
|
|
return clientIP
|
|
|
|
}
|
|
|
|
clientIP = string(md.Ctx.Request.Header.Peek("X-Forwarded-For"))
|
|
|
|
if index := strings.IndexByte(clientIP, ','); index >= 0 {
|
|
|
|
clientIP = clientIP[0:index]
|
|
|
|
}
|
|
|
|
clientIP = strings.TrimSpace(clientIP)
|
|
|
|
if len(clientIP) > 0 {
|
|
|
|
return clientIP
|
|
|
|
}
|
|
|
|
return md.Ctx.RemoteIP().String()
|
2016-04-03 17:59:27 +00:00
|
|
|
}
|
2016-04-08 17:05:54 +00:00
|
|
|
|
2017-02-02 12:40:28 +00:00
|
|
|
// Err logs an error. If RavenClient is set, it will use the client to report
|
|
|
|
// the error to sentry, otherwise it will just write the error to stdout.
|
2016-04-08 17:05:54 +00:00
|
|
|
func (md MethodData) Err(err error) {
|
2017-02-02 12:40:28 +00:00
|
|
|
if RavenClient == nil {
|
|
|
|
fmt.Println("ERROR!!!!")
|
|
|
|
fmt.Println(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create stacktrace
|
|
|
|
st := raven.NewStacktrace(0, 3, []string{"zxq.co/ripple", "git.zxq.co/ripple"})
|
|
|
|
|
|
|
|
// Generate tags for error
|
|
|
|
tags := map[string]string{
|
|
|
|
"endpoint": b2s(md.Ctx.RequestURI()),
|
|
|
|
"token": md.User.Value,
|
|
|
|
}
|
|
|
|
|
|
|
|
RavenClient.CaptureError(
|
|
|
|
err,
|
|
|
|
tags,
|
|
|
|
st,
|
|
|
|
generateRavenHTTP(md.Ctx),
|
|
|
|
&raven.User{
|
|
|
|
ID: strconv.Itoa(md.User.UserID),
|
|
|
|
Username: md.User.Value,
|
|
|
|
IP: md.Ctx.RemoteAddr().String(),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Err for peppy API calls
|
|
|
|
func Err(c *fasthttp.RequestCtx, err error) {
|
|
|
|
if RavenClient == nil {
|
|
|
|
fmt.Println("ERROR!!!!")
|
|
|
|
fmt.Println(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create stacktrace
|
|
|
|
st := raven.NewStacktrace(0, 3, []string{"zxq.co/ripple", "git.zxq.co/ripple"})
|
|
|
|
|
|
|
|
// Generate tags for error
|
|
|
|
tags := map[string]string{
|
|
|
|
"endpoint": b2s(c.RequestURI()),
|
|
|
|
}
|
|
|
|
|
|
|
|
RavenClient.CaptureError(
|
|
|
|
err,
|
|
|
|
tags,
|
|
|
|
st,
|
|
|
|
generateRavenHTTP(c),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func generateRavenHTTP(ctx *fasthttp.RequestCtx) *raven.Http {
|
|
|
|
// build uri
|
|
|
|
uri := ctx.URI()
|
|
|
|
// safe to use b2s because a new string gets allocated eventually for
|
|
|
|
// concatenation
|
|
|
|
sURI := b2s(uri.Scheme()) + "://" + b2s(uri.Host()) + b2s(uri.Path())
|
|
|
|
|
|
|
|
// build header map
|
|
|
|
// using ctx.Request.Header.Len would mean calling .VisitAll two times
|
|
|
|
// which can be quite expensive since it means iterating over all the
|
|
|
|
// headers, so we give a rough estimate of the number of headers we expect
|
|
|
|
// to have
|
|
|
|
m := make(map[string]string, 16)
|
|
|
|
ctx.Request.Header.VisitAll(func(k, v []byte) {
|
|
|
|
// not using b2s because we mustn't keep references to the underlying
|
|
|
|
// k and v
|
|
|
|
m[string(k)] = string(v)
|
|
|
|
})
|
|
|
|
|
|
|
|
return &raven.Http{
|
|
|
|
URL: sURI,
|
|
|
|
// Not using b2s because raven sending is concurrent and may happen
|
|
|
|
// AFTER the request, meaning that values could potentially be replaced
|
|
|
|
// by new ones.
|
|
|
|
Method: string(ctx.Method()),
|
|
|
|
Query: string(uri.QueryString()),
|
|
|
|
Cookies: string(ctx.Request.Header.Peek("Cookie")),
|
|
|
|
Headers: m,
|
|
|
|
}
|
2016-04-08 17:05:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ID retrieves the Token's owner user ID.
|
|
|
|
func (md MethodData) ID() int {
|
|
|
|
return md.User.UserID
|
|
|
|
}
|
2016-04-12 19:23:02 +00:00
|
|
|
|
2016-08-15 17:59:46 +00:00
|
|
|
// Query is shorthand for md.C.Query.
|
|
|
|
func (md MethodData) Query(q string) string {
|
2017-02-02 12:40:28 +00:00
|
|
|
return b2s(md.Ctx.QueryArgs().Peek(q))
|
2016-08-15 17:59:46 +00:00
|
|
|
}
|
|
|
|
|
2016-08-27 10:04:12 +00:00
|
|
|
// HasQuery returns true if the parameter is encountered in the querystring.
|
|
|
|
// It returns true even if the parameter is "" (the case of ?param&etc=etc)
|
|
|
|
func (md MethodData) HasQuery(q string) bool {
|
2017-02-02 12:40:28 +00:00
|
|
|
return md.Ctx.QueryArgs().Has(q)
|
2016-08-27 10:04:12 +00:00
|
|
|
}
|
|
|
|
|
2017-02-02 12:40:28 +00:00
|
|
|
// Unmarshal unmarshals a request's JSON body into an interface.
|
|
|
|
func (md MethodData) Unmarshal(into interface{}) error {
|
|
|
|
return json.Unmarshal(md.Ctx.PostBody(), into)
|
2016-04-12 19:23:02 +00:00
|
|
|
}
|