mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	
		
			
				
	
	
		
			79 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2014 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 models
 | |
| 
 | |
| import (
 | |
| 	"path"
 | |
| 	"time"
 | |
| 
 | |
| 	git "github.com/gogits/git"
 | |
| )
 | |
| 
 | |
| type RepoFile struct {
 | |
| 	Id      *git.Oid
 | |
| 	Type    int
 | |
| 	Name    string
 | |
| 	Path    string
 | |
| 	Message string
 | |
| 	Created time.Time
 | |
| }
 | |
| 
 | |
| func (f *RepoFile) IsFile() bool {
 | |
| 	return f.Type == git.FileModeBlob || f.Type == git.FileModeBlobExec
 | |
| }
 | |
| 
 | |
| func (f *RepoFile) IsDir() bool {
 | |
| 	return f.Type == git.FileModeTree
 | |
| }
 | |
| 
 | |
| func GetReposFiles(userName, reposName, branchName, rpath string) ([]*RepoFile, error) {
 | |
| 	f := RepoPath(userName, reposName)
 | |
| 
 | |
| 	repo, err := git.OpenRepository(f)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 
 | |
| 	ref, err := repo.LookupReference("refs/heads/" + branchName)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 
 | |
| 	lastCommit, err := repo.LookupCommit(ref.Oid)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 
 | |
| 	var repodirs []*RepoFile
 | |
| 	var repofiles []*RepoFile
 | |
| 	lastCommit.Tree.Walk(func(dirname string, entry *git.TreeEntry) int {
 | |
| 		if dirname == rpath {
 | |
| 			switch entry.Filemode {
 | |
| 			case git.FileModeBlob, git.FileModeBlobExec:
 | |
| 				repofiles = append(repofiles, &RepoFile{
 | |
| 					entry.Id,
 | |
| 					entry.Filemode,
 | |
| 					entry.Name,
 | |
| 					path.Join(dirname, entry.Name),
 | |
| 					lastCommit.Message(),
 | |
| 					lastCommit.Committer.When,
 | |
| 				})
 | |
| 			case git.FileModeTree:
 | |
| 				repodirs = append(repodirs, &RepoFile{
 | |
| 					entry.Id,
 | |
| 					entry.Filemode,
 | |
| 					entry.Name,
 | |
| 					path.Join(dirname, entry.Name),
 | |
| 					lastCommit.Message(),
 | |
| 					lastCommit.Committer.When,
 | |
| 				})
 | |
| 			}
 | |
| 		}
 | |
| 		return 0
 | |
| 	})
 | |
| 
 | |
| 	return append(repodirs, repofiles...), nil
 | |
| }
 |