overleaf/services/clsi/README.md

189 lines
7.4 KiB
Markdown
Raw Normal View History

2019-05-07 11:41:17 -04:00
overleaf/clsi
2014-02-18 11:58:21 -05:00
===============
A web api for compiling LaTeX documents in the cloud
The Common LaTeX Service Interface (CLSI) provides a RESTful interface to traditional LaTeX tools (or, more generally, any command line tool for composing marked-up documents into a display format such as PDF or HTML). The CLSI listens on the following ports by default:
2018-10-22 11:01:17 -04:00
2021-03-10 17:36:33 -05:00
* TCP/3013 - the RESTful interface
2018-10-22 12:52:38 -04:00
* TCP/3048 - reports load information
2018-10-22 11:01:17 -04:00
* TCP/3049 - HTTP interface to control the CLSI service
2021-03-11 06:50:47 -05:00
These defaults can be modified in `config/settings.defaults.js`.
2018-10-22 11:01:17 -04:00
2021-03-16 11:29:53 -04:00
The provided `Dockerfile` builds a Docker image which has the Docker command line tools installed. The configuration in `docker-compose-config.yml` mounts the Docker socket, in order that the CLSI container can talk to the Docker host it is running in. This allows it to spin up `sibling containers` running an image with a TeX distribution installed to perform the actual compiles.
2018-10-22 11:01:17 -04:00
The CLSI can be configured through the following environment variables:
* `ALLOWED_COMPILE_GROUPS` - Space separated list of allowed compile groups
2021-03-19 08:05:22 -04:00
* `ALLOWED_IMAGES` - Space separated list of allowed Docker TeX Live images
* `CATCH_ERRORS` - Set to `true` to log uncaught exceptions
* `COMPILE_GROUP_DOCKER_CONFIGS` - JSON string of Docker configs for compile groups
2021-03-16 08:00:48 -04:00
* `COMPILES_HOST_DIR` - Working directory for LaTeX compiles
* `COMPILE_SIZE_LIMIT` - Sets the body-parser [limit](https://github.com/expressjs/body-parser#limit)
2021-03-16 08:00:48 -04:00
* `DOCKER_RUNNER` - Set to true to use sibling containers
2021-03-19 08:05:22 -04:00
* `DOCKER_RUNTIME` -
2021-03-16 08:00:48 -04:00
* `FILESTORE_DOMAIN_OVERRIDE` - The url for the filestore service e.g.`http://$FILESTORE_HOST:3009`
* `FILESTORE_PARALLEL_FILE_DOWNLOADS` - Number of parallel file downloads
2021-03-16 08:00:48 -04:00
* `LISTEN_ADDRESS` - The address for the RESTful service to listen on. Set to `0.0.0.0` to listen on all network interfaces
* `PROCESS_LIFE_SPAN_LIMIT_MS` - Process life span limit in milliseconds
* `SENTRY_DSN` - Sentry [Data Source Name](https://docs.sentry.io/product/sentry-basics/dsn-explainer/)
2021-03-16 08:00:48 -04:00
* `SMOKE_TEST` - Whether to run smoke tests
2021-03-16 11:29:53 -04:00
* `TEXLIVE_IMAGE` - The TeX Live Docker image to use for sibling containers, e.g. `gcr.io/overleaf-ops/texlive-full:2017.1`
* `TEX_LIVE_IMAGE_NAME_OVERRIDE` - The name of the registry for the Docker image e.g. `gcr.io/overleaf-ops`
* `TEXLIVE_IMAGE_USER` - When using sibling containers, the user to run as in the TeX Live image. Defaults to `tex`
2021-03-19 06:34:52 -04:00
* `TEXLIVE_OPENOUT_ANY` - Sets the `openout_any` environment variable for TeX Live (see the `\openout` primitive [documentation](http://tug.org/texinfohtml/web2c.html#tex-invocation))
2021-03-16 08:00:48 -04:00
Further environment variables configure the [metrics module](https://github.com/overleaf/metrics-module)
2018-10-22 11:01:17 -04:00
2014-02-18 11:58:21 -05:00
Installation
------------
2019-05-07 11:41:17 -04:00
The CLSI can be installed and set up as part of the entire [Overleaf stack](https://github.com/overleaf/overleaf) (complete with front end editor and document storage), or it can be run as a standalone service. To run is as a standalone service, first checkout this repository:
2014-02-18 11:58:21 -05:00
```shell
git clone git@github.com:overleaf/overleaf.git
```
2021-03-10 17:36:33 -05:00
Then build the Docker image:
```shell
docker build . -t overleaf/clsi -f services/clsi/Dockerfile
```
2021-03-10 17:36:33 -05:00
2021-03-16 11:29:53 -04:00
Then pull the TeX Live image:
2021-03-10 17:36:33 -05:00
```shell
docker pull texlive/texlive
```
2021-03-10 17:36:33 -05:00
Then start the Docker container:
```shell
docker run --rm \
-p 127.0.0.1:3013:3013 \
-e LISTEN_ADDRESS=0.0.0.0 \
-e DOCKER_RUNNER=true \
-e TEXLIVE_IMAGE=texlive/texlive \
-e TEXLIVE_IMAGE_USER=root \
-e COMPILES_HOST_DIR="$PWD/compiles" \
-v "$PWD/compiles:/overleaf/services/clsi/compiles" \
-v "$PWD/cache:/overleaf/services/clsi/cache" \
-v /var/run/docker.sock:/var/run/docker.sock \
--name clsi \
overleaf/clsi
```
2021-03-10 17:36:33 -05:00
Note: if you're running the CLSI in macOS you may need to use `-v /var/run/docker.sock.raw:/var/run/docker.sock` instead.
2021-03-10 17:36:33 -05:00
The CLSI should then be running at <http://localhost:3013>
Important note for Linux users
==============================
2021-03-19 08:05:22 -04:00
The Node application runs as user `node` in the CLSI, which has uid `1000`. As a consequence of this, the `compiles` folder gets created on your host with `uid` and `gid` set to `1000`.
```shell
ls -lnd compiles
2021-03-19 08:05:22 -04:00
```
> `drwxr-xr-x 2 1000 1000 4096 Mar 19 12:41 compiles`
2021-03-19 08:05:22 -04:00
If there is a user/group on your host which also happens to have `uid` / `gid` `1000` then that user/group will have ownership of the compiles folder on your host.
LaTeX runs in the sibling containers as the user specified in the `TEXLIVE_IMAGE_USER` environment variable. In the example above this is set to `root`, which has uid `0`. This creates a problem with the above permissions, as the root user does not have permission to write to subfolders of `compiles`.
A quick fix is to give the `root` group ownership and read write permissions to `compiles`, with `setgid` set so that new subfolders also inherit this ownership:
```shell
sudo chown -R 1000:root compiles
sudo chmod -R g+w compiles
sudo chmod g+s compiles
```
Another solution is to create a `overleaf` group and add both `root` and the user with `uid` `1000` to it. If the host does not have a user with that `uid`, you will need to create one first.
```shell
sudo useradd --uid 1000 host-node-user # If required
sudo groupadd overleaf
sudo usermod -a -G overleaf root
sudo usermod -a -G overleaf $(id -nu 1000)
sudo chown -R 1000:overleaf compiles
sudo chmod -R g+w compiles
sudo chmod g+s compiles
```
This is a facet of the way docker works on Linux. See this [upstream issue](https://github.com/moby/moby/issues/7198)
2014-02-18 11:58:21 -05:00
API
---
The CLSI is based on a JSON API.
#### Example Request
2014-02-18 12:08:26 -05:00
(Note that valid JSON should not contain any comments like the example below).
2014-02-26 10:13:09 -05:00
POST /project/<project-id>/compile
2014-02-18 12:08:26 -05:00
2021-03-10 17:36:33 -05:00
```json5
2014-02-18 12:08:26 -05:00
{
2014-02-26 10:13:09 -05:00
"compile": {
2014-02-18 12:08:26 -05:00
"options": {
// Which compiler to use. Can be latex, pdflatex, xelatex or lualatex
2014-02-26 10:13:09 -05:00
"compiler": "lualatex",
2014-02-18 12:08:26 -05:00
// How many seconds to wait before killing the process. Default is 60.
2021-03-10 17:36:33 -05:00
"timeout": 40
2014-02-18 12:08:26 -05:00
},
// The main file to run LaTeX on
2021-03-10 17:36:33 -05:00
"rootResourcePath": "main.tex",
2014-02-18 12:08:26 -05:00
// An array of files to include in the compilation. May have either the content
// passed directly, or a URL where it can be downloaded.
2021-03-10 17:36:33 -05:00
"resources": [
{
2014-02-18 12:08:26 -05:00
"path": "main.tex",
"content": "\\documentclass{article}\n\\begin{document}\nHello World\n\\end{document}"
2021-03-10 17:36:33 -05:00
}
// ,{
// "path": "image.png",
// "url": "www.example.com/image.png",
// "modified": 123456789 // Unix time since epoch
// }
]
2014-02-18 12:08:26 -05:00
}
}
```
2021-03-10 17:36:33 -05:00
With `curl`, if you place the above JSON in a file called `data.json`, the request would look like this:
```shell
curl -X POST -H 'Content-Type: application/json' -d @data.json http://localhost:3013/project/<id>/compile
```
2014-02-18 12:08:26 -05:00
You can specify any project-id in the URL, and the files and LaTeX environment will be persisted between requests.
URLs will be downloaded and cached until provided with a more recent modified date.
#### Example Response
2021-03-10 17:36:33 -05:00
```json
2014-02-18 12:08:26 -05:00
{
"compile": {
"status": "success",
"outputFiles": [{
"type": "pdf",
"url": "http://localhost:3013/project/<project-id>/output/output.pdf"
}, {
"type": "log",
"url": "http://localhost:3013/project/<project-id>/output/output.log"
}]
2014-02-18 11:58:21 -05:00
}
2014-02-18 12:08:26 -05:00
}
2014-02-18 11:58:21 -05:00
```
2014-02-18 12:11:52 -05:00
License
-------
The code in this repository is released under the GNU AFFERO GENERAL PUBLIC LICENSE, version 3. A copy can be found in the `LICENSE` file.
2021-03-10 17:36:33 -05:00
Copyright (c) Overleaf, 2014-2021.