blob: 6a11558fe1d491caf51abcc6b8dfb8157294e277 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
package repository
import (
"fmt"
"io"
)
const idLengthSHA1 = 40
const idLengthSHA256 = 64
// Hash is a git hash
type Hash string
func (h Hash) String() string {
return string(h)
}
// UnmarshalGQL implement the Unmarshaler interface for gqlgen
func (h *Hash) UnmarshalGQL(v interface{}) error {
_, ok := v.(string)
if !ok {
return fmt.Errorf("hashes must be strings")
}
*h = v.(Hash)
if !h.IsValid() {
return fmt.Errorf("invalid hash")
}
return nil
}
// MarshalGQL implement the Marshaler interface for gqlgen
func (h Hash) MarshalGQL(w io.Writer) {
_, _ = w.Write([]byte(`"` + h.String() + `"`))
}
// IsValid tell if the hash is valid
func (h *Hash) IsValid() bool {
// Support for both sha1 and sha256 git hashes
if len(*h) != idLengthSHA1 && len(*h) != idLengthSHA256 {
return false
}
for _, r := range *h {
if (r < 'a' || r > 'z') && (r < '0' || r > '9') {
return false
}
}
return true
}
|