Kegan Dougal
97a292c65f
Change how Services are notified for incoming !commands and expansions
Previously, we would notify `Services` based on matching the `room_id` of the
event with a list of `RoomIDs()` which the service returned.
Now we notify `Services` based on matching the `user_id` of the client listening
for events. This means that the service will receive more events because there
isn't a filter on a set of room IDs.
This is required in order to implement "auto-join on invite" semantics for
Services, as the room ID is not known at that point in time.
8 years ago
Kegan Dougal
b45afac270
Add flags to control if the GH Service should handle expansions/commands
8 years ago
Kegan Dougal
25fb7ca0d9
Return Location headers on 302s
WriteHeader must come AFTER Header().Set() else it does nothing, yay!
8 years ago
Kegan Dougal
b643b8c797
Redirect even if already authed if a redirect URL is given
8 years ago
Kegan Dougal
de3dc5f33c
More logging
8 years ago
Kegan Dougal
479055748c
Log what the clients send us for debugging purposes
8 years ago
Kegan Dougal
cacdc632a4
More logging
8 years ago
Kegan Dougal
4d9574e6da
More logging
8 years ago
Kegan Dougal
ec9e462eab
Linting
8 years ago
Kegan Dougal
17824f74dc
Don't spam github with webhook creation requests which uses up our request rate limits
8 years ago
Kegan Dougal
cc076d0e9e
Paginate repo list
8 years ago
Kegan Dougal
6e2f35d463
Actually specify scopes...
8 years ago
Kegan Dougal
c3aabd57ea
Check for a valid session before exchanging codes
8 years ago
Kegsay
c38cf48b26
Merge pull request #35 from matrix-org/kegan/base64-paths
Base64 redirect and webhook paths
8 years ago
Kegan Dougal
24a2ffc6bb
Also apply base64 encoding to realm redirect paths and use URL-safe base64
8 years ago
Kegan Dougal
8e6955efd5
Base64 encode the service ID in the webhook path
We don't put any restrictions on the format of the Service ID so we need to
base64 it to prevent potentially losing data when it is inserted as a path
parameter (e.g. due to weird escaping rules).
Also, only remove webhooks if there was an old service to begin with.
8 years ago
Kegsay
8ddd4e83d0
Merge pull request #33 from matrix-org/kegan/jira-redirect
Add redirect URL for JIRA auth
8 years ago
Kegsay
d3ef0276fc
Merge pull request #32 from matrix-org/kegan/expand-with-groups
Change Expansion.Expand to include matching groups rather than just the match
8 years ago
Kegan Dougal
233e85eeee
Add redirect URL for JIRA auth
8 years ago
Kegsay
62e6ca7ce6
Merge pull request #31 from matrix-org/kegan/redirect
Add RedirectURL param when requesting GH auth sessions
8 years ago
Kegan Dougal
928a243ad2
Change Expansion.Expand to include matching groups rather than just the match
8 years ago
Kegan Dougal
17d799320e
Add RedirectURL param when requesting GH auth sessions
8 years ago
Kegsay
cc96cdc710
Merge pull request #30 from matrix-org/kegan/logging
Add LOG_DIR env var
8 years ago
Kegan Dougal
bfc5c8dd7f
Add LOG_DIR env var
8 years ago
Kegan Dougal
99ce940fe0
Add dugong for file logging
8 years ago
Kegsay
0ae43fab82
Merge pull request #29 from matrix-org/kegan/github-possible-repos
List possible GH repos on /getSession
8 years ago
Kegan Dougal
0e9411e559
s/Session/Info/ given it isn't an AuthSession object
8 years ago
Kegan Dougal
34eca3984f
List possible GH repos on /getSession
Add an Info() method to pull out info about an auth session.
8 years ago
Kegsay
d484a0a1d0
Update README.md
8 years ago
Kegsay
90b1c0f139
Update README.md
8 years ago
Kegsay
893114a584
Update README.md
8 years ago
Kegsay
9938b9bba7
Update README.md
8 years ago
Kegsay
326072519c
Merge pull request #28 from matrix-org/kegan/jira-starter-links
Implement JIRA Starter Links
8 years ago
Kegan Dougal
aab346e0fa
Tweak in-line JSON comment format
8 years ago
Kegan Dougal
a7f0be68c9
Explain what starter links are
8 years ago
Kegan Dougal
8500ee7d54
Merge branch 'master' into kegan/jira-starter-links
8 years ago
Kegsay
69b9175348
Merge pull request #27 from matrix-org/kegan/github-starter-links
Add StarterLink as a field to the Github Service config
8 years ago
Kegsay
a2290fc2ce
Merge pull request #26 from matrix-org/kegan/get-session
Add endpoint for GETing AuthSession information for a user/realm tuple
8 years ago
Kegan Dougal
2a93bbee82
Comments
8 years ago
Kegan Dougal
44abae4977
Make StarterLink a property of the AuthRealm
8 years ago
Kegan Dougal
6f4d74103e
Merge branch 'master' into kegan/get-session
8 years ago
Kegsay
721ac72896
Merge pull request #25 from matrix-org/kegan/get-service
Add endpoint to GET a Service config
8 years ago
Kegan Dougal
4ea8e6d49d
Add JIRA starter links
8 years ago
Kegan Dougal
c651293452
Merge branch 'kegan/github-starter-links' into kegan/jira-starter-links
8 years ago
Kegan Dougal
2a3b56a1dc
Return a specific not found error message when the user hasn't authed with JIRA
8 years ago
Kegan Dougal
ed53b8d3e1
Merge branch 'kegan/get-service' into kegan/get-session
8 years ago
Kegan Dougal
cb0fcbf2ad
s/GET/POST/
8 years ago
Kegan Dougal
4c340dd016
s/GET/POST/
8 years ago
Kegan Dougal
5bccd52190
Add StarterLink as a field to the Github Service config
Use it verbatim in the responses to !commands when the caller has not authed
with Github.
8 years ago
Kegan Dougal
0dd4d357ce
Bring out expand/cmd into stand-alone functions
8 years ago