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-05-30 06:49:39 +00:00
|
|
|
_ "image"
|
|
|
|
"image/gif"
|
|
|
|
"image/png"
|
2019-05-29 08:52:28 +00:00
|
|
|
"log"
|
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-05-30 07:07:08 +00:00
|
|
|
"os"
|
2019-05-29 08:52:28 +00:00
|
|
|
"strconv"
|
|
|
|
"time"
|
2019-05-29 08:29:01 +00:00
|
|
|
|
2019-05-29 09:39:06 +00:00
|
|
|
"github.com/chromedp/cdproto/emulation"
|
|
|
|
|
2019-05-29 08:52:28 +00:00
|
|
|
"github.com/chromedp/cdproto/cdp"
|
|
|
|
"github.com/chromedp/cdproto/dom"
|
|
|
|
"github.com/chromedp/chromedp"
|
2019-05-29 08:29:01 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2019-05-29 08:52:28 +00:00
|
|
|
ctx context.Context
|
|
|
|
cancel context.CancelFunc
|
2019-05-30 09:03:17 +00:00
|
|
|
gifmap = make(map[string]bytes.Buffer)
|
2019-05-29 08:29:01 +00:00
|
|
|
)
|
|
|
|
|
2019-05-31 01:08:48 +00:00
|
|
|
func pageServer(out http.ResponseWriter, r *http.Request) {
|
|
|
|
r.ParseForm()
|
|
|
|
u := r.FormValue("url")
|
|
|
|
w, _ := strconv.ParseInt(r.FormValue("w"), 10, 64)
|
|
|
|
if w < 10 {
|
|
|
|
w = 1024
|
|
|
|
}
|
|
|
|
h, _ := strconv.ParseInt(r.FormValue("h"), 10, 64)
|
|
|
|
if h < 10 {
|
|
|
|
h = 768
|
2019-05-29 08:52:28 +00:00
|
|
|
}
|
2019-05-31 01:08:48 +00:00
|
|
|
s, _ := strconv.ParseFloat(r.FormValue("s"), 64)
|
|
|
|
if s < 0.1 {
|
|
|
|
s = 1.0
|
|
|
|
}
|
|
|
|
log.Printf("%s Page Reqest for url=\"%s\" [%s]\n", r.RemoteAddr, u, r.URL.Path)
|
2019-05-29 08:52:28 +00:00
|
|
|
out.Header().Set("Content-Type", "text/html")
|
2019-05-31 01:08:48 +00:00
|
|
|
fmt.Fprintf(out, "<HTML>\n<HEAD><TITLE>WRP %s</TITLE>\n<BODY BGCOLOR=\"#F0F0F0\">", u)
|
|
|
|
fmt.Fprintf(out, "<FORM ACTION=\"/\">URL: <INPUT TYPE=\"TEXT\" NAME=\"url\" VALUE=\"%s\" SIZE=\"40\">", u)
|
|
|
|
fmt.Fprintf(out, "<INPUT TYPE=\"SUBMIT\" VALUE=\"Go\"><P>\n")
|
|
|
|
fmt.Fprintf(out, "Width:<INPUT TYPE=\"TEXT\" NAME=\"w\" VALUE=\"%d\" SIZE=\"5\"> \n", w)
|
|
|
|
fmt.Fprintf(out, "Height:<INPUT TYPE=\"TEXT\" NAME=\"h\" VALUE=\"%d\" SIZE=\"5\"> \n", h)
|
2019-05-31 01:10:52 +00:00
|
|
|
fmt.Fprintf(out, "Scale:<INPUT TYPE=\"TEXT\" NAME=\"s\" VALUE=\"%1.2f\" SIZE=\"4\"> \n", s)
|
2019-05-31 01:08:48 +00:00
|
|
|
fmt.Fprintf(out, "</FORM><P>")
|
|
|
|
if len(u) > 4 {
|
|
|
|
capture(u, w, h, s, out)
|
|
|
|
} else {
|
|
|
|
fmt.Fprintf(out, "No URL specified")
|
2019-05-29 08:52:28 +00:00
|
|
|
}
|
|
|
|
fmt.Fprintf(out, "</BODY>\n</HTML>\n")
|
2019-05-29 08:29:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func imgServer(out http.ResponseWriter, req *http.Request) {
|
2019-05-30 09:03:17 +00:00
|
|
|
log.Printf("%s Img Request for %s\n", req.RemoteAddr, req.URL.Path)
|
|
|
|
gifbuf := gifmap[req.URL.Path]
|
|
|
|
defer delete(gifmap, req.URL.Path)
|
2019-05-30 01:02:29 +00:00
|
|
|
out.Header().Set("Content-Type", "image/gif")
|
|
|
|
out.Header().Set("Content-Length", strconv.Itoa(len(gifbuf.Bytes())))
|
|
|
|
out.Write(gifbuf.Bytes())
|
2019-05-30 09:03:17 +00:00
|
|
|
out.(http.Flusher).Flush()
|
2019-05-29 08:29:01 +00:00
|
|
|
}
|
|
|
|
|
2019-05-30 07:07:08 +00:00
|
|
|
func haltServer(out http.ResponseWriter, req *http.Request) {
|
|
|
|
log.Printf("%s Shutdown request received [%s]\n", req.RemoteAddr, req.URL.Path)
|
|
|
|
out.Header().Set("Content-Type", "text/plain")
|
|
|
|
fmt.Fprintf(out, "WRP Shutdown")
|
|
|
|
out.(http.Flusher).Flush()
|
|
|
|
cancel()
|
|
|
|
os.Exit(0)
|
|
|
|
}
|
|
|
|
|
2019-05-31 01:08:48 +00:00
|
|
|
func capture(gourl string, w int64, h int64, s float64, out http.ResponseWriter) {
|
2019-05-29 08:52:28 +00:00
|
|
|
var nodes []*cdp.Node
|
|
|
|
ctxx := chromedp.FromContext(ctx)
|
2019-05-30 09:03:17 +00:00
|
|
|
var pngbuf []byte
|
|
|
|
var gifbuf bytes.Buffer
|
2019-05-30 01:48:07 +00:00
|
|
|
var loc string
|
2019-05-29 08:29:01 +00:00
|
|
|
|
2019-05-30 09:03:17 +00:00
|
|
|
log.Printf("Processing Caputure Request for %s\n", gourl)
|
2019-05-29 09:39:06 +00:00
|
|
|
|
2019-05-30 09:03:17 +00:00
|
|
|
// Run ChromeDP Magic
|
2019-05-29 08:52:28 +00:00
|
|
|
chromedp.Run(ctx,
|
2019-05-31 01:08:48 +00:00
|
|
|
emulation.SetDeviceMetricsOverride(w, h, s, false),
|
2019-05-30 01:48:07 +00:00
|
|
|
chromedp.Navigate(gourl),
|
2019-05-29 08:52:28 +00:00
|
|
|
chromedp.Sleep(time.Second*2),
|
2019-05-30 09:03:17 +00:00
|
|
|
chromedp.CaptureScreenshot(&pngbuf),
|
2019-05-30 01:48:07 +00:00
|
|
|
chromedp.Location(&loc),
|
2019-05-29 08:52:28 +00:00
|
|
|
chromedp.Nodes("a", &nodes, chromedp.ByQueryAll))
|
2019-05-29 08:29:01 +00:00
|
|
|
|
2019-05-30 01:48:07 +00:00
|
|
|
log.Printf("Landed on: %s, Got %d nodes\n", loc, len(nodes))
|
|
|
|
|
2019-05-30 09:03:17 +00:00
|
|
|
// Process Screenshot Image
|
2019-05-30 09:15:52 +00:00
|
|
|
bytes.NewReader(pngbuf).Seek(0, 0)
|
2019-05-30 09:03:17 +00:00
|
|
|
img, err := png.Decode(bytes.NewReader(pngbuf))
|
2019-05-30 01:48:07 +00:00
|
|
|
if err != nil {
|
2019-05-30 06:49:39 +00:00
|
|
|
log.Printf("Failed to decode screenshot: %s\n", err)
|
|
|
|
fmt.Fprintf(out, "<BR>Unable to decode page screenshot:<BR>%s<BR>\n", err)
|
|
|
|
return
|
2019-05-30 01:48:07 +00:00
|
|
|
}
|
|
|
|
gifbuf.Reset()
|
2019-05-30 07:53:59 +00:00
|
|
|
err = gif.Encode(&gifbuf, img, nil)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("Failed to encode GIF: %s\n", err)
|
|
|
|
fmt.Fprintf(out, "<BR>Unable to encode GIF:<BR>%s<BR>\n", err)
|
|
|
|
return
|
|
|
|
}
|
2019-05-30 09:03:17 +00:00
|
|
|
imgpath := fmt.Sprintf("/img/%04d.gif", rand.Intn(9999))
|
|
|
|
gifmap[imgpath] = gifbuf
|
2019-05-30 01:02:29 +00:00
|
|
|
|
2019-05-30 09:03:17 +00:00
|
|
|
// Process Nodes
|
2019-05-30 01:48:07 +00:00
|
|
|
base, _ := url.Parse(loc)
|
2019-05-30 09:03:17 +00:00
|
|
|
fmt.Fprintf(out, "<IMG SRC=\"%s\" ALT=\"wrp\" USEMAP=\"#map\">\n<MAP NAME=\"map\">\n", imgpath)
|
|
|
|
log.Printf("Image path will be: %s", imgpath)
|
2019-05-29 08:29:01 +00:00
|
|
|
|
2019-05-29 08:52:28 +00:00
|
|
|
for _, n := range nodes {
|
|
|
|
b, err := dom.GetBoxModel().WithNodeID(n.NodeID).Do(cdp.WithExecutor(ctx, ctxx.Target))
|
2019-05-30 01:48:07 +00:00
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
tgt, err := base.Parse(n.AttributeValue("href"))
|
|
|
|
if err != nil {
|
|
|
|
continue
|
2019-05-29 08:52:28 +00:00
|
|
|
}
|
2019-05-31 01:10:52 +00:00
|
|
|
target := fmt.Sprintf("/?url=%s&w=%d&h=%d&s=%1.2f", tgt, w, h, s)
|
2019-05-29 08:29:01 +00:00
|
|
|
|
2019-05-30 01:48:07 +00:00
|
|
|
if len(b.Content) > 6 && len(target) > 7 {
|
2019-05-29 08:52:28 +00:00
|
|
|
fmt.Fprintf(out, "<AREA SHAPE=\"RECT\" COORDS=\"%.f,%.f,%.f,%.f\" ALT=\"%s\" TITLE=\"%s\" HREF=\"%s\">\n",
|
2019-05-31 06:40:43 +00:00
|
|
|
b.Content[0]*s, b.Content[1]*s, b.Content[4]*s, b.Content[5]*s, n.AttributeValue("href"), n.AttributeValue("href"), target)
|
2019-05-29 08:52:28 +00:00
|
|
|
}
|
|
|
|
}
|
2019-05-29 08:29:01 +00:00
|
|
|
|
2019-05-29 08:52:28 +00:00
|
|
|
fmt.Fprintf(out, "</MAP>\n")
|
2019-05-30 09:03:17 +00:00
|
|
|
out.(http.Flusher).Flush()
|
2019-05-30 01:48:07 +00:00
|
|
|
log.Printf("Done with caputure for %s\n", gourl)
|
2019-05-29 08:29:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2019-05-29 08:52:28 +00:00
|
|
|
ctx, cancel = chromedp.NewContext(context.Background())
|
|
|
|
defer cancel()
|
|
|
|
var addr string
|
|
|
|
flag.StringVar(&addr, "l", ":8080", "Listen address:port, default :8080")
|
|
|
|
flag.Parse()
|
2019-05-30 09:03:17 +00:00
|
|
|
rand.Seed(time.Now().UnixNano())
|
2019-05-29 08:52:28 +00:00
|
|
|
http.HandleFunc("/", pageServer)
|
2019-05-30 09:03:17 +00:00
|
|
|
http.HandleFunc("/img/", imgServer)
|
2019-05-30 01:47:03 +00:00
|
|
|
http.HandleFunc("/favicon.ico", http.NotFound)
|
2019-05-30 07:07:08 +00:00
|
|
|
http.HandleFunc("/halt", haltServer)
|
2019-05-31 06:40:43 +00:00
|
|
|
log.Printf("Starting WRP http server on %s\n", addr)
|
2019-05-29 08:52:28 +00:00
|
|
|
http.ListenAndServe(addr, nil)
|
2019-05-29 08:29:01 +00:00
|
|
|
}
|