2016-11-03 23:16:01 +01:00
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
2019-04-19 14:17:27 +02:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2016-11-03 23:16:01 +01:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package git
|
|
|
|
|
|
|
|
import (
|
2018-05-01 09:04:36 +02:00
|
|
|
"io"
|
2016-11-03 23:16:01 +01:00
|
|
|
"sort"
|
|
|
|
"strings"
|
2019-04-19 14:17:27 +02:00
|
|
|
|
|
|
|
"gopkg.in/src-d/go-git.v4/plumbing"
|
|
|
|
"gopkg.in/src-d/go-git.v4/plumbing/filemode"
|
|
|
|
"gopkg.in/src-d/go-git.v4/plumbing/object"
|
2016-11-03 23:16:01 +01:00
|
|
|
)
|
|
|
|
|
2016-12-22 10:30:52 +01:00
|
|
|
// EntryMode the type of the object in the git tree
|
2016-11-03 23:16:01 +01:00
|
|
|
type EntryMode int
|
|
|
|
|
|
|
|
// There are only a few file modes in Git. They look like unix file modes, but they can only be
|
|
|
|
// one of these.
|
|
|
|
const (
|
2016-12-22 10:30:52 +01:00
|
|
|
// EntryModeBlob
|
2019-04-19 14:17:27 +02:00
|
|
|
EntryModeBlob EntryMode = 0100644
|
2016-12-22 10:30:52 +01:00
|
|
|
// EntryModeExec
|
2019-04-19 14:17:27 +02:00
|
|
|
EntryModeExec EntryMode = 0100755
|
2016-12-22 10:30:52 +01:00
|
|
|
// EntryModeSymlink
|
2019-04-19 14:17:27 +02:00
|
|
|
EntryModeSymlink EntryMode = 0120000
|
2016-12-22 10:30:52 +01:00
|
|
|
// EntryModeCommit
|
2019-04-19 14:17:27 +02:00
|
|
|
EntryModeCommit EntryMode = 0160000
|
2016-12-22 10:30:52 +01:00
|
|
|
// EntryModeTree
|
2019-04-19 14:17:27 +02:00
|
|
|
EntryModeTree EntryMode = 0040000
|
2016-11-03 23:16:01 +01:00
|
|
|
)
|
|
|
|
|
2016-12-22 10:30:52 +01:00
|
|
|
// TreeEntry the leaf in the git tree
|
2016-11-03 23:16:01 +01:00
|
|
|
type TreeEntry struct {
|
2019-04-19 14:17:27 +02:00
|
|
|
ID SHA1
|
2016-11-03 23:16:01 +01:00
|
|
|
|
2019-04-19 14:17:27 +02:00
|
|
|
gogitTreeEntry *object.TreeEntry
|
|
|
|
ptree *Tree
|
2016-11-03 23:16:01 +01:00
|
|
|
|
2019-05-03 02:33:11 +02:00
|
|
|
size int64
|
|
|
|
sized bool
|
|
|
|
fullName string
|
2016-11-03 23:16:01 +01:00
|
|
|
}
|
|
|
|
|
2016-12-22 10:30:52 +01:00
|
|
|
// Name returns the name of the entry
|
2016-11-03 23:16:01 +01:00
|
|
|
func (te *TreeEntry) Name() string {
|
2019-05-03 02:33:11 +02:00
|
|
|
if te.fullName != "" {
|
|
|
|
return te.fullName
|
|
|
|
}
|
2019-04-19 14:17:27 +02:00
|
|
|
return te.gogitTreeEntry.Name
|
2016-11-03 23:16:01 +01:00
|
|
|
}
|
|
|
|
|
2018-11-28 08:00:25 +01:00
|
|
|
// Mode returns the mode of the entry
|
|
|
|
func (te *TreeEntry) Mode() EntryMode {
|
2019-04-19 14:17:27 +02:00
|
|
|
return EntryMode(te.gogitTreeEntry.Mode)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Type returns the type of the entry (commit, tree, blob)
|
|
|
|
func (te *TreeEntry) Type() string {
|
|
|
|
switch te.Mode() {
|
|
|
|
case EntryModeCommit:
|
|
|
|
return "commit"
|
|
|
|
case EntryModeTree:
|
|
|
|
return "tree"
|
|
|
|
default:
|
|
|
|
return "blob"
|
|
|
|
}
|
2018-11-28 08:00:25 +01:00
|
|
|
}
|
|
|
|
|
2016-12-22 10:30:52 +01:00
|
|
|
// Size returns the size of the entry
|
2016-11-03 23:16:01 +01:00
|
|
|
func (te *TreeEntry) Size() int64 {
|
|
|
|
if te.IsDir() {
|
|
|
|
return 0
|
|
|
|
} else if te.sized {
|
|
|
|
return te.size
|
|
|
|
}
|
|
|
|
|
2019-04-19 14:17:27 +02:00
|
|
|
file, err := te.ptree.gogitTree.TreeEntryFile(te.gogitTreeEntry)
|
2016-11-03 23:16:01 +01:00
|
|
|
if err != nil {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
te.sized = true
|
2019-04-19 14:17:27 +02:00
|
|
|
te.size = file.Size
|
2016-11-03 23:16:01 +01:00
|
|
|
return te.size
|
|
|
|
}
|
|
|
|
|
2016-12-22 10:30:52 +01:00
|
|
|
// IsSubModule if the entry is a sub module
|
2016-11-03 23:16:01 +01:00
|
|
|
func (te *TreeEntry) IsSubModule() bool {
|
2019-04-19 14:17:27 +02:00
|
|
|
return te.gogitTreeEntry.Mode == filemode.Submodule
|
2016-11-03 23:16:01 +01:00
|
|
|
}
|
|
|
|
|
2016-12-22 10:30:52 +01:00
|
|
|
// IsDir if the entry is a sub dir
|
2016-11-03 23:16:01 +01:00
|
|
|
func (te *TreeEntry) IsDir() bool {
|
2019-04-19 14:17:27 +02:00
|
|
|
return te.gogitTreeEntry.Mode == filemode.Dir
|
2016-11-03 23:16:01 +01:00
|
|
|
}
|
|
|
|
|
2016-12-22 10:30:52 +01:00
|
|
|
// IsLink if the entry is a symlink
|
|
|
|
func (te *TreeEntry) IsLink() bool {
|
2019-04-19 14:17:27 +02:00
|
|
|
return te.gogitTreeEntry.Mode == filemode.Symlink
|
2016-12-22 10:30:52 +01:00
|
|
|
}
|
|
|
|
|
2019-04-19 14:17:27 +02:00
|
|
|
// IsRegular if the entry is a regular file
|
|
|
|
func (te *TreeEntry) IsRegular() bool {
|
|
|
|
return te.gogitTreeEntry.Mode == filemode.Regular
|
|
|
|
}
|
|
|
|
|
2019-08-02 17:14:50 +02:00
|
|
|
// IsExecutable if the entry is an executable file (not necessarily binary)
|
|
|
|
func (te *TreeEntry) IsExecutable() bool {
|
|
|
|
return te.gogitTreeEntry.Mode == filemode.Executable
|
|
|
|
}
|
|
|
|
|
2019-04-19 14:17:27 +02:00
|
|
|
// Blob returns the blob object the entry
|
2016-11-03 23:16:01 +01:00
|
|
|
func (te *TreeEntry) Blob() *Blob {
|
2019-04-19 14:17:27 +02:00
|
|
|
encodedObj, err := te.ptree.repo.gogitRepo.Storer.EncodedObject(plumbing.AnyObject, te.gogitTreeEntry.Hash)
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-11-03 23:16:01 +01:00
|
|
|
return &Blob{
|
2019-04-19 14:17:27 +02:00
|
|
|
ID: te.gogitTreeEntry.Hash,
|
|
|
|
gogitEncodedObj: encodedObj,
|
|
|
|
name: te.Name(),
|
2016-11-03 23:16:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-01 09:04:36 +02:00
|
|
|
// FollowLink returns the entry pointed to by a symlink
|
|
|
|
func (te *TreeEntry) FollowLink() (*TreeEntry, error) {
|
|
|
|
if !te.IsLink() {
|
|
|
|
return nil, ErrBadLink{te.Name(), "not a symlink"}
|
|
|
|
}
|
|
|
|
|
|
|
|
// read the link
|
2019-04-19 14:17:27 +02:00
|
|
|
r, err := te.Blob().DataAsync()
|
2018-05-01 09:04:36 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-04-19 14:17:27 +02:00
|
|
|
defer r.Close()
|
2018-05-01 09:04:36 +02:00
|
|
|
buf := make([]byte, te.Size())
|
|
|
|
_, err = io.ReadFull(r, buf)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
lnk := string(buf)
|
|
|
|
t := te.ptree
|
|
|
|
|
|
|
|
// traverse up directories
|
|
|
|
for ; t != nil && strings.HasPrefix(lnk, "../"); lnk = lnk[3:] {
|
|
|
|
t = t.ptree
|
|
|
|
}
|
|
|
|
|
|
|
|
if t == nil {
|
|
|
|
return nil, ErrBadLink{te.Name(), "points outside of repo"}
|
|
|
|
}
|
|
|
|
|
|
|
|
target, err := t.GetTreeEntryByPath(lnk)
|
|
|
|
if err != nil {
|
|
|
|
if IsErrNotExist(err) {
|
|
|
|
return nil, ErrBadLink{te.Name(), "broken link"}
|
|
|
|
}
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return target, nil
|
|
|
|
}
|
|
|
|
|
2016-12-28 17:35:52 +01:00
|
|
|
// GetSubJumpablePathName return the full path of subdirectory jumpable ( contains only one directory )
|
|
|
|
func (te *TreeEntry) GetSubJumpablePathName() string {
|
|
|
|
if te.IsSubModule() || !te.IsDir() {
|
|
|
|
return ""
|
|
|
|
}
|
2019-04-19 14:17:27 +02:00
|
|
|
tree, err := te.ptree.SubTree(te.Name())
|
2016-12-28 17:35:52 +01:00
|
|
|
if err != nil {
|
2019-04-19 14:17:27 +02:00
|
|
|
return te.Name()
|
2016-12-28 17:35:52 +01:00
|
|
|
}
|
|
|
|
entries, _ := tree.ListEntries()
|
|
|
|
if len(entries) == 1 && entries[0].IsDir() {
|
|
|
|
name := entries[0].GetSubJumpablePathName()
|
|
|
|
if name != "" {
|
2019-04-19 14:17:27 +02:00
|
|
|
return te.Name() + "/" + name
|
2016-12-28 17:35:52 +01:00
|
|
|
}
|
|
|
|
}
|
2019-04-19 14:17:27 +02:00
|
|
|
return te.Name()
|
2016-12-28 17:35:52 +01:00
|
|
|
}
|
|
|
|
|
2016-12-22 10:30:52 +01:00
|
|
|
// Entries a list of entry
|
2016-11-03 23:16:01 +01:00
|
|
|
type Entries []*TreeEntry
|
|
|
|
|
2017-09-19 10:37:03 +02:00
|
|
|
type customSortableEntries struct {
|
|
|
|
Comparer func(s1, s2 string) bool
|
|
|
|
Entries
|
|
|
|
}
|
|
|
|
|
|
|
|
var sorter = []func(t1, t2 *TreeEntry, cmp func(s1, s2 string) bool) bool{
|
|
|
|
func(t1, t2 *TreeEntry, cmp func(s1, s2 string) bool) bool {
|
2016-11-03 23:16:01 +01:00
|
|
|
return (t1.IsDir() || t1.IsSubModule()) && !t2.IsDir() && !t2.IsSubModule()
|
|
|
|
},
|
2017-09-19 10:37:03 +02:00
|
|
|
func(t1, t2 *TreeEntry, cmp func(s1, s2 string) bool) bool {
|
2019-04-19 14:17:27 +02:00
|
|
|
return cmp(t1.Name(), t2.Name())
|
2016-11-03 23:16:01 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2017-09-19 10:37:03 +02:00
|
|
|
func (ctes customSortableEntries) Len() int { return len(ctes.Entries) }
|
|
|
|
|
|
|
|
func (ctes customSortableEntries) Swap(i, j int) {
|
|
|
|
ctes.Entries[i], ctes.Entries[j] = ctes.Entries[j], ctes.Entries[i]
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ctes customSortableEntries) Less(i, j int) bool {
|
|
|
|
t1, t2 := ctes.Entries[i], ctes.Entries[j]
|
2016-11-03 23:16:01 +01:00
|
|
|
var k int
|
|
|
|
for k = 0; k < len(sorter)-1; k++ {
|
2016-11-12 12:09:25 +01:00
|
|
|
s := sorter[k]
|
2016-11-03 23:16:01 +01:00
|
|
|
switch {
|
2017-09-19 10:37:03 +02:00
|
|
|
case s(t1, t2, ctes.Comparer):
|
2016-11-03 23:16:01 +01:00
|
|
|
return true
|
2017-09-19 10:37:03 +02:00
|
|
|
case s(t2, t1, ctes.Comparer):
|
2016-11-03 23:16:01 +01:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
2017-09-19 10:37:03 +02:00
|
|
|
return sorter[k](t1, t2, ctes.Comparer)
|
2016-11-03 23:16:01 +01:00
|
|
|
}
|
|
|
|
|
2016-12-22 10:30:52 +01:00
|
|
|
// Sort sort the list of entry
|
2016-11-03 23:16:01 +01:00
|
|
|
func (tes Entries) Sort() {
|
2017-09-19 10:37:03 +02:00
|
|
|
sort.Sort(customSortableEntries{func(s1, s2 string) bool {
|
|
|
|
return s1 < s2
|
|
|
|
}, tes})
|
|
|
|
}
|
|
|
|
|
|
|
|
// CustomSort customizable string comparing sort entry list
|
|
|
|
func (tes Entries) CustomSort(cmp func(s1, s2 string) bool) {
|
|
|
|
sort.Sort(customSortableEntries{cmp, tes})
|
2016-11-03 23:16:01 +01:00
|
|
|
}
|