wrp/wrp.go

413 lines
11 KiB
Go
Raw Normal View History

2019-05-30 01:53:05 +00:00
//
// WRP - Web Rendering Proxy
//
2024-05-23 07:34:00 +00:00
// Copyright (c) 2013-2024 Antoni Sawicki
2024-01-02 10:09:38 +00:00
// Copyright (c) 2019-2024 Google LLC
2019-05-30 01:53:05 +00:00
//
2019-05-29 08:29:01 +00:00
package main
import (
"bytes"
2019-05-29 08:52:28 +00:00
"context"
2022-03-17 02:27:34 +00:00
"embed"
2019-05-29 08:52:28 +00:00
"flag"
"fmt"
"image"
"image/color/palette"
"io"
2019-05-29 08:52:28 +00:00
"log"
2022-12-08 09:49:46 +00:00
"net"
2019-05-29 08:52:28 +00:00
"net/http"
"net/url"
2019-07-17 05:29:35 +00:00
"os"
"os/signal"
2024-05-23 07:34:00 +00:00
"runtime"
2019-05-29 08:52:28 +00:00
"strconv"
"strings"
2019-07-17 05:29:35 +00:00
"syscall"
2024-06-20 06:37:44 +00:00
"text/template"
2019-05-29 08:52:28 +00:00
"time"
2019-05-29 08:29:01 +00:00
2020-09-28 19:19:27 +00:00
"github.com/MaxHalford/halfgone"
2022-11-10 04:48:18 +00:00
"github.com/soniakeys/quant/median"
2019-05-29 08:29:01 +00:00
)
2024-07-03 12:24:56 +00:00
const version = "4.8.0"
var (
addr = flag.String("l", ":8080", "Listen address:port, default :8080")
headless = flag.Bool("h", true, "Headless mode / hide browser window (default true)")
noDel = flag.Bool("n", false, "Do not free maps and images after use")
defType = flag.String("t", "gif", "Image type: png|gif|jpg")
wrpMode = flag.String("m", "ismap", "WRP Mode: ismap|html")
defImgSize = flag.Int64("is", 200, "html mode default image size")
jpgQual = flag.Int("q", 75, "Jpeg image quality, default 75%") // TODO: this should be form dropdown when jpeg is selected as image type
fgeom = flag.String("g", "1152x600x216", "Geometry: width x height x colors, height can be 0 for unlimited")
htmFnam = flag.String("ui", "wrp.html", "HTML template file for the UI")
delay = flag.Duration("s", 2*time.Second, "Delay/sleep after page is rendered and before screenshot is taken")
userAgent = flag.String("ua", "", "override chrome user agent")
)
2022-12-08 07:44:09 +00:00
2019-05-29 08:29:01 +00:00
var (
srv http.Server
actx, ctx context.Context
acncl, cncl context.CancelFunc
img = make(map[string]bytes.Buffer)
ismap = make(map[string]wrpReq)
defGeom geom
htmlTmpl *template.Template
2019-05-29 08:29:01 +00:00
)
2022-11-30 10:00:53 +00:00
//go:embed *.html
2022-03-17 02:27:34 +00:00
var fs embed.FS
type geom struct {
w int64
h int64
c int64
}
// Data for html template
type uiData struct {
Version string
2024-07-03 12:24:56 +00:00
WrpMode string
URL string
2020-10-31 15:51:20 +00:00
BgColor string
NColors int64
Width int64
Height int64
2021-03-08 13:02:22 +00:00
Zoom float64
ImgType string
2020-10-31 15:51:20 +00:00
ImgURL string
ImgSize string
ImgWidth int
ImgHeight int
2024-07-03 12:24:56 +00:00
MaxSize int64
2020-10-31 15:51:20 +00:00
MapURL string
PageHeight string
2024-06-20 06:37:44 +00:00
TeXT string
}
// Parameters for HTML print function
type printParams struct {
2020-10-31 15:51:20 +00:00
bgColor string
pageHeight string
imgSize string
imgURL string
mapURL string
imgWidth int
imgHeight int
2024-06-20 06:37:44 +00:00
text string
}
2020-04-24 10:06:21 +00:00
// WRP Request
2019-07-11 06:58:40 +00:00
type wrpReq struct {
url string // url
width int64 // width
height int64 // height
2021-03-08 13:02:22 +00:00
zoom float64 // zoom/scale
colors int64 // #colors
mouseX int64 // mouseX
mouseY int64 // mouseY
keys string // keys to send
buttons string // Fn buttons
imgType string // imgtype
2024-07-03 12:24:56 +00:00
wrpMode string // mode ismap/html
maxSize int64 // image max size for html mode
imgOpt int64
2022-11-06 09:11:49 +00:00
w http.ResponseWriter
r *http.Request
2019-06-26 00:07:43 +00:00
}
2019-06-24 07:40:34 +00:00
2020-04-24 10:06:21 +00:00
// Parse HTML Form, Process Input Boxes, Etc.
func (rq *wrpReq) parseForm() {
2022-11-06 09:11:49 +00:00
rq.r.ParseForm()
2024-07-03 12:24:56 +00:00
rq.wrpMode = rq.r.FormValue("m")
if rq.wrpMode == "" {
rq.wrpMode = *wrpMode
}
2022-11-06 09:11:49 +00:00
rq.url = rq.r.FormValue("url")
if len(rq.url) > 1 && !strings.HasPrefix(rq.url, "http") {
rq.url = fmt.Sprintf("http://www.google.com/search?q=%s", url.QueryEscape(rq.url))
2019-06-26 00:07:43 +00:00
}
2024-07-03 12:24:56 +00:00
// TODO: implement atoiOrZero
2022-11-06 09:11:49 +00:00
rq.width, _ = strconv.ParseInt(rq.r.FormValue("w"), 10, 64)
rq.height, _ = strconv.ParseInt(rq.r.FormValue("h"), 10, 64)
if rq.width < 10 && rq.height < 10 {
rq.width = defGeom.w
rq.height = defGeom.h
2019-05-29 08:52:28 +00:00
}
2022-11-06 09:11:49 +00:00
rq.zoom, _ = strconv.ParseFloat(rq.r.FormValue("z"), 64)
if rq.zoom < 0.1 {
rq.zoom = 1.0
2019-05-31 01:08:48 +00:00
}
2024-07-03 12:24:56 +00:00
rq.colors, _ = strconv.ParseInt(rq.r.FormValue("c"), 10, 64) // TODO: this needs to be jpeg quality as well
if rq.colors < 2 || rq.colors > 256 { // ... but maybe not because of this?
rq.colors = defGeom.c
2019-06-03 00:06:41 +00:00
}
2022-11-06 09:11:49 +00:00
rq.keys = rq.r.FormValue("k")
rq.buttons = rq.r.FormValue("Fn")
2024-07-03 12:24:56 +00:00
rq.maxSize, _ = strconv.ParseInt(rq.r.FormValue("s"), 10, 64)
if rq.maxSize == 0 {
rq.maxSize = *defImgSize
}
2022-11-06 09:11:49 +00:00
rq.imgType = rq.r.FormValue("t")
2022-12-08 08:55:56 +00:00
switch rq.imgType {
case "png":
case "gif":
2024-07-03 12:24:56 +00:00
rq.imgOpt = defGeom.c
2022-12-08 08:55:56 +00:00
case "jpg":
2024-07-03 12:24:56 +00:00
rq.imgOpt = int64(*jpgQual)
2022-12-08 08:55:56 +00:00
default:
2022-12-08 07:44:09 +00:00
rq.imgType = *defType
2024-07-03 12:24:56 +00:00
rq.imgOpt = 80 // TODO: fixme, this needs to be different based on image type
2019-11-04 00:58:38 +00:00
}
2022-11-06 09:11:49 +00:00
log.Printf("%s WrpReq from UI Form: %+v\n", rq.r.RemoteAddr, rq)
2019-06-26 00:07:43 +00:00
}
2020-04-24 10:06:21 +00:00
// Display WP UI
func (rq *wrpReq) printHTML(p printParams) {
2022-11-06 09:11:49 +00:00
rq.w.Header().Set("Cache-Control", "max-age=0")
rq.w.Header().Set("Expires", "-1")
rq.w.Header().Set("Pragma", "no-cache")
rq.w.Header().Set("Content-Type", "text/html")
if p.bgColor == "" {
p.bgColor = "#FFFFFF"
}
data := uiData{
Version: version,
2024-07-03 12:24:56 +00:00
WrpMode: rq.wrpMode,
URL: rq.url,
2020-10-31 15:51:20 +00:00
BgColor: p.bgColor,
Width: rq.width,
Height: rq.height,
2024-07-03 12:24:56 +00:00
NColors: rq.colors, // TODO: this needs to be also jpeg quality
Zoom: rq.zoom,
2024-07-03 12:24:56 +00:00
MaxSize: rq.maxSize,
ImgType: rq.imgType,
2020-10-31 15:51:20 +00:00
ImgSize: p.imgSize,
ImgWidth: p.imgWidth,
ImgHeight: p.imgHeight,
ImgURL: p.imgURL,
MapURL: p.mapURL,
PageHeight: p.pageHeight,
2024-06-20 06:37:44 +00:00
TeXT: p.text,
2019-11-04 01:53:20 +00:00
}
2022-11-06 09:11:49 +00:00
err := htmlTmpl.Execute(rq.w, data)
if err != nil {
2024-06-22 22:40:37 +00:00
fmt.Fprintf(rq.w, "Error: %v", err)
2019-11-04 00:58:38 +00:00
}
2019-06-26 08:07:13 +00:00
}
2022-11-29 13:50:17 +00:00
func gifPalette(i image.Image, n int64) image.Image {
switch n {
case 2:
i = halfgone.FloydSteinbergDitherer{}.Apply(halfgone.ImageToGray(i))
case 216:
var FastGifLut = [256]int{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5}
r := i.Bounds()
// NOTE: the color index computation below works only for palette.WebSafe!
p := image.NewPaletted(r, palette.WebSafe)
if i64, ok := i.(image.RGBA64Image); ok {
for y := r.Min.Y; y < r.Max.Y; y++ {
for x := r.Min.X; x < r.Max.X; x++ {
c := i64.RGBA64At(x, y)
r6 := FastGifLut[c.R>>8]
g6 := FastGifLut[c.G>>8]
b6 := FastGifLut[c.B>>8]
p.SetColorIndex(x, y, uint8(36*r6+6*g6+b6))
}
}
} else {
for y := r.Min.Y; y < r.Max.Y; y++ {
for x := r.Min.X; x < r.Max.X; x++ {
c := i.At(x, y)
r, g, b, _ := c.RGBA()
r6 := FastGifLut[r&0xff]
g6 := FastGifLut[g&0xff]
b6 := FastGifLut[b&0xff]
p.SetColorIndex(x, y, uint8(36*r6+6*g6+b6))
}
}
}
i = p
default:
q := median.Quantizer(n)
i = q.Paletted(i)
}
return i
}
// Process HTTP requests to WRP '/' url
2022-11-06 09:11:49 +00:00
func pageServer(w http.ResponseWriter, r *http.Request) {
log.Printf("%s Page Request for %s [%+v]\n", r.RemoteAddr, r.URL.Path, r.URL.RawQuery)
rq := wrpReq{
2022-11-06 09:11:49 +00:00
r: r,
w: w,
}
rq.parseForm()
if len(rq.url) < 4 {
rq.printHTML(printParams{bgColor: "#FFFFFF"})
return
}
2022-12-08 08:28:28 +00:00
rq.navigate() // TODO: if error from navigate do not capture
2024-07-03 12:24:56 +00:00
if rq.wrpMode == "html" {
2024-06-23 02:43:53 +00:00
rq.captureMarkdown()
2024-06-20 06:37:44 +00:00
return
}
2024-07-03 12:24:56 +00:00
rq.captureScreenshot()
}
// Process HTTP requests for images '/img/' url
2024-07-03 12:24:56 +00:00
// TODO: merge this with html mode IMGZ
2022-11-06 09:11:49 +00:00
func imgServer(w http.ResponseWriter, r *http.Request) {
log.Printf("%s IMG Request for %s\n", r.RemoteAddr, r.URL.Path)
2022-12-08 08:55:56 +00:00
imgBuf, ok := img[r.URL.Path]
if !ok || imgBuf.Bytes() == nil {
2022-11-06 09:11:49 +00:00
fmt.Fprintf(w, "Unable to find image %s\n", r.URL.Path)
log.Printf("%s Unable to find image %s\n", r.RemoteAddr, r.URL.Path)
return
}
2022-12-08 07:44:09 +00:00
if !*noDel {
2022-11-06 09:11:49 +00:00
defer delete(img, r.URL.Path)
}
switch {
case strings.HasSuffix(r.URL.Path, ".gif"):
2022-11-06 09:11:49 +00:00
w.Header().Set("Content-Type", "image/gif")
case strings.HasSuffix(r.URL.Path, ".png"):
2022-11-06 09:11:49 +00:00
w.Header().Set("Content-Type", "image/png")
case strings.HasSuffix(r.URL.Path, ".jpg"):
2022-12-08 08:55:56 +00:00
w.Header().Set("Content-Type", "image/jpeg")
}
2022-12-08 08:55:56 +00:00
w.Header().Set("Content-Length", strconv.Itoa(len(imgBuf.Bytes())))
2022-11-06 09:11:49 +00:00
w.Header().Set("Cache-Control", "max-age=0")
w.Header().Set("Expires", "-1")
w.Header().Set("Pragma", "no-cache")
2022-12-08 08:55:56 +00:00
w.Write(imgBuf.Bytes())
2022-11-06 09:11:49 +00:00
w.(http.Flusher).Flush()
}
// Process HTTP requests for Shutdown via '/shutdown/' url
2022-11-06 09:11:49 +00:00
func haltServer(w http.ResponseWriter, r *http.Request) {
log.Printf("%s Shutdown Request for %s\n", r.RemoteAddr, r.URL.Path)
w.Header().Set("Content-Type", "text/plain")
fmt.Fprintf(w, "Shutting down WRP...\n")
w.(http.Flusher).Flush()
time.Sleep(time.Second * 2)
cncl()
acncl()
srv.Shutdown(context.Background())
os.Exit(1)
}
// returns html template, either from html file or built-in
2020-10-29 14:16:14 +00:00
func tmpl(t string) string {
var tmpl []byte
fh, err := os.Open(t)
if err != nil {
2022-11-06 09:12:26 +00:00
goto builtin
2020-10-29 14:16:14 +00:00
}
2022-12-08 07:50:58 +00:00
defer fh.Close()
2024-07-03 12:24:56 +00:00
tmpl, err = io.ReadAll(fh)
2020-10-29 14:16:14 +00:00
if err != nil {
2022-11-06 09:12:26 +00:00
goto builtin
2020-10-29 14:16:14 +00:00
}
2022-12-08 07:50:58 +00:00
log.Printf("Got HTML UI template from %v file, size %v \n", t, len(tmpl))
2020-10-29 14:16:14 +00:00
return string(tmpl)
2022-11-06 09:12:26 +00:00
builtin:
2022-11-30 10:00:53 +00:00
fhs, err := fs.Open("wrp.html")
2020-10-29 14:16:14 +00:00
if err != nil {
log.Fatal(err)
}
2022-12-08 07:50:58 +00:00
defer fhs.Close()
2020-10-29 14:16:14 +00:00
2024-07-03 12:24:56 +00:00
tmpl, err = io.ReadAll(fhs)
2020-10-29 14:16:14 +00:00
if err != nil {
log.Fatal(err)
}
2022-12-08 07:50:58 +00:00
log.Printf("Got HTML UI template from embed\n")
2020-10-29 14:16:14 +00:00
return string(tmpl)
}
2022-12-08 09:49:46 +00:00
// Print my own IP addresses
func printIPs(b string) {
ap := strings.Split(b, ":")
if len(ap) < 1 {
log.Fatal("Wrong format of ipaddress:port")
}
log.Printf("Listen address: %v", b)
if ap[0] != "" && ap[0] != "0.0.0.0" {
return
}
a, err := net.InterfaceAddrs()
if err != nil {
log.Print("Unable to get interfaces: ", err)
return
}
var m string
for _, i := range a {
n, ok := i.(*net.IPNet)
if !ok || n.IP.IsLoopback() || strings.Contains(n.IP.String(), ":") {
continue
}
m = m + n.IP.String() + " "
}
log.Print("My IP addresses: ", m)
}
// Main
2019-05-29 08:29:01 +00:00
func main() {
var err error
2024-05-23 07:34:00 +00:00
log.SetFlags(log.LstdFlags | log.Lshortfile)
2019-05-29 08:52:28 +00:00
flag.Parse()
2024-05-23 07:34:00 +00:00
log.Printf("Web Rendering Proxy Version %s (%v)\n", version, runtime.GOARCH)
2022-12-08 09:49:46 +00:00
log.Printf("Args: %q", os.Args)
if len(os.Getenv("PORT")) > 0 {
2022-12-08 07:44:09 +00:00
*addr = ":" + os.Getenv(("PORT"))
}
2022-12-08 09:49:46 +00:00
printIPs(*addr)
2022-12-08 07:44:09 +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)
}
2024-07-03 12:24:56 +00:00
cncl, acncl = chromedpStart()
defer cncl()
2024-07-03 12:24:56 +00:00
defer acncl()
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.")
cncl()
acncl()
2019-07-17 05:29:35 +00:00
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)
2024-07-02 07:46:24 +00:00
http.HandleFunc(imgZpfx, imgServerZ)
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)
2022-12-08 07:44:09 +00:00
log.Printf("Default Img Type: %v, Geometry: %+v", *defType, defGeom)
2022-12-08 07:44:09 +00:00
htmlTmpl, err = template.New("wrp.html").Parse(tmpl(*htmFnam))
2020-10-29 14:16:14 +00:00
if err != nil {
log.Fatal(err)
}
2022-12-08 09:49:46 +00:00
log.Print("Starting WRP http server")
2022-12-08 07:44:09 +00:00
srv.Addr = *addr
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
}