wrp/README.md

136 lines
6.7 KiB
Markdown
Raw Normal View History

# WRP - Web Rendering Proxy
2019-06-01 01:28:48 +00:00
2019-11-04 07:55:33 +00:00
A browser-in-browser "proxy" server that allows to use historical / vintage web browsers on the modern web. It works by rendering a web page in to a GIF or PNG image with clickable imagemap.
2019-01-08 01:04:07 +00:00
2019-07-17 20:59:44 +00:00
![Internet Explorer 1.5 doing Gmail](wrp.png)
2019-12-24 10:51:44 +00:00
## Usage
2019-06-05 08:42:17 +00:00
* [Download a WRP binary](https://github.com/tenox7/wrp/releases/) and run it on a machine that will become your WRP gateway/server.
2020-04-27 22:49:59 +00:00
This machine should be pretty modern, high spec and Google Chrome / Chromium Browser is required to be preinstalled.
* Point your legacy browser to `http://address:port` of WRP server. Do not set or use it as a "proxy server".
* Type a search string or a http/https URL and click **Go**.
2021-03-08 12:48:51 +00:00
* Adjust your screen **W**idth/**H**eight/**S**cale/**C**olors to fit in your old browser.
* Scroll web page by clicking on the in-image scroll bar.
* Do not use client browser history-back, instead use **Bk** button in the app.
* To send keystrokes, fill **K** input box and press **Go**. There also are buttons for backspace, enter and arrow keys.
* You can set height **H** to `0` to render pages in to **a single tall image without the vertical scrollbar** and use client scrolling. However this should not be used with old and low spec clients. Such tall images will be very large and take long time to process, especially for GIFs.
* Prefer PNG over GIF if your browser supports it. PNG is much faster, whereas GIF requires a lot of additional processing on both client and server.
* You can re-capture page screenshot without reloading by using **St** (Stop).
* You can also reload and re-capture current page with **Re** (Reload).
2019-06-05 08:42:17 +00:00
2021-02-08 16:07:09 +00:00
## Customization
Since 4.5.1 WRP supports customizing it's own UI using HTML Template file. Download [wrp.html](wrp.html) place in the same directory with wrp binary customize it to your liking.
2019-08-04 08:14:31 +00:00
## Docker
2019-08-04 07:51:55 +00:00
2019-12-24 10:51:44 +00:00
```shell
2020-04-28 11:50:55 +00:00
$ docker run -d -p 80:8080 tenox7/wrp
2019-06-04 09:20:43 +00:00
```
2020-04-28 11:37:15 +00:00
## Google Cloud Run
2019-10-15 05:26:32 +00:00
2019-12-24 10:51:44 +00:00
```shell
2020-04-28 11:37:15 +00:00
$ gcloud run deploy --platform managed --image=gcr.io/tenox7/wrp:latest --memory=2Gi --args='-t=png','-g=1280x0x256'
2019-10-15 05:26:32 +00:00
```
2020-04-28 11:50:55 +00:00
Or from [Gcloud Console](https://console.cloud.google.com/run). Use `gcr.io/tenox7/wrp:latest` as container image URL.
2020-04-28 11:37:15 +00:00
Note that unfortunately GCR forces https. Your browser support of encryption protocols and certification authorities will vary.
## Azure Container Instances
2020-04-27 08:49:55 +00:00
```shell
2020-04-28 11:37:15 +00:00
$ az container create --resource-group wrp --name wrp --image gcr.io/tenox7/wrp:latest --cpu 1 --memory 2 --ports 80 --protocol tcp --os-type Linux --ip-address Public --command-line '/wrp -l :80 -t png -g 1280x0x256'
2020-04-27 08:49:55 +00:00
```
2020-04-28 11:50:55 +00:00
Or from the [Azure Console](https://portal.azure.com/#create/Microsoft.ContainerInstances). Use `gcr.io/tenox7/wrp:latest` or `tenox7/wrp:latest` for image name.
2020-04-28 11:37:15 +00:00
Fortunately ACI allows port 80 without encryption.
2020-04-27 08:49:55 +00:00
2019-08-04 08:14:31 +00:00
## Flags
2019-08-04 07:51:55 +00:00
2020-04-28 11:37:15 +00:00
```
2020-10-26 09:08:44 +00:00
-l listen address:port (default :8080)
2020-11-11 15:37:13 +00:00
-t image type gif or png (default gif)
2020-10-26 09:08:44 +00:00
-g image geometry, WxHxC, height can be 0 for unlimited (default 1152x600x256)
-h headless mode, hide browser window on the server (default true)
-d chromedp debug logging (default false)
-n do not free maps and gif images after use (default false)
2019-08-04 07:51:55 +00:00
```
2020-11-14 01:55:23 +00:00
## UI explanation
2020-11-14 01:56:59 +00:00
The first unnamed input box is either search (google) or URL starting with http/https
2020-11-14 01:55:23 +00:00
2020-11-14 01:56:33 +00:00
**Go** instructs browser to navigate to the url or perform search
2020-11-14 01:55:23 +00:00
2020-11-14 01:56:33 +00:00
**Bk** is History Back
2020-11-14 01:55:23 +00:00
2021-03-08 13:20:11 +00:00
**St** is Stop, also re-capture screenshot without refreshing page, for example if page
render takes a long time or it changes periodically
2021-03-08 13:17:57 +00:00
**Re** is Reload
2020-11-14 01:56:33 +00:00
**W** is width in pixels, adjust it to get rid of horizontal scroll bar
2020-11-14 01:55:23 +00:00
2020-11-14 01:56:33 +00:00
**H** is height in pixels, adjust it to get rid of vertical scroll bar.
2020-11-14 01:55:23 +00:00
It can also be set to 0 to produce one very tall image and use
client scroll. This 0 size is experimental, buggy and should be
used with PNG and lots of memory on a client side.
2021-03-08 13:17:57 +00:00
**Z** is zoom or scale
2020-11-14 01:55:23 +00:00
2020-11-14 01:56:33 +00:00
**C** is colors, for GIF images only (unused in PNG)
2020-11-14 01:55:23 +00:00
2020-11-14 01:56:33 +00:00
**K** is keystroke input, you can type some letters in it and when you click Go it will be typed in the remote browser.
2020-11-14 01:55:23 +00:00
2020-11-14 01:56:33 +00:00
**Bs** is backspace
2020-11-14 01:55:23 +00:00
2020-11-14 01:56:33 +00:00
**Rt** is return / enter
2020-11-14 01:55:23 +00:00
2020-11-14 01:56:33 +00:00
**< ^ v >** are arrow keys, typically for navigating a map, buggy.
2020-11-14 01:55:23 +00:00
2019-07-17 07:49:36 +00:00
## Minimal Requirements
2020-04-27 22:52:11 +00:00
* Server/Gateway requires modern hardware and operating system that is supported by [Go language](https://github.com/golang/go/wiki/MinimumRequirements) and Chrome/Chromium Browser, which must be installed.
2020-04-26 09:30:16 +00:00
* Client Browser needs to support `HTML FORMs` and `ISMAP`. Typically [Mosaic 2.0](http://www.ncsa.illinois.edu/enabling/mosaic/versions) would be minimum version for forms. However ISMAP was supported since 0.6B, so if you manually enter url using `?url=...`, you can use the earlier version.
2019-07-17 07:49:36 +00:00
## Troubleshooting
2020-04-26 09:30:16 +00:00
### I can't get it to run
2020-04-26 07:17:18 +00:00
This program does not have a GUI and is run from the command line. You may need to enable executable bit on Unix systems, for example:
```bash
2020-04-26 07:17:18 +00:00
$ cd ~/Downloads
$ chmod +x wrp-amd64-macos
$ ./wrp-amd64-macos -t png
```
2019-07-13 08:23:34 +00:00
## History
2019-12-24 10:51:44 +00:00
2020-10-26 09:06:45 +00:00
* Version 1.0 (2014) started as a *cgi-bin* script, adaptation of `webkit2png.py` and `pcidade.py`, [blog post](https://virtuallyfun.com/2014/03/03/surfing-modern-web-with-ancient-browsers/).
* Version 2.0 became a stand alone http-proxy server, supporting both Linux and MacOS, [another post](https://virtuallyfun.com/wordpress/2014/03/11/web-rendering-proxy-update//).
* In 2016 thanks to EFF/Certbot the whole internet migrated to HTTPS/SSL/TLS and WRP largely stopped working. Python code became unmaintainable and there was no easy way to make it work on Windows, even under WSL.
* Version 3.0 (2019) has been rewritten in [Go](https://golang.org/) using [Chromedp](https://github.com/chromedp) as browser-in-browser instead of http-proxy. The initial version was [less than 100 lines of code](https://gist.github.com/tenox7/b0f03c039b0a8b67f6c1bf47e2dd0df0).
* Version 4.0 has been completely refactored to use mouse clicks via imagemap instead parsing a href nodes.
2020-10-26 09:01:32 +00:00
* Version 4.1 added sending keystrokes in to input boxes. You can now login to Gmail. Also now runs as a Docker container and on Cloud Run/Azure Containers.
* Version 4.5 introduces rendering whole pages in to a single tall image with client scrolling.
2019-06-06 23:46:40 +00:00
2019-12-25 11:35:48 +00:00
## Credits
2019-12-24 10:51:44 +00:00
2019-06-10 22:14:17 +00:00
* Uses [chromedp](https://github.com/chromedp), thanks to [mvdan](https://github.com/mvdan) for dealing with my issues
2019-06-18 21:46:19 +00:00
* Uses [go-quantize](https://github.com/ericpauley/go-quantize), thanks to [ericpauley](https://github.com/ericpauley) for developing the missing go quantizer
2019-06-10 22:14:17 +00:00
* Thanks to Jason Stevens of [Fun With Virtualization](https://virtuallyfun.com/) for graciously hosting my rumblings
2019-07-14 08:40:17 +00:00
* Thanks to [claunia](https://github.com/claunia/) for help with the Python/Webkit version in the past
2020-09-29 05:00:20 +00:00
* Historical Python/Webkit versions and prior art can be seen in [wrp-old](https://github.com/tenox7/wrp-old) repo
2019-06-18 21:48:39 +00:00
## Legal Stuff
2019-12-24 10:51:44 +00:00
2019-06-18 21:49:32 +00:00
License: Apache 2.0
Copyright (c) 2013-2018 Antoni Sawicki
2022-11-06 09:41:40 +00:00
Copyright (c) 2019-2022 Google LLC