|
|
@ -8,7 +8,6 @@ import ( |
|
|
|
"container/list" |
|
|
|
"container/list" |
|
|
|
"path" |
|
|
|
"path" |
|
|
|
|
|
|
|
|
|
|
|
"github.com/Unknwon/com" |
|
|
|
|
|
|
|
"github.com/Unknwon/paginater" |
|
|
|
"github.com/Unknwon/paginater" |
|
|
|
|
|
|
|
|
|
|
|
"github.com/gogits/gogs/models" |
|
|
|
"github.com/gogits/gogs/models" |
|
|
@ -46,18 +45,6 @@ func RenderIssueLinks(oldCommits *list.List, repoLink string) *list.List { |
|
|
|
func Commits(ctx *middleware.Context) { |
|
|
|
func Commits(ctx *middleware.Context) { |
|
|
|
ctx.Data["PageIsCommits"] = true |
|
|
|
ctx.Data["PageIsCommits"] = true |
|
|
|
|
|
|
|
|
|
|
|
userName := ctx.Repo.Owner.Name |
|
|
|
|
|
|
|
repoName := ctx.Repo.Repository.Name |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
brs, err := ctx.Repo.GitRepo.GetBranches() |
|
|
|
|
|
|
|
if err != nil { |
|
|
|
|
|
|
|
ctx.Handle(500, "GetBranches", err) |
|
|
|
|
|
|
|
return |
|
|
|
|
|
|
|
} else if len(brs) == 0 { |
|
|
|
|
|
|
|
ctx.Handle(404, "GetBranches", nil) |
|
|
|
|
|
|
|
return |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
commitsCount, err := ctx.Repo.Commit.CommitsCount() |
|
|
|
commitsCount, err := ctx.Repo.Commit.CommitsCount() |
|
|
|
if err != nil { |
|
|
|
if err != nil { |
|
|
|
ctx.Handle(500, "GetCommitsCount", err) |
|
|
|
ctx.Handle(500, "GetCommitsCount", err) |
|
|
@ -78,11 +65,12 @@ func Commits(ctx *middleware.Context) { |
|
|
|
} |
|
|
|
} |
|
|
|
commits = RenderIssueLinks(commits, ctx.Repo.RepoLink) |
|
|
|
commits = RenderIssueLinks(commits, ctx.Repo.RepoLink) |
|
|
|
commits = models.ValidateCommitsWithEmails(commits) |
|
|
|
commits = models.ValidateCommitsWithEmails(commits) |
|
|
|
|
|
|
|
|
|
|
|
ctx.Data["Commits"] = commits |
|
|
|
ctx.Data["Commits"] = commits |
|
|
|
ctx.Data["Username"] = userName |
|
|
|
|
|
|
|
ctx.Data["Reponame"] = repoName |
|
|
|
ctx.Data["Username"] = ctx.Repo.Owner.Name |
|
|
|
|
|
|
|
ctx.Data["Reponame"] = ctx.Repo.Repository.Name |
|
|
|
ctx.Data["CommitCount"] = commitsCount |
|
|
|
ctx.Data["CommitCount"] = commitsCount |
|
|
|
|
|
|
|
ctx.Data["Branch"] = ctx.Repo.BranchName |
|
|
|
ctx.HTML(200, COMMITS) |
|
|
|
ctx.HTML(200, COMMITS) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -95,18 +83,6 @@ func SearchCommits(ctx *middleware.Context) { |
|
|
|
return |
|
|
|
return |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
userName := ctx.Params(":username") |
|
|
|
|
|
|
|
repoName := ctx.Params(":reponame") |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
brs, err := ctx.Repo.GitRepo.GetBranches() |
|
|
|
|
|
|
|
if err != nil { |
|
|
|
|
|
|
|
ctx.Handle(500, "GetBranches", err) |
|
|
|
|
|
|
|
return |
|
|
|
|
|
|
|
} else if len(brs) == 0 { |
|
|
|
|
|
|
|
ctx.Handle(404, "GetBranches", nil) |
|
|
|
|
|
|
|
return |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
commits, err := ctx.Repo.Commit.SearchCommits(keyword) |
|
|
|
commits, err := ctx.Repo.Commit.SearchCommits(keyword) |
|
|
|
if err != nil { |
|
|
|
if err != nil { |
|
|
|
ctx.Handle(500, "SearchCommits", err) |
|
|
|
ctx.Handle(500, "SearchCommits", err) |
|
|
@ -114,12 +90,13 @@ func SearchCommits(ctx *middleware.Context) { |
|
|
|
} |
|
|
|
} |
|
|
|
commits = RenderIssueLinks(commits, ctx.Repo.RepoLink) |
|
|
|
commits = RenderIssueLinks(commits, ctx.Repo.RepoLink) |
|
|
|
commits = models.ValidateCommitsWithEmails(commits) |
|
|
|
commits = models.ValidateCommitsWithEmails(commits) |
|
|
|
|
|
|
|
ctx.Data["Commits"] = commits |
|
|
|
|
|
|
|
|
|
|
|
ctx.Data["Keyword"] = keyword |
|
|
|
ctx.Data["Keyword"] = keyword |
|
|
|
ctx.Data["Username"] = userName |
|
|
|
ctx.Data["Username"] = ctx.Repo.Owner.Name |
|
|
|
ctx.Data["Reponame"] = repoName |
|
|
|
ctx.Data["Reponame"] = ctx.Repo.Repository.Name |
|
|
|
ctx.Data["CommitCount"] = commits.Len() |
|
|
|
ctx.Data["CommitCount"] = commits.Len() |
|
|
|
ctx.Data["Commits"] = commits |
|
|
|
ctx.Data["Branch"] = ctx.Repo.BranchName |
|
|
|
ctx.HTML(200, COMMITS) |
|
|
|
ctx.HTML(200, COMMITS) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -132,58 +109,36 @@ func FileHistory(ctx *middleware.Context) { |
|
|
|
return |
|
|
|
return |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
userName := ctx.Repo.Owner.Name |
|
|
|
|
|
|
|
repoName := ctx.Repo.Repository.Name |
|
|
|
|
|
|
|
branchName := ctx.Repo.BranchName |
|
|
|
branchName := ctx.Repo.BranchName |
|
|
|
|
|
|
|
|
|
|
|
brs, err := ctx.Repo.GitRepo.GetBranches() |
|
|
|
|
|
|
|
if err != nil { |
|
|
|
|
|
|
|
ctx.Handle(500, "GetBranches", err) |
|
|
|
|
|
|
|
return |
|
|
|
|
|
|
|
} else if len(brs) == 0 { |
|
|
|
|
|
|
|
ctx.Handle(404, "GetBranches", nil) |
|
|
|
|
|
|
|
return |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
commitsCount, err := ctx.Repo.GitRepo.FileCommitsCount(branchName, fileName) |
|
|
|
commitsCount, err := ctx.Repo.GitRepo.FileCommitsCount(branchName, fileName) |
|
|
|
if err != nil { |
|
|
|
if err != nil { |
|
|
|
ctx.Handle(500, "repo.FileHistory(GetCommitsCount)", err) |
|
|
|
ctx.Handle(500, "FileCommitsCount", err) |
|
|
|
return |
|
|
|
return |
|
|
|
} else if commitsCount == 0 { |
|
|
|
} else if commitsCount == 0 { |
|
|
|
ctx.Handle(404, "repo.FileHistory", nil) |
|
|
|
ctx.Handle(404, "FileCommitsCount", nil) |
|
|
|
return |
|
|
|
return |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// Calculate and validate page number.
|
|
|
|
page := ctx.QueryInt("page") |
|
|
|
page := com.StrTo(ctx.Query("p")).MustInt() |
|
|
|
if page <= 1 { |
|
|
|
if page < 1 { |
|
|
|
|
|
|
|
page = 1 |
|
|
|
page = 1 |
|
|
|
} |
|
|
|
} |
|
|
|
lastPage := page - 1 |
|
|
|
ctx.Data["Page"] = paginater.New(commitsCount, git.CommitsRangeSize, page, 5) |
|
|
|
if lastPage < 0 { |
|
|
|
|
|
|
|
lastPage = 0 |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
nextPage := page + 1 |
|
|
|
|
|
|
|
if nextPage*50 > commitsCount { |
|
|
|
|
|
|
|
nextPage = 0 |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
commits, err := ctx.Repo.GitRepo.CommitsByFileAndRange( |
|
|
|
commits, err := ctx.Repo.GitRepo.CommitsByFileAndRange(branchName, fileName, page) |
|
|
|
branchName, fileName, page) |
|
|
|
|
|
|
|
if err != nil { |
|
|
|
if err != nil { |
|
|
|
ctx.Handle(500, "repo.FileHistory(CommitsByRange)", err) |
|
|
|
ctx.Handle(500, "CommitsByFileAndRange", err) |
|
|
|
return |
|
|
|
return |
|
|
|
} |
|
|
|
} |
|
|
|
commits = RenderIssueLinks(commits, ctx.Repo.RepoLink) |
|
|
|
commits = RenderIssueLinks(commits, ctx.Repo.RepoLink) |
|
|
|
commits = models.ValidateCommitsWithEmails(commits) |
|
|
|
commits = models.ValidateCommitsWithEmails(commits) |
|
|
|
|
|
|
|
|
|
|
|
ctx.Data["Commits"] = commits |
|
|
|
ctx.Data["Commits"] = commits |
|
|
|
ctx.Data["Username"] = userName |
|
|
|
|
|
|
|
ctx.Data["Reponame"] = repoName |
|
|
|
ctx.Data["Username"] = ctx.Repo.Owner.Name |
|
|
|
|
|
|
|
ctx.Data["Reponame"] = ctx.Repo.Repository.Name |
|
|
|
ctx.Data["FileName"] = fileName |
|
|
|
ctx.Data["FileName"] = fileName |
|
|
|
ctx.Data["CommitCount"] = commitsCount |
|
|
|
ctx.Data["CommitCount"] = commitsCount |
|
|
|
ctx.Data["LastPageNum"] = lastPage |
|
|
|
ctx.Data["Branch"] = branchName |
|
|
|
ctx.Data["NextPageNum"] = nextPage |
|
|
|
|
|
|
|
ctx.HTML(200, COMMITS) |
|
|
|
ctx.HTML(200, COMMITS) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|