| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- package middleware
- import (
- "fmt"
- "net/http"
- "strconv"
- "strings"
- "github.com/grafana/grafana/pkg/bus"
- m "github.com/grafana/grafana/pkg/models"
- "github.com/grafana/grafana/pkg/setting"
- "gopkg.in/macaron.v1"
- )
- func OrgRedirect() macaron.Handler {
- return func(res http.ResponseWriter, req *http.Request, c *macaron.Context) {
- orgIdValue := req.URL.Query().Get("orgId")
- orgId, err := strconv.ParseInt(orgIdValue, 10, 32)
- if err != nil || orgId == 0 {
- return
- }
- ctx, ok := c.Data["ctx"].(*m.ReqContext)
- if !ok || !ctx.IsSignedIn {
- return
- }
- if orgId == ctx.OrgId {
- return
- }
- cmd := m.SetUsingOrgCommand{UserId: ctx.UserId, OrgId: orgId}
- if err := bus.Dispatch(&cmd); err != nil {
- if ctx.IsApiRequest() {
- ctx.JsonApiErr(404, "Not found", nil)
- } else {
- ctx.Error(404, "Not found")
- }
- return
- }
- newURL := setting.ToAbsUrl(fmt.Sprintf("%s?%s", strings.TrimPrefix(c.Req.URL.Path, "/"), c.Req.URL.Query().Encode()))
- c.Redirect(newURL, 302)
- }
- }
|