Explorar o código

Fixed bug in png rendering when having changed public url

Torkel Ödegaard %!s(int64=11) %!d(string=hai) anos
pai
achega
397dfc54cd
Modificáronse 4 ficheiros con 5 adicións e 6 borrados
  1. 1 3
      .gitignore
  2. 2 1
      pkg/api/render.go
  3. 1 1
      pkg/api/search.go
  4. 1 1
      pkg/setting/setting.go

+ 1 - 3
.gitignore

@@ -14,9 +14,7 @@ src/css/*.min.css
 *.swp
 .idea/
 
-data/sessions
-data/*.db
-data/log
+/data/*
 /bin/*
 /grafana-pro
 

+ 2 - 1
pkg/api/render.go

@@ -6,6 +6,7 @@ import (
 
 	"github.com/grafana/grafana/pkg/components/renderer"
 	"github.com/grafana/grafana/pkg/middleware"
+	"github.com/grafana/grafana/pkg/setting"
 	"github.com/grafana/grafana/pkg/util"
 )
 
@@ -19,7 +20,7 @@ func RenderToPng(c *middleware.Context) {
 		Height: queryReader.Get("height", "400"),
 	}
 
-	renderOpts.Url = "http://localhost:3000/" + renderOpts.Url
+	renderOpts.Url = setting.ToAbsUrl(renderOpts.Url)
 	pngPath, err := renderer.RenderToPng(renderOpts)
 
 	if err != nil {

+ 1 - 1
pkg/api/search.go

@@ -81,7 +81,7 @@ func Search(c *middleware.Context) {
 
 		result.Dashboards = query.Result
 		for _, dash := range result.Dashboards {
-			dash.Url = setting.AbsUrlTo("dashboard/db/" + dash.Slug)
+			dash.Url = setting.ToAbsUrl("dashboard/db/" + dash.Slug)
 		}
 	}
 

+ 1 - 1
pkg/setting/setting.go

@@ -148,7 +148,7 @@ func parseAppUrlAndSubUrl(section *ini.Section) (string, string) {
 	return appUrl, appSubUrl
 }
 
-func AbsUrlTo(relativeUrl string) string {
+func ToAbsUrl(relativeUrl string) string {
 	return AppUrl + relativeUrl
 }