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.

138 lines
4.7 KiB

  1. # Go-NEB Configuration File
  2. #
  3. # This file provides an alternative way to configure Go-NEB which does not involve HTTP APIs.
  4. #
  5. # This file can be supplied to go-neb by the environment variable `CONFIG_FILE=config.yaml`.
  6. # It will force Go-NEB to operate in "config" mode. This means:
  7. # - Go-NEB will ONLY use the data contained inside this file.
  8. # - All of Go-NEB's /admin HTTP listeners will be disabled. You will be unable to add new services at runtime.
  9. # - The environment variable `DATABASE_URL` will be ignored and an in-memory database will be used instead.
  10. #
  11. # This file is broken down into 4 sections which matches the following HTTP APIs:
  12. # - /configureClient
  13. # - /configureAuthRealm
  14. # - /configureService
  15. # - /requestAuthSession (redirects not supported)
  16. # The list of clients which Go-NEB is aware of.
  17. # Delete or modify this list as appropriate.
  18. # See the docs for /configureClient for the full list of options:
  19. # https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/api/index.html#ClientConfig
  20. clients:
  21. - UserID: "@goneb:localhost"
  22. AccessToken: "MDASDASJDIASDJASDAFGFRGER"
  23. HomeserverURL: "http://localhost:8008"
  24. Sync: true
  25. AutoJoinRooms: true
  26. DisplayName: "Go-NEB!"
  27. - UserID: "@another_goneb:localhost"
  28. AccessToken: "MDASDASJDIASDJASDAFGFRGER"
  29. HomeserverURL: "http://localhost:8008"
  30. Sync: false
  31. AutoJoinRooms: false
  32. DisplayName: "Go-NEB!"
  33. # The list of realms which Go-NEB is aware of.
  34. # Delete or modify this list as appropriate.
  35. # See the docs for /configureAuthRealm for the full list of options:
  36. # https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/api/index.html#ConfigureAuthRealmRequest
  37. realms:
  38. - ID: "github_realm"
  39. Type: "github"
  40. Config: {} # No need for client ID or Secret as Go-NEB isn't generating OAuth URLs
  41. # The list of *authenticated* sessions which Go-NEB is aware of.
  42. # Delete or modify this list as appropriate.
  43. # The full list of options are shown below: there is no single HTTP endpoint
  44. # which maps to this section.
  45. # https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/api/index.html#Session
  46. sessions:
  47. - SessionID: "your_github_session"
  48. RealmID: "github_realm"
  49. UserID: "@YOUR_USER_ID:localhost"
  50. Config:
  51. # Populate these fields by generating a "Personal Access Token" on github.com
  52. AccessToken: "YOUR_GITHUB_ACCESS_TOKEN"
  53. Scopes: "admin:org_hook,admin:repo_hook,repo,user"
  54. # The list of services which Go-NEB is aware of.
  55. # Delete or modify this list as appropriate.
  56. # See the docs for /configureService for the full list of options:
  57. # https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/api/index.html#ConfigureServiceRequest
  58. services:
  59. - ID: "giphy_service"
  60. Type: "giphy"
  61. UserID: "@goneb:localhost" # requires a Syncing client
  62. Config:
  63. api_key: "qwg4672vsuyfsfe"
  64. use_downsized: false
  65. - ID: "guggy_service"
  66. Type: "guggy"
  67. UserID: "@goneb:localhost" # requires a Syncing client
  68. Config:
  69. api_key: "2356saaqfhgfe"
  70. - ID: "google_service"
  71. Type: "google"
  72. UserID: "@goneb:localhost" # requires a Syncing client
  73. Config:
  74. api_key: "AIzaSyA4FD39m9"
  75. cx: "AIASDFWSRRtrtr"
  76. - ID: "imgur_service"
  77. Type: "imgur"
  78. UserID: "@imgur:localhost" # requires a Syncing client
  79. Config:
  80. api_key: "AIzaSyA4FD39m9"
  81. - ID: "wikipedia_service"
  82. Type: "wikipedia"
  83. UserID: "@goneb:localhost" # requires a Syncing client
  84. Config:
  85. - ID: "rss_service"
  86. Type: "rssbot"
  87. UserID: "@another_goneb:localhost"
  88. Config:
  89. feeds:
  90. "http://lorem-rss.herokuapp.com/feed?unit=second&interval=60":
  91. rooms: ["!qmElAGdFYCHoCJuaNt:localhost"]
  92. - ID: "github_cmd_service"
  93. Type: "github"
  94. UserID: "@goneb:localhost" # requires a Syncing client
  95. Config:
  96. RealmID: "github_realm"
  97. # Make sure your BASE_URL can be accessed by Github!
  98. - ID: "github_webhook_service"
  99. Type: "github-webhook"
  100. UserID: "@another_goneb:localhost"
  101. Config:
  102. RealmID: "github_realm"
  103. ClientUserID: "@YOUR_USER_ID:localhost" # needs to be an authenticated user so Go-NEB can create webhooks.
  104. Rooms:
  105. "!someroom:id":
  106. Repos:
  107. "matrix-org/synapse":
  108. Events: ["push", "issues"]
  109. "matrix-org/dendron":
  110. Events: ["pull_request"]
  111. "!anotherroom:id":
  112. Repos:
  113. "matrix-org/synapse":
  114. Events: ["push", "issues"]
  115. "matrix-org/dendron":
  116. Events: ["pull_request"]
  117. - ID: "slackapi_service"
  118. Type: "slackapi"
  119. UserID: "@slackapi:localhost"
  120. Config:
  121. Hooks:
  122. "hook1":
  123. RoomID: "!someroom:id"
  124. MessageType: "m.text" # default is m.text