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.
|
2024-01-05 09:44:33 +00:00
|
|
|
// Copyright 2024 The Forgejo Authors c/o Codeberg e.V.. 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
|
|
|
|
|
2024-01-05 09:44:33 +00:00
|
|
|
import "strings"
|
|
|
|
|
2019-03-27 09:33:00 +00:00
|
|
|
// GetBlobByPath get the blob object according the path
|
2016-11-03 22:16:01 +00:00
|
|
|
func (t *Tree) GetBlobByPath(relpath string) (*Blob, error) {
|
|
|
|
entry, err := t.GetTreeEntryByPath(relpath)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2019-05-21 21:32:52 +00:00
|
|
|
if !entry.IsDir() && !entry.IsSubModule() {
|
2016-11-03 22:16:01 +00:00
|
|
|
return entry.Blob(), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, ErrNotExist{"", relpath}
|
|
|
|
}
|
2024-01-05 09:44:33 +00:00
|
|
|
|
|
|
|
// GetBlobByFoldedPath returns the blob object at relpath, regardless of the
|
|
|
|
// case of relpath. If there are multiple files with the same case-insensitive
|
|
|
|
// name, the first one found will be returned.
|
|
|
|
func (t *Tree) GetBlobByFoldedPath(relpath string) (*Blob, error) {
|
|
|
|
entries, err := t.ListEntries()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, entry := range entries {
|
|
|
|
if strings.EqualFold(entry.Name(), relpath) {
|
|
|
|
return t.GetBlobByPath(entry.Name())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, ErrNotExist{"", relpath}
|
|
|
|
}
|