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.

69 lines
2.0 KiB

Oauth2 consumer (#679) * initial stuff for oauth2 login, fails on: * login button on the signIn page to start the OAuth2 flow and a callback for each provider Only GitHub is implemented for now * show login button only when the OAuth2 consumer is configured (and activated) * create macaron group for oauth2 urls * prevent net/http in modules (other then oauth2) * use a new data sessions oauth2 folder for storing the oauth2 session data * add missing 2FA when this is enabled on the user * add password option for OAuth2 user , for use with git over http and login to the GUI * add tip for registering a GitHub OAuth application * at startup of Gitea register all configured providers and also on adding/deleting of new providers * custom handling of errors in oauth2 request init + show better tip * add ExternalLoginUser model and migration script to add it to database * link a external account to an existing account (still need to handle wrong login and signup) and remove if user is removed * remove the linked external account from the user his settings * if user is unknown we allow him to register a new account or link it to some existing account * sign up with button on signin page (als change OAuth2Provider structure so we can store basic stuff about providers) * from gorilla/sessions docs: "Important Note: If you aren't using gorilla/mux, you need to wrap your handlers with context.ClearHandler as or else you will leak memory!" (we're using gorilla/sessions for storing oauth2 sessions) * use updated goth lib that now supports getting the OAuth2 user if the AccessToken is still valid instead of re-authenticating (prevent flooding the OAuth2 provider)
7 years ago
  1. // Copyright 2014 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // Package internal contains support packages for oauth2 package.
  5. package internal
  6. import (
  7. "net/http"
  8. "golang.org/x/net/context"
  9. )
  10. // HTTPClient is the context key to use with golang.org/x/net/context's
  11. // WithValue function to associate an *http.Client value with a context.
  12. var HTTPClient ContextKey
  13. // ContextKey is just an empty struct. It exists so HTTPClient can be
  14. // an immutable public variable with a unique type. It's immutable
  15. // because nobody else can create a ContextKey, being unexported.
  16. type ContextKey struct{}
  17. // ContextClientFunc is a func which tries to return an *http.Client
  18. // given a Context value. If it returns an error, the search stops
  19. // with that error. If it returns (nil, nil), the search continues
  20. // down the list of registered funcs.
  21. type ContextClientFunc func(context.Context) (*http.Client, error)
  22. var contextClientFuncs []ContextClientFunc
  23. func RegisterContextClientFunc(fn ContextClientFunc) {
  24. contextClientFuncs = append(contextClientFuncs, fn)
  25. }
  26. func ContextClient(ctx context.Context) (*http.Client, error) {
  27. if ctx != nil {
  28. if hc, ok := ctx.Value(HTTPClient).(*http.Client); ok {
  29. return hc, nil
  30. }
  31. }
  32. for _, fn := range contextClientFuncs {
  33. c, err := fn(ctx)
  34. if err != nil {
  35. return nil, err
  36. }
  37. if c != nil {
  38. return c, nil
  39. }
  40. }
  41. return http.DefaultClient, nil
  42. }
  43. func ContextTransport(ctx context.Context) http.RoundTripper {
  44. hc, err := ContextClient(ctx)
  45. // This is a rare error case (somebody using nil on App Engine).
  46. if err != nil {
  47. return ErrorTransport{err}
  48. }
  49. return hc.Transport
  50. }
  51. // ErrorTransport returns the specified error on RoundTrip.
  52. // This RoundTripper should be used in rare error cases where
  53. // error handling can be postponed to response handling time.
  54. type ErrorTransport struct{ Err error }
  55. func (t ErrorTransport) RoundTrip(*http.Request) (*http.Response, error) {
  56. return nil, t.Err
  57. }