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.

oauth2.go 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. // Copyright 2014 The Gogs Authors. All rights reserved.
  2. // Copyright 2019 The Gitea Authors. All rights reserved.
  3. // Use of this source code is governed by a MIT-style
  4. // license that can be found in the LICENSE file.
  5. package sso
  6. import (
  7. "strings"
  8. "time"
  9. "code.gitea.io/gitea/models"
  10. "code.gitea.io/gitea/modules/log"
  11. "code.gitea.io/gitea/modules/timeutil"
  12. "gitea.com/macaron/macaron"
  13. "gitea.com/macaron/session"
  14. )
  15. // Ensure the struct implements the interface.
  16. var (
  17. _ SingleSignOn = &OAuth2{}
  18. )
  19. // CheckOAuthAccessToken returns uid of user from oauth token
  20. func CheckOAuthAccessToken(accessToken string) int64 {
  21. // JWT tokens require a "."
  22. if !strings.Contains(accessToken, ".") {
  23. return 0
  24. }
  25. token, err := models.ParseOAuth2Token(accessToken)
  26. if err != nil {
  27. log.Trace("ParseOAuth2Token: %v", err)
  28. return 0
  29. }
  30. var grant *models.OAuth2Grant
  31. if grant, err = models.GetOAuth2GrantByID(token.GrantID); err != nil || grant == nil {
  32. return 0
  33. }
  34. if token.Type != models.TypeAccessToken {
  35. return 0
  36. }
  37. if token.ExpiresAt < time.Now().Unix() || token.IssuedAt > time.Now().Unix() {
  38. return 0
  39. }
  40. return grant.UserID
  41. }
  42. // OAuth2 implements the SingleSignOn interface and authenticates requests
  43. // (API requests only) by looking for an OAuth token in query parameters or the
  44. // "Authorization" header.
  45. type OAuth2 struct {
  46. }
  47. // Init does nothing as the OAuth2 implementation does not need to allocate any resources
  48. func (o *OAuth2) Init() error {
  49. return nil
  50. }
  51. // Free does nothing as the OAuth2 implementation does not have to release any resources
  52. func (o *OAuth2) Free() error {
  53. return nil
  54. }
  55. // userIDFromToken returns the user id corresponding to the OAuth token.
  56. func (o *OAuth2) userIDFromToken(ctx *macaron.Context) int64 {
  57. // Check access token.
  58. tokenSHA := ctx.Query("token")
  59. if len(tokenSHA) == 0 {
  60. tokenSHA = ctx.Query("access_token")
  61. }
  62. if len(tokenSHA) == 0 {
  63. // Well, check with header again.
  64. auHead := ctx.Req.Header.Get("Authorization")
  65. if len(auHead) > 0 {
  66. auths := strings.Fields(auHead)
  67. if len(auths) == 2 && (auths[0] == "token" || strings.ToLower(auths[0]) == "bearer") {
  68. tokenSHA = auths[1]
  69. }
  70. }
  71. }
  72. if len(tokenSHA) == 0 {
  73. return 0
  74. }
  75. // Let's see if token is valid.
  76. if strings.Contains(tokenSHA, ".") {
  77. uid := CheckOAuthAccessToken(tokenSHA)
  78. if uid != 0 {
  79. ctx.Data["IsApiToken"] = true
  80. }
  81. return uid
  82. }
  83. t, err := models.GetAccessTokenBySHA(tokenSHA)
  84. if err != nil {
  85. if models.IsErrAccessTokenNotExist(err) || models.IsErrAccessTokenEmpty(err) {
  86. log.Error("GetAccessTokenBySHA: %v", err)
  87. }
  88. return 0
  89. }
  90. t.UpdatedUnix = timeutil.TimeStampNow()
  91. if err = models.UpdateAccessToken(t); err != nil {
  92. log.Error("UpdateAccessToken: %v", err)
  93. }
  94. ctx.Data["IsApiToken"] = true
  95. return t.UID
  96. }
  97. // IsEnabled returns true as this plugin is enabled by default and its not possible
  98. // to disable it from settings.
  99. func (o *OAuth2) IsEnabled() bool {
  100. return true
  101. }
  102. // VerifyAuthData extracts the user ID from the OAuth token in the query parameters
  103. // or the "Authorization" header and returns the corresponding user object for that ID.
  104. // If verification is successful returns an existing user object.
  105. // Returns nil if verification fails.
  106. func (o *OAuth2) VerifyAuthData(ctx *macaron.Context, sess session.Store) *models.User {
  107. if !models.HasEngine {
  108. return nil
  109. }
  110. if !isAPIPath(ctx) && !isAttachmentDownload(ctx) {
  111. return nil
  112. }
  113. id := o.userIDFromToken(ctx)
  114. if id <= 0 {
  115. return nil
  116. }
  117. user, err := models.GetUserByID(id)
  118. if err != nil {
  119. if !models.IsErrUserNotExist(err) {
  120. log.Error("GetUserByName: %v", err)
  121. }
  122. return nil
  123. }
  124. return user
  125. }