Forgejo/routers/repo/single.go

284 lines
6.8 KiB
Go
Raw Normal View History

2014-03-16 10:24:13 +01: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.
2014-03-13 05:15:58 +01:00
package repo
import (
2014-03-20 14:10:37 +01:00
"path"
2014-03-15 12:31:35 +01:00
"strings"
2014-03-15 15:34:33 +01:00
"github.com/codegangsta/martini"
2014-03-17 11:46:54 +01:00
"github.com/gogits/git"
2014-03-15 15:34:33 +01:00
"github.com/gogits/gogs/models"
2014-03-17 11:46:54 +01:00
"github.com/gogits/gogs/modules/base"
2014-03-17 22:00:35 +01:00
"github.com/gogits/gogs/modules/log"
2014-03-15 14:17:16 +01:00
"github.com/gogits/gogs/modules/middleware"
2014-03-13 05:15:58 +01:00
)
2014-03-17 10:14:31 +01:00
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-17 22:00:35 +01:00
} else if len(brs) == 0 {
2014-03-19 14:57:55 +01:00
ctx.Error(404)
2014-03-17 22:00:35 +01:00
return
2014-03-17 10:14:31 +01:00
}
2014-03-17 22:00:35 +01:00
ctx.Data["Username"] = params["username"]
ctx.Data["Reponame"] = params["reponame"]
2014-03-17 20:32:33 +01:00
ctx.Data["Branchname"] = brs[0]
2014-03-17 10:14:31 +01:00
ctx.Data["Branches"] = brs
ctx.Data["IsRepoToolbarBranches"] = true
2014-03-20 12:50:26 +01:00
ctx.HTML(200, "repo/branches")
2014-03-17 10:14:31 +01:00
}
2014-03-15 15:34:33 +01:00
func Single(ctx *middleware.Context, params martini.Params) {
2014-03-15 17:03:23 +01:00
if !ctx.Repo.IsValid {
2014-03-13 05:15:58 +01:00
return
}
2014-03-15 17:03:23 +01:00
2014-03-20 06:31:24 +01:00
if len(params["branchname"]) == 0 {
2014-03-14 16:54:16 +01:00
params["branchname"] = "master"
}
2014-03-15 17:03:23 +01:00
2014-03-17 11:46:54 +01:00
// Get tree path
2014-03-14 16:54:16 +01:00
treename := params["_1"]
2014-03-17 11:46:54 +01:00
2014-03-20 02:16:48 +01:00
if len(treename) > 0 && treename[len(treename)-1] == '/' {
ctx.Redirect("/"+ctx.Repo.Owner.LowerName+"/"+
2014-03-20 06:31:24 +01:00
ctx.Repo.Repository.Name+"/src/"+params["branchname"]+"/"+treename[:len(treename)-1], 302)
2014-03-20 02:16:48 +01:00
return
}
2014-03-20 13:12:31 +01:00
ctx.Data["IsRepoToolbarSource"] = true
2014-03-17 22:00:35 +01:00
// Branches.
brs, err := models.GetBranches(params["username"], params["reponame"])
if err != nil {
log.Error("repo.Single(GetBranches): %v", err)
2014-03-19 14:57:55 +01:00
ctx.Error(404)
2014-03-17 22:00:35 +01:00
return
} else if len(brs) == 0 {
ctx.Data["IsBareRepo"] = true
2014-03-20 12:50:26 +01:00
ctx.HTML(200, "repo/single")
2014-03-17 22:00:35 +01:00
return
}
ctx.Data["Branches"] = brs
2014-03-20 06:31:24 +01:00
repoFile, err := models.GetTargetFile(params["username"], params["reponame"],
2014-03-18 04:22:19 +01:00
params["branchname"], params["commitid"], treename)
2014-03-20 06:31:24 +01:00
if err != nil && err != models.ErrRepoFileNotExist {
log.Error("repo.Single(GetTargetFile): %v", err)
2014-03-19 14:57:55 +01:00
ctx.Error(404)
return
}
2014-03-20 06:31:24 +01:00
branchLink := "/" + ctx.Repo.Owner.LowerName + "/" + ctx.Repo.Repository.Name + "/src/" + params["branchname"]
2014-03-20 14:43:54 +01:00
if len(treename) != 0 && repoFile == nil {
ctx.Error(404)
return
}
2014-03-20 06:31:24 +01:00
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
2014-03-20 14:11:48 +01:00
ext := path.Ext(repoFile.Name)
if len(ext) > 0 {
ext = ext[1:]
}
ctx.Data["FileExt"] = ext
2014-03-20 06:31:24 +01:00
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 10:25:04 +01:00
ctx.Data["FileContent"] = string(base.RenderMarkdown(blob.Contents(), branchLink))
2014-03-20 06:31:24 +01:00
}
}
}
2014-03-15 15:34:33 +01:00
ctx.Data["Username"] = params["username"]
ctx.Data["Reponame"] = params["reponame"]
ctx.Data["Branchname"] = params["branchname"]
2014-03-15 12:31:35 +01:00
var treenames []string
2014-03-14 16:54:16 +01:00
Paths := make([]string, 0)
2014-03-15 12:31:35 +01:00
if len(treename) > 0 {
treenames = strings.Split(treename, "/")
for i, _ := range treenames {
Paths = append(Paths, strings.Join(treenames[0:i+1], "/"))
}
2014-03-19 17:08:20 +01:00
ctx.Data["HasParentPath"] = true
if len(Paths)-2 >= 0 {
ctx.Data["ParentPath"] = "/" + Paths[len(Paths)-2]
}
2014-03-14 16:54:16 +01:00
}
2014-03-15 12:31:35 +01:00
2014-03-17 11:46:54 +01:00
// Get latest commit according username and repo name
2014-03-18 04:22:19 +01:00
commit, err := models.GetCommit(params["username"], params["reponame"],
params["branchname"], params["commitid"])
2014-03-17 05:57:18 +01:00
if err != nil {
2014-03-18 04:22:19 +01:00
log.Error("repo.Single(GetCommit): %v", err)
2014-03-19 14:57:55 +01:00
ctx.Error(404)
2014-03-17 05:57:18 +01:00
return
}
2014-03-18 05:14:05 +01:00
ctx.Data["LastCommit"] = commit
2014-03-17 05:57:18 +01:00
2014-03-15 15:34:33 +01:00
ctx.Data["Paths"] = Paths
ctx.Data["Treenames"] = treenames
2014-03-20 06:31:24 +01:00
ctx.Data["BranchLink"] = branchLink
2014-03-20 12:50:26 +01:00
ctx.HTML(200, "repo/single")
2014-03-13 05:15:58 +01:00
}
2014-03-13 07:08:49 +01:00
2014-03-16 15:35:25 +01:00
func Setting(ctx *middleware.Context, params martini.Params) {
2014-03-17 07:36:28 +01:00
if !ctx.Repo.IsOwner {
2014-03-19 14:57:55 +01:00
ctx.Error(404)
2014-03-13 07:08:49 +01:00
return
}
2014-03-20 13:12:31 +01:00
ctx.Data["IsRepoToolbarSetting"] = true
2014-03-17 22:00:35 +01:00
// Branches.
brs, err := models.GetBranches(params["username"], params["reponame"])
if err != nil {
log.Error("repo.Setting(GetBranches): %v", err)
2014-03-19 14:57:55 +01:00
ctx.Error(404)
2014-03-17 22:00:35 +01:00
return
} else if len(brs) == 0 {
ctx.Data["IsBareRepo"] = true
2014-03-20 12:50:26 +01:00
ctx.HTML(200, "repo/setting")
2014-03-17 22:00:35 +01:00
return
}
2014-03-15 17:03:23 +01:00
var title string
if t, ok := ctx.Data["Title"].(string); ok {
title = t
}
2014-03-20 16:41:24 +01:00
if len(params["branchname"]) == 0 {
params["branchname"] = "master"
}
ctx.Data["Branchname"] = params["branchname"]
2014-03-15 17:03:23 +01:00
ctx.Data["Title"] = title + " - settings"
2014-03-20 12:50:26 +01:00
ctx.HTML(200, "repo/setting")
2014-03-13 07:08:49 +01:00
}
2014-03-16 08:41:22 +01:00
2014-03-17 16:04:49 +01:00
func Commits(ctx *middleware.Context, params martini.Params) {
2014-03-17 22:00:35 +01:00
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 14:57:55 +01:00
ctx.Error(404)
2014-03-17 22:00:35 +01:00
return
}
2014-03-17 11:58:34 +01:00
ctx.Data["IsRepoToolbarCommits"] = true
2014-03-17 16:04:49 +01:00
commits, err := models.GetCommits(params["username"],
params["reponame"], params["branchname"])
if err != nil {
2014-03-19 14:57:55 +01:00
ctx.Error(404)
2014-03-17 16:04:49 +01:00
return
}
2014-03-19 18:14:56 +01:00
ctx.Data["Username"] = params["username"]
ctx.Data["Reponame"] = params["reponame"]
2014-03-19 18:24:46 +01:00
ctx.Data["CommitCount"] = commits.Len()
2014-03-17 16:04:49 +01:00
ctx.Data["Commits"] = commits
2014-03-20 12:50:26 +01:00
ctx.HTML(200, "repo/commits")
2014-03-16 08:41:22 +01:00
}
2014-03-18 23:31:54 +01:00
func Issues(ctx *middleware.Context) {
ctx.Data["IsRepoToolbarIssues"] = true
2014-03-20 12:50:26 +01:00
ctx.HTML(200, "repo/issues")
2014-03-16 08:41:22 +01:00
}
2014-03-18 23:31:54 +01:00
func Pulls(ctx *middleware.Context) {
ctx.Data["IsRepoToolbarPulls"] = true
2014-03-20 12:50:26 +01:00
ctx.HTML(200, "repo/pulls")
2014-03-16 08:41:22 +01:00
}
2014-03-20 04:20:55 +01:00
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,
})
}