tech(renderer): improve renderOpts names

This commit is contained in:
bergquist
2016-09-26 11:07:36 +02:00
parent effd2098ee
commit 1a32ab64b6
3 changed files with 6 additions and 6 deletions

View File

@@ -18,7 +18,7 @@ import (
)
type RenderOpts struct {
Url string
Path string
Width string
Height string
Timeout string
@@ -28,14 +28,14 @@ type RenderOpts struct {
var rendererLog log.Logger = log.New("png-renderer")
func RenderToPng(params *RenderOpts) (string, error) {
rendererLog.Info("Rendering", "url", params.Url)
rendererLog.Info("Rendering", "path", params.Path)
var executable = "phantomjs"
if runtime.GOOS == "windows" {
executable = executable + ".exe"
}
params.Url = fmt.Sprintf("%s://localhost:%s/%s", setting.Protocol, setting.HttpPort, params.Url)
url := fmt.Sprintf("%s://localhost:%s/%s", setting.Protocol, setting.HttpPort, params.Path)
binPath, _ := filepath.Abs(filepath.Join(setting.PhantomDir, executable))
scriptPath, _ := filepath.Abs(filepath.Join(setting.PhantomDir, "render.js"))
@@ -48,7 +48,7 @@ func RenderToPng(params *RenderOpts) (string, error) {
cmdArgs := []string{
"--ignore-ssl-errors=true",
scriptPath,
"url=" + params.Url,
"url=" + url,
"width=" + params.Width,
"height=" + params.Height,
"png=" + pngPath,