|
@@ -8,16 +8,16 @@ import (
|
|
"hongze/hongze_yb/utils"
|
|
"hongze/hongze_yb/utils"
|
|
"io/ioutil"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"net/http"
|
|
- "os"
|
|
|
|
"strings"
|
|
"strings"
|
|
)
|
|
)
|
|
|
|
|
|
|
|
|
|
type SharePosterReq struct {
|
|
type SharePosterReq struct {
|
|
- Source string `json:"source" description:"来源"`
|
|
+ Source string `json:"source" description:"来源"`
|
|
- Pars string `json:"pars" description:"海报动态信息"`
|
|
+ Pars string `json:"pars" description:"海报动态信息"`
|
|
- Scene string `json:"scene" description:"太阳码scene"`
|
|
+ CodeScene string `json:"code_scene" description:"太阳码scene"`
|
|
- Path string `json:"path" description:"太阳码path"`
|
|
+ CodePath string `json:"code_path" description:"太阳码path"`
|
|
|
|
+ Version string `json:"version" description:"版本号" `
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -25,52 +25,56 @@ func CreatePosterFromSource(source string, pars string) (imgUrl string, err erro
|
|
var errMsg string
|
|
var errMsg string
|
|
defer func() {
|
|
defer func() {
|
|
if err != nil {
|
|
if err != nil {
|
|
- if global.CONFIG.Serve.RunMode == "release" {
|
|
+ global.LOG.Critical(fmt.Sprintf("CreatePosterFromSource: source=%s, pars:%s, errMsg:%s", source, pars, errMsg))
|
|
- go SendEmail(utils.APPNAME+"【"+global.CONFIG.Serve.RunMode+"】"+"失败提醒", "生成分享海报失败, "+errMsg+", CreatePosterFromSource: "+err.Error(), utils.EmailSendToUsers)
|
|
+ go SendEmail(utils.APPNAME+"【"+global.CONFIG.Serve.RunMode+"】"+"失败提醒", "生成分享海报失败, "+errMsg+", CreatePosterFromSource: "+err.Error(), utils.EmailSendToUsers)
|
|
- }
|
|
|
|
}
|
|
}
|
|
}()
|
|
}()
|
|
-
|
|
+
|
|
-
|
|
+
|
|
-
|
|
+
|
|
-
|
|
+ heightMap := map[string]int{
|
|
- resourceUrl := ""
|
|
+ "chapter_detail": 370,
|
|
- filePath := ""
|
|
+ "chapter_list": 369,
|
|
|
|
+ "chart_detail": 381,
|
|
|
|
+ "chart_list": 338,
|
|
|
|
+ "report_detail": 355,
|
|
|
|
+ "report_list": 369,
|
|
|
|
+ }
|
|
|
|
+ width := 294
|
|
|
|
+ height := heightMap[source]
|
|
|
|
+ if height == 0 {
|
|
|
|
+ errMsg = "图片长度有误"
|
|
|
|
+ err = errors.New(errMsg)
|
|
|
|
+ return "", err
|
|
|
|
+ }
|
|
|
|
+ reqContent := ""
|
|
switch source {
|
|
switch source {
|
|
case "chart_detail":
|
|
case "chart_detail":
|
|
- filePath, err = CreateChartDetailHtml(pars)
|
|
+ if reqContent, err = FillContent2ChartDetailHtml(pars); err != nil {
|
|
- if err != nil {
|
|
|
|
return
|
|
return
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- if filePath == "" {
|
|
+ if reqContent == "" {
|
|
- errMsg = "html资源生成失败"
|
|
+ errMsg = "html内容有误"
|
|
err = errors.New(errMsg)
|
|
err = errors.New(errMsg)
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- resourceUrl = "http://127.0.0.1:8612/" + filePath
|
|
|
|
- fmt.Println(resourceUrl)
|
|
|
|
-
|
|
|
|
|
|
|
|
htm2ImgReq := make(map[string]interface{})
|
|
htm2ImgReq := make(map[string]interface{})
|
|
- htm2ImgReq["html_url"] = resourceUrl
|
|
+ htm2ImgReq["html_content"] = reqContent
|
|
- res, err := postHtml2Img(htm2ImgReq)
|
|
+ htm2ImgReq["width"] = width
|
|
- if err != nil {
|
|
+ htm2ImgReq["height"] = height
|
|
- return
|
|
+ if res, err := postHtml2Img(htm2ImgReq); err != nil || res == nil {
|
|
- }
|
|
+ err = errors.New("html转图片请求失败")
|
|
- if res == nil {
|
|
|
|
- err = errors.New("html转图片请求失败, 未知错误")
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
- if res.Code != 200 {
|
|
|
|
- err = errors.New("html转图片失败: " + res.Msg)
|
|
|
|
return
|
|
return
|
|
|
|
+ } else {
|
|
|
|
+ if res.Code != 200 {
|
|
|
|
+ err = errors.New("html转图片失败: " + res.Msg)
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ imgUrl = res.Data
|
|
}
|
|
}
|
|
- imgUrl = res.Data
|
|
+
|
|
- fmt.Println(imgUrl)
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
|
|
|
|
return
|
|
return
|
|
}
|
|
}
|
|
@@ -81,53 +85,26 @@ type ChartDetailPosterReq struct {
|
|
ChartImage string `json:"chart_image"`
|
|
ChartImage string `json:"chart_image"`
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
+
|
|
-func CreateChartDetailHtml(pars string) (filePath string, err error) {
|
|
+func FillContent2ChartDetailHtml(pars string) (contentStr string, err error) {
|
|
|
|
|
|
params := new(ChartDetailPosterReq)
|
|
params := new(ChartDetailPosterReq)
|
|
if err = json.Unmarshal([]byte(pars), ¶ms); err != nil {
|
|
if err = json.Unmarshal([]byte(pars), ¶ms); err != nil {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
|
|
demoPath := "static/htm2img/chart_detail.html"
|
|
demoPath := "static/htm2img/chart_detail.html"
|
|
contentByte, err := ioutil.ReadFile(demoPath)
|
|
contentByte, err := ioutil.ReadFile(demoPath)
|
|
if err != nil {
|
|
if err != nil {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
-
|
|
+
|
|
-
|
|
|
|
|
|
|
|
|
|
|
|
- contentStr := string(contentByte)
|
|
+ contentStr = string(contentByte)
|
|
contentStr = strings.ReplaceAll(contentStr, "{{CHART_NAME}}", params.ChartName)
|
|
contentStr = strings.ReplaceAll(contentStr, "{{CHART_NAME}}", params.ChartName)
|
|
contentStr = strings.ReplaceAll(contentStr, "{{CHART_IMAGE}}", params.ChartImage)
|
|
contentStr = strings.ReplaceAll(contentStr, "{{CHART_IMAGE}}", params.ChartImage)
|
|
- fmt.Println("ChartName:", params.ChartName)
|
|
+ contentStr = strings.ReplaceAll(contentStr, "{{SUN_CODE}}", "")
|
|
- fmt.Println("ChartImage:", params.ChartImage)
|
|
|
|
-
|
|
|
|
-
|
|
|
|
- filePath = "static/htm2img/" + utils.GetRandStringNoSpecialChar(28) + ".html"
|
|
|
|
- f, err := os.Create(filePath)
|
|
|
|
- defer f.Close()
|
|
|
|
- if err != nil {
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
- if _, err = f.Write([]byte(contentStr)); err != nil {
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- return
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-func PutHtmlIntoFile(content []byte) (filePath string, err error) {
|
|
|
|
- filePath = "static/htm2img/" + utils.GetRandStringNoSpecialChar(28) + ".html"
|
|
|
|
- f, err := os.Create(filePath)
|
|
|
|
- defer f.Close()
|
|
|
|
- if err != nil {
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
- _, err = f.Write(content)
|
|
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
@@ -141,7 +118,7 @@ type Html2ImgResp struct {
|
|
func postHtml2Img(param map[string]interface{}) (resp *Html2ImgResp, err error) {
|
|
func postHtml2Img(param map[string]interface{}) (resp *Html2ImgResp, err error) {
|
|
pythonUrl := ""
|
|
pythonUrl := ""
|
|
if global.CONFIG.Serve.RunMode == "release" {
|
|
if global.CONFIG.Serve.RunMode == "release" {
|
|
-
|
|
+
|
|
} else {
|
|
} else {
|
|
pythonUrl = "http://127.0.0.1:8888/"
|
|
pythonUrl = "http://127.0.0.1:8888/"
|
|
}
|
|
}
|
|
@@ -160,7 +137,7 @@ func postHtml2Img(param map[string]interface{}) (resp *Html2ImgResp, err error)
|
|
return resp, nil
|
|
return resp, nil
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
+
|
|
func Html2ImgHttpPost(url, postData string, params ...string) ([]byte, error) {
|
|
func Html2ImgHttpPost(url, postData string, params ...string) ([]byte, error) {
|
|
body := ioutil.NopCloser(strings.NewReader(postData))
|
|
body := ioutil.NopCloser(strings.NewReader(postData))
|
|
client := &http.Client{}
|
|
client := &http.Client{}
|