2014-03-24 14:25:15 +04:00
// 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 repo
2014-07-26 10:28:04 +04:00
import (
2014-12-05 13:02:52 +03:00
"container/list"
2014-07-26 10:28:04 +04:00
"path"
2017-02-11 07:00:01 +03:00
"strings"
2014-07-26 10:28:04 +04:00
2016-11-10 19:24:48 +03:00
"code.gitea.io/git"
"code.gitea.io/gitea/models"
"code.gitea.io/gitea/modules/base"
"code.gitea.io/gitea/modules/context"
2017-09-14 09:51:32 +03:00
"code.gitea.io/gitea/modules/log"
2016-11-10 19:24:48 +03:00
"code.gitea.io/gitea/modules/setting"
2017-09-14 09:51:32 +03:00
2016-11-11 15:11:45 +03:00
"github.com/Unknwon/paginater"
2014-07-26 10:28:04 +04:00
)
const (
2016-11-24 10:04:31 +03:00
tplCommits base . TplName = "repo/commits"
2016-12-29 02:44:32 +03:00
tplGraph base . TplName = "repo/graph"
2016-11-24 10:04:31 +03:00
tplDiff base . TplName = "repo/diff/page"
2014-07-26 10:28:04 +04:00
)
2016-11-24 10:04:31 +03:00
// RefCommits render commits page
2016-03-11 19:56:52 +03:00
func RefCommits ( ctx * context . Context ) {
2014-11-07 06:06:41 +03:00
switch {
2016-08-25 07:35:03 +03:00
case len ( ctx . Repo . TreePath ) == 0 :
2014-11-07 06:06:41 +03:00
Commits ( ctx )
2016-08-25 07:35:03 +03:00
case ctx . Repo . TreePath == "search" :
2014-11-07 06:06:41 +03:00
SearchCommits ( ctx )
default :
FileHistory ( ctx )
}
}
2016-11-24 10:04:31 +03:00
func renderIssueLinks ( oldCommits * list . List , repoLink string ) * list . List {
2014-12-09 10:18:25 +03:00
newCommits := list . New ( )
for e := oldCommits . Front ( ) ; e != nil ; e = e . Next ( ) {
c := e . Value . ( * git . Commit )
newCommits . PushBack ( c )
}
return newCommits
}
2016-11-24 10:04:31 +03:00
// Commits render branch's commits
2016-03-11 19:56:52 +03:00
func Commits ( ctx * context . Context ) {
2015-08-20 15:18:49 +03:00
ctx . Data [ "PageIsCommits" ] = true
2017-07-31 04:23:10 +03:00
if ctx . Repo . Commit == nil {
ctx . Handle ( 404 , "Commit not found" , nil )
return
}
2014-07-26 10:28:04 +04:00
commitsCount , err := ctx . Repo . Commit . CommitsCount ( )
if err != nil {
ctx . Handle ( 500 , "GetCommitsCount" , err )
return
}
2015-08-20 15:18:49 +03:00
page := ctx . QueryInt ( "page" )
if page <= 1 {
2014-07-26 10:28:04 +04:00
page = 1
}
2015-12-10 04:46:05 +03:00
ctx . Data [ "Page" ] = paginater . New ( int ( commitsCount ) , git . CommitsRangeSize , page , 5 )
2014-07-26 10:28:04 +04:00
// Both `git log branchName` and `git log commitId` work.
2014-09-23 23:30:04 +04:00
commits , err := ctx . Repo . Commit . CommitsByRange ( page )
2014-07-26 10:28:04 +04:00
if err != nil {
ctx . Handle ( 500 , "CommitsByRange" , err )
return
}
2016-11-24 10:04:31 +03:00
commits = renderIssueLinks ( commits , ctx . Repo . RepoLink )
2014-09-26 16:55:13 +04:00
commits = models . ValidateCommitsWithEmails ( commits )
2017-03-22 13:43:54 +03:00
commits = models . ParseCommitsWithSignature ( commits )
2017-05-07 17:40:31 +03:00
commits = models . ParseCommitsWithStatus ( commits , ctx . Repo . Repository )
2014-09-23 23:30:04 +04:00
ctx . Data [ "Commits" ] = commits
2015-11-11 00:46:17 +03:00
ctx . Data [ "Username" ] = ctx . Repo . Owner . Name
ctx . Data [ "Reponame" ] = ctx . Repo . Repository . Name
2014-07-26 10:28:04 +04:00
ctx . Data [ "CommitCount" ] = commitsCount
2015-11-11 00:46:17 +03:00
ctx . Data [ "Branch" ] = ctx . Repo . BranchName
2016-11-24 10:04:31 +03:00
ctx . HTML ( 200 , tplCommits )
2014-07-26 10:28:04 +04:00
}
2016-12-29 02:44:32 +03:00
// Graph render commit graph - show commits from all branches.
func Graph ( ctx * context . Context ) {
ctx . Data [ "PageIsCommits" ] = true
commitsCount , err := ctx . Repo . Commit . CommitsCount ( )
if err != nil {
ctx . Handle ( 500 , "GetCommitsCount" , err )
return
}
graph , err := models . GetCommitGraph ( ctx . Repo . GitRepo )
if err != nil {
ctx . Handle ( 500 , "GetCommitGraph" , err )
return
}
ctx . Data [ "Graph" ] = graph
ctx . Data [ "Username" ] = ctx . Repo . Owner . Name
ctx . Data [ "Reponame" ] = ctx . Repo . Repository . Name
ctx . Data [ "CommitCount" ] = commitsCount
ctx . Data [ "Branch" ] = ctx . Repo . BranchName
ctx . Data [ "RequireGitGraph" ] = true
ctx . HTML ( 200 , tplGraph )
}
2016-11-24 10:04:31 +03:00
// SearchCommits render commits filtered by keyword
2016-03-11 19:56:52 +03:00
func SearchCommits ( ctx * context . Context ) {
2015-08-20 15:18:49 +03:00
ctx . Data [ "PageIsCommits" ] = true
2014-07-26 10:28:04 +04:00
2017-02-11 07:00:01 +03:00
keyword := strings . Trim ( ctx . Query ( "q" ) , " " )
2014-07-26 10:28:04 +04:00
if len ( keyword ) == 0 {
ctx . Redirect ( ctx . Repo . RepoLink + "/commits/" + ctx . Repo . BranchName )
return
}
2017-02-05 17:43:28 +03:00
all := ctx . QueryBool ( "all" )
2014-07-26 10:28:04 +04:00
2017-02-05 17:43:28 +03:00
commits , err := ctx . Repo . Commit . SearchCommits ( keyword , all )
2014-07-26 10:28:04 +04:00
if err != nil {
2014-09-26 04:55:14 +04:00
ctx . Handle ( 500 , "SearchCommits" , err )
2014-07-26 10:28:04 +04:00
return
}
2016-11-24 10:04:31 +03:00
commits = renderIssueLinks ( commits , ctx . Repo . RepoLink )
2014-09-26 16:55:13 +04:00
commits = models . ValidateCommitsWithEmails ( commits )
2017-03-22 13:43:54 +03:00
commits = models . ParseCommitsWithSignature ( commits )
2017-05-07 17:40:31 +03:00
commits = models . ParseCommitsWithStatus ( commits , ctx . Repo . Repository )
2015-11-11 00:46:17 +03:00
ctx . Data [ "Commits" ] = commits
2014-07-26 10:28:04 +04:00
ctx . Data [ "Keyword" ] = keyword
2017-02-05 17:43:28 +03:00
if all {
ctx . Data [ "All" ] = "checked"
}
2015-11-11 00:46:17 +03:00
ctx . Data [ "Username" ] = ctx . Repo . Owner . Name
ctx . Data [ "Reponame" ] = ctx . Repo . Repository . Name
2014-07-26 10:28:04 +04:00
ctx . Data [ "CommitCount" ] = commits . Len ( )
2015-11-11 00:46:17 +03:00
ctx . Data [ "Branch" ] = ctx . Repo . BranchName
2016-11-24 10:04:31 +03:00
ctx . HTML ( 200 , tplCommits )
2014-07-26 10:28:04 +04:00
}
2016-11-24 10:04:31 +03:00
// FileHistory show a file's reversions
2016-03-11 19:56:52 +03:00
func FileHistory ( ctx * context . Context ) {
2014-11-07 06:06:41 +03:00
ctx . Data [ "IsRepoToolbarCommits" ] = true
2016-08-25 07:35:03 +03:00
fileName := ctx . Repo . TreePath
2014-11-07 06:06:41 +03:00
if len ( fileName ) == 0 {
Commits ( ctx )
return
}
branchName := ctx . Repo . BranchName
commitsCount , err := ctx . Repo . GitRepo . FileCommitsCount ( branchName , fileName )
if err != nil {
2015-11-11 00:46:17 +03:00
ctx . Handle ( 500 , "FileCommitsCount" , err )
2014-11-07 06:06:41 +03:00
return
} else if commitsCount == 0 {
2015-11-11 00:46:17 +03:00
ctx . Handle ( 404 , "FileCommitsCount" , nil )
2014-11-07 06:06:41 +03:00
return
}
2015-11-11 00:46:17 +03:00
page := ctx . QueryInt ( "page" )
if page <= 1 {
2014-11-07 06:06:41 +03:00
page = 1
}
2015-12-10 04:46:05 +03:00
ctx . Data [ "Page" ] = paginater . New ( int ( commitsCount ) , git . CommitsRangeSize , page , 5 )
2014-11-07 06:06:41 +03:00
2015-11-11 00:46:17 +03:00
commits , err := ctx . Repo . GitRepo . CommitsByFileAndRange ( branchName , fileName , page )
2014-11-07 06:06:41 +03:00
if err != nil {
2015-11-11 00:46:17 +03:00
ctx . Handle ( 500 , "CommitsByFileAndRange" , err )
2014-11-07 06:06:41 +03:00
return
}
2016-11-24 10:04:31 +03:00
commits = renderIssueLinks ( commits , ctx . Repo . RepoLink )
2014-11-07 06:06:41 +03:00
commits = models . ValidateCommitsWithEmails ( commits )
2017-03-22 13:43:54 +03:00
commits = models . ParseCommitsWithSignature ( commits )
2017-05-07 17:40:31 +03:00
commits = models . ParseCommitsWithStatus ( commits , ctx . Repo . Repository )
2014-11-07 06:06:41 +03:00
ctx . Data [ "Commits" ] = commits
2015-11-11 00:46:17 +03:00
ctx . Data [ "Username" ] = ctx . Repo . Owner . Name
ctx . Data [ "Reponame" ] = ctx . Repo . Repository . Name
2014-11-07 06:06:41 +03:00
ctx . Data [ "FileName" ] = fileName
ctx . Data [ "CommitCount" ] = commitsCount
2015-11-11 00:46:17 +03:00
ctx . Data [ "Branch" ] = branchName
2016-11-24 10:04:31 +03:00
ctx . HTML ( 200 , tplCommits )
2014-11-07 06:06:41 +03:00
}
2016-11-24 10:04:31 +03:00
// Diff show different from current commit to previous commit
2016-03-11 19:56:52 +03:00
func Diff ( ctx * context . Context ) {
2015-08-20 19:18:30 +03:00
ctx . Data [ "PageIsDiff" ] = true
2016-08-16 17:31:54 +03:00
ctx . Data [ "RequireHighlightJS" ] = true
2014-07-26 10:28:04 +04:00
userName := ctx . Repo . Owner . Name
repoName := ctx . Repo . Repository . Name
2016-03-21 17:49:46 +03:00
commitID := ctx . Params ( ":sha" )
commit , err := ctx . Repo . GitRepo . GetCommit ( commitID )
if err != nil {
2016-08-16 01:27:19 +03:00
if git . IsErrNotExist ( err ) {
ctx . Handle ( 404 , "Repo.GitRepo.GetCommit" , err )
} else {
ctx . Handle ( 500 , "Repo.GitRepo.GetCommit" , err )
}
2016-03-21 17:49:46 +03:00
return
}
2016-11-07 00:15:44 +03:00
if len ( commitID ) != 40 {
commitID = commit . ID . String ( )
}
2017-09-14 09:51:32 +03:00
statuses , err := models . GetLatestCommitStatus ( ctx . Repo . Repository , ctx . Repo . Commit . ID . String ( ) , 0 )
if err != nil {
log . Error ( 3 , "GetLatestCommitStatus: %v" , err )
}
ctx . Data [ "CommitStatus" ] = models . CalcCommitStatus ( statuses )
2014-09-17 08:03:03 +04:00
diff , err := models . GetDiffCommit ( models . RepoPath ( userName , repoName ) ,
2016-06-29 18:11:00 +03:00
commitID , setting . Git . MaxGitDiffLines ,
setting . Git . MaxGitDiffLineCharacters , setting . Git . MaxGitDiffFiles )
2014-07-26 10:28:04 +04:00
if err != nil {
2014-08-26 16:20:18 +04:00
ctx . Handle ( 404 , "GetDiffCommit" , err )
2014-07-26 10:28:04 +04:00
return
}
parents := make ( [ ] string , commit . ParentCount ( ) )
for i := 0 ; i < commit . ParentCount ( ) ; i ++ {
2015-12-10 04:46:05 +03:00
sha , err := commit . ParentID ( i )
2014-07-26 10:28:04 +04:00
parents [ i ] = sha . String ( )
if err != nil {
ctx . Handle ( 404 , "repo.Diff" , err )
return
}
}
2016-03-21 17:49:46 +03:00
ctx . Data [ "CommitID" ] = commitID
2014-07-26 10:28:04 +04:00
ctx . Data [ "Username" ] = userName
ctx . Data [ "Reponame" ] = repoName
2015-09-02 11:08:05 +03:00
ctx . Data [ "IsImageFile" ] = commit . IsImageFile
2015-08-31 10:24:28 +03:00
ctx . Data [ "Title" ] = commit . Summary ( ) + " · " + base . ShortSha ( commitID )
2014-07-26 10:28:04 +04:00
ctx . Data [ "Commit" ] = commit
2017-03-22 13:43:54 +03:00
ctx . Data [ "Verification" ] = models . ParseCommitWithSignature ( commit )
2014-10-11 05:40:51 +04:00
ctx . Data [ "Author" ] = models . ValidateCommitWithEmail ( commit )
2014-07-26 10:28:04 +04:00
ctx . Data [ "Diff" ] = diff
ctx . Data [ "Parents" ] = parents
ctx . Data [ "DiffNotAvailable" ] = diff . NumFiles ( ) == 0
2016-11-27 13:14:25 +03:00
ctx . Data [ "SourcePath" ] = setting . AppSubURL + "/" + path . Join ( userName , repoName , "src" , commitID )
2015-08-20 15:18:49 +03:00
if commit . ParentCount ( ) > 0 {
2016-11-27 13:14:25 +03:00
ctx . Data [ "BeforeSourcePath" ] = setting . AppSubURL + "/" + path . Join ( userName , repoName , "src" , parents [ 0 ] )
2015-02-06 12:02:32 +03:00
}
2016-11-27 13:14:25 +03:00
ctx . Data [ "RawPath" ] = setting . AppSubURL + "/" + path . Join ( userName , repoName , "raw" , commitID )
2016-11-24 10:04:31 +03:00
ctx . HTML ( 200 , tplDiff )
2014-07-26 10:28:04 +04:00
}
2016-11-24 10:04:31 +03:00
// RawDiff dumps diff results of repository in given commit ID to io.Writer
2016-03-21 17:49:46 +03:00
func RawDiff ( ctx * context . Context ) {
2016-07-30 18:39:58 +03:00
if err := models . GetRawDiff (
2016-07-30 18:02:22 +03:00
models . RepoPath ( ctx . Repo . Owner . Name , ctx . Repo . Repository . Name ) ,
ctx . Params ( ":sha" ) ,
2016-07-30 18:39:58 +03:00
models . RawDiffType ( ctx . Params ( ":ext" ) ) ,
ctx . Resp ,
) ; err != nil {
ctx . Handle ( 500 , "GetRawDiff" , err )
2016-07-30 18:02:22 +03:00
return
}
2016-03-21 17:49:46 +03:00
}
2016-11-24 10:04:31 +03:00
// CompareDiff show different from one commit to another commit
2016-03-11 19:56:52 +03:00
func CompareDiff ( ctx * context . Context ) {
2014-08-26 16:20:18 +04:00
ctx . Data [ "IsRepoToolbarCommits" ] = true
ctx . Data [ "IsDiffCompare" ] = true
userName := ctx . Repo . Owner . Name
repoName := ctx . Repo . Repository . Name
2015-08-31 10:24:28 +03:00
beforeCommitID := ctx . Params ( ":before" )
afterCommitID := ctx . Params ( ":after" )
2014-08-26 16:20:18 +04:00
2015-08-31 10:24:28 +03:00
commit , err := ctx . Repo . GitRepo . GetCommit ( afterCommitID )
2014-08-26 16:20:18 +04:00
if err != nil {
ctx . Handle ( 404 , "GetCommit" , err )
return
}
2015-08-31 10:24:28 +03:00
diff , err := models . GetDiffRange ( models . RepoPath ( userName , repoName ) , beforeCommitID ,
2016-06-29 18:11:00 +03:00
afterCommitID , setting . Git . MaxGitDiffLines ,
setting . Git . MaxGitDiffLineCharacters , setting . Git . MaxGitDiffFiles )
2014-08-26 16:20:18 +04:00
if err != nil {
ctx . Handle ( 404 , "GetDiffRange" , err )
return
}
2015-08-31 10:24:28 +03:00
commits , err := commit . CommitsBeforeUntil ( beforeCommitID )
2014-08-26 16:20:18 +04:00
if err != nil {
ctx . Handle ( 500 , "CommitsBeforeUntil" , err )
return
}
2014-10-11 05:40:51 +04:00
commits = models . ValidateCommitsWithEmails ( commits )
2017-03-22 13:43:54 +03:00
commits = models . ParseCommitsWithSignature ( commits )
2017-05-07 17:40:31 +03:00
commits = models . ParseCommitsWithStatus ( commits , ctx . Repo . Repository )
2014-08-26 16:20:18 +04:00
2015-09-02 02:07:02 +03:00
ctx . Data [ "CommitRepoLink" ] = ctx . Repo . RepoLink
2014-08-26 16:20:18 +04:00
ctx . Data [ "Commits" ] = commits
ctx . Data [ "CommitCount" ] = commits . Len ( )
2015-08-31 10:24:28 +03:00
ctx . Data [ "BeforeCommitID" ] = beforeCommitID
ctx . Data [ "AfterCommitID" ] = afterCommitID
2014-08-26 16:20:18 +04:00
ctx . Data [ "Username" ] = userName
ctx . Data [ "Reponame" ] = repoName
2015-09-02 11:08:05 +03:00
ctx . Data [ "IsImageFile" ] = commit . IsImageFile
2015-08-31 10:24:28 +03:00
ctx . Data [ "Title" ] = "Comparing " + base . ShortSha ( beforeCommitID ) + "..." + base . ShortSha ( afterCommitID ) + " · " + userName + "/" + repoName
2014-08-26 16:20:18 +04:00
ctx . Data [ "Commit" ] = commit
ctx . Data [ "Diff" ] = diff
ctx . Data [ "DiffNotAvailable" ] = diff . NumFiles ( ) == 0
2016-11-27 13:14:25 +03:00
ctx . Data [ "SourcePath" ] = setting . AppSubURL + "/" + path . Join ( userName , repoName , "src" , afterCommitID )
ctx . Data [ "BeforeSourcePath" ] = setting . AppSubURL + "/" + path . Join ( userName , repoName , "src" , beforeCommitID )
ctx . Data [ "RawPath" ] = setting . AppSubURL + "/" + path . Join ( userName , repoName , "raw" , afterCommitID )
2017-02-13 05:11:08 +03:00
ctx . Data [ "RequireHighlightJS" ] = true
2016-11-24 10:04:31 +03:00
ctx . HTML ( 200 , tplDiff )
2014-08-26 16:20:18 +04:00
}