You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

237 lines
11 KiB

8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
7 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
  1. # Go-NEB
  2. [![Build Status](https://travis-ci.org/matrix-org/go-neb.svg?branch=master)](https://travis-ci.org/matrix-org/go-neb)
  3. Go-NEB is a [Matrix](https://matrix.org) bot written in Go. It is the successor to [Matrix-NEB](https://github.com/matrix-org/Matrix-NEB), the original Matrix bot written in Python.
  4. # Table of Contents
  5. * [Quick Start](#quick-start)
  6. * [Features](#features)
  7. * [Installing](#installing)
  8. * [Running](#running)
  9. * [Configuration file](#configuration-file)
  10. * [API](#api)
  11. * [Configuring clients](#configuring-clients)
  12. * [Configuring services](#configuring-services)
  13. * [Configuring realms](#configuring-realms)
  14. * [Developing](#developing)
  15. * [Architecture](#architecture)
  16. * [API Docs](#viewing-the-api-docs)
  17. # Quick Start
  18. Clone and run (Requires Go 1.7+ and GB):
  19. ```bash
  20. gb build github.com/matrix-org/go-neb
  21. BIND_ADDRESS=:4050 DATABASE_TYPE=sqlite3 DATABASE_URL=go-neb.db?_busy_timeout=5000 BASE_URL=http://localhost:4050 bin/go-neb
  22. ```
  23. Get a Matrix user ID and access token and give it to Go-NEB:
  24. ```bash
  25. curl -X POST localhost:4050/admin/configureClient --data-binary '{
  26. "UserID": "@goneb:localhost",
  27. "HomeserverURL": "http://localhost:8008",
  28. "AccessToken": "<access_token>",
  29. "Sync": true,
  30. "AutoJoinRooms": true,
  31. "DisplayName": "My Bot"
  32. }'
  33. ```
  34. Tell it what service to run:
  35. ```bash
  36. curl -X POST localhost:4050/admin/configureService --data-binary '{
  37. "Type": "echo",
  38. "Id": "myserviceid",
  39. "UserID": "@goneb:localhost",
  40. "Config": {}
  41. }'
  42. ```
  43. Invite the bot user into a Matrix room and type `!echo hello world`. It will reply with `hello world`.
  44. ## Features
  45. ### Github
  46. - Login with OAuth2.
  47. - Ability to create Github issues on any project.
  48. - Ability to track updates (add webhooks) to projects. This includes new issues, pull requests as well as commits.
  49. - Ability to expand issues when mentioned as `foo/bar#1234`.
  50. - Ability to assign a "default repository" for a Matrix room to allow `#1234` to automatically expand, as well as shorter issue creation command syntax.
  51. ### JIRA
  52. - Login with OAuth1.
  53. - Ability to create JIRA issues on a project.
  54. - Ability to expand JIRA issues when mentioned as `FOO-1234`.
  55. ### Giphy
  56. - Ability to query Giphy's "text-to-gif" engine.
  57. ### Guggy
  58. - Ability to query Guggy's gif engine.
  59. ### RSS Bot
  60. - Ability to read Atom/RSS feeds.
  61. ### Travis CI
  62. - Ability to receive incoming build notifications.
  63. - Ability to adjust the message which is sent into the room.
  64. # Installing
  65. Go-NEB is built using Go 1.7+ and [GB](https://getgb.io/). Once you have installed Go, run the following commands:
  66. ```bash
  67. # Install gb
  68. go get github.com/constabulary/gb/...
  69. # Clone the go-neb repository
  70. git clone https://github.com/matrix-org/go-neb
  71. cd go-neb
  72. # Build go-neb
  73. gb build github.com/matrix-org/go-neb
  74. ```
  75. # Running
  76. Go-NEB uses environment variables to configure its SQLite database and bind address. To run Go-NEB, run the following command:
  77. ```bash
  78. BIND_ADDRESS=:4050 DATABASE_TYPE=sqlite3 DATABASE_URL=go-neb.db?_busy_timeout=5000 BASE_URL=https://public.facing.endpoint bin/go-neb
  79. ```
  80. - `BIND_ADDRESS` is the port to listen on.
  81. - `DATABASE_TYPE` MUST be "sqlite3". No other type is supported.
  82. - `DATABASE_URL` is where to find the database file. One will be created if it does not exist. It is a URL so parameters can be passed to it. We recommend setting `_busy_timeout=5000` to prevent sqlite3 "database is locked" errors.
  83. - `BASE_URL` should be the public-facing endpoint that sites like Github can send webhooks to.
  84. - `CONFIG_FILE` is the path to the configuration file to read from. This isn't included in the example above, so Go-NEB will operate in HTTP mode.
  85. Go-NEB needs to be "configured" with clients and services before it will do anything useful. It can be configured via a configuration file OR by an HTTP API.
  86. ## Configuration file
  87. If you run Go-NEB with a `CONFIG_FILE` environment variable, it will load that file and use it for services, clients, etc. There is a [sample configuration file](config.sample.yaml) which explains all the options. In most cases, these are *direct mappings* to the corresponding HTTP API.
  88. # API
  89. The API is documented in sections using godoc. The sections consists of:
  90. - An HTTP API (the path and method to use)
  91. - A "JSON request body" (the JSON that is inside the HTTP request body)
  92. - "Configuration" information (any additional information that is specific to what you're creating)
  93. To form the complete API, you need to combine the HTTP API with the JSON request body, and the "Configuration" information (which is always under a JSON key called `Config`). In addition, most APIs have a `Type` which determines which piece of code to load. To find out what the right type is for the thing you're creating, check the constants defined in godoc.
  94. ## Configuring Clients
  95. Go-NEB needs to connect as a matrix user to receive messages. Go-NEB can listen for messages as multiple matrix users. The users are configured using an HTTP API and the config is stored in the database.
  96. - [HTTP API Docs](https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/api/handlers/index.html#ConfigureClient.OnIncomingRequest)
  97. - [JSON Request Body Docs](https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/api/index.html#ClientConfig)
  98. ## Configuring Services
  99. Services contain all the useful functionality in Go-NEB. They require a client to operate. Services are configured using an HTTP API and the config is stored in the database. Services use one of the matrix users configured on Go-NEB to send/receive matrix messages.
  100. Every service has an "ID", "type" and "user ID". Services may specify additional "config" keys: see the specific
  101. service you're interested in for the additional keys, if any.
  102. - [HTTP API Docs](https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/api/handlers/index.html#ConfigureService.OnIncomingRequest)
  103. - [JSON Request Body Docs](https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/api/index.html#ConfigureServiceRequest)
  104. List of Services:
  105. - [Echo](https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/services/echo/) - An example service
  106. - [Giphy](https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/services/giphy/) - A GIF bot
  107. - [Github](https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/services/github/) - A Github bot
  108. - [Github Webhook](https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/services/github/index.html#WebhookService) - A Github notification bot
  109. - [Guggy](https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/services/guggy/) - A GIF bot
  110. - [JIRA](https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/services/jira/) - Integration with JIRA
  111. - [RSS Bot](https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/services/rssbot/) - An Atom/RSS feed reader
  112. - [Travis CI](https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/services/travisci/) - Receive build notifications from Travis CI
  113. ## Configuring Realms
  114. Realms are how Go-NEB authenticates users on third-party websites.
  115. - [HTTP API Docs](https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/api/handlers/index.html#ConfigureAuthRealm.OnIncomingRequest)
  116. - [JSON Request Body Docs](https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/api/index.html#ConfigureAuthRealmRequest)
  117. List of Realms:
  118. - [Github](https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/realms/github/index.html#Realm)
  119. - [JIRA](https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/realms/jira/index.html#Realm)
  120. Authentication via HTTP:
  121. - [Github](https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/realms/github/index.html#Realm.RequestAuthSession)
  122. - [JIRA](https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/realms/jira/index.html#Realm.RequestAuthSession)
  123. Authentication via the config file:
  124. - [Github](https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/realms/github/index.html#Session)
  125. - [JIRA](https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/realms/jira/index.html#Session)
  126. # Developing
  127. There's a bunch more tools this project uses when developing in order to do
  128. things like linting. Some of them are bundled with go (fmt and vet) but some
  129. are not. You should install the ones which are not:
  130. ```bash
  131. go get github.com/golang/lint/golint
  132. go get github.com/fzipp/gocyclo
  133. ```
  134. You can then install the pre-commit hook:
  135. ```bash
  136. ./hooks/install.sh
  137. ```
  138. ## Architecture
  139. ```
  140. HOMESERVER
  141. |
  142. +=============================================================+
  143. | | Go-NEB |
  144. | +---------+ |
  145. | | Clients | |
  146. | +---------+ |
  147. | | |
  148. | +---------+ +------------+ +--------------+ |
  149. | | Service |-------| Auth Realm |------| Auth Session |-+ |
  150. | +---------+ +------------+ +--------------+ | |
  151. | ^ ^ +---------------+ |
  152. | | | |
  153. +=============================================================+
  154. | |
  155. WEBHOOK REDIRECT
  156. REQUEST REQUEST
  157. Clients = A thing which can talk to homeservers and listen for events. /configureClient makes these.
  158. Service = An individual bot, configured by a user. /configureService makes these.
  159. Auth Realm = A place where a user can authenticate with. /configureAuthRealm makes these.
  160. Auth Session = An individual authentication session /requestAuthSession makes these.
  161. ```
  162. ## Viewing the API docs
  163. The full docs can be found on [Github Pages](https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb). Alternatively, you can locally host the API docs:
  164. ```
  165. # Start a documentation server listening on :6060
  166. GOPATH=$GOPATH:$(pwd) godoc -v -http=localhost:6060 &
  167. # Open up the documentation for go-neb in a browser.
  168. sensible-browser http://localhost:6060/pkg/github.com/matrix-org/go-neb
  169. ```
  170. ## Docker image
  171. There is a `Dockerfile` in the root of the repository and a `build-docker-image.sh` script that uses an alpine-based golang container to build `go-neb` (note that this will overwrite host-built binaries in `pkg/` and `bin/`) and then builds the docker image using that binary.
  172. The image sets the following environment variables:
  173. ```
  174. BIND_ADDRESS=:4050
  175. DATABASE_TYPE=sqlite3
  176. DATABASE_URL=/data/go-neb.db?_busy_timeout=5000
  177. ```
  178. The image exposes port `4050` and a volume at `/data`. The `BASE_URL` environment variable needs to be set, a volume should be mounted at `/data` and port `4050` should be appropriately mapped as desired.