2018-06-02 22:04:16 +02:00
|
|
|
# Documenting REST API endpoints
|
|
|
|
|
2019-07-20 02:45:21 +02:00
|
|
|
This document explains the system for documenting [Zulip's REST
|
2020-06-21 04:03:51 +02:00
|
|
|
API](https://zulip.com/api/rest).
|
|
|
|
|
|
|
|
Zulip's API documentation is an essential resource both for users and
|
|
|
|
for the developers of Zulip's mobile and terminal apps. Our vision is
|
|
|
|
for the documentation to be sufficiently good that developers of
|
|
|
|
Zulip's apps should never need to look at the server's implementation
|
|
|
|
to answer questions about the API's semantics.
|
|
|
|
|
|
|
|
To achieve these goals, Zulip leverages the popular OpenAPI format as
|
|
|
|
the data source to ensure that Zulip's API documentation is correct
|
|
|
|
and remains so as Zulip's API evolves.
|
|
|
|
|
|
|
|
In particular, the top goal for this system is that all mistakes in
|
|
|
|
verifiable content (i.e. not the English explanations) should cause
|
|
|
|
the Zulip test suite to fail. This is incredibly important, because
|
|
|
|
once you notice one error in API documentation, you no longer trust it
|
|
|
|
to be correct, which ends up wasting the time of its users.
|
|
|
|
|
|
|
|
Since it's very difficult to not make little mistakes when writing any
|
|
|
|
code of untested code, the only good solution to this is a way to test
|
|
|
|
the documentation. We found dozens of errors in the process of adding
|
|
|
|
the validation Zulip has today.
|
2019-07-20 02:45:21 +02:00
|
|
|
|
|
|
|
Our API documentation is defined by a few sets of files:
|
|
|
|
|
|
|
|
* Most data describing API endpoints and examples is stored in our
|
2019-09-30 19:37:56 +02:00
|
|
|
[OpenAPI configuration](../documentation/openapi.md) at
|
2019-07-20 02:45:21 +02:00
|
|
|
`zerver/openapi/zulip.yaml`.
|
|
|
|
* The top-level templates live under `templates/zerver/api/*`, and are
|
|
|
|
written using the markdown framework that powers our [user
|
2019-09-30 19:37:56 +02:00
|
|
|
docs](../documentation/user.md), with some special extensions for
|
2020-06-21 04:03:51 +02:00
|
|
|
rendering nice code blocks and example responses. We expect to
|
|
|
|
eventually remove most of these files where it is possible to
|
|
|
|
fully generate the documentation from the OpenAPI files.
|
2019-07-20 02:45:21 +02:00
|
|
|
* The text for the Python examples comes from a test suite for the
|
2019-08-04 18:14:48 +02:00
|
|
|
Python API documentation (`zerver/openapi/python_examples.py`; run via
|
2019-07-20 02:45:21 +02:00
|
|
|
`tools/test-api`). The `generate_code_example` macro will magically
|
|
|
|
read content from that test suite and render it as the code example.
|
|
|
|
This structure ensures that Zulip's API documentation is robust to a
|
|
|
|
wide range of possible typos and other bugs in the API
|
|
|
|
documentation.
|
2020-06-21 04:03:51 +02:00
|
|
|
* The JavaScript examples are similarly generated and tested using
|
|
|
|
`zerver/openapi/javascript_examples.js`.
|
|
|
|
* The cURL examples are generated and tested using
|
|
|
|
`zerver/openapi/curl_param_value_generators.py`.
|
2019-07-20 02:45:21 +02:00
|
|
|
* The REST API index
|
|
|
|
(`templates/zerver/help/include/rest-endpoints.md`) in the broader
|
|
|
|
/api left sidebar (`templates/zerver/api/sidebar_index.md`).
|
2020-06-21 04:03:51 +02:00
|
|
|
* We have an extensive set of tests designed to validate that the data
|
|
|
|
in this file is correct, `zerver/tests/test_openapi.py` compares
|
|
|
|
every endpoint's accepted parameters in `views` code with those
|
|
|
|
declared in `zulip.yaml`. And [backend test
|
|
|
|
suite](../testing/testing-with-django.md) and checks that every API
|
|
|
|
response served during our extensive backend test suite matches one
|
|
|
|
the declared OpenAPI schema for that endpoint.
|
2019-07-20 02:45:21 +02:00
|
|
|
|
|
|
|
This first section is focused on explaining how the API documentation
|
|
|
|
system is put together; when actually documenting an endpoint, you'll
|
2020-06-02 03:23:17 +02:00
|
|
|
want to also read the [Step by step guide](#step-by-step-guide).
|
2019-07-20 02:45:21 +02:00
|
|
|
|
|
|
|
## How it works
|
|
|
|
|
|
|
|
To understand how this documentation system works, start by reading an
|
|
|
|
existing doc file (`templates/zerver/api/render-message.md` is a good
|
|
|
|
example; accessible live
|
2020-06-08 23:04:39 +02:00
|
|
|
[here](https://zulip.com/api/render-message) or in the development
|
2019-07-20 02:45:21 +02:00
|
|
|
environment at `http://localhost:9991/api/render-message`).
|
|
|
|
|
2020-03-17 13:57:10 +01:00
|
|
|
We highly recommend looking at those resources while reading this page.
|
2019-07-20 02:45:21 +02:00
|
|
|
|
2019-07-22 20:56:27 +02:00
|
|
|
If you look at the documentation for existing endpoints, you'll notice
|
|
|
|
that a typical endpoint's documentation is divided into four sections:
|
2019-07-20 02:45:21 +02:00
|
|
|
|
|
|
|
* The top-level **Description**
|
|
|
|
* **Usage examples**
|
|
|
|
* **Arguments**
|
|
|
|
* **Responses**
|
|
|
|
|
|
|
|
The rest of this guide describes how each of these sections works.
|
|
|
|
|
|
|
|
### Description
|
|
|
|
|
2020-06-21 04:03:51 +02:00
|
|
|
Displayed at the top of any REST endpoint documentation page, this
|
|
|
|
should explain what the endpoint does in clear English. Include
|
|
|
|
details on how to use it correctly or what it's good or bad for, with
|
2019-07-22 20:56:27 +02:00
|
|
|
links to any alternative endpoints the user might want to consider.
|
2019-07-20 02:45:21 +02:00
|
|
|
|
2020-06-21 04:03:51 +02:00
|
|
|
These sections should often contain a link to the documentation of the
|
|
|
|
relevant feature in `/help/`.
|
2019-07-20 02:45:21 +02:00
|
|
|
|
|
|
|
### Usage examples
|
|
|
|
|
|
|
|
We display usage examples in three languages: Python, JavaScript and
|
|
|
|
`curl`; we may add more in the future. Every endpoint should have
|
|
|
|
Python and `curl` documentation; `JavaScript` is optional as we don't
|
|
|
|
consider that API library to be fully supported. The examples are
|
|
|
|
defined using a special Markdown extension
|
2020-05-19 20:11:41 +02:00
|
|
|
(`zerver/openapi/markdown_extension.py`). To use this extension, one
|
|
|
|
writes a Markdown file block that looks something like this:
|
2018-06-02 22:04:16 +02:00
|
|
|
|
2019-07-20 02:45:21 +02:00
|
|
|
```
|
|
|
|
{start_tabs}
|
|
|
|
{tab|python}
|
2020-01-22 21:00:10 +01:00
|
|
|
|
2019-07-20 02:45:21 +02:00
|
|
|
{generate_code_example(python)|/messages/render:post|example}
|
2020-01-22 21:00:10 +01:00
|
|
|
|
|
|
|
{tab|js}
|
2019-07-20 02:45:21 +02:00
|
|
|
...
|
2020-01-22 21:00:10 +01:00
|
|
|
|
|
|
|
{tab|curl}
|
|
|
|
|
|
|
|
{generate_code_example(curl)|/messages/render:post|example}
|
|
|
|
|
2019-07-20 02:45:21 +02:00
|
|
|
{end_tabs}
|
|
|
|
```
|
2018-06-02 22:04:16 +02:00
|
|
|
|
2020-06-21 04:03:51 +02:00
|
|
|
#### Writing Python examples
|
2019-07-20 02:45:21 +02:00
|
|
|
|
|
|
|
For the Python examples, you'll write the example in
|
2019-08-04 18:14:48 +02:00
|
|
|
`zerver/openapi/python_examples.py`, and it'll be run and verified
|
2019-07-20 02:45:21 +02:00
|
|
|
automatically in Zulip's automated test suite. The code there will
|
|
|
|
look something like this:
|
|
|
|
|
|
|
|
``` python
|
2020-05-09 00:10:17 +02:00
|
|
|
def render_message(client: Client) -> None:
|
2019-07-20 02:45:21 +02:00
|
|
|
# {code_example|start}
|
|
|
|
# Render a message
|
|
|
|
request = {
|
|
|
|
'content': '**foo**'
|
|
|
|
}
|
|
|
|
result = client.render_message(request)
|
|
|
|
# {code_example|end}
|
|
|
|
|
|
|
|
validate_against_openapi_schema(result, '/messages/render', 'post', '200')
|
|
|
|
```
|
2018-06-02 22:04:16 +02:00
|
|
|
|
2019-07-20 02:45:21 +02:00
|
|
|
This is an actual Python function which (if registered correctly) will
|
|
|
|
be run as part of the `tools/test-api` test suite. The
|
2019-07-22 20:56:27 +02:00
|
|
|
`validate_against_opanapi_schema` function will verify that the result
|
|
|
|
of that request is as defined in the examples in
|
|
|
|
`zerver/openapi/zulip.yaml`. To register a function correctly:
|
2019-07-20 02:45:21 +02:00
|
|
|
|
|
|
|
* You need to add it to the `TEST_FUNCTIONS` map; this declares the
|
|
|
|
relationship between function names like `render_message` and
|
|
|
|
OpenAPI endpoints like `/messages/render:post`.
|
2019-07-22 20:56:27 +02:00
|
|
|
* The `render_message` function needs to be called from
|
2019-07-20 02:45:21 +02:00
|
|
|
`test_messages` (or one of the other functions at the bottom of the
|
|
|
|
file). The final function, `test_the_api`, is what actually runs
|
2019-07-22 20:56:27 +02:00
|
|
|
the tests.
|
2019-07-20 02:45:21 +02:00
|
|
|
* Test that your code actually runs in `tools/test-api`; a good way to
|
|
|
|
do this is to break your code and make sure `tools/test-api` fails.
|
|
|
|
|
|
|
|
You will still want to manually test the example using Zulip's Python
|
|
|
|
API client by copy-pasting from the website; it's easy to make typos
|
|
|
|
and other mistakes where variables are defined outside the tested
|
|
|
|
block, and the tests are not foolproof.
|
|
|
|
|
|
|
|
The code that renders `/api` pages will extract the block between the
|
|
|
|
`# {code_example|start}` and `# {code_example|end}` comments, and
|
|
|
|
substitute it in place of
|
|
|
|
`{generate_code_example(python)|/messages/render:post|example}`
|
|
|
|
wherever that string appears in the API documentation.
|
|
|
|
|
2020-06-21 04:03:51 +02:00
|
|
|
### Parameters
|
2018-06-02 22:04:16 +02:00
|
|
|
|
2020-06-21 04:03:51 +02:00
|
|
|
We have a separate Markdown extension to document the parameters that
|
|
|
|
an API endpoint supports. You'll see this in files like
|
2019-07-20 02:45:21 +02:00
|
|
|
`templates/zerver/api/render-message.md` via the following Markdown
|
|
|
|
directive (implemented in
|
|
|
|
`zerver/lib/bugdown/api_arguments_table_generator.py`):
|
2018-06-02 22:04:16 +02:00
|
|
|
|
2019-07-20 02:45:21 +02:00
|
|
|
```
|
|
|
|
{generate_api_arguments_table|zulip.yaml|/messages/render:post}
|
|
|
|
```
|
2018-06-02 22:04:16 +02:00
|
|
|
|
2019-07-20 02:45:21 +02:00
|
|
|
Just as in the usage examples, the `/messages/render` key must match a
|
|
|
|
URL definition in `zerver/openapi/zulip.yaml`, and that URL definition
|
|
|
|
must have a `post` HTTP method defined.
|
2018-06-02 22:04:16 +02:00
|
|
|
|
2019-07-20 02:45:21 +02:00
|
|
|
### Displaying example payloads/responses
|
2018-06-02 22:04:16 +02:00
|
|
|
|
2019-07-20 02:45:21 +02:00
|
|
|
If you've already followed the steps in the [Usage examples](#usage-examples)
|
|
|
|
section, this part should be fairly trivial.
|
2018-06-02 22:04:16 +02:00
|
|
|
|
2019-07-20 02:45:21 +02:00
|
|
|
You can use the following Markdown directive to render the fixtures
|
|
|
|
defined in the OpenAPI `zulip.yaml` for a given endpoint and status
|
|
|
|
code:
|
2018-06-02 22:04:16 +02:00
|
|
|
|
|
|
|
```
|
2019-07-20 02:45:21 +02:00
|
|
|
{generate_code_example|/messages/render:post|fixture(200)}
|
2018-06-02 22:04:16 +02:00
|
|
|
```
|
|
|
|
|
2019-07-20 02:45:21 +02:00
|
|
|
## Step by step guide
|
2018-06-02 22:04:16 +02:00
|
|
|
|
2019-07-20 02:45:21 +02:00
|
|
|
This section offers a step-by-step process for adding documentation
|
|
|
|
for a new API endpoint. It assumes you've read and understood the
|
|
|
|
above.
|
2018-06-02 22:04:16 +02:00
|
|
|
|
2019-09-30 19:37:56 +02:00
|
|
|
1. Start by adding [OpenAPI format](../documentation/openapi.md)
|
2019-07-20 02:45:21 +02:00
|
|
|
data to `zerver/openapi/zulip.yaml` for the endpoint. If you
|
|
|
|
copy-paste (which is helpful to get the indentation structure
|
|
|
|
right), be sure to update all the content that you copied to
|
|
|
|
correctly describe your endpoint!
|
2019-04-23 20:30:38 +02:00
|
|
|
|
2019-07-20 02:45:21 +02:00
|
|
|
In order to do this, you need to figure out how the endpoint in
|
|
|
|
question works by reading the code! To understand how arguments
|
|
|
|
are specified in Zulip backend endpoints, read our [REST API
|
|
|
|
tutorial][rest-api-tutorial], paying special attention to the
|
|
|
|
details of `REQ` and `has_request_variables`.
|
2019-04-23 20:30:38 +02:00
|
|
|
|
2019-07-22 20:56:27 +02:00
|
|
|
Once you understand that, the best way to determine the supported
|
2019-07-20 02:45:21 +02:00
|
|
|
arguments for an API endpoint is to find the corresponding URL
|
|
|
|
pattern in `zprojects/urls.py`, look up the backend function for
|
2019-07-22 20:56:27 +02:00
|
|
|
that endpoint in `zerver/views/`, and inspect its arguments
|
2019-07-20 02:45:21 +02:00
|
|
|
declared using `REQ`.
|
2018-06-05 00:58:11 +02:00
|
|
|
|
2020-06-21 04:03:51 +02:00
|
|
|
You can check your formatting using these helpful tools.
|
2019-08-04 17:59:21 +02:00
|
|
|
* `tools/check-openapi` will verify the syntax of `zerver/openapi/zulip.yaml`.
|
2019-08-08 04:30:13 +02:00
|
|
|
* `tools/test-backend zerver/tests/test_openapi.py`; this test compares
|
2019-07-20 02:45:21 +02:00
|
|
|
your documentation against the code and can find many common
|
|
|
|
mistakes in how arguments are declared.
|
2020-06-21 04:03:51 +02:00
|
|
|
* `test-backend`: The full Zulip backend test suite will fail if
|
|
|
|
any actual API responses generated by the tests don't match your
|
|
|
|
defined OpenAPI schema. Use `test-backend --rerun` for a fast
|
|
|
|
edit/refresh cycle when debugging.
|
2018-06-02 22:04:16 +02:00
|
|
|
|
2019-07-20 02:45:21 +02:00
|
|
|
[rest-api-tutorial]: ../tutorials/writing-views.html#writing-api-rest-endpoints
|
2018-06-02 22:04:16 +02:00
|
|
|
|
2019-07-20 02:45:21 +02:00
|
|
|
1. Add a function for the endpoint you'd like to document to
|
2019-08-04 18:14:48 +02:00
|
|
|
`zerver/openapi/python_examples.py`. `render_message` is a good
|
2019-07-20 02:45:21 +02:00
|
|
|
example to follow. There are generally two key pieces to your
|
|
|
|
test: (1) doing an API query and (2) verifying its result has the
|
|
|
|
expected format using `validate_against_openapi_schema`.
|
|
|
|
|
|
|
|
1. Make the desired API call inside the function. If our Python
|
|
|
|
bindings don't have a dedicated method for a specific API call,
|
|
|
|
you may either use `client.call_endpoint` or add a dedicated
|
|
|
|
function to the [zulip PyPI
|
|
|
|
package](https://github.com/zulip/python-zulip-api/tree/master/zulip).
|
|
|
|
Ultimately, the goal is for every endpoint to be documented the
|
|
|
|
latter way, but it's useful to be able to write working
|
|
|
|
documentation for an endpoint that isn't supported by
|
|
|
|
`python-zulip-api` yet.
|
2018-06-02 22:04:16 +02:00
|
|
|
|
2019-07-20 02:45:21 +02:00
|
|
|
1. Add the function to the `TEST_FUNCTIONS` dict and one of the
|
|
|
|
`test_*` functions at the end of
|
2019-08-04 18:14:48 +02:00
|
|
|
`zerver/openapi/python_examples.py`; these will ensure your function
|
2019-07-20 02:45:21 +02:00
|
|
|
will be called when running `test-api`.
|
2018-06-02 22:04:16 +02:00
|
|
|
|
2019-07-20 02:45:21 +02:00
|
|
|
1. Capture the JSON response returned by the API call (the test
|
|
|
|
"fixture"). The easiest way to do this is add an appropriate print
|
|
|
|
statement (usually `json.dumps(result, indent=4, sort_keys=True)`),
|
|
|
|
and then run `tools/test-api`. You can also use
|
2020-03-27 01:32:21 +01:00
|
|
|
<https://jsonformatter.curiousconcept.com/> to format the JSON
|
2019-07-20 02:45:21 +02:00
|
|
|
fixtures. Add the fixture to the `example` subsection of the
|
|
|
|
`responses` section for the endpoint in
|
|
|
|
`zerver/openapi/zulip.yaml`.
|
2018-06-02 22:04:16 +02:00
|
|
|
|
2019-07-20 02:45:21 +02:00
|
|
|
1. Run `./tools/test-api` to make sure your new test function is being
|
|
|
|
run and the tests pass.
|
2018-06-02 22:04:16 +02:00
|
|
|
|
2019-07-20 02:45:21 +02:00
|
|
|
1. Now, inside the function, isolate the lines of code that call the API and could
|
|
|
|
be displayed as a code example. Wrap the relevant lines in
|
|
|
|
`# {code_example|start} ... relevant lines go here ... # {code_example|end}`
|
|
|
|
comments. The lines inside these comments are what will be displayed as the
|
|
|
|
code example on our `/api` page.
|
2018-06-02 22:04:16 +02:00
|
|
|
|
2019-07-20 02:45:21 +02:00
|
|
|
1. Finally, write the markdown file for your API endpoint under
|
|
|
|
`templates/zerver/api/`. This is usually pretty easy to template
|
|
|
|
off existing endpoints; but refer to the system explanations above
|
|
|
|
for details.
|
|
|
|
|
|
|
|
1. Add the markdown file to the index in `templates/zerver/help/include/rest-endpoints.md`.
|
|
|
|
|
2020-03-20 22:08:18 +01:00
|
|
|
1. Test your endpoint, pretending to be a new user in a hurry, by
|
|
|
|
visiting it via the links on `http://localhost:9991/api` (the API
|
|
|
|
docs are rendered from the markdown source files on page load, so
|
|
|
|
just reload to see an updated version as you edit). You should
|
|
|
|
make sure that copy-pasting the code in your examples works, and
|
|
|
|
post an example of the output in the pull request.
|
2019-07-20 02:45:21 +02:00
|
|
|
|
|
|
|
[javascript-examples]: https://github.com/zulip/zulip-js/tree/master/examples
|
|
|
|
|
|
|
|
## Why a custom system?
|
|
|
|
|
|
|
|
Given that our documentation is written in large part using the
|
2019-07-22 20:56:27 +02:00
|
|
|
OpenAPI format, why maintain a custom markdown system for displaying
|
|
|
|
it? There's several major benefits to this system:
|
2019-07-20 02:45:21 +02:00
|
|
|
|
|
|
|
* It is extremely common for API documentation to become out of date
|
|
|
|
as an API evolves; this automated testing system helps make it
|
|
|
|
possible for Zulip to maintain accurate documentation without a lot
|
|
|
|
of manual management.
|
|
|
|
* Every Zulip server can host correct API documentation for its
|
|
|
|
version, with the key variables (like the Zulip server URL) already
|
2020-06-21 19:56:40 +02:00
|
|
|
pre-substituted for the user.
|
2019-07-20 02:45:21 +02:00
|
|
|
* We're able to share implementation language and visual styling with
|
2020-06-21 04:03:51 +02:00
|
|
|
our Help Center, which is especially useful for the extensive
|
2019-07-20 02:45:21 +02:00
|
|
|
non-REST API documentation pages (e.g. our bot framework).
|
2020-06-21 04:03:51 +02:00
|
|
|
|
|
|
|
Using the standard OpenAPI format gives us flexibility, though; if we
|
|
|
|
later choose to migrate to third-party tools, we don't need to redo
|
|
|
|
the actual documentation work in order to migrate tools.
|