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.

302 lines
9.8 KiB

9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 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. "Config": {
  43. "UserID": "@goneb:localhost:8448",
  44. "Rooms": ["!QkdpvTwGlrptdeViJx:localhost:8448"]
  45. }
  46. }'
  47. {
  48. "Type": "echo",
  49. "Id": "myserviceid",
  50. "OldConfig": {},
  51. "NewConfig": {
  52. "UserID": "@goneb:localhost:8448",
  53. "Rooms": ["!QkdpvTwGlrptdeViJx:localhost:8448"]
  54. }
  55. }
  56. To retrieve an existing Service:
  57. curl -X POST localhost:4050/admin/getService --data-binary '{
  58. "Id": "myserviceid"
  59. }'
  60. {
  61. "Type": "echo",
  62. "Id": "myserviceid",
  63. "Config": {
  64. "UserID": "@goneb:localhost:8448",
  65. "Rooms": ["!QkdpvTwGlrptdeViJx:localhost:8448"]
  66. }
  67. }
  68. Go-neb has a heartbeat listener that returns 200 OK so that load balancers can
  69. check that the server is still running.
  70. curl -X GET localhost:4050/test
  71. {}
  72. 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`.
  73. These links require the client to prove that they own a given user ID by appending a token
  74. to the Starter Link. This token will be used to verify the client's identity by making an
  75. Open ID request to the user's Homeserver via federation.
  76. ## Starting a Github Service
  77. ### Register a Github realm
  78. This API allows for an optional `StarterLink` value.
  79. ```
  80. curl -X POST localhost:4050/admin/configureAuthRealm --data-binary '{
  81. "ID": "mygithubrealm",
  82. "Type": "github",
  83. "Config": {
  84. "ClientSecret": "YOUR_CLIENT_SECRET",
  85. "ClientID": "YOUR_CLIENT_ID",
  86. "StarterLink": "https://example.com/requestGithubOAuthToken"
  87. }
  88. }'
  89. ```
  90. Returns:
  91. ```
  92. {
  93. "ID":"mygithubrealm",
  94. "Type":"github",
  95. "OldConfig":null,
  96. "NewConfig":{
  97. "ClientSecret":"YOUR_CLIENT_SECRET",
  98. "ClientID":"YOUR_CLIENT_ID",
  99. "StarterLink": "https://example.com/requestGithubOAuthToken"
  100. }
  101. }
  102. ```
  103. ### Make a request for Github Auth
  104. ```
  105. curl -X POST localhost:4050/admin/requestAuthSession --data-binary '{
  106. "RealmID": "mygithubrealm",
  107. "UserID": "@your_user_id:localhost",
  108. "Config": {
  109. }
  110. }'
  111. ```
  112. Returns:
  113. ```
  114. {
  115. "URL":"https://github.com/login/oauth/authorize?client_id=$ID\u0026client_secret=$SECRET\u0026redirect_uri=$REDIRECT_BASE_URI%2Frealms%2Fredirects%2Fmygithubrealm\u0026state=$RANDOM_STRING"
  116. }
  117. ```
  118. Follow this link and grant access for NEB to act on your behalf.
  119. ### Create a github bot
  120. ```
  121. curl -X POST localhost:4050/admin/configureService --data-binary '{
  122. "Type": "github",
  123. "Id": "mygithubserviceid",
  124. "Config": {
  125. "RealmID": "mygithubrealm",
  126. "BotUserID": "@goneb:localhost",
  127. "ClientUserID": "@example:localhost",
  128. "Rooms": {
  129. "!EmwxeXCVubhskuWvaw:localhost": {
  130. "Repos": {
  131. "owner/repo": {
  132. "Events": ["push","issues"]
  133. }
  134. }
  135. }
  136. }
  137. }
  138. }'
  139. ```
  140. This request will make `BotUserID` join the `Rooms` specified and create webhooks for the `owner/repo` projects given.
  141. ## Starting a JIRA Service
  142. ### Register a JIRA realm
  143. Generate an RSA private key: (JIRA does not support key sizes >2048 bits)
  144. ```bash
  145. openssl genrsa -out privkey.pem 2048
  146. cat privkey.pem
  147. ```
  148. This API allows for an optional `StarterLink` value. Create the realm:
  149. ```
  150. curl -X POST localhost:4050/admin/configureAuthRealm --data-binary '{
  151. "ID": "jirarealm",
  152. "Type": "jira",
  153. "Config": {
  154. "JIRAEndpoint": "matrix.org/jira/",
  155. "StarterLink": "https://example.com/requestJIRAOAuthToken",
  156. "ConsumerName": "goneb",
  157. "ConsumerKey": "goneb",
  158. "ConsumerSecret": "random_long_string",
  159. "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-----"
  160. }
  161. }'
  162. ```
  163. The following keys will be modified/added:
  164. - `JIRAEndpoint` in canonicalised form.
  165. - `Server` and `Version` keys which are purely informational for the caller.
  166. - `PublicKeyPEM` which the caller needs a human to insert into the JIRA Application Links web form.
  167. Returns:
  168. ```json
  169. {
  170. "ID": "jirarealm",
  171. "Type": "jira",
  172. "OldConfig": null,
  173. "NewConfig": {
  174. "JIRAEndpoint": "https://matrix.org/jira/",
  175. "StarterLink": "https://example.com/requestJIRAOAuthToken",
  176. "Server": "Matrix.org",
  177. "Version": "6.3.5a",
  178. "ConsumerName": "goneb",
  179. "ConsumerKey": "goneb",
  180. "ConsumerSecret": "random_long_string",
  181. "PublicKeyPEM": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA39UhbOvQHEkBP9fGnhU+\neSObTWBDGWygVYzbcONOlqEOTJUN8gmnellWqJO45S4jB1vLLnuXiHqEWnmaShIv\nbUem3QnDDqghu0gfqXHMlQr5R8ZPorTt1F2idWy1wk5rVXeLKSG7uriYhDVOVS69\nWuefoW5v55b5YZV283v2jROjxHujgAsJA7k6tvpYiSXApUl6YHmECfBoiwG9bwIt\nkHwhZ/fG9i4H8/aOyr3WlaWbVeKX+m38lmYZvzQFRd7UPU7DuO6Aiqj7RxrbAvqq\ndPeoAvo6+V0TRPZ8YzKp2yQmDcGH69IbuKJ2BG1Qx8znZAvghKQ6P9Im+M4c7j9i\ndwIDAQAB\n-----END PUBLIC KEY-----\n",
  182. "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-----"
  183. }
  184. }
  185. ```
  186. The `ConsumerKey`, `ConsumerSecret`, `ConsumerName` and `PublicKeyPEM` must be manually inserted
  187. into the "Application Links" section under JIRA Admin Settings by a JIRA admin on the target
  188. JIRA installation. Once that is complete, users can OAuth on the target JIRA installation.
  189. ### Make a request for JIRA Auth
  190. ```
  191. curl -X POST localhost:4050/admin/requestAuthSession --data-binary '{
  192. "RealmID": "jirarealm",
  193. "UserID": "@example:localhost",
  194. "Config": {
  195. }
  196. }'
  197. ```
  198. Returns:
  199. ```json
  200. {
  201. "URL":"https://jira.somewhere.com/plugins/servlet/oauth/authorize?oauth_token=7yeuierbgweguiegrTbOT"
  202. }
  203. ```
  204. Follow this link and grant access for NEB to act on your behalf.
  205. ### Create a JIRA bot
  206. ```
  207. curl -X POST localhost:4050/admin/configureService --data-binary '{
  208. "Type": "jira",
  209. "Id": "jid",
  210. "Config": {
  211. "BotUserID": "@goneb:localhost",
  212. "ClientUserID": "@example:localhost",
  213. "Rooms": {
  214. "!EmwxeXCVubhskuWvaw:localhost": {
  215. "Realms": {
  216. "jira_realm_id": {
  217. "Projects": {
  218. "BOTS": {
  219. "Expand": true,
  220. "Track": true
  221. }
  222. }
  223. }
  224. }
  225. }
  226. }
  227. }
  228. }'
  229. ```
  230. # Developing on go-neb.
  231. There's a bunch more tools this project uses when developing in order to do
  232. things like linting. Some of them are bundled with go (fmt and vet) but some
  233. are not. You should install the ones which are not:
  234. ```bash
  235. go get github.com/golang/lint/golint
  236. go get github.com/fzipp/gocyclo
  237. ```
  238. You can then install the pre-commit hook:
  239. ```bash
  240. ./hooks/install.sh
  241. ```
  242. ## Viewing the API docs.
  243. ```
  244. # Start a documentation server listening on :6060
  245. GOPATH=$GOPATH:$(pwd) godoc -v -http=localhost:6060 &
  246. # Open up the documentation for go-neb in a browser.
  247. sensible-browser http://localhost/pkg/github.com/matrix-org/go-neb
  248. ```