2016-11-03 22:16:01 +00:00
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
2019-04-19 12:17:27 +00:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2016-11-03 22:16:01 +00:00
|
|
|
|
|
|
|
package git
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/hex"
|
|
|
|
"fmt"
|
2020-04-08 02:54:46 +00:00
|
|
|
"regexp"
|
2016-11-03 22:16:01 +00:00
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2023-08-04 02:53:15 +00:00
|
|
|
// EmptySHA defines empty git SHA (undefined, non-existent)
|
2016-12-22 09:30:52 +00:00
|
|
|
const EmptySHA = "0000000000000000000000000000000000000000"
|
2016-11-03 22:16:01 +00:00
|
|
|
|
2023-08-04 02:53:15 +00:00
|
|
|
// EmptyTreeSHA is the SHA of an empty tree, the root of all git repositories
|
2020-05-29 21:14:00 +00:00
|
|
|
const EmptyTreeSHA = "4b825dc642cb6eb9a060e54bf8d69288fbee4904"
|
|
|
|
|
2022-12-27 13:12:49 +00:00
|
|
|
// SHAFullLength is the full length of a git SHA
|
|
|
|
const SHAFullLength = 40
|
|
|
|
|
2020-04-08 02:54:46 +00:00
|
|
|
// SHAPattern can be used to determine if a string is an valid sha
|
2022-09-04 10:47:56 +00:00
|
|
|
var shaPattern = regexp.MustCompile(`^[0-9a-f]{4,40}$`)
|
|
|
|
|
|
|
|
// IsValidSHAPattern will check if the provided string matches the SHA Pattern
|
|
|
|
func IsValidSHAPattern(sha string) bool {
|
|
|
|
return shaPattern.MatchString(sha)
|
|
|
|
}
|
2020-04-08 02:54:46 +00:00
|
|
|
|
2023-06-15 00:14:43 +00:00
|
|
|
type ErrInvalidSHA struct {
|
|
|
|
SHA string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrInvalidSHA) Error() string {
|
|
|
|
return fmt.Sprintf("invalid sha: %s", err.SHA)
|
|
|
|
}
|
|
|
|
|
2016-12-22 09:30:52 +00:00
|
|
|
// MustID always creates a new SHA1 from a [20]byte array with no validation of input.
|
|
|
|
func MustID(b []byte) SHA1 {
|
|
|
|
var id SHA1
|
2018-05-01 07:04:36 +00:00
|
|
|
copy(id[:], b)
|
2016-11-03 22:16:01 +00:00
|
|
|
return id
|
|
|
|
}
|
|
|
|
|
2016-12-22 09:30:52 +00:00
|
|
|
// NewID creates a new SHA1 from a [20]byte array.
|
|
|
|
func NewID(b []byte) (SHA1, error) {
|
2016-11-03 22:16:01 +00:00
|
|
|
if len(b) != 20 {
|
2016-12-22 09:30:52 +00:00
|
|
|
return SHA1{}, fmt.Errorf("Length must be 20: %v", b)
|
2016-11-03 22:16:01 +00:00
|
|
|
}
|
|
|
|
return MustID(b), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// MustIDFromString always creates a new sha from a ID with no validation of input.
|
2016-12-22 09:30:52 +00:00
|
|
|
func MustIDFromString(s string) SHA1 {
|
2016-11-03 22:16:01 +00:00
|
|
|
b, _ := hex.DecodeString(s)
|
|
|
|
return MustID(b)
|
|
|
|
}
|
|
|
|
|
2016-12-22 09:30:52 +00:00
|
|
|
// NewIDFromString creates a new SHA1 from a ID string of length 40.
|
|
|
|
func NewIDFromString(s string) (SHA1, error) {
|
|
|
|
var id SHA1
|
2016-11-03 22:16:01 +00:00
|
|
|
s = strings.TrimSpace(s)
|
2022-12-27 13:12:49 +00:00
|
|
|
if len(s) != SHAFullLength {
|
2016-11-03 22:16:01 +00:00
|
|
|
return id, fmt.Errorf("Length must be 40: %s", s)
|
|
|
|
}
|
|
|
|
b, err := hex.DecodeString(s)
|
|
|
|
if err != nil {
|
|
|
|
return id, err
|
|
|
|
}
|
|
|
|
return NewID(b)
|
|
|
|
}
|