A wkhtmlpdf server with drop-in client.
Why?
- avoid deploying wkhtmltopdf and it's dependencies in your application image
- keep the memory requirement of your application pods low while delegating memory hungry wkhtmltopdf jobs to dedicated pods
- easily select the wkhtmltopdf version to use at runtime
The server is not meant to be exposed to untrusted clients.
Several attack vectors exist (local file access being the most obvious). Mitigating them is not a priority, since the main use case is to use it as a private service.
A web server accepting wkhtmlpdf options and files to convert as multipart form data.
It is written in go.
A drop-in replacement for wkhtmlpdf which invokes
the above server defined in the KWKHTMLTOPDF_SERVER_URL
environment variable.
There are two clients:
- a go client (preferred)
- a python client, which only depends on the
requests
library. It should work with any python version supported byrequests
.
$ docker run --rm -p 8080:8080 ghcr.io/acsone/kwkhtmltopdf:0.12.5-latest
or
$ go run server/kwkhtmltopdf_server.go
The server should now listen on http://localhost:8080.
$ go build -o client/go/kwkhtmltopdf_client client/go/kwkhtmltopdf_client.go
$ env KWKHTMLTOPDF_SERVER_URL=http://localhost:8080 \
client/go/kwkhtmltopdf_client https://wkhtmltopdf.org /tmp/test.pdf
or
$ env KWKHTMLTOPDF_SERVER_URL=http://localhost:8080 \
client/python/kwkhtmltopdf_client.py https://wkhtmltopdf.org /tmp/test.pdf
This should generate a printout of the wkhtmltopdf home page to /tmp/test.pdf.
- Start the server.
- Set and export
KWKHTMLTOPDF_SERVER_URL
environment variable. - Run
tox
.
This will run the same tests against the the native wkhtmltopdf executable, as well as against the server using the python and go clients.
See issues on GitHub as well as some TODO's in the source code.
Push the master branch and ensure tests pass on travis.
Build the go client and server as explained above. Create and tag a release on GitHub and attach the client and server you just built to it.
Images are built and pushed to ghcr.io by a GitHub action.
Author: stephane.bidoul@acsone.eu.
Contributors:
- Nils Hamerlinck
MIT