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.

signature_gogit.go 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. // Copyright 2015 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. //go:build gogit
  6. package git
  7. import (
  8. "bytes"
  9. "strconv"
  10. "time"
  11. "github.com/go-git/go-git/v5/plumbing/object"
  12. )
  13. // Signature represents the Author or Committer information.
  14. type Signature = object.Signature
  15. // Helper to get a signature from the commit line, which looks like these:
  16. // author Patrick Gundlach <gundlach@speedata.de> 1378823654 +0200
  17. // author Patrick Gundlach <gundlach@speedata.de> Thu, 07 Apr 2005 22:13:13 +0200
  18. // but without the "author " at the beginning (this method should)
  19. // be used for author and committer.
  20. //
  21. // FIXME: include timezone for timestamp!
  22. func newSignatureFromCommitline(line []byte) (_ *Signature, err error) {
  23. sig := new(Signature)
  24. emailStart := bytes.IndexByte(line, '<')
  25. sig.Name = string(line[:emailStart-1])
  26. emailEnd := bytes.IndexByte(line, '>')
  27. sig.Email = string(line[emailStart+1 : emailEnd])
  28. // Check date format.
  29. if len(line) > emailEnd+2 {
  30. firstChar := line[emailEnd+2]
  31. if firstChar >= 48 && firstChar <= 57 {
  32. timestop := bytes.IndexByte(line[emailEnd+2:], ' ')
  33. timestring := string(line[emailEnd+2 : emailEnd+2+timestop])
  34. seconds, _ := strconv.ParseInt(timestring, 10, 64)
  35. sig.When = time.Unix(seconds, 0)
  36. } else {
  37. sig.When, err = time.Parse(GitTimeLayout, string(line[emailEnd+2:]))
  38. if err != nil {
  39. return nil, err
  40. }
  41. }
  42. } else {
  43. // Fall back to unix 0 time
  44. sig.When = time.Unix(0, 0)
  45. }
  46. return sig, nil
  47. }