diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2014-03-13 14:50:09 +0800 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2014-03-13 14:50:09 +0800 |
commit | 3a1fa012f7069c5d6b606a3330ec68abdcc125ed (patch) | |
tree | 2a06f9d85904951cbee4579d1ae2183ebaebaf67 /models | |
parent | 18ba14913746c6c436c4632bdc9174ecfcd59dda (diff) | |
download | gitea-3a1fa012f7069c5d6b606a3330ec68abdcc125ed.tar.gz gitea-3a1fa012f7069c5d6b606a3330ec68abdcc125ed.zip |
update repo page
Diffstat (limited to 'models')
-rw-r--r-- | models/repo.go | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/models/repo.go b/models/repo.go index 6387090ed0..fa8f7c760d 100644 --- a/models/repo.go +++ b/models/repo.go @@ -268,13 +268,21 @@ const ( ) type RepoFile struct { - Type int - Name string - + Type int + Name string + Message string Created time.Time } -func GetReposFiles(userName, reposName, treeName, rpath string) ([]RepoFile, error) { +func (f *RepoFile) IsFile() bool { + return f.Type == git.FilemodeBlob || f.Type == git.FilemodeBlobExecutable +} + +func (f *RepoFile) IsDir() bool { + return f.Type == git.FilemodeTree +} + +func GetReposFiles(userName, reposName, treeName, rpath string) ([]*RepoFile, error) { f := RepoPath(userName, reposName) repo, err := git.OpenRepository(f) if err != nil { @@ -286,7 +294,7 @@ func GetReposFiles(userName, reposName, treeName, rpath string) ([]RepoFile, err return nil, err } lastCommit := obj.(*git.Commit) - var repofiles []RepoFile + var repofiles []*RepoFile tree, err := lastCommit.Tree() if err != nil { return nil, err @@ -294,10 +302,12 @@ func GetReposFiles(userName, reposName, treeName, rpath string) ([]RepoFile, err var i uint64 = 0 for ; i < tree.EntryCount(); i++ { entry := tree.EntryByIndex(i) - repofiles = append(repofiles, RepoFile{ + + repofiles = append(repofiles, &RepoFile{ entry.Filemode, entry.Name, - time.Now(), + lastCommit.Message(), + lastCommit.Committer().When, }) } |