bench-forgejo/routers/repo/single.go

268 lines
6.5 KiB
Go
Raw Normal View History

2014-03-16 14:54:13 +05:30
// 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.
2014-03-13 09:45:58 +05:30
package repo
import (
2014-03-15 17:01:35 +05:30
"strings"
2014-03-15 20:04:33 +05:30
"github.com/codegangsta/martini"
2014-03-17 16:16:54 +05:30
"github.com/gogits/git"
2014-03-15 20:04:33 +05:30
"github.com/gogits/gogs/models"
2014-03-17 16:16:54 +05:30
"github.com/gogits/gogs/modules/base"
2014-03-18 02:30:35 +05:30
"github.com/gogits/gogs/modules/log"
2014-03-15 18:47:16 +05:30
"github.com/gogits/gogs/modules/middleware"
2014-03-13 09:45:58 +05:30
)
2014-03-17 14:44:31 +05:30
func Branches(ctx *middleware.Context, params martini.Params) {
if !ctx.Repo.IsValid {
return
}
brs, err := models.GetBranches(params["username"], params["reponame"])
if err != nil {
ctx.Handle(200, "repo.Branches", err)
return
2014-03-18 02:30:35 +05:30
} else if len(brs) == 0 {
2014-03-19 19:27:55 +05:30
ctx.Error(404)
2014-03-18 02:30:35 +05:30
return
2014-03-17 14:44:31 +05:30
}
2014-03-18 02:30:35 +05:30
ctx.Data["Username"] = params["username"]
ctx.Data["Reponame"] = params["reponame"]
2014-03-18 01:02:33 +05:30
ctx.Data["Branchname"] = brs[0]
2014-03-17 14:44:31 +05:30
ctx.Data["Branches"] = brs
ctx.Data["IsRepoToolbarBranches"] = true
2014-03-20 17:20:26 +05:30
ctx.HTML(200, "repo/branches")
2014-03-17 14:44:31 +05:30
}
2014-03-15 20:04:33 +05:30
func Single(ctx *middleware.Context, params martini.Params) {
2014-03-15 21:33:23 +05:30
if !ctx.Repo.IsValid {
2014-03-13 09:45:58 +05:30
return
}
2014-03-15 21:33:23 +05:30
2014-03-20 11:01:24 +05:30
if len(params["branchname"]) == 0 {
2014-03-14 21:24:16 +05:30
params["branchname"] = "master"
}
2014-03-15 21:33:23 +05:30
2014-03-17 16:16:54 +05:30
// Get tree path
2014-03-14 21:24:16 +05:30
treename := params["_1"]
2014-03-17 16:16:54 +05:30
2014-03-20 06:46:48 +05:30
if len(treename) > 0 && treename[len(treename)-1] == '/' {
ctx.Redirect("/"+ctx.Repo.Owner.LowerName+"/"+
2014-03-20 11:01:24 +05:30
ctx.Repo.Repository.Name+"/src/"+params["branchname"]+"/"+treename[:len(treename)-1], 302)
2014-03-20 06:46:48 +05:30
return
}
2014-03-20 17:42:31 +05:30
ctx.Data["IsRepoToolbarSource"] = true
2014-03-18 02:30:35 +05:30
// Branches.
brs, err := models.GetBranches(params["username"], params["reponame"])
if err != nil {
log.Error("repo.Single(GetBranches): %v", err)
2014-03-19 19:27:55 +05:30
ctx.Error(404)
2014-03-18 02:30:35 +05:30
return
} else if len(brs) == 0 {
ctx.Data["IsBareRepo"] = true
2014-03-20 17:20:26 +05:30
ctx.HTML(200, "repo/single")
2014-03-18 02:30:35 +05:30
return
}
ctx.Data["Branches"] = brs
2014-03-20 11:01:24 +05:30
repoFile, err := models.GetTargetFile(params["username"], params["reponame"],
2014-03-18 08:52:19 +05:30
params["branchname"], params["commitid"], treename)
2014-03-20 11:01:24 +05:30
if err != nil && err != models.ErrRepoFileNotExist {
log.Error("repo.Single(GetTargetFile): %v", err)
2014-03-19 19:27:55 +05:30
ctx.Error(404)
return
}
2014-03-20 11:01:24 +05:30
branchLink := "/" + ctx.Repo.Owner.LowerName + "/" + ctx.Repo.Repository.Name + "/src/" + params["branchname"]
if repoFile != nil && repoFile.IsFile() {
if repoFile.Size > 1024*1024 || repoFile.Filemode != git.FileModeBlob {
ctx.Data["FileIsLarge"] = true
} else if blob, err := repoFile.LookupBlob(); err != nil {
log.Error("repo.Single(repoFile.LookupBlob): %v", err)
ctx.Error(404)
} else {
ctx.Data["IsFile"] = true
ctx.Data["FileName"] = repoFile.Name
readmeExist := base.IsMarkdownFile(repoFile.Name) || base.IsReadmeFile(repoFile.Name)
ctx.Data["ReadmeExist"] = readmeExist
if readmeExist {
ctx.Data["FileContent"] = string(base.RenderMarkdown(blob.Contents(), ""))
} else {
ctx.Data["FileContent"] = string(blob.Contents())
}
}
} else {
// Directory and file list.
files, err := models.GetReposFiles(params["username"], params["reponame"],
params["branchname"], params["commitid"], treename)
if err != nil {
log.Error("repo.Single(GetReposFiles): %v", err)
ctx.Error(404)
return
}
ctx.Data["Files"] = files
var readmeFile *models.RepoFile
for _, f := range files {
if !f.IsFile() || !base.IsReadmeFile(f.Name) {
continue
} else {
readmeFile = f
break
}
}
if readmeFile != nil {
ctx.Data["ReadmeExist"] = true
// if file large than 1M not show it
if readmeFile.Size > 1024*1024 || readmeFile.Filemode != git.FileModeBlob {
ctx.Data["FileIsLarge"] = true
} else if blob, err := readmeFile.LookupBlob(); err != nil {
log.Error("repo.Single(readmeFile.LookupBlob): %v", err)
ctx.Error(404)
return
} else {
// current repo branch link
ctx.Data["FileName"] = readmeFile.Name
2014-03-20 14:55:04 +05:30
ctx.Data["FileContent"] = string(base.RenderMarkdown(blob.Contents(), branchLink))
2014-03-20 11:01:24 +05:30
}
}
}
2014-03-15 20:04:33 +05:30
ctx.Data["Username"] = params["username"]
ctx.Data["Reponame"] = params["reponame"]
ctx.Data["Branchname"] = params["branchname"]
2014-03-15 17:01:35 +05:30
var treenames []string
2014-03-14 21:24:16 +05:30
Paths := make([]string, 0)
2014-03-15 17:01:35 +05:30
if len(treename) > 0 {
treenames = strings.Split(treename, "/")
for i, _ := range treenames {
Paths = append(Paths, strings.Join(treenames[0:i+1], "/"))
}
2014-03-19 21:38:20 +05:30
ctx.Data["HasParentPath"] = true
if len(Paths)-2 >= 0 {
ctx.Data["ParentPath"] = "/" + Paths[len(Paths)-2]
}
2014-03-14 21:24:16 +05:30
}
2014-03-15 17:01:35 +05:30
2014-03-17 16:16:54 +05:30
// Get latest commit according username and repo name
2014-03-18 08:52:19 +05:30
commit, err := models.GetCommit(params["username"], params["reponame"],
params["branchname"], params["commitid"])
2014-03-17 10:27:18 +05:30
if err != nil {
2014-03-18 08:52:19 +05:30
log.Error("repo.Single(GetCommit): %v", err)
2014-03-19 19:27:55 +05:30
ctx.Error(404)
2014-03-17 10:27:18 +05:30
return
}
2014-03-18 09:44:05 +05:30
ctx.Data["LastCommit"] = commit
2014-03-17 10:27:18 +05:30
2014-03-15 20:04:33 +05:30
ctx.Data["Paths"] = Paths
ctx.Data["Treenames"] = treenames
2014-03-20 11:01:24 +05:30
ctx.Data["BranchLink"] = branchLink
2014-03-20 17:20:26 +05:30
ctx.HTML(200, "repo/single")
2014-03-13 09:45:58 +05:30
}
2014-03-13 11:38:49 +05:30
2014-03-16 20:05:25 +05:30
func Setting(ctx *middleware.Context, params martini.Params) {
2014-03-17 12:06:28 +05:30
if !ctx.Repo.IsOwner {
2014-03-19 19:27:55 +05:30
ctx.Error(404)
2014-03-13 11:38:49 +05:30
return
}
2014-03-20 17:42:31 +05:30
ctx.Data["IsRepoToolbarSetting"] = true
2014-03-18 02:30:35 +05:30
// Branches.
brs, err := models.GetBranches(params["username"], params["reponame"])
if err != nil {
log.Error("repo.Setting(GetBranches): %v", err)
2014-03-19 19:27:55 +05:30
ctx.Error(404)
2014-03-18 02:30:35 +05:30
return
} else if len(brs) == 0 {
ctx.Data["IsBareRepo"] = true
2014-03-20 17:20:26 +05:30
ctx.HTML(200, "repo/setting")
2014-03-18 02:30:35 +05:30
return
}
2014-03-15 21:33:23 +05:30
var title string
if t, ok := ctx.Data["Title"].(string); ok {
title = t
}
ctx.Data["Title"] = title + " - settings"
2014-03-20 17:20:26 +05:30
ctx.HTML(200, "repo/setting")
2014-03-13 11:38:49 +05:30
}
2014-03-16 13:11:22 +05:30
2014-03-17 20:34:49 +05:30
func Commits(ctx *middleware.Context, params martini.Params) {
2014-03-18 02:30:35 +05:30
brs, err := models.GetBranches(params["username"], params["reponame"])
if err != nil {
ctx.Handle(200, "repo.Commits", err)
return
} else if len(brs) == 0 {
2014-03-19 19:27:55 +05:30
ctx.Error(404)
2014-03-18 02:30:35 +05:30
return
}
2014-03-17 16:28:34 +05:30
ctx.Data["IsRepoToolbarCommits"] = true
2014-03-17 20:34:49 +05:30
commits, err := models.GetCommits(params["username"],
params["reponame"], params["branchname"])
if err != nil {
2014-03-19 19:27:55 +05:30
ctx.Error(404)
2014-03-17 20:34:49 +05:30
return
}
2014-03-19 22:44:56 +05:30
ctx.Data["Username"] = params["username"]
ctx.Data["Reponame"] = params["reponame"]
2014-03-19 22:54:46 +05:30
ctx.Data["CommitCount"] = commits.Len()
2014-03-17 20:34:49 +05:30
ctx.Data["Commits"] = commits
2014-03-20 17:20:26 +05:30
ctx.HTML(200, "repo/commits")
2014-03-16 13:11:22 +05:30
}
2014-03-19 04:01:54 +05:30
func Issues(ctx *middleware.Context) {
ctx.Data["IsRepoToolbarIssues"] = true
2014-03-20 17:20:26 +05:30
ctx.HTML(200, "repo/issues")
2014-03-16 13:11:22 +05:30
}
2014-03-19 04:01:54 +05:30
func Pulls(ctx *middleware.Context) {
ctx.Data["IsRepoToolbarPulls"] = true
2014-03-20 17:20:26 +05:30
ctx.HTML(200, "repo/pulls")
2014-03-16 13:11:22 +05:30
}
2014-03-20 08:50:55 +05:30
func Action(ctx *middleware.Context, params martini.Params) {
var err error
switch params["action"] {
case "watch":
err = models.WatchRepo(ctx.User.Id, ctx.Repo.Repository.Id, true)
case "unwatch":
err = models.WatchRepo(ctx.User.Id, ctx.Repo.Repository.Id, false)
}
if err != nil {
log.Error("repo.Action(%s): %v", params["action"], err)
ctx.JSON(200, map[string]interface{}{
"ok": false,
"err": err.Error(),
})
return
}
ctx.JSON(200, map[string]interface{}{
"ok": true,
})
}