mirror of
https://github.com/gogs/gogs.git
synced 2025-12-22 00:00:07 +01:00
* Bootstrap with GORM * Fix lint error * Set conn max lifetime to one minute * Fallback to use gorm v1 * Define HTTP routes * Finish authentication * Save token updated * Add docstring * Finish authorization * serveBatch rundown * Define types in lfsutil * Finish Batch * authutil * Finish basic * Formalize response error * Fix lint errors * authutil: add tests * dbutil: add tests * lfsutil: add tests * strutil: add tests * Formalize 401 response
31 lines
702 B
Go
31 lines
702 B
Go
// Copyright 2020 The Gogs Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package lfsutil
|
|
|
|
import (
|
|
"strings"
|
|
)
|
|
|
|
// OID is an LFS object ID.
|
|
type OID string
|
|
|
|
// ValidOID returns true if given oid is valid according to spec:
|
|
// https://github.com/git-lfs/git-lfs/blob/master/docs/spec.md
|
|
func ValidOID(oid OID) bool {
|
|
fields := strings.SplitN(string(oid), ":", 2)
|
|
if len(fields) != 2 {
|
|
return false
|
|
}
|
|
method := fields[0]
|
|
hash := fields[1]
|
|
|
|
switch method {
|
|
case "sha256":
|
|
// SHA256 produces 64-char lower case hexadecimal hash
|
|
return len(hash) == 64 && strings.ToLower(hash) == hash
|
|
}
|
|
return false
|
|
}
|