pp.server - Produce & Publish Server¶
pp.server is a Pyramid based server implementation and implements the
server side functionality of the Produce & Publish platform. It is known as
the Produce & Publish Server.
The Produce & Publish Server provided web service APIs for converting HTML/XML + assets to PDF using one of the following external PDF converters:
- PrinceXML (www.princexml.com, commercial)
- PDFreactor (www.realobjects.com, commercial)
- PhantomJS (free, unsupported)
- Speedata Publisher (www.speedata.de, open-source, experimental support)
- WKHTMLTOPDF (www.wkhtmltopdf.org, open-source, experimental support)
- Vivliostyle Formatter (www.vivliostyle.com, commercial, experimental support)
- Antennahouse 6.2 (www.antennahouse.com, commercial)
In addition there is experimental support for generating EPUB documents
using Calibre (www.calibre.org, open-source).
In addition the Produce & Publish server provides a simple conversion
API for converting format A to B (as supported through LibreOffice
or OpenOffice). The conversion is build on top of unoconv.
The web service provides both synchronous and asynchronous operations.
Requirements¶
Python 3.5 or higher, no support for Python 2.x
the external binaries
- PrinceXML:
prince, - PDFreactor up to version 7:
pdfreactor, - PDFreactor version 8 or higher:
pdfreactor.py, - Unoconv:
unoconv - Speedata Publisher:
sp - Calibre:
ebook-convert - WKHTMLTOPDF:
wkhtmltopdf - Vivliostyle:
vivliostyle-formatter - Antennahouse:
run.sh
must be in the $PATH. Please refer to the installation documentation of the individual products.
- PrinceXML:
Installation¶
create an
virtualenvenvironment (Python 2.7 (or Python 3.4)) - either within your current (empty) directory or by letting virtualenv create one for you. (easy_install virtualenvifvirtualenvis not available on your system):virtualenv --no-site-packages .
or:
virtualenv --no-site-packages pp.server
install the Produce & Publish server:
bin/pip install pp.server
create a
server.iniconfiguration file (and change it according to your needs):[DEFAULT] debug = true [app:main] use = egg:pp.server reload_templates = true debug_authorization = false debug_notfound = false [server:main] use = egg:waitress#main host = 127.0.0.1 port = 6543
create a
circus.iniconfiguration file (and change it according to your needs):[watcher:pserve] cmd = bin/pserve server.ini [env:pserve] PATH = $PATH
start the server (in foreground):
bin/pserve server.ini
or start it in background:
bin/circus circus.ini --daemon
Converter requirements¶
For the PDF conversion the related converter binaries or scripts
must be included in the $PATH of your server.
princefor PrinceXMLpdfreactorfor PDFreactor 7pdfreactor8for PDFreactor 8 or higherphantomjsfor PhantomJSwkhtmltopdffor WKHTMLToPDFebook-convertfor Calibrespfor the Speedata Publishervivliostylefor the Vivliostyle Formatterantennahousefor the Antennahouse
API documentation¶
All API methods are available through a REST api following API URL endpoint:
http://host:port/api/1/<command>
With the default server configuration this translates to:
http://localhost:6543/api/1/pdf
or
http://localhost:6543/api/1/unoconv
PDF conversion API¶
Remember that all converters use HTML or XML as input for the conversion. All
input data (HTML/XML, images, stylesheets, fonts etc.) must be stored in ZIP
archive. The filename of the content must be named index.html.
You have to POST the data to the
with the following parameters:
file- the ZIP archive (multi/part encoding)converter- a string that determines the the PDF converter to be used (eitherprincexml,pdfreactor,phantomjs,vivliostyle, orcalibrefor generating EPUB content)async- asynchronous (“1”) or synchronous conversion (“0”, default)cmd_options- an optional string of command line parameters added as given to the calls of the externals converters
Returns:
The API returns its result as JSON structure with the following key-value pairs:
status- eitherOKorERRORdata- the generated PDF file encoded as base64 encoded byte stringoutput- the conversion transcript (output of the converter run)
Unoconv conversion API¶
The unoconv web service wraps the OpenOffice/LibreOffice server mode in order to perform document conversion (mainly used in the Produce & Publish world for convertering DOC(X) documents to HTML/XML).
Remember that all converters use HTML or XML as input for the conversion. All
input data (HTML/XML, images, stylesheets, fonts etc.) must be stored in ZIP
archive. The filename of the content must be named index.html.
You have to POST the data to the
with the following parameters:
file- the source files (multi/part encoding)async- asynchronous (“1”) or synchronous conversion (“0”, default)cmd_options- an optional string of command line parameters added as given to theunoconvcalls
Returns:
The API returns its result as JSON structure with the following key-value pairs:
status- eitherOKorERRORdata- the converted output files as ZIP archive (e.g. a DOCX file containing images will be converted to a HTML file plus the list of extract image files)output- the conversion transcript (output of the converter run)
Asynchronous operations¶
If you set async to ‘1’ in the API calls above then both calls
will return a JSON datastructure like
{‘job_id’: <some id>}
The job_id can be used to poll the Produce & Publish Server
in order to retrieve the conversion result asynchronously.
The poll API is provided through the URL
http://host:port/api/1/poll/<job_id>
If the conversion is still pending the API will return a JSON document
{‘done’: False}
If the conversion has finished then a PDF/Unoconv specific return JSON document will be return (same format as for the synchronous API calls). In addition the key-value pair {‘done’: True} will be included with the JSOn reply.
Introspection API methods¶
Produce & Publish server version:
returns:
{“version”: “0.3.2”, “module”: “pp.server”}
Installed/available converters:
returns:
{“unoconv”: true, “pdfreactor”: true, “phantomjs”: false, “calibre”: true, “princexml”: true}
Versions of installed converter:
returns:
{‘princexml’: ‘Version x.y’, ‘pdfreactor: ‘Version a.b.c’, ...}
Other API methods¶
Cleanup of the queue directory (removes conversion data older than one day)
returns:
{“directories_removed”: 22}
Authorization support¶
The pp.server implementation provides a simple and optional authorization
mechanism by accepting a pp-token header from the client. In order to
enable the authorization support on the server side you need to configure the
authenticator method and the authorization token in your .ini file:
[app:main]
use = egg:pp.server
...
pp.authenticator = token_auth
pp.authentication_token = 12345
The token_auth string refers to a method in pp.server.authorization
which is a simple authorization method (for the beta phase) supporting only one
token for now. The token is configured through the pp.authentication_token
value.
Any client sending a HTTP request to the pp.server server instance is required
to send a HTTP header for authorization (if enabled on the server):
pp-token: <value of token>
pp-token: 12345
Advanced installation issues¶
Installation of PDFreactor using zc.buildout¶
Installation of PrinceXML using zc.buildout¶
Production setup¶
pserve and celeryd can be started automatically and
controlled using Circus. Look into the following buildout
configuration
Source code¶
Bug tracker¶
Support¶
Support for Produce & Publish Server is currently only available on a project basis.
License¶
pp.server is published under the GNU Public License V2 (GPL 2).