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.

430 lines
17 KiB

8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
  1. # Go-NEB
  2. 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.
  3. # Table of Contents
  4. * [Quick Start](#quick-start)
  5. * [Features](#features)
  6. * [Installing](#installing)
  7. * [Running](#running)
  8. * [Configuration file](#configuration-file)
  9. * [Configuring clients](#configuring-clients)
  10. * [Configuring services](#configuring-services)
  11. * [Echo Service](#echo-service)
  12. * [Github Service](#github-service)
  13. * [Github Webhook Service](#github-webhook-service)
  14. * [JIRA Service](#jira-service)
  15. * [Giphy Service](#giphy-service)
  16. * [Configuring realms](#configuring-realms)
  17. * [Github Realm](#github-realm)
  18. * [Github Authentication](#github-authentication)
  19. * [JIRA Realm](#jira-realm)
  20. * [Developing](#developing)
  21. * [Architecture](#architecture)
  22. * [API Docs](#viewing-the-api-docs)
  23. # Quick Start
  24. Clone and run (Requires Go 1.5+ and GB):
  25. ```bash
  26. gb build github.com/matrix-org/go-neb
  27. BIND_ADDRESS=:4050 DATABASE_TYPE=sqlite3 DATABASE_URL=go-neb.db?_busy_timeout=5000 BASE_URL=http://localhost:4050 bin/go-neb
  28. ```
  29. Get a Matrix user ID and access token and give it to Go-NEB:
  30. ```bash
  31. curl -X POST localhost:4050/admin/configureClient --data-binary '{
  32. "UserID": "@goneb:localhost",
  33. "HomeserverURL": "http://localhost:8008",
  34. "AccessToken": "<access_token>",
  35. "Sync": true,
  36. "AutoJoinRooms": true,
  37. "DisplayName": "My Bot"
  38. }'
  39. ```
  40. Tell it what service to run:
  41. ```bash
  42. curl -X POST localhost:4050/admin/configureService --data-binary '{
  43. "Type": "echo",
  44. "Id": "myserviceid",
  45. "UserID": "@goneb:localhost",
  46. "Config": {}
  47. }'
  48. ```
  49. Invite the bot user into a Matrix room and type `!echo hello world`. It will reply with `hello world`.
  50. ## Features
  51. ### Github
  52. - Login with OAuth2.
  53. - Ability to create Github issues on any project.
  54. - Ability to track updates (add webhooks) to projects. This includes new issues, pull requests as well as commits.
  55. - Ability to expand issues when mentioned as `foo/bar#1234`.
  56. - Ability to assign a "default repository" for a Matrix room to allow `#1234` to automatically expand, as well as shorter issue creation command syntax.
  57. ### JIRA
  58. - Login with OAuth1.
  59. - Ability to create JIRA issues on a project.
  60. - Ability to expand JIRA issues when mentioned as `FOO-1234`.
  61. ### Giphy
  62. - Ability to query Giphy's "text-to-gif" engine.
  63. # Installing
  64. Go-NEB is built using Go 1.5+ and [GB](https://getgb.io/). Once you have installed Go, run the following commands:
  65. ```bash
  66. # Install gb
  67. go get github.com/constabulary/gb/...
  68. # Clone the go-neb repository
  69. git clone https://github.com/matrix-org/go-neb
  70. cd go-neb
  71. # Build go-neb
  72. gb build github.com/matrix-org/go-neb
  73. ```
  74. # Running
  75. Go-NEB uses environment variables to configure its SQLite database and bind address. To run Go-NEB, run the following command:
  76. ```bash
  77. BIND_ADDRESS=:4050 DATABASE_TYPE=sqlite3 DATABASE_URL=go-neb.db?_busy_timeout=5000 BASE_URL=https://public.facing.endpoint bin/go-neb
  78. ```
  79. - `BIND_ADDRESS` is the port to listen on.
  80. - `DATABASE_TYPE` MUST be "sqlite3". No other type is supported.
  81. - `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.
  82. - `BASE_URL` should be the public-facing endpoint that sites like Github can send webhooks to.
  83. - `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.
  84. 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.
  85. ## Configuration file
  86. 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.
  87. ## Configuring Clients
  88. 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.
  89. - [HTTP API Docs](https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/api/handlers/index.html#ConfigureClient.OnIncomingRequest)
  90. - [JSON Request Body Docs](https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/api/index.html#ClientConfig)
  91. ## Configuring Services
  92. 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.
  93. - [HTTP API Docs](https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/api/handlers/index.html#ConfigureService.OnIncomingRequest)
  94. - [JSON Request Body Docs](https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/api/index.html#ConfigureServiceRequest)
  95. ### Echo Service
  96. The simplest service. This will echo back any `!echo` command. To configure one:
  97. ```bash
  98. curl -X POST localhost:4050/admin/configureService --data-binary '{
  99. "Type": "echo",
  100. "Id": "myserviceid",
  101. "UserID": "@goneb:localhost:8448",
  102. "Config": {
  103. }
  104. }'
  105. ```
  106. Then invite `@goneb:localhost:8448` to any Matrix room and it will automatically join (if the client was configured to do so). Then try typing `!echo hello world` and the bot will respond with `hello world`.
  107. ### Github Service
  108. *Before you can set up a Github Service, you need to set up a [Github Realm](#github-realm).*
  109. *This service [requires a client](#configuring-clients) which has `Sync: true`.*
  110. This service will add the following command for [users who have associated their account with Github](#github-authentication):
  111. ```
  112. !github create owner/repo "Some title" "Some description"
  113. ```
  114. This service will also expand the following string into a short summary of the Github issue:
  115. ```
  116. owner/repo#1234
  117. ```
  118. You can create this service like so:
  119. ```bash
  120. curl -X POST localhost:4050/admin/configureService --data-binary '{
  121. "Type": "github",
  122. "Id": "githubcommands",
  123. "UserID": "@goneb:localhost",
  124. "Config": {
  125. "RealmID": "mygithubrealm"
  126. }
  127. }'
  128. ```
  129. - `RealmID`: The ID of the Github Realm you created earlier.
  130. You can set a "default repository" for a Matrix room by sending a `m.room.bot.options` state event which has the following `content`:
  131. ```json
  132. {
  133. "github": {
  134. "default_repo": "owner/repo"
  135. }
  136. }
  137. ```
  138. This will allow you to omit the `owner/repo` from both commands and expansions e.g `#12` will be treated as `owner/repo#12`.
  139. ### Github Webhook Service
  140. *Before you can set up a Github Webhook Service, you need to set up a [Github Realm](#github-realm).*
  141. This service will send notices into a Matrix room when Github sends webhook events to it. It requires a public domain which Github can reach. This service does not require a syncing client. Notices will be sent as the given `UserID`. To create this service:
  142. ```bash
  143. curl -X POST localhost:4050/admin/configureService --data-binary '{
  144. "Type": "github-webhook",
  145. "Id": "ghwebhooks",
  146. "UserID": "@goneb:localhost",
  147. "Config": {
  148. "RealmID": "mygithubrealm",
  149. "SecretToken": "a random string",
  150. "ClientUserID": "@a_real_user:localhost",
  151. "Rooms": {
  152. "!wefiuwegfiuwhe:localhost": {
  153. "Repos": {
  154. "owner/repo": {
  155. "Events": ["push"]
  156. },
  157. "owner/another-repo": {
  158. "Events": ["issues"]
  159. }
  160. }
  161. }
  162. }
  163. }
  164. }'
  165. ```
  166. - `RealmID`: The ID of the Github realm you created earlier.
  167. - `SecretToken`: Optional. If supplied, Go-NEB will perform security checks on incoming webhook requests using this token.
  168. - `ClientUserID`: The user ID of the Github user to setup webhooks as. This user MUST have [associated their user ID with a Github account](#github-authentication). Webhooks will be created using their OAuth token.
  169. - `Rooms`: A map of room IDs to room info.
  170. - `Repos`: A map of repositories to repo info.
  171. - `Events`: A list of webhook events to send into this room. Can be any of:
  172. - `push`: When users push to this repository.
  173. - `pull_request`: When a pull request is made to this repository.
  174. - `issues`: When an issue is opened/closed.
  175. - `issue_comment`: When an issue or pull request is commented on.
  176. - `pull_request_review_comment`: When a line comment is made on a pull request.
  177. ### JIRA Service
  178. *Before you can set up a JIRA Service, you need to set up a [JIRA Realm](#jira-realm).*
  179. TODO: Expand this section.
  180. ```
  181. curl -X POST localhost:4050/admin/configureService --data-binary '{
  182. "Type": "jira",
  183. "Id": "jid",
  184. "UserID": "@goneb:localhost",
  185. "Config": {
  186. "ClientUserID": "@example:localhost",
  187. "Rooms": {
  188. "!EmwxeXCVubhskuWvaw:localhost": {
  189. "Realms": {
  190. "jira_realm_id": {
  191. "Projects": {
  192. "BOTS": {
  193. "Expand": true,
  194. "Track": true
  195. }
  196. }
  197. }
  198. }
  199. }
  200. }
  201. }
  202. }'
  203. ```
  204. ### Giphy Service
  205. A simple service that adds the ability to use the `!giphy` command. To configure one:
  206. ```bash
  207. curl -X POST localhost:4050/admin/configureService --data-binary '{
  208. "Type": "giphy",
  209. "Id": "giphyid",
  210. "UserID": "@goneb:localhost",
  211. "Config": {
  212. "APIKey": "YOUR_API_KEY"
  213. }
  214. }'
  215. ```
  216. Then invite the user into a room and type `!giphy food` and it will respond with a GIF.
  217. ## Configuring Realms
  218. Realms are how Go-NEB authenticates users on third-party websites. Every realm MUST have the following fields:
  219. - `ID` : An arbitrary string you can use to remember what the realm is.
  220. - `Type`: The type of realm. This determines what code gets executed.
  221. - `Config`: A JSON object. The contents depends on the realm `Type`.
  222. They are configured like so:
  223. ```bash
  224. curl -X POST localhost:4050/admin/configureAuthRealm --data-binary '{
  225. "ID": "some_arbitrary_string",
  226. "Type": "some_realm_type",
  227. "Config": {
  228. ...
  229. }
  230. }'
  231. ```
  232. ### Github Realm
  233. This has the `Type` of `github`. To set up this realm:
  234. ```bash
  235. curl -X POST localhost:4050/admin/configureAuthRealm --data-binary '{
  236. "ID": "mygithubrealm",
  237. "Type": "github",
  238. "Config": {
  239. "ClientSecret": "YOUR_CLIENT_SECRET",
  240. "ClientID": "YOUR_CLIENT_ID",
  241. "StarterLink": "https://example.com/requestGithubOAuthToken"
  242. }
  243. }'
  244. ```
  245. - `ClientSecret`: Your Github application client secret
  246. - `ClientID`: Your Github application client ID
  247. - `StarterLink`: Optional. If supplied, `!github` commands will return this link whenever someone is prompted to login to Github.
  248. #### Github authentication
  249. Once you have configured a Github realm, you can associate any Matrix user ID with any Github user. To do this:
  250. ```bash
  251. curl -X POST localhost:4050/admin/requestAuthSession --data-binary '{
  252. "RealmID": "mygithubrealm",
  253. "UserID": "@real_matrix_user:localhost",
  254. "Config": {
  255. "RedirectURL": "https://optional-url.com/to/redirect/to/after/auth"
  256. }
  257. }'
  258. ```
  259. - `UserID`: The Matrix user ID to associate with.
  260. - `RedirectURL`: Optional. The URL to redirect to after authentication.
  261. This request will return an OAuth URL:
  262. ```json
  263. {
  264. "URL": "https://github.com/login/oauth/authorize?client_id=abcdef&client_secret=acascacac...."
  265. }
  266. ```
  267. Follow this link to associate this user ID with this Github account. Once this is complete, Go-NEB will have an OAuth token for this user ID and will be able to create issues as their real Github account.
  268. To remove this session:
  269. ```bash
  270. curl -X POST localhost:4050/admin/removeAuthSession --data-binary '{
  271. "RealmID": "mygithubrealm",
  272. "UserID": "@real_matrix_user:localhost",
  273. "Config": {}
  274. }'
  275. ```
  276. ### JIRA Realm
  277. This has the `Type` of `jira`. To set up this realm:
  278. ```bash
  279. curl -X POST localhost:4050/admin/configureAuthRealm --data-binary '{
  280. "ID": "jirarealm",
  281. "Type": "jira",
  282. "Config": {
  283. "JIRAEndpoint": "matrix.org/jira/",
  284. "ConsumerName": "goneb",
  285. "ConsumerKey": "goneb",
  286. "ConsumerSecret": "random_long_string",
  287. "PrivateKeyPEM": "-----BEGIN RSA PRIVATE KEY-----\r\nMIIEowIBAAKCAQEA39UhbOvQHEkBP9fGnhU+eSObTWBDGWygVYzbcONOlqEOTJUN\r\n8gmnellWqJO45S4jB1vLLnuXiHqEWnmaShIvbUem3QnDDqghu0gfqXHMlQr5R8ZP\r\norTt1F2idWy1wk5rVXeLKSG7uriYhDVOVS69WuefoW5v55b5YZV283v2jROjxHuj\r\ngAsJA7k6tvpYiSXApUl6YHmECfBoiwG9bwItkHwhZ\/fG9i4H8\/aOyr3WlaWbVeKX\r\n+m38lmYZvzQFRAk5ab1vzCGz4cyc\r\nTk2qmZpcjHRd1ijcOkgC23KF8lHWF5Zx0tySR+DWL1JeGm8NJxKMRJZuE8MIkJYF\r\nryE7kjspNItk6npkA3\/A4PWwElhddI4JpiuK+29mMNipRcYYy9e0vH\/igejv7ayd\r\nPLCRMQKBgBDSNWlZT0nNd2DXVqTW9p+MG72VKhDgmEwFB1acOw0lpu1XE8R1wmwG\r\nZRl\/xzri3LOW2Gpc77xu6fs3NIkzQw3v1ifYhX3OrVsCIRBbDjPQI3yYjkhGx24s\r\nVhhZ5S\/TkGk3Kw59bDC6KGqAuQAwX9req2l1NiuNaPU9rE7tf6Bk\r\n-----END RSA PRIVATE KEY-----"
  288. }
  289. }'
  290. ```
  291. - `JIRAEndpoint`: The base URL of the JIRA installation you wish to talk to.
  292. - `ConsumerName`: The desired "Consumer Name" field of the "Application Links" admin page on JIRA. Generally this is the name of the service. Users will need to enter this string into their JIRA admin web form.
  293. - `ConsumerKey`: The desired "Consumer Key" field of the "Application Links" admin page on JIRA. Generally this is the name of the service. Users will need to enter this string into their JIRA admin web form.
  294. - `ConsumerSecret`: The desired "Consumer Secret" field of the "Application Links" admin page on JIRA. This should be a random long string. Users will need to enter this string into their JIRA admin web form.
  295. - `PrivateKeyPEM`: A string which contains the private key for performing OAuth 1.0 requests. This MUST be in PEM format. It must NOT have a password. Go-NEB will convert this into a **public** key in PEM format and return this to users. Users will need to enter the public key into their JIRA admin web form.
  296. - `StarterLink`: Optional. If supplied, `!jira` commands will return this link whenever someone is prompted to login to JIRA.
  297. To generate a private key PEM: (JIRA does not support bit lengths >2048)
  298. ```bash
  299. openssl genrsa -out privkey.pem 2048
  300. cat privkey.pem
  301. ```
  302. #### JIRA authentication
  303. ```
  304. curl -X POST localhost:4050/admin/requestAuthSession --data-binary '{
  305. "RealmID": "jirarealm",
  306. "UserID": "@example:localhost",
  307. "Config": {
  308. "RedirectURL": "https://optional-url.com/to/redirect/to/after/auth"
  309. }
  310. }'
  311. ```
  312. Returns:
  313. ```json
  314. {
  315. "URL":"https://jira.somewhere.com/plugins/servlet/oauth/authorize?oauth_token=7yeuierbgweguiegrTbOT"
  316. }
  317. ```
  318. # Developing
  319. There's a bunch more tools this project uses when developing in order to do
  320. things like linting. Some of them are bundled with go (fmt and vet) but some
  321. are not. You should install the ones which are not:
  322. ```bash
  323. go get github.com/golang/lint/golint
  324. go get github.com/fzipp/gocyclo
  325. ```
  326. You can then install the pre-commit hook:
  327. ```bash
  328. ./hooks/install.sh
  329. ```
  330. ## Architecture
  331. ```
  332. HOMESERVER
  333. |
  334. +=============================================================+
  335. | | Go-NEB |
  336. | +---------+ |
  337. | | Clients | |
  338. | +---------+ |
  339. | | |
  340. | +---------+ +------------+ +--------------+ |
  341. | | Service |-------| Auth Realm |------| Auth Session |-+ |
  342. | +---------+ +------------+ +--------------+ | |
  343. | ^ ^ +---------------+ |
  344. | | | |
  345. +=============================================================+
  346. | |
  347. WEBHOOK REDIRECT
  348. REQUEST REQUEST
  349. Clients = A thing which can talk to homeservers and listen for events. /configureClient makes these.
  350. Service = An individual bot, configured by a user. /configureService makes these.
  351. Auth Realm = A place where a user can authenticate with. /configureAuthRealm makes these.
  352. Auth Session = An individual authentication session /requestAuthSession makes these.
  353. ```
  354. ## Viewing the API docs
  355. ```
  356. # Start a documentation server listening on :6060
  357. GOPATH=$GOPATH:$(pwd) godoc -v -http=localhost:6060 &
  358. # Open up the documentation for go-neb in a browser.
  359. sensible-browser http://localhost:6060/pkg/github.com/matrix-org/go-neb
  360. ```