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.

332 lines
11 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
  1. # Building go-neb
  2. Go-neb is built using `gb` (https://getgb.io/). To build go-neb:
  3. ```bash
  4. # Install gb
  5. go get github.com/constabulary/gb/...
  6. # Clone the go-neb repository
  7. git clone https://github.com/matrix-org/go-neb
  8. cd go-neb
  9. # Build go-neb
  10. gb build github.com/matrix-org/go-neb
  11. ```
  12. # Running go-neb
  13. Go-neb uses environment variables to configure its database and bind address.
  14. To run go-neb:
  15. BIND_ADDRESS=:4050 DATABASE_TYPE=sqlite3 DATABASE_URL=go-neb.db BASE_URL=https://public.facing.endpoint bin/go-neb
  16. Go-neb needs to connect as a matrix user to receive messages. Go-neb can listen
  17. for messages as multiple matrix users. The users are configured using an
  18. HTTP API and the config is stored in the database. Go-neb will automatically
  19. start syncing matrix messages when the user is configured. To create a user:
  20. curl -X POST localhost:4050/admin/configureClient --data-binary '{
  21. "UserID": "@goneb:localhost:8448",
  22. "HomeserverURL": "http://localhost:8008",
  23. "AccessToken": "<access_token>"
  24. }'
  25. {
  26. "OldClient": {},
  27. "NewClient": {
  28. "UserID": "@goneb:localhost:8448",
  29. "HomeserverURL": "http://localhost:8008",
  30. "AccessToken": "<access_token>"
  31. }
  32. }
  33. Services in go-neb listen for messages in particular rooms using a given matrix
  34. user. Services are configured using an HTTP API and the config is stored in the
  35. database. Services use one of the matrix users configured on go-neb to receive
  36. matrix messages. Each service is configured to listen for messages in a set
  37. of rooms. Go-neb will automatically join the service to its rooms when it is
  38. configured. To start an echo service:
  39. curl -X POST localhost:4050/admin/configureService --data-binary '{
  40. "Type": "echo",
  41. "Id": "myserviceid",
  42. "UserID": "@goneb:localhost:8448",
  43. "Config": {
  44. }
  45. }'
  46. {
  47. "Type": "echo",
  48. "Id": "myserviceid",
  49. "UserID": "@goneb:localhost:8448",
  50. "OldConfig": {},
  51. "NewConfig": {}
  52. }
  53. To retrieve an existing Service:
  54. curl -X POST localhost:4050/admin/getService --data-binary '{
  55. "Id": "myserviceid"
  56. }'
  57. {
  58. "Type": "echo",
  59. "Id": "myserviceid",
  60. "UserID": "@goneb:localhost:8448",
  61. "Config": {}
  62. }
  63. Go-neb has a heartbeat listener that returns 200 OK so that load balancers can
  64. check that the server is still running.
  65. curl -X GET localhost:4050/test
  66. {}
  67. ## Architecture
  68. ```
  69. HOMESERVER
  70. |
  71. +=============================================================+
  72. | | Go-NEB |
  73. | +---------+ |
  74. | | Clients | |
  75. | +---------+ |
  76. | | |
  77. | +---------+ +------------+ +--------------+ |
  78. | | Service |-------| Auth Realm |------| Auth Session |-+ |
  79. | +---------+ +------------+ +--------------+ | |
  80. | ^ ^ +---------------+ |
  81. | | | |
  82. +=============================================================+
  83. | |
  84. WEBHOOK REDIRECT
  85. REQUEST REQUEST
  86. Clients = A thing which can talk to homeservers and listen for events.
  87. Service = An individual bot, configured by a user.
  88. Auth Realm = A place where a user can authenticate with.
  89. Auth Session = An individual authentication session
  90. ```
  91. Some `AuthRealms` support "Starter Links". These are HTTP URLs which knowledgeable clients should use to *start* the auth process. They are commonly returned as metadata to `!commands`.
  92. These links require the client to prove that they own a given user ID by appending a token
  93. to the Starter Link. This token will be used to verify the client's identity by making an
  94. Open ID request to the user's Homeserver via federation.
  95. ## Starting a Github Service
  96. ### Register a Github realm
  97. This API allows for an optional `StarterLink` value.
  98. ```
  99. curl -X POST localhost:4050/admin/configureAuthRealm --data-binary '{
  100. "ID": "mygithubrealm",
  101. "Type": "github",
  102. "Config": {
  103. "ClientSecret": "YOUR_CLIENT_SECRET",
  104. "ClientID": "YOUR_CLIENT_ID",
  105. "StarterLink": "https://example.com/requestGithubOAuthToken"
  106. }
  107. }'
  108. ```
  109. Returns:
  110. ```
  111. {
  112. "ID":"mygithubrealm",
  113. "Type":"github",
  114. "OldConfig":null,
  115. "NewConfig":{
  116. "ClientSecret":"YOUR_CLIENT_SECRET",
  117. "ClientID":"YOUR_CLIENT_ID",
  118. "StarterLink": "https://example.com/requestGithubOAuthToken"
  119. }
  120. }
  121. ```
  122. ### Make a request for Github Auth
  123. ```
  124. curl -X POST localhost:4050/admin/requestAuthSession --data-binary '{
  125. "RealmID": "mygithubrealm",
  126. "UserID": "@your_user_id:localhost",
  127. "Config": {
  128. "RedirectURL": "https://optional-url.com/to/redirect/to/after/auth"
  129. }
  130. }'
  131. ```
  132. Returns:
  133. ```
  134. {
  135. "URL":"https://github.com/login/oauth/authorize?client_id=$ID\u0026client_secret=$SECRET\u0026redirect_uri=$REDIRECT_BASE_URI%2Frealms%2Fredirects%2Fmygithubrealm\u0026state=$RANDOM_STRING"
  136. }
  137. ```
  138. Follow this link and grant access for NEB to act on your behalf.
  139. ### Create a github bot
  140. ```
  141. curl -X POST localhost:4050/admin/configureService --data-binary '{
  142. "Type": "github",
  143. "Id": "mygithubserviceid",
  144. "UserID": "@goneb:localhost",
  145. "Config": {
  146. "RealmID": "mygithubrealm",
  147. "ClientUserID": "@example:localhost",
  148. "HandleCommands": true,
  149. "HandleExpansions": true,
  150. "Rooms": {
  151. "!EmwxeXCVubhskuWvaw:localhost": {
  152. "Repos": {
  153. "owner/repo": {
  154. "Events": ["push","issues"]
  155. }
  156. }
  157. }
  158. }
  159. }
  160. }'
  161. ```
  162. This request will make `BotUserID` join the `Rooms` specified and create webhooks for the `owner/repo` projects given.
  163. ## Starting a JIRA Service
  164. ### Register a JIRA realm
  165. Generate an RSA private key: (JIRA does not support key sizes >2048 bits)
  166. ```bash
  167. openssl genrsa -out privkey.pem 2048
  168. cat privkey.pem
  169. ```
  170. This API allows for an optional `StarterLink` value. Create the realm:
  171. ```
  172. curl -X POST localhost:4050/admin/configureAuthRealm --data-binary '{
  173. "ID": "jirarealm",
  174. "Type": "jira",
  175. "Config": {
  176. "JIRAEndpoint": "matrix.org/jira/",
  177. "StarterLink": "https://example.com/requestJIRAOAuthToken",
  178. "ConsumerName": "goneb",
  179. "ConsumerKey": "goneb",
  180. "ConsumerSecret": "random_long_string",
  181. "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-----"
  182. }
  183. }'
  184. ```
  185. The following keys will be modified/added:
  186. - `JIRAEndpoint` in canonicalised form.
  187. - `Server` and `Version` keys which are purely informational for the caller.
  188. - `PublicKeyPEM` which the caller needs a human to insert into the JIRA Application Links web form.
  189. Returns:
  190. ```json
  191. {
  192. "ID": "jirarealm",
  193. "Type": "jira",
  194. "OldConfig": null,
  195. "NewConfig": {
  196. "JIRAEndpoint": "https://matrix.org/jira/",
  197. "StarterLink": "https://example.com/requestJIRAOAuthToken",
  198. "Server": "Matrix.org",
  199. "Version": "6.3.5a",
  200. "ConsumerName": "goneb",
  201. "ConsumerKey": "goneb",
  202. "ConsumerSecret": "random_long_string",
  203. "PublicKeyPEM": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA39UhbOvQHEkBP9fGnhU+\neSObTWBDGWygVYzbcONOlqEOTJUN8gmnellWqJO45S4jB1vLLnuXiHqEWnmaShIv\nbUem3QnDDqghu0gfqXHMlQr5R8ZPorTt1F2idWy1wk5rVXeLKSG7uriYhDVOVS69\nWuefoW5v55b5YZV283v2jROjxHujgAsJA7k6tvpYiSXApUl6YHmECfBoiwG9bwIt\nkHwhZ/fG9i4H8/aOyr3WlaWbVeKX+m38lmYZvzQFRd7UPU7DuO6Aiqj7RxrbAvqq\ndPeoAvo6+V0TRPZ8YzKp2yQmDcGH69IbuKJ2BG1Qx8znZAvghKQ6P9Im+M4c7j9i\ndwIDAQAB\n-----END PUBLIC KEY-----\n",
  204. "PrivateKeyPEM": "-----BEGIN RSA PRIVATE KEY-----\r\nMIIEowIBAAKCAQEA39UhbOvQHEkBP9fGnhU+eSObTWBDGWygVYzbcONOlqEOTJUN\r\n8gmnellWqJO45S4jB1vLLnuXiHqEWnmaShIvbUem3QnDDqghu0gfqXHMlQr5R8ZP\r\norTt1F2idWy1wk5rVXeLKSG7uriYhDVOVS69WuefoW5v55b5YZV283v2jROjxHuj\r\ngAsJA7k6tvpYiSXApUl6YHmECfBoiwG9bwItkHwhZ/fG9i4H8/aOyr3WlaWbVeKX\r\n+m38lmYZvzQFRd7UPU7DuO6Aiqj7RxrbAvqqdPeoAvo6+V0TRPZ8YzKp2yQmDcGH\r\n69IbuKJ2BG1Qx8znZAvghKQ6P9Im+M4c7j9iMG72VKhDgmEwFB1acOw0lpu1XE8R1wmwG\r\nZRl/xzri3LOW2Gpc77xu6fs3NIkzQw3v1ifYhX3OrVsCIRBbDjPQI3yYjkhGx24s\r\nVhhZ5S/TkGk3Kw59bDC6KGqAuQAwX9req2l1NiuNaPU9rE7tf6Bk\r\n-----END RSA PRIVATE KEY-----"
  205. }
  206. }
  207. ```
  208. The `ConsumerKey`, `ConsumerSecret`, `ConsumerName` and `PublicKeyPEM` must be manually inserted
  209. into the "Application Links" section under JIRA Admin Settings by a JIRA admin on the target
  210. JIRA installation. Once that is complete, users can OAuth on the target JIRA installation.
  211. ### Make a request for JIRA Auth
  212. ```
  213. curl -X POST localhost:4050/admin/requestAuthSession --data-binary '{
  214. "RealmID": "jirarealm",
  215. "UserID": "@example:localhost",
  216. "Config": {
  217. "RedirectURL": "https://optional-url.com/to/redirect/to/after/auth"
  218. }
  219. }'
  220. ```
  221. Returns:
  222. ```json
  223. {
  224. "URL":"https://jira.somewhere.com/plugins/servlet/oauth/authorize?oauth_token=7yeuierbgweguiegrTbOT"
  225. }
  226. ```
  227. Follow this link and grant access for NEB to act on your behalf.
  228. ### Create a JIRA bot
  229. ```
  230. curl -X POST localhost:4050/admin/configureService --data-binary '{
  231. "Type": "jira",
  232. "Id": "jid",
  233. "UserID": "@goneb:localhost",
  234. "Config": {
  235. "ClientUserID": "@example:localhost",
  236. "Rooms": {
  237. "!EmwxeXCVubhskuWvaw:localhost": {
  238. "Realms": {
  239. "jira_realm_id": {
  240. "Projects": {
  241. "BOTS": {
  242. "Expand": true,
  243. "Track": true
  244. }
  245. }
  246. }
  247. }
  248. }
  249. }
  250. }
  251. }'
  252. ```
  253. # Developing on go-neb.
  254. There's a bunch more tools this project uses when developing in order to do
  255. things like linting. Some of them are bundled with go (fmt and vet) but some
  256. are not. You should install the ones which are not:
  257. ```bash
  258. go get github.com/golang/lint/golint
  259. go get github.com/fzipp/gocyclo
  260. ```
  261. You can then install the pre-commit hook:
  262. ```bash
  263. ./hooks/install.sh
  264. ```
  265. ## Viewing the API docs.
  266. ```
  267. # Start a documentation server listening on :6060
  268. GOPATH=$GOPATH:$(pwd) godoc -v -http=localhost:6060 &
  269. # Open up the documentation for go-neb in a browser.
  270. sensible-browser http://localhost/pkg/github.com/matrix-org/go-neb
  271. ```