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.

94 lines
2.6 KiB

Git LFS support v2 (#122) * Import github.com/git-lfs/lfs-test-server as lfs module base Imported commit is 3968aac269a77b73924649b9412ae03f7ccd3198 Removed: Dockerfile CONTRIBUTING.md mgmt* script/ vendor/ kvlogger.go .dockerignore .gitignore README.md * Remove config, add JWT support from github.com/mgit-at/lfs-test-server Imported commit f0cdcc5a01599c5a955dc1bbf683bb4acecdba83 * Add LFS settings * Add LFS meta object model * Add LFS routes and initialization * Import github.com/dgrijalva/jwt-go into vendor/ * Adapt LFS module: handlers, routing, meta store * Move LFS routes to /user/repo/info/lfs/* * Add request header checks to LFS BatchHandler / PostHandler * Implement LFS basic authentication * Rework JWT secret generation / load * Implement LFS SSH token authentication with JWT Specification: https://github.com/github/git-lfs/tree/master/docs/api * Integrate LFS settings into install process * Remove LFS objects when repository is deleted Only removes objects from content store when deleted repo is the only referencing repository * Make LFS module stateless Fixes bug where LFS would not work after installation without restarting Gitea * Change 500 'Internal Server Error' to 400 'Bad Request' * Change sql query to xorm call * Remove unneeded type from LFS module * Change internal imports to code.gitea.io/gitea/ * Add Gitea authors copyright * Change basic auth realm to "gitea-lfs" * Add unique indexes to LFS model * Use xorm count function in LFS check on repository delete * Return io.ReadCloser from content store and close after usage * Add LFS info to runWeb() * Export LFS content store base path * LFS file download from UI * Work around git-lfs client issue with unauthenticated requests Returning a dummy Authorization header for unauthenticated requests lets git-lfs client skip asking for auth credentials See: https://github.com/github/git-lfs/issues/1088 * Fix unauthenticated UI downloads from public repositories * Authentication check order, Finish LFS file view logic * Ignore LFS hooks if installed for current OS user Fixes Gitea UI actions for repositories tracking LFS files. Checks for minimum needed git version by parsing the semantic version string. * Hide LFS metafile diff from commit view, marking as binary * Show LFS notice if file in commit view is tracked * Add notbefore/nbf JWT claim * Correct lint suggestions - comments for structs and functions - Add comments to LFS model - Function comment for GetRandomBytesAsBase64 - LFS server function comments and lint variable suggestion * Move secret generation code out of conditional Ensures no LFS code may run with an empty secret * Do not hand out JWT tokens if LFS server support is disabled
8 years ago
  1. package jwt
  2. import (
  3. "encoding/json"
  4. "errors"
  5. // "fmt"
  6. )
  7. // Claims type that uses the map[string]interface{} for JSON decoding
  8. // This is the default claims type if you don't supply one
  9. type MapClaims map[string]interface{}
  10. // Compares the aud claim against cmp.
  11. // If required is false, this method will return true if the value matches or is unset
  12. func (m MapClaims) VerifyAudience(cmp string, req bool) bool {
  13. aud, _ := m["aud"].(string)
  14. return verifyAud(aud, cmp, req)
  15. }
  16. // Compares the exp claim against cmp.
  17. // If required is false, this method will return true if the value matches or is unset
  18. func (m MapClaims) VerifyExpiresAt(cmp int64, req bool) bool {
  19. switch exp := m["exp"].(type) {
  20. case float64:
  21. return verifyExp(int64(exp), cmp, req)
  22. case json.Number:
  23. v, _ := exp.Int64()
  24. return verifyExp(v, cmp, req)
  25. }
  26. return req == false
  27. }
  28. // Compares the iat claim against cmp.
  29. // If required is false, this method will return true if the value matches or is unset
  30. func (m MapClaims) VerifyIssuedAt(cmp int64, req bool) bool {
  31. switch iat := m["iat"].(type) {
  32. case float64:
  33. return verifyIat(int64(iat), cmp, req)
  34. case json.Number:
  35. v, _ := iat.Int64()
  36. return verifyIat(v, cmp, req)
  37. }
  38. return req == false
  39. }
  40. // Compares the iss claim against cmp.
  41. // If required is false, this method will return true if the value matches or is unset
  42. func (m MapClaims) VerifyIssuer(cmp string, req bool) bool {
  43. iss, _ := m["iss"].(string)
  44. return verifyIss(iss, cmp, req)
  45. }
  46. // Compares the nbf claim against cmp.
  47. // If required is false, this method will return true if the value matches or is unset
  48. func (m MapClaims) VerifyNotBefore(cmp int64, req bool) bool {
  49. switch nbf := m["nbf"].(type) {
  50. case float64:
  51. return verifyNbf(int64(nbf), cmp, req)
  52. case json.Number:
  53. v, _ := nbf.Int64()
  54. return verifyNbf(v, cmp, req)
  55. }
  56. return req == false
  57. }
  58. // Validates time based claims "exp, iat, nbf".
  59. // There is no accounting for clock skew.
  60. // As well, if any of the above claims are not in the token, it will still
  61. // be considered a valid claim.
  62. func (m MapClaims) Valid() error {
  63. vErr := new(ValidationError)
  64. now := TimeFunc().Unix()
  65. if m.VerifyExpiresAt(now, false) == false {
  66. vErr.Inner = errors.New("Token is expired")
  67. vErr.Errors |= ValidationErrorExpired
  68. }
  69. if m.VerifyIssuedAt(now, false) == false {
  70. vErr.Inner = errors.New("Token used before issued")
  71. vErr.Errors |= ValidationErrorIssuedAt
  72. }
  73. if m.VerifyNotBefore(now, false) == false {
  74. vErr.Inner = errors.New("Token is not valid yet")
  75. vErr.Errors |= ValidationErrorNotValidYet
  76. }
  77. if vErr.valid() {
  78. return nil
  79. }
  80. return vErr
  81. }