2019-05-30 01:53:05 +00:00
|
|
|
//
|
|
|
|
// WRP - Web Rendering Proxy
|
|
|
|
//
|
|
|
|
// Copyright (c) 2013-2018 Antoni Sawicki
|
|
|
|
// Copyright (c) 2019 Google LLC
|
|
|
|
//
|
|
|
|
|
2019-05-29 08:29:01 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2019-05-30 06:49:39 +00:00
|
|
|
"bytes"
|
2019-05-29 08:52:28 +00:00
|
|
|
"context"
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
2019-11-13 08:22:07 +00:00
|
|
|
"image"
|
2019-05-30 06:49:39 +00:00
|
|
|
"image/gif"
|
|
|
|
"image/png"
|
2019-05-29 08:52:28 +00:00
|
|
|
"log"
|
2019-11-03 23:01:05 +00:00
|
|
|
"math"
|
2019-05-30 09:03:17 +00:00
|
|
|
"math/rand"
|
2019-05-29 08:52:28 +00:00
|
|
|
"net/http"
|
2019-05-30 06:49:39 +00:00
|
|
|
"net/url"
|
2019-07-17 05:29:35 +00:00
|
|
|
"os"
|
|
|
|
"os/signal"
|
2019-05-29 08:52:28 +00:00
|
|
|
"strconv"
|
2019-05-31 07:36:53 +00:00
|
|
|
"strings"
|
2019-07-17 05:29:35 +00:00
|
|
|
"syscall"
|
2019-05-29 08:52:28 +00:00
|
|
|
"time"
|
2019-05-29 08:29:01 +00:00
|
|
|
|
2019-08-13 06:35:29 +00:00
|
|
|
"github.com/chromedp/cdproto/css"
|
2019-05-29 09:39:06 +00:00
|
|
|
"github.com/chromedp/cdproto/emulation"
|
2019-11-03 23:01:05 +00:00
|
|
|
"github.com/chromedp/cdproto/page"
|
2019-05-29 08:52:28 +00:00
|
|
|
"github.com/chromedp/chromedp"
|
2019-06-06 08:06:36 +00:00
|
|
|
"github.com/ericpauley/go-quantize/quantize"
|
2019-05-29 08:29:01 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2019-11-03 23:01:05 +00:00
|
|
|
version = "4.5"
|
2019-06-18 06:53:22 +00:00
|
|
|
srv http.Server
|
2019-06-04 08:23:46 +00:00
|
|
|
ctx context.Context
|
|
|
|
cancel context.CancelFunc
|
2019-11-03 07:56:04 +00:00
|
|
|
img = make(map[string]bytes.Buffer)
|
2019-07-11 06:58:40 +00:00
|
|
|
ismap = make(map[string]wrpReq)
|
2019-08-08 09:31:23 +00:00
|
|
|
nodel bool
|
2019-11-04 00:58:38 +00:00
|
|
|
deftype string
|
2019-11-03 23:38:26 +00:00
|
|
|
defgeom geom
|
2019-05-29 08:29:01 +00:00
|
|
|
)
|
|
|
|
|
2019-11-03 23:38:26 +00:00
|
|
|
type geom struct {
|
|
|
|
w int64
|
|
|
|
h int64
|
|
|
|
c int64
|
|
|
|
}
|
|
|
|
|
2019-07-11 06:58:40 +00:00
|
|
|
type wrpReq struct {
|
2019-06-26 00:07:43 +00:00
|
|
|
U string // url
|
|
|
|
W int64 // width
|
|
|
|
H int64 // height
|
|
|
|
S float64 // scale
|
|
|
|
C int64 // #colors
|
2019-07-10 08:01:40 +00:00
|
|
|
X int64 // mouseX
|
|
|
|
Y int64 // mouseY
|
2019-07-12 08:51:23 +00:00
|
|
|
K string // keys to send
|
2019-07-13 07:40:56 +00:00
|
|
|
F string // Fn buttons
|
2019-11-04 00:58:38 +00:00
|
|
|
T string // imgtype
|
2019-06-26 00:07:43 +00:00
|
|
|
}
|
2019-06-24 07:40:34 +00:00
|
|
|
|
2019-07-11 06:58:40 +00:00
|
|
|
func (w *wrpReq) parseForm(req *http.Request) {
|
2019-06-26 00:07:43 +00:00
|
|
|
req.ParseForm()
|
2019-07-11 06:58:40 +00:00
|
|
|
w.U = req.FormValue("url")
|
|
|
|
if len(w.U) > 1 && !strings.HasPrefix(w.U, "http") {
|
|
|
|
w.U = fmt.Sprintf("http://www.google.com/search?q=%s", url.QueryEscape(w.U))
|
2019-06-26 00:07:43 +00:00
|
|
|
}
|
2019-07-11 06:58:40 +00:00
|
|
|
w.W, _ = strconv.ParseInt(req.FormValue("w"), 10, 64)
|
|
|
|
w.H, _ = strconv.ParseInt(req.FormValue("h"), 10, 64)
|
2019-11-03 23:01:05 +00:00
|
|
|
if w.W < 10 && w.H < 10 {
|
2019-11-03 23:38:26 +00:00
|
|
|
w.W = defgeom.w
|
|
|
|
w.H = defgeom.h
|
2019-05-29 08:52:28 +00:00
|
|
|
}
|
2019-07-11 06:58:40 +00:00
|
|
|
w.S, _ = strconv.ParseFloat(req.FormValue("s"), 64)
|
|
|
|
if w.S < 0.1 {
|
|
|
|
w.S = 1.0
|
2019-05-31 01:08:48 +00:00
|
|
|
}
|
2019-07-11 06:58:40 +00:00
|
|
|
w.C, _ = strconv.ParseInt(req.FormValue("c"), 10, 64)
|
|
|
|
if w.C < 2 || w.C > 256 {
|
2019-11-03 23:38:26 +00:00
|
|
|
w.C = defgeom.c
|
2019-06-03 00:06:41 +00:00
|
|
|
}
|
2019-07-12 08:51:23 +00:00
|
|
|
w.K = req.FormValue("k")
|
2019-07-13 07:40:56 +00:00
|
|
|
w.F = req.FormValue("Fn")
|
2019-11-04 00:58:38 +00:00
|
|
|
w.T = req.FormValue("t")
|
|
|
|
if w.T != "gif" && w.T != "png" {
|
|
|
|
w.T = deftype
|
|
|
|
}
|
2019-07-14 08:53:33 +00:00
|
|
|
log.Printf("%s WrpReq from Form: %+v\n", req.RemoteAddr, w)
|
2019-06-26 00:07:43 +00:00
|
|
|
}
|
|
|
|
|
2019-08-13 06:35:29 +00:00
|
|
|
func (w wrpReq) printPage(out http.ResponseWriter, bgcolor string) {
|
2019-11-04 01:53:20 +00:00
|
|
|
var s string
|
2019-07-17 05:47:23 +00:00
|
|
|
out.Header().Set("Cache-Control", "max-age=0")
|
|
|
|
out.Header().Set("Expires", "-1")
|
|
|
|
out.Header().Set("Pragma", "no-cache")
|
2019-05-29 08:52:28 +00:00
|
|
|
out.Header().Set("Content-Type", "text/html")
|
2019-06-02 23:24:46 +00:00
|
|
|
fmt.Fprintf(out, "<!-- Web Rendering Proxy Version %s -->\n", version)
|
2019-08-13 06:35:29 +00:00
|
|
|
fmt.Fprintf(out, "<HTML>\n<HEAD><TITLE>WRP %s</TITLE></HEAD>\n<BODY BGCOLOR=\"%s\">\n", w.U, bgcolor)
|
2019-07-13 07:40:56 +00:00
|
|
|
fmt.Fprintf(out, "<FORM ACTION=\"/\" METHOD=\"POST\">\n")
|
2019-11-03 07:59:56 +00:00
|
|
|
fmt.Fprintf(out, "<INPUT TYPE=\"TEXT\" NAME=\"url\" VALUE=\"%s\" SIZE=\"20\">", w.U)
|
2019-07-13 07:40:56 +00:00
|
|
|
fmt.Fprintf(out, "<INPUT TYPE=\"SUBMIT\" VALUE=\"Go\">\n")
|
|
|
|
fmt.Fprintf(out, "<INPUT TYPE=\"SUBMIT\" NAME=\"Fn\" VALUE=\"Bk\">\n")
|
2019-07-11 06:58:40 +00:00
|
|
|
fmt.Fprintf(out, "W <INPUT TYPE=\"TEXT\" NAME=\"w\" VALUE=\"%d\" SIZE=\"4\"> \n", w.W)
|
|
|
|
fmt.Fprintf(out, "H <INPUT TYPE=\"TEXT\" NAME=\"h\" VALUE=\"%d\" SIZE=\"4\"> \n", w.H)
|
2019-11-04 01:53:20 +00:00
|
|
|
fmt.Fprintf(out, "S <SELECT NAME=\"s\">\n")
|
|
|
|
for _, v := range []float64{0.65, 0.75, 0.85, 0.95, 1.0, 1.05, 1.15, 1.25} {
|
|
|
|
if v == w.S {
|
|
|
|
s = "SELECTED"
|
|
|
|
} else {
|
|
|
|
s = ""
|
|
|
|
}
|
|
|
|
fmt.Fprintf(out, "<OPTION VALUE=\"%1.2f\" %s>%1.2f</OPTION>\n", v, s, v)
|
|
|
|
}
|
|
|
|
fmt.Fprintf(out, "</SELECT>\n")
|
2019-11-04 00:58:38 +00:00
|
|
|
fmt.Fprintf(out, "T <SELECT NAME=\"t\">\n")
|
|
|
|
for _, v := range []string{"gif", "png"} {
|
|
|
|
if v == w.T {
|
|
|
|
s = "SELECTED"
|
|
|
|
} else {
|
|
|
|
s = ""
|
|
|
|
}
|
|
|
|
fmt.Fprintf(out, "<OPTION VALUE=\"%s\" %s>%s</OPTION>\n", v, s, strings.ToUpper(v))
|
|
|
|
}
|
2019-11-04 01:41:11 +00:00
|
|
|
fmt.Fprintf(out, "</SELECT>\n")
|
2019-07-13 07:40:56 +00:00
|
|
|
fmt.Fprintf(out, "C <INPUT TYPE=\"TEXT\" NAME=\"c\" VALUE=\"%d\" SIZE=\"3\">\n", w.C)
|
|
|
|
fmt.Fprintf(out, "K <INPUT TYPE=\"TEXT\" NAME=\"k\" VALUE=\"\" SIZE=\"4\"> \n")
|
|
|
|
fmt.Fprintf(out, "<INPUT TYPE=\"SUBMIT\" NAME=\"Fn\" VALUE=\"Bs\">\n")
|
|
|
|
fmt.Fprintf(out, "<INPUT TYPE=\"SUBMIT\" NAME=\"Fn\" VALUE=\"Rt\">\n")
|
|
|
|
fmt.Fprintf(out, "<INPUT TYPE=\"SUBMIT\" NAME=\"Fn\" VALUE=\"<\">\n")
|
|
|
|
fmt.Fprintf(out, "<INPUT TYPE=\"SUBMIT\" NAME=\"Fn\" VALUE=\"^\">\n")
|
|
|
|
fmt.Fprintf(out, "<INPUT TYPE=\"SUBMIT\" NAME=\"Fn\" VALUE=\"v\">\n")
|
|
|
|
fmt.Fprintf(out, "<INPUT TYPE=\"SUBMIT\" NAME=\"Fn\" VALUE=\">\" SIZE=\"1\">\n")
|
2019-06-04 08:20:41 +00:00
|
|
|
fmt.Fprintf(out, "</FORM><BR>\n")
|
2019-06-26 08:07:13 +00:00
|
|
|
}
|
|
|
|
|
2019-11-04 01:24:18 +00:00
|
|
|
func (w wrpReq) printFooter(out http.ResponseWriter, h string, s string) {
|
2019-11-04 01:03:00 +00:00
|
|
|
fmt.Fprintf(out, "\n<P><FONT SIZE=\"-2\"><A HREF=\"/?url=https://github.com/tenox7/wrp/&w=%d&h=%d&s=%1.2f&c=%d&t=%s\">"+
|
2019-11-04 02:37:15 +00:00
|
|
|
"Web Rendering Proxy Version %s</A> | <A HREF=\"/shutdown/\">Shutdown WRP</A> | "+
|
|
|
|
"<A HREF=\"/\">Page Height: %s</A> | <A HREF=\"/\">Img Size: %s</A></FONT></BODY>\n</HTML>\n", w.W, w.H, w.S, w.C, w.T, version, h, s)
|
2019-06-26 08:07:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func pageServer(out http.ResponseWriter, req *http.Request) {
|
|
|
|
log.Printf("%s Page Request for %s [%+v]\n", req.RemoteAddr, req.URL.Path, req.URL.RawQuery)
|
2019-07-11 06:58:40 +00:00
|
|
|
var w wrpReq
|
|
|
|
w.parseForm(req)
|
|
|
|
if len(w.U) > 4 {
|
|
|
|
w.capture(req.RemoteAddr, out)
|
2019-07-11 01:09:20 +00:00
|
|
|
} else {
|
2019-08-13 06:35:29 +00:00
|
|
|
w.printPage(out, "#FFFFFF")
|
2019-11-04 01:24:18 +00:00
|
|
|
w.printFooter(out, "", "")
|
2019-06-26 08:07:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func mapServer(out http.ResponseWriter, req *http.Request) {
|
|
|
|
log.Printf("%s ISMAP Request for %s [%+v]\n", req.RemoteAddr, req.URL.Path, req.URL.RawQuery)
|
2019-07-11 06:58:40 +00:00
|
|
|
w, ok := ismap[req.URL.Path]
|
2019-06-26 08:07:13 +00:00
|
|
|
if !ok {
|
|
|
|
fmt.Fprintf(out, "Unable to find map %s\n", req.URL.Path)
|
|
|
|
log.Printf("Unable to find map %s\n", req.URL.Path)
|
|
|
|
return
|
|
|
|
}
|
2019-08-08 09:31:23 +00:00
|
|
|
if !nodel {
|
|
|
|
defer delete(ismap, req.URL.Path)
|
|
|
|
}
|
2019-07-11 06:58:40 +00:00
|
|
|
n, err := fmt.Sscanf(req.URL.RawQuery, "%d,%d", &w.X, &w.Y)
|
2019-07-10 08:01:40 +00:00
|
|
|
if err != nil || n != 2 {
|
|
|
|
fmt.Fprintf(out, "n=%d, err=%s\n", n, err)
|
|
|
|
log.Printf("%s ISMAP n=%d, err=%s\n", req.RemoteAddr, n, err)
|
|
|
|
return
|
|
|
|
}
|
2019-07-11 06:58:40 +00:00
|
|
|
log.Printf("%s WrpReq from ISMAP: %+v\n", req.RemoteAddr, w)
|
|
|
|
if len(w.U) > 4 {
|
|
|
|
w.capture(req.RemoteAddr, out)
|
2019-07-11 01:09:20 +00:00
|
|
|
} else {
|
2019-08-13 06:35:29 +00:00
|
|
|
w.printPage(out, "#FFFFFF")
|
2019-11-04 01:24:18 +00:00
|
|
|
w.printFooter(out, "", "")
|
2019-06-26 08:07:13 +00:00
|
|
|
}
|
2019-05-29 08:29:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func imgServer(out http.ResponseWriter, req *http.Request) {
|
2019-06-01 01:20:55 +00:00
|
|
|
log.Printf("%s IMG Request for %s\n", req.RemoteAddr, req.URL.Path)
|
2019-11-03 07:56:04 +00:00
|
|
|
imgbuf, ok := img[req.URL.Path]
|
2019-08-22 07:38:36 +00:00
|
|
|
if !ok || imgbuf.Bytes() == nil {
|
2019-06-03 05:23:41 +00:00
|
|
|
fmt.Fprintf(out, "Unable to find image %s\n", req.URL.Path)
|
2019-08-22 07:38:36 +00:00
|
|
|
log.Printf("%s Unable to find image %s\n", req.RemoteAddr, req.URL.Path)
|
2019-06-03 05:23:41 +00:00
|
|
|
return
|
|
|
|
}
|
2019-08-08 09:31:23 +00:00
|
|
|
if !nodel {
|
2019-11-03 07:56:04 +00:00
|
|
|
defer delete(img, req.URL.Path)
|
2019-08-08 09:31:23 +00:00
|
|
|
}
|
2019-08-22 07:38:36 +00:00
|
|
|
if strings.HasPrefix(req.URL.Path, ".gif") {
|
|
|
|
out.Header().Set("Content-Type", "image/gif")
|
|
|
|
} else if strings.HasPrefix(req.URL.Path, ".png") {
|
|
|
|
out.Header().Set("Content-Type", "image/png")
|
|
|
|
}
|
|
|
|
out.Header().Set("Content-Length", strconv.Itoa(len(imgbuf.Bytes())))
|
2019-07-17 05:47:23 +00:00
|
|
|
out.Header().Set("Cache-Control", "max-age=0")
|
|
|
|
out.Header().Set("Expires", "-1")
|
|
|
|
out.Header().Set("Pragma", "no-cache")
|
2019-08-22 07:38:36 +00:00
|
|
|
out.Write(imgbuf.Bytes())
|
2019-05-30 09:03:17 +00:00
|
|
|
out.(http.Flusher).Flush()
|
2019-05-29 08:29:01 +00:00
|
|
|
}
|
|
|
|
|
2019-07-11 06:58:40 +00:00
|
|
|
func (w wrpReq) capture(c string, out http.ResponseWriter) {
|
2019-07-10 08:01:40 +00:00
|
|
|
var err error
|
2019-07-11 06:58:40 +00:00
|
|
|
if w.X > 0 && w.Y > 0 {
|
|
|
|
log.Printf("%s Mouse Click %d,%d\n", c, w.X, w.Y)
|
2019-12-25 11:04:46 +00:00
|
|
|
err = chromedp.Run(ctx, chromedp.MouseClickXY(float64(w.X)/float64(w.S), float64(w.Y)/float64(w.S)))
|
2019-07-13 07:40:56 +00:00
|
|
|
} else if len(w.F) > 0 {
|
|
|
|
log.Printf("%s Button %v\n", c, w.F)
|
|
|
|
switch w.F {
|
|
|
|
case "Bk":
|
|
|
|
err = chromedp.Run(ctx, chromedp.NavigateBack())
|
|
|
|
case "Bs":
|
|
|
|
err = chromedp.Run(ctx, chromedp.KeyEvent("\b"))
|
|
|
|
case "Rt":
|
|
|
|
err = chromedp.Run(ctx, chromedp.KeyEvent("\r"))
|
|
|
|
case "<":
|
|
|
|
err = chromedp.Run(ctx, chromedp.KeyEvent("\u0302"))
|
|
|
|
case "^":
|
|
|
|
err = chromedp.Run(ctx, chromedp.KeyEvent("\u0304"))
|
|
|
|
case "v":
|
|
|
|
err = chromedp.Run(ctx, chromedp.KeyEvent("\u0301"))
|
|
|
|
case ">":
|
|
|
|
err = chromedp.Run(ctx, chromedp.KeyEvent("\u0303"))
|
|
|
|
}
|
2019-07-12 08:51:23 +00:00
|
|
|
} else if len(w.K) > 0 {
|
|
|
|
log.Printf("%s Sending Keys: %#v\n", c, w.K)
|
2019-07-13 07:42:27 +00:00
|
|
|
err = chromedp.Run(ctx, chromedp.KeyEvent(w.K))
|
2019-07-10 08:01:40 +00:00
|
|
|
} else {
|
2019-07-11 06:58:40 +00:00
|
|
|
log.Printf("%s Processing Capture Request for %s\n", c, w.U)
|
2019-11-03 23:01:05 +00:00
|
|
|
err = chromedp.Run(ctx, chromedp.Navigate(w.U))
|
2019-07-10 08:01:40 +00:00
|
|
|
}
|
2019-05-31 07:41:46 +00:00
|
|
|
if err != nil {
|
2019-06-09 00:32:35 +00:00
|
|
|
if err.Error() == "context canceled" {
|
|
|
|
log.Printf("%s Contex cancelled, try again", c)
|
|
|
|
fmt.Fprintf(out, "<BR>%s<BR> -- restarting, try again", err)
|
|
|
|
ctx, cancel = chromedp.NewContext(context.Background())
|
|
|
|
} else {
|
|
|
|
log.Printf("%s %s", c, err)
|
|
|
|
fmt.Fprintf(out, "<BR>%s<BR>", err)
|
|
|
|
}
|
2019-06-17 07:21:32 +00:00
|
|
|
return
|
2019-05-31 07:41:46 +00:00
|
|
|
}
|
2020-04-23 10:25:39 +00:00
|
|
|
var styles []*css.ComputedStyleProperty
|
2019-08-22 07:38:36 +00:00
|
|
|
var r, g, b int
|
2019-11-03 23:01:05 +00:00
|
|
|
var h int64
|
|
|
|
var pngcap []byte
|
2019-08-13 06:35:29 +00:00
|
|
|
chromedp.Run(ctx,
|
2019-11-03 23:01:05 +00:00
|
|
|
emulation.SetDeviceMetricsOverride(int64(float64(w.W)/w.S), 10, w.S, false),
|
2019-08-13 06:35:29 +00:00
|
|
|
chromedp.Sleep(time.Second*2),
|
2019-07-12 08:51:23 +00:00
|
|
|
chromedp.Location(&w.U),
|
2019-11-03 23:01:05 +00:00
|
|
|
chromedp.ComputedStyle("body", &styles, chromedp.ByQuery),
|
|
|
|
chromedp.ActionFunc(func(ctx context.Context) error {
|
|
|
|
_, _, s, err := page.GetLayoutMetrics().Do(ctx)
|
|
|
|
if err == nil {
|
|
|
|
h = int64(math.Ceil(s.Height))
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}),
|
2019-07-12 08:51:23 +00:00
|
|
|
)
|
2019-08-13 06:35:29 +00:00
|
|
|
for _, style := range styles {
|
|
|
|
if style.Name == "background-color" {
|
|
|
|
fmt.Sscanf(style.Value, "rgb(%d,%d,%d)", &r, &g, &b)
|
|
|
|
}
|
|
|
|
}
|
2019-11-03 23:01:05 +00:00
|
|
|
log.Printf("%s Landed on: %s, Height: %v\n", c, w.U, h)
|
2019-08-13 06:35:29 +00:00
|
|
|
w.printPage(out, fmt.Sprintf("#%02X%02X%02X", r, g, b))
|
2019-11-03 23:01:05 +00:00
|
|
|
if w.H == 0 && h > 0 {
|
|
|
|
chromedp.Run(ctx, emulation.SetDeviceMetricsOverride(int64(float64(w.W)/w.S), h+30, w.S, false))
|
|
|
|
} else {
|
|
|
|
chromedp.Run(ctx, emulation.SetDeviceMetricsOverride(int64(float64(w.W)/w.S), int64(float64(w.H)/w.S), w.S, false))
|
|
|
|
}
|
2019-08-22 07:38:36 +00:00
|
|
|
err = chromedp.Run(ctx, chromedp.CaptureScreenshot(&pngcap))
|
2019-06-24 07:40:34 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("%s Failed to capture screenshot: %s\n", c, err)
|
|
|
|
fmt.Fprintf(out, "<BR>Unable to capture screenshot:<BR>%s<BR>\n", err)
|
|
|
|
return
|
|
|
|
}
|
2019-06-26 08:07:13 +00:00
|
|
|
seq := rand.Intn(9999)
|
2019-11-04 00:58:38 +00:00
|
|
|
imgpath := fmt.Sprintf("/img/%04d.%s", seq, w.T)
|
2019-06-26 08:07:13 +00:00
|
|
|
mappath := fmt.Sprintf("/map/%04d.map", seq)
|
2019-07-11 06:58:40 +00:00
|
|
|
ismap[mappath] = w
|
2019-11-04 01:24:18 +00:00
|
|
|
var ssize string
|
2019-11-13 08:22:07 +00:00
|
|
|
var sw, sh int
|
2019-11-04 00:58:38 +00:00
|
|
|
if w.T == "gif" {
|
2019-11-03 07:56:04 +00:00
|
|
|
i, err := png.Decode(bytes.NewReader(pngcap))
|
2019-08-22 07:38:36 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("%s Failed to decode screenshot: %s\n", c, err)
|
|
|
|
fmt.Fprintf(out, "<BR>Unable to decode page screenshot:<BR>%s<BR>\n", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
var gifbuf bytes.Buffer
|
2019-11-03 07:56:04 +00:00
|
|
|
err = gif.Encode(&gifbuf, i, &gif.Options{NumColors: int(w.C), Quantizer: quantize.MedianCutQuantizer{}})
|
2019-08-22 07:38:36 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("%s Failed to encode GIF: %s\n", c, err)
|
|
|
|
fmt.Fprintf(out, "<BR>Unable to encode GIF:<BR>%s<BR>\n", err)
|
|
|
|
return
|
|
|
|
}
|
2019-11-03 07:56:04 +00:00
|
|
|
img[imgpath] = gifbuf
|
2019-11-04 01:24:18 +00:00
|
|
|
ssize = fmt.Sprintf("%.1f MB", float32(len(gifbuf.Bytes()))/1024.0/1024.0)
|
2019-11-13 08:22:07 +00:00
|
|
|
sw = i.Bounds().Max.X
|
|
|
|
sh = i.Bounds().Max.Y
|
|
|
|
log.Printf("%s Encoded GIF image: %s, Size: %s, Colors: %d, %dx%d\n", c, imgpath, ssize, w.C, sw, sh)
|
2019-11-04 00:58:38 +00:00
|
|
|
} else if w.T == "png" {
|
2019-08-22 07:38:36 +00:00
|
|
|
pngbuf := bytes.NewBuffer(pngcap)
|
2019-11-03 07:56:04 +00:00
|
|
|
img[imgpath] = *pngbuf
|
2019-11-13 08:22:07 +00:00
|
|
|
cfg, _, _ := image.DecodeConfig(pngbuf)
|
2019-11-04 01:24:18 +00:00
|
|
|
ssize = fmt.Sprintf("%.1f MB", float32(len(pngbuf.Bytes()))/1024.0/1024.0)
|
2019-11-13 08:22:07 +00:00
|
|
|
sw = cfg.Width
|
|
|
|
sh = cfg.Height
|
|
|
|
log.Printf("%s Got PNG image: %s, Size: %s, %dx%d\n", c, imgpath, ssize, sw, sh)
|
2019-08-22 07:38:36 +00:00
|
|
|
}
|
2019-11-13 08:22:07 +00:00
|
|
|
fmt.Fprintf(out, "<A HREF=\"%s\"><IMG SRC=\"%s\" BORDER=\"0\" ALT=\"Url: %s, Size: %s\" WIDTH=\"%d\" HEIGHT=\"%d\" ISMAP></A>", mappath, imgpath, w.U, ssize, sw, sh)
|
2019-11-04 01:24:18 +00:00
|
|
|
w.printFooter(out, fmt.Sprintf("%d PX", h), ssize)
|
2019-07-11 06:58:40 +00:00
|
|
|
log.Printf("%s Done with caputure for %s\n", c, w.U)
|
2019-05-29 08:29:01 +00:00
|
|
|
}
|
|
|
|
|
2019-06-18 06:53:22 +00:00
|
|
|
func haltServer(out http.ResponseWriter, req *http.Request) {
|
|
|
|
log.Printf("%s Shutdown Request for %s\n", req.RemoteAddr, req.URL.Path)
|
2019-07-17 05:47:23 +00:00
|
|
|
out.Header().Set("Cache-Control", "max-age=0")
|
|
|
|
out.Header().Set("Expires", "-1")
|
|
|
|
out.Header().Set("Pragma", "no-cache")
|
2019-08-04 07:39:21 +00:00
|
|
|
out.Header().Set("Content-Type", "text/plain")
|
2019-07-17 05:29:35 +00:00
|
|
|
fmt.Fprintf(out, "Shutting down WRP...\n")
|
|
|
|
out.(http.Flusher).Flush()
|
|
|
|
time.Sleep(time.Second * 2)
|
|
|
|
cancel()
|
2019-06-18 06:53:22 +00:00
|
|
|
srv.Shutdown(context.Background())
|
2019-07-17 05:47:23 +00:00
|
|
|
os.Exit(1)
|
2019-06-18 06:53:22 +00:00
|
|
|
}
|
|
|
|
|
2019-05-29 08:29:01 +00:00
|
|
|
func main() {
|
2019-11-03 23:38:26 +00:00
|
|
|
var addr, fgeom string
|
2019-06-04 07:58:45 +00:00
|
|
|
var head, headless bool
|
2019-06-04 00:50:16 +00:00
|
|
|
var debug bool
|
2019-11-03 23:38:26 +00:00
|
|
|
var err error
|
2019-05-29 08:52:28 +00:00
|
|
|
flag.StringVar(&addr, "l", ":8080", "Listen address:port, default :8080")
|
2019-06-04 00:50:16 +00:00
|
|
|
flag.BoolVar(&head, "h", false, "Headed mode - display browser window")
|
|
|
|
flag.BoolVar(&debug, "d", false, "Debug ChromeDP")
|
2019-08-22 07:38:36 +00:00
|
|
|
flag.BoolVar(&nodel, "n", false, "Do not free maps and images after use")
|
2019-11-04 00:58:38 +00:00
|
|
|
flag.StringVar(&deftype, "t", "gif", "Image type: gif|png")
|
2019-11-03 23:38:26 +00:00
|
|
|
flag.StringVar(&fgeom, "g", "1152x600x256", "Geometry: width x height x colors, height can be 0 for unlimited")
|
2019-05-29 08:52:28 +00:00
|
|
|
flag.Parse()
|
2019-06-04 00:50:16 +00:00
|
|
|
if head {
|
|
|
|
headless = false
|
|
|
|
} else {
|
|
|
|
headless = true
|
|
|
|
}
|
2019-11-03 23:38:26 +00:00
|
|
|
n, err := fmt.Sscanf(fgeom, "%dx%dx%d", &defgeom.w, &defgeom.h, &defgeom.c)
|
|
|
|
if err != nil || n != 3 {
|
|
|
|
log.Fatalf("Unable to parse -g geometry flag / %s", err)
|
|
|
|
}
|
2019-06-04 00:50:16 +00:00
|
|
|
opts := append(chromedp.DefaultExecAllocatorOptions[:],
|
2019-06-04 07:58:45 +00:00
|
|
|
chromedp.Flag("headless", headless),
|
2019-07-11 06:58:40 +00:00
|
|
|
chromedp.Flag("hide-scrollbars", false),
|
2019-06-04 00:50:16 +00:00
|
|
|
)
|
2019-07-17 05:29:35 +00:00
|
|
|
actx, acancel := chromedp.NewExecAllocator(context.Background(), opts...)
|
|
|
|
defer acancel()
|
2019-06-04 00:50:16 +00:00
|
|
|
if debug {
|
2019-06-04 08:23:46 +00:00
|
|
|
ctx, cancel = chromedp.NewContext(actx, chromedp.WithDebugf(log.Printf))
|
2019-06-04 00:50:16 +00:00
|
|
|
} else {
|
2019-06-04 08:23:46 +00:00
|
|
|
ctx, cancel = chromedp.NewContext(actx)
|
2019-06-04 00:50:16 +00:00
|
|
|
}
|
|
|
|
defer cancel()
|
2019-05-30 09:03:17 +00:00
|
|
|
rand.Seed(time.Now().UnixNano())
|
2019-07-17 05:29:35 +00:00
|
|
|
c := make(chan os.Signal)
|
|
|
|
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
|
|
|
|
go func() {
|
|
|
|
<-c
|
|
|
|
log.Printf("Interrupt - shutting down.")
|
|
|
|
cancel()
|
|
|
|
srv.Shutdown(context.Background())
|
|
|
|
os.Exit(1)
|
|
|
|
}()
|
2019-05-29 08:52:28 +00:00
|
|
|
http.HandleFunc("/", pageServer)
|
2019-06-26 08:07:13 +00:00
|
|
|
http.HandleFunc("/map/", mapServer)
|
2019-05-30 09:03:17 +00:00
|
|
|
http.HandleFunc("/img/", imgServer)
|
2019-06-18 06:53:22 +00:00
|
|
|
http.HandleFunc("/shutdown/", haltServer)
|
2019-05-30 01:47:03 +00:00
|
|
|
http.HandleFunc("/favicon.ico", http.NotFound)
|
2019-06-02 23:24:46 +00:00
|
|
|
log.Printf("Web Rendering Proxy Version %s\n", version)
|
2019-05-31 06:40:43 +00:00
|
|
|
log.Printf("Starting WRP http server on %s\n", addr)
|
2019-06-18 06:53:22 +00:00
|
|
|
srv.Addr = addr
|
2019-11-03 23:38:26 +00:00
|
|
|
err = srv.ListenAndServe()
|
2019-06-18 06:53:22 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
2019-05-29 08:29:01 +00:00
|
|
|
}
|