overleaf/services/clsi
2021-03-19 10:34:52 +00:00
..
.github Bump Node version to 10.22.1 2020-09-16 12:24:42 -04:00
app/js include fallback for missing state file 2021-01-26 13:59:28 +00:00
bin remove ./bin/install_texlive_gce.sh which shouldn't be needed 2020-03-11 10:06:55 +00:00
config add uncaughtException handler 2021-01-26 14:08:29 +00:00
db [misc] move the sqlite database into a db/ directory 2020-04-03 12:36:31 +02:00
seccomp add epoll_pwait to secomp profile 2019-01-24 12:30:37 +00:00
src Add in a synctex end point 2014-04-08 15:18:56 +01:00
test add unit test for non-existent state file 2021-01-26 11:03:18 +00:00
.dockerignore [misc] narrow down write access/ownership for the run-time user 2020-04-03 12:36:32 +02:00
.eslintrc [misc] bump the dev-env to 3.3.2 2020-08-10 17:01:11 +01:00
.gitignore add git ignore for output directory 2021-01-22 11:05:52 +00:00
.nvmrc [misc] bump the node version to 10.23.1 2021-01-05 18:32:01 +00:00
.prettierrc updated build-scripts 2020-03-11 11:55:44 +01:00
.viminfo update build script and add load balancer agent 2018-03-29 12:12:29 +01:00
app.js provide a /oops-internal endpoint for testing uncaughtExceptions 2021-01-26 16:35:39 +00:00
buildscript.txt [misc] bump the node version to 10.23.1 2021-01-05 18:32:01 +00:00
debug update build script and add load balancer agent 2018-03-29 12:12:29 +01:00
docker-compose-config.yml [misc] apply review feedback 2020-06-30 12:01:21 +01:00
docker-compose.ci.yml Upgrade build-scripts to 3.4.0 2020-11-24 08:03:28 -05:00
docker-compose.yml Upgrade build-scripts to 3.4.0 2020-11-24 08:03:28 -05:00
Dockerfile add output directory 2021-01-22 11:05:52 +00:00
entrypoint.sh [misc] use a directory in /tmp for temporary data 2020-04-03 12:36:32 +02:00
install_deps.sh grep works with command 2018-03-29 17:07:22 +01:00
kube.yaml updateded build scripts 2018-03-02 17:14:23 +00:00
LICENSE Create LICENSE 2014-02-18 17:09:54 +00:00
Makefile [misc] bump the dev-env to 3.3.2 2020-08-10 17:01:11 +01:00
nodemon.json [misc] bump the dev-env to 3.3.2 2020-08-10 17:01:11 +01:00
package-lock.json Bump ini from 1.3.5 to 1.3.8 2020-12-12 11:02:53 +00:00
package.json [misc] install settings-sharelatex from npm 2020-12-02 12:26:42 +00:00
patch-texlive-dockerfile update build script and add load balancer agent 2018-03-29 12:12:29 +01:00
README.md Add link to \openout primitive docs 2021-03-19 10:34:52 +00:00
synctex.profile update build script and add load balancer agent 2018-03-29 12:12:29 +01:00

overleaf/clsi

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:

  • TCP/3013 - the RESTful interface
  • TCP/3048 - reports load information
  • TCP/3049 - HTTP interface to control the CLSI service

These defaults can be modified in config/settings.defaults.js.

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.

The CLSI can be configured through the following environment variables:

  • ALLOWED_COMPILE_GROUPS - Space separated list of allowed compile groups
  • 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
  • COMPILES_HOST_DIR - Working directory for LaTeX compiles
  • COMPILE_SIZE_LIMIT - Sets the body-parser limit
  • DOCKER_RUNNER - Set to true to use sibling containers
  • DOCKER_RUNTIME -
  • FILESTORE_DOMAIN_OVERRIDE - The url for the filestore service e.g.http://$FILESTORE_HOST:3009
  • FILESTORE_PARALLEL_FILE_DOWNLOADS - Number of parallel file downloads
  • FILESTORE_PARALLEL_SQL_QUERY_LIMIT - Number of parallel SQL queries
  • 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
  • SMOKE_TEST - Whether to run smoke tests
  • SQLITE_PATH - Path to SQLite database
  • SYNCTEX_BIN_HOST_PATH - Path to SyncTeX binary
  • 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
  • TEXLIVE_OPENOUT_ANY - Sets the openout_any environment variable for TeX Live (see the \openout primitive documentation)

Further environment variables configure the metrics module

Installation

The CLSI can be installed and set up as part of the entire Overleaf stack (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:

$ git clone git@github.com:overleaf/clsi.git

Then build the Docker image:

$ docker build . -t overleaf/clsi

Then pull the TeX Live image:

$ docker pull texlive/texlive

Then start the Docker container:

$ 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:/app/compiles" \
    -v "$PWD/cache:/app/cache" \
    -v /var/run/docker.sock:/var/run/docker.sock \
    overleaf/clsi

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.

The CLSI should then be running at http://localhost:3013

Config

The CLSI will use a SQLite database by default, but you can optionally set up a MySQL database and then fill in the database name, username and password in the config file at config/settings.development.js.

API

The CLSI is based on a JSON API.

Example Request

(Note that valid JSON should not contain any comments like the example below).

POST /project/<project-id>/compile
{
    "compile": {
        "options": {
            // Which compiler to use. Can be latex, pdflatex, xelatex or lualatex
            "compiler": "lualatex",
            // How many seconds to wait before killing the process. Default is 60.
            "timeout": 40
        },
        // The main file to run LaTeX on
        "rootResourcePath": "main.tex",
        // An array of files to include in the compilation. May have either the content
        // passed directly, or a URL where it can be downloaded.
        "resources": [
          {
            "path": "main.tex",
            "content": "\\documentclass{article}\n\\begin{document}\nHello World\n\\end{document}"
          }
          // ,{
          //     "path": "image.png",
          //     "url": "www.example.com/image.png",
          //     "modified": 123456789 // Unix time since epoch
          // }
        ]
    }
}

With curl, if you place the above JSON in a file called data.json, the request would look like this:

$ curl -X POST -H 'Content-Type: application/json' -d @data.json http://localhost:3013/project/<id>/compile

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

{
    "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"
        }]
    }
}

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.

Copyright (c) Overleaf, 2014-2021.