|
@@ -8,6 +8,7 @@ import (
|
|
|
"eta/eta_api/utils"
|
|
|
"fmt"
|
|
|
"html"
|
|
|
+ "os/exec"
|
|
|
"strconv"
|
|
|
"time"
|
|
|
)
|
|
@@ -128,3 +129,102 @@ func SmartReportElasticUpsert(smartReportId int, state int) (err error) {
|
|
|
}
|
|
|
return
|
|
|
}
|
|
|
+
|
|
|
+func ReportToPdf(reportUrl, filePath string) (err error) {
|
|
|
+ pyCode := `
|
|
|
+import asyncio
|
|
|
+from pyppeteer import launch
|
|
|
+
|
|
|
+async def main():
|
|
|
+
|
|
|
+ browser = await launch({
|
|
|
+ 'executablePath': '/Applications/Google Chrome.app/Contents/MacOS/Google Chrome',
|
|
|
+ 'headless': True
|
|
|
+ })
|
|
|
+ page = await browser.newPage()
|
|
|
+ await page.setViewport({
|
|
|
+ 'width': 1920,
|
|
|
+ 'height': 1080,
|
|
|
+ })
|
|
|
+ # 对于大的PDF生成,可能会时间很久,这里规定不会进行超时处理
|
|
|
+ # await page.setDefaultNavigationTimeout(0)
|
|
|
+ # 不再有网络连接时触发
|
|
|
+ await page.goto('%s',{
|
|
|
+ 'waitUntil':'networkidle0'
|
|
|
+ })
|
|
|
+
|
|
|
+
|
|
|
+ await page.pdf({
|
|
|
+ 'path': "%s",
|
|
|
+ 'printBackground': True,
|
|
|
+ 'format': "A2",
|
|
|
+ 'displayHeaderFooter':True,
|
|
|
+ # 'headerTemplate':'<div></div>',
|
|
|
+ # 'footerTemplate':"<div style='width:100%;text-align:center;font-size:16px'><span class='pageNumber''></span></div>",
|
|
|
+ 'margin': {
|
|
|
+ 'top': 100,
|
|
|
+ 'bottom': 100,
|
|
|
+ 'left':0,
|
|
|
+ 'right':0
|
|
|
+ }
|
|
|
+ })
|
|
|
+ await browser.close()
|
|
|
+
|
|
|
+asyncio.run(main())
|
|
|
+`
|
|
|
+
|
|
|
+ pyCode = fmt.Sprintf(pyCode, reportUrl, filePath)
|
|
|
+
|
|
|
+ cmd := exec.Command("python3", "-c", pyCode)
|
|
|
+ _, err = cmd.CombinedOutput()
|
|
|
+ defer func() {
|
|
|
+ cmd.Process.Kill()
|
|
|
+ }()
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func ReportToJpeg(reportUrl, filePath string) (err error) {
|
|
|
+ pyCode := `
|
|
|
+import asyncio
|
|
|
+from pyppeteer import launch
|
|
|
+
|
|
|
+async def main():
|
|
|
+
|
|
|
+ browser = await launch({
|
|
|
+ 'executablePath': '/Applications/Google Chrome.app/Contents/MacOS/Google Chrome',
|
|
|
+ 'headless': True
|
|
|
+ })
|
|
|
+ page = await browser.newPage()
|
|
|
+ await page.setViewport({
|
|
|
+ 'width': 1920,
|
|
|
+ 'height': 1080,
|
|
|
+ })
|
|
|
+ # 对于大的PDF生成,可能会时间很久,这里规定不会进行超时处理
|
|
|
+ # await page.setDefaultNavigationTimeout(0)
|
|
|
+ # 不再有网络连接时触发
|
|
|
+ await page.goto('%s',{
|
|
|
+ 'waitUntil':'networkidle0'
|
|
|
+ })
|
|
|
+ # Customizing footer for page numbers starting from page 2
|
|
|
+
|
|
|
+ await page.screenshot({
|
|
|
+ 'path': "%s",
|
|
|
+ 'type': "jpeg",
|
|
|
+ 'fullPage': True,
|
|
|
+ })
|
|
|
+ await browser.close()
|
|
|
+
|
|
|
+asyncio.run(main())
|
|
|
+`
|
|
|
+
|
|
|
+ pyCode = fmt.Sprintf(pyCode, reportUrl, filePath)
|
|
|
+
|
|
|
+ cmd := exec.Command("python3", "-c", pyCode)
|
|
|
+
|
|
|
+ _, err = cmd.CombinedOutput()
|
|
|
+ defer func() {
|
|
|
+ cmd.Process.Kill()
|
|
|
+ }()
|
|
|
+ return
|
|
|
+}
|
|
|
+
|