grafana/pkg/middleware/middleware.go

88 lines
1.6 KiB
Go
Raw Normal View History

2014-10-05 09:50:04 -05:00
package middleware
import (
2014-10-05 14:13:01 -05:00
"encoding/json"
2014-10-07 16:56:37 -05:00
"strconv"
2014-10-05 09:50:04 -05:00
"github.com/Unknwon/macaron"
"github.com/macaron-contrib/session"
"github.com/torkelo/grafana-pro/pkg/log"
"github.com/torkelo/grafana-pro/pkg/models"
2014-12-16 05:04:08 -06:00
"github.com/torkelo/grafana-pro/pkg/setting"
2014-10-05 09:50:04 -05:00
)
type Context struct {
*macaron.Context
Session session.Store
Account *models.Account
UserAccount *models.Account
IsSigned bool
}
2014-11-20 05:11:07 -06:00
func (c *Context) GetAccountId() int64 {
2014-10-06 14:31:54 -05:00
return c.Account.Id
}
2014-10-05 09:50:04 -05:00
func GetContextHandler() macaron.Handler {
2014-10-05 14:13:01 -05:00
return func(c *macaron.Context, sess session.Store) {
2014-10-05 09:50:04 -05:00
ctx := &Context{
Context: c,
2014-10-05 14:13:01 -05:00
Session: sess,
2014-10-05 09:50:04 -05:00
}
c.Map(ctx)
}
}
// Handle handles and logs error by given status.
func (ctx *Context) Handle(status int, title string, err error) {
if err != nil {
log.Error(4, "%s: %v", title, err)
if macaron.Env != macaron.PROD {
ctx.Data["ErrorMsg"] = err
}
}
switch status {
case 404:
ctx.Data["Title"] = "Page Not Found"
case 500:
ctx.Data["Title"] = "Internal Server Error"
}
2014-10-07 16:56:37 -05:00
ctx.HTML(status, strconv.Itoa(status))
2014-10-05 09:50:04 -05:00
}
2014-10-05 14:13:01 -05:00
2014-10-07 14:54:38 -05:00
func (ctx *Context) JsonApiErr(status int, message string, err error) {
2014-10-06 14:31:54 -05:00
resp := make(map[string]interface{})
if err != nil {
log.Error(4, "%s: %v", message, err)
2014-12-16 05:04:08 -06:00
if setting.Env != setting.PROD {
resp["error"] = err.Error()
2014-10-06 14:31:54 -05:00
}
}
switch status {
case 404:
resp["message"] = "Not Found"
case 500:
resp["message"] = "Internal Server Error"
}
if message != "" {
resp["message"] = message
}
2014-11-24 03:17:13 -06:00
ctx.JSON(status, resp)
2014-10-06 14:31:54 -05:00
}
2014-10-05 14:13:01 -05:00
func (ctx *Context) JsonBody(model interface{}) bool {
2014-11-20 02:16:28 -06:00
b, _ := ctx.Req.Body().Bytes()
2014-10-05 14:13:01 -05:00
err := json.Unmarshal(b, &model)
return err == nil
}