2018-10-17 04:38:32 +02:00
|
|
|
# Non-webhook integrations
|
2016-04-01 08:23:56 +02:00
|
|
|
|
2018-10-20 18:19:26 +02:00
|
|
|
[Incoming webhook integrations](/api/incoming-webhooks-overview) are the
|
|
|
|
fastest to write, but sometimes a third-party product just doesn't support
|
|
|
|
them. Zulip supports several other types of integrations.
|
2016-04-01 08:23:56 +02:00
|
|
|
|
2018-10-17 04:38:32 +02:00
|
|
|
1. **Python script integrations**
|
2016-08-05 00:10:56 +02:00
|
|
|
(examples: SVN, Git), where we can get the service to call our integration
|
|
|
|
(by shelling out or otherwise), passing in the required data. Our preferred
|
2017-08-01 01:25:35 +02:00
|
|
|
model for these is to ship these integrations in the
|
2021-08-31 23:32:37 +02:00
|
|
|
[Zulip Python API distribution](https://github.com/zulip/python-zulip-api/tree/main/zulip),
|
2017-08-01 01:25:35 +02:00
|
|
|
within the `integrations` directory there.
|
2016-04-01 08:23:56 +02:00
|
|
|
|
2018-10-17 04:38:32 +02:00
|
|
|
1. **Plugin integrations** (examples:
|
2016-08-05 00:10:56 +02:00
|
|
|
Jenkins, Hubot, Trac) where the user needs to install a plugin into their
|
|
|
|
existing software. These are often more work, but for some products are the
|
|
|
|
only way to integrate with the product at all.
|
2016-04-01 08:23:56 +02:00
|
|
|
|
2018-10-17 04:38:32 +02:00
|
|
|
For plugin integrations, usually you will need to consult the
|
|
|
|
documentation for the third party software in order to learn how to
|
|
|
|
write the integration.
|
2016-08-05 00:16:30 +02:00
|
|
|
|
2018-10-20 18:19:26 +02:00
|
|
|
1. **Interactive bots**. See [Writing bots](/api/writing-bots).
|
|
|
|
|
2018-10-17 04:38:32 +02:00
|
|
|
A few notes on how to do these:
|
2016-08-05 00:16:30 +02:00
|
|
|
|
|
|
|
* You should always send messages by POSTing to URLs of the form
|
2016-09-27 21:41:42 +02:00
|
|
|
`https://zulip.example.com/v1/messages/`.
|
2016-08-05 00:16:30 +02:00
|
|
|
|
2018-10-20 18:19:26 +02:00
|
|
|
* We usually build Python script integrations with (at least) 2 files:
|
2017-01-04 17:58:29 +01:00
|
|
|
`zulip_foo_config.py` containing the configuration for the
|
2016-08-05 00:16:30 +02:00
|
|
|
integration including the bots' API keys, plus a script that reads
|
|
|
|
from this configuration to actually do the work (that way, it's
|
|
|
|
possible to update the script without breaking users' configurations).
|
|
|
|
|
2018-10-17 04:38:32 +02:00
|
|
|
* Be sure to test your integration carefully and
|
2019-05-30 00:39:50 +02:00
|
|
|
[document](https://zulip.readthedocs.io/en/latest/documentation/integrations.html)
|
2018-10-17 04:38:32 +02:00
|
|
|
how to install it.
|
2016-08-05 00:16:30 +02:00
|
|
|
|
|
|
|
* You should specify a clear HTTP User-Agent for your integration. The
|
|
|
|
user agent should at a minimum identify the integration and version
|
|
|
|
number, separated by a slash. If possible, you should collect platform
|
|
|
|
information and include that in `()`s after the version number. Some
|
|
|
|
examples of ideal UAs are:
|
|
|
|
|
2018-10-17 04:38:32 +02:00
|
|
|
```
|
|
|
|
ZulipDesktop/0.7.0 (Ubuntu; 14.04)
|
|
|
|
ZulipJenkins/0.1.0 (Windows; 7.2)
|
|
|
|
ZulipMobile/0.5.4 (Android; 4.2; maguro)
|
|
|
|
```
|
|
|
|
|
|
|
|
* The [general advice](/api/incoming-webhooks-overview#general-advice) for
|
|
|
|
webhook integrations applies here as well.
|