2014-03-16 04:24:13 -05: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-12 23:15:58 -05:00
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
2014-03-15 06:31:35 -05:00
|
|
|
"strings"
|
2014-03-13 00:14:43 -05:00
|
|
|
|
2014-03-15 09:34:33 -05:00
|
|
|
"github.com/codegangsta/martini"
|
2014-03-17 05:46:54 -05:00
|
|
|
|
|
|
|
"github.com/gogits/git"
|
2014-03-15 09:34:33 -05:00
|
|
|
|
2014-03-13 00:07:07 -05:00
|
|
|
"github.com/gogits/gogs/models"
|
2014-03-17 05:46:54 -05:00
|
|
|
"github.com/gogits/gogs/modules/base"
|
2014-03-17 16:00:35 -05:00
|
|
|
"github.com/gogits/gogs/modules/log"
|
2014-03-15 08:17:16 -05:00
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
2014-03-12 23:15:58 -05:00
|
|
|
)
|
|
|
|
|
2014-03-17 04:14:31 -05: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 16:00:35 -05:00
|
|
|
} else if len(brs) == 0 {
|
2014-03-19 08:57:55 -05:00
|
|
|
ctx.Error(404)
|
2014-03-17 16:00:35 -05:00
|
|
|
return
|
2014-03-17 04:14:31 -05:00
|
|
|
}
|
|
|
|
|
2014-03-17 16:00:35 -05:00
|
|
|
ctx.Data["Username"] = params["username"]
|
|
|
|
ctx.Data["Reponame"] = params["reponame"]
|
|
|
|
|
2014-03-17 14:32:33 -05:00
|
|
|
ctx.Data["Branchname"] = brs[0]
|
2014-03-17 04:14:31 -05:00
|
|
|
ctx.Data["Branches"] = brs
|
|
|
|
ctx.Data["IsRepoToolbarBranches"] = true
|
|
|
|
|
2014-03-19 08:57:55 -05:00
|
|
|
ctx.HTML(200, "repo/branches", ctx.Data)
|
2014-03-17 04:14:31 -05:00
|
|
|
}
|
|
|
|
|
2014-03-15 09:34:33 -05:00
|
|
|
func Single(ctx *middleware.Context, params martini.Params) {
|
2014-03-15 11:03:23 -05:00
|
|
|
if !ctx.Repo.IsValid {
|
2014-03-12 23:15:58 -05:00
|
|
|
return
|
|
|
|
}
|
2014-03-15 11:03:23 -05:00
|
|
|
|
2014-03-14 10:54:16 -05:00
|
|
|
if params["branchname"] == "" {
|
|
|
|
params["branchname"] = "master"
|
|
|
|
}
|
2014-03-15 11:03:23 -05:00
|
|
|
|
2014-03-17 05:46:54 -05:00
|
|
|
// Get tree path
|
2014-03-14 10:54:16 -05:00
|
|
|
treename := params["_1"]
|
2014-03-17 05:46:54 -05:00
|
|
|
|
2014-03-17 16:00:35 -05:00
|
|
|
// Branches.
|
|
|
|
brs, err := models.GetBranches(params["username"], params["reponame"])
|
|
|
|
if err != nil {
|
|
|
|
log.Error("repo.Single(GetBranches): %v", err)
|
2014-03-19 08:57:55 -05:00
|
|
|
ctx.Error(404)
|
2014-03-17 16:00:35 -05:00
|
|
|
return
|
|
|
|
} else if len(brs) == 0 {
|
|
|
|
ctx.Data["IsBareRepo"] = true
|
2014-03-19 08:57:55 -05:00
|
|
|
ctx.HTML(200, "repo/single", ctx.Data)
|
2014-03-17 16:00:35 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["Branches"] = brs
|
|
|
|
|
2014-03-17 05:46:54 -05:00
|
|
|
// Directory and file list.
|
2014-03-14 10:54:16 -05:00
|
|
|
files, err := models.GetReposFiles(params["username"], params["reponame"],
|
2014-03-17 22:22:19 -05:00
|
|
|
params["branchname"], params["commitid"], treename)
|
2014-03-13 00:07:07 -05:00
|
|
|
if err != nil {
|
2014-03-17 16:00:35 -05:00
|
|
|
log.Error("repo.Single(GetReposFiles): %v", err)
|
2014-03-19 08:57:55 -05:00
|
|
|
ctx.Error(404)
|
2014-03-13 00:07:07 -05:00
|
|
|
return
|
|
|
|
}
|
2014-03-15 09:34:33 -05:00
|
|
|
ctx.Data["Username"] = params["username"]
|
|
|
|
ctx.Data["Reponame"] = params["reponame"]
|
|
|
|
ctx.Data["Branchname"] = params["branchname"]
|
2014-03-15 06:31:35 -05:00
|
|
|
|
|
|
|
var treenames []string
|
2014-03-14 10:54:16 -05:00
|
|
|
Paths := make([]string, 0)
|
2014-03-15 06:31:35 -05: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 11:08:20 -05:00
|
|
|
|
|
|
|
ctx.Data["HasParentPath"] = true
|
|
|
|
if len(Paths)-2 >= 0 {
|
|
|
|
ctx.Data["ParentPath"] = "/" + Paths[len(Paths)-2]
|
|
|
|
}
|
2014-03-14 10:54:16 -05:00
|
|
|
}
|
2014-03-15 06:31:35 -05:00
|
|
|
|
2014-03-17 05:46:54 -05:00
|
|
|
// Get latest commit according username and repo name
|
2014-03-17 22:22:19 -05:00
|
|
|
commit, err := models.GetCommit(params["username"], params["reponame"],
|
|
|
|
params["branchname"], params["commitid"])
|
2014-03-16 23:57:18 -05:00
|
|
|
if err != nil {
|
2014-03-17 22:22:19 -05:00
|
|
|
log.Error("repo.Single(GetCommit): %v", err)
|
2014-03-19 08:57:55 -05:00
|
|
|
ctx.Error(404)
|
2014-03-16 23:57:18 -05:00
|
|
|
return
|
|
|
|
}
|
2014-03-17 23:14:05 -05:00
|
|
|
ctx.Data["LastCommit"] = commit
|
2014-03-16 23:57:18 -05:00
|
|
|
|
2014-03-17 05:46:54 -05:00
|
|
|
var readmeFile *models.RepoFile
|
|
|
|
|
|
|
|
for _, f := range files {
|
2014-03-17 05:58:34 -05:00
|
|
|
if !f.IsFile() || len(f.Name) < 6 {
|
2014-03-17 05:46:54 -05:00
|
|
|
continue
|
2014-03-17 05:58:34 -05:00
|
|
|
} else if strings.ToLower(f.Name[:6]) == "readme" {
|
2014-03-17 05:46:54 -05:00
|
|
|
readmeFile = f
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if readmeFile != nil {
|
2014-03-17 06:56:33 -05:00
|
|
|
ctx.Data["ReadmeExist"] = true
|
2014-03-17 05:46:54 -05:00
|
|
|
// 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 {
|
2014-03-17 10:41:29 -05:00
|
|
|
ctx.Data["ReadmeExist"] = false
|
2014-03-17 05:46:54 -05:00
|
|
|
} else {
|
2014-03-17 10:22:27 -05:00
|
|
|
// current repo branch link
|
|
|
|
urlPrefix := "http://" + base.Domain + "/" + ctx.Repo.Owner.LowerName + "/" +
|
|
|
|
ctx.Repo.Repository.Name + "/blob/" + params["branchname"]
|
|
|
|
|
|
|
|
ctx.Data["ReadmeContent"] = string(base.RenderMarkdown(blob.Contents(), urlPrefix))
|
2014-03-17 05:46:54 -05:00
|
|
|
}
|
|
|
|
}
|
2014-03-17 00:14:05 -05:00
|
|
|
|
2014-03-15 09:34:33 -05:00
|
|
|
ctx.Data["Paths"] = Paths
|
|
|
|
ctx.Data["Treenames"] = treenames
|
|
|
|
ctx.Data["IsRepoToolbarSource"] = true
|
|
|
|
ctx.Data["Files"] = files
|
2014-03-19 08:57:55 -05:00
|
|
|
ctx.HTML(200, "repo/single", ctx.Data)
|
2014-03-12 23:15:58 -05:00
|
|
|
}
|
2014-03-13 01:08:49 -05:00
|
|
|
|
2014-03-16 09:35:25 -05:00
|
|
|
func Setting(ctx *middleware.Context, params martini.Params) {
|
2014-03-17 01:36:28 -05:00
|
|
|
if !ctx.Repo.IsOwner {
|
2014-03-19 08:57:55 -05:00
|
|
|
ctx.Error(404)
|
2014-03-13 01:08:49 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-03-17 16:00:35 -05:00
|
|
|
// Branches.
|
|
|
|
brs, err := models.GetBranches(params["username"], params["reponame"])
|
|
|
|
if err != nil {
|
|
|
|
log.Error("repo.Setting(GetBranches): %v", err)
|
2014-03-19 08:57:55 -05:00
|
|
|
ctx.Error(404)
|
2014-03-17 16:00:35 -05:00
|
|
|
return
|
|
|
|
} else if len(brs) == 0 {
|
|
|
|
ctx.Data["IsBareRepo"] = true
|
2014-03-19 08:57:55 -05:00
|
|
|
ctx.HTML(200, "repo/setting", ctx.Data)
|
2014-03-17 16:00:35 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-03-15 11:03:23 -05:00
|
|
|
var title string
|
|
|
|
if t, ok := ctx.Data["Title"].(string); ok {
|
|
|
|
title = t
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["Title"] = title + " - settings"
|
2014-03-15 09:34:33 -05:00
|
|
|
ctx.Data["IsRepoToolbarSetting"] = true
|
2014-03-19 08:57:55 -05:00
|
|
|
ctx.HTML(200, "repo/setting", ctx.Data)
|
2014-03-13 01:08:49 -05:00
|
|
|
}
|
2014-03-16 02:41:22 -05:00
|
|
|
|
2014-03-17 10:04:49 -05:00
|
|
|
func Commits(ctx *middleware.Context, params martini.Params) {
|
2014-03-17 16:00:35 -05: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 08:57:55 -05:00
|
|
|
ctx.Error(404)
|
2014-03-17 16:00:35 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-03-17 05:58:34 -05:00
|
|
|
ctx.Data["IsRepoToolbarCommits"] = true
|
2014-03-17 10:04:49 -05:00
|
|
|
commits, err := models.GetCommits(params["username"],
|
|
|
|
params["reponame"], params["branchname"])
|
|
|
|
if err != nil {
|
2014-03-19 08:57:55 -05:00
|
|
|
ctx.Error(404)
|
2014-03-17 10:04:49 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Commits"] = commits
|
2014-03-19 08:57:55 -05:00
|
|
|
ctx.HTML(200, "repo/commits", ctx.Data)
|
2014-03-16 02:41:22 -05:00
|
|
|
}
|
|
|
|
|
2014-03-18 17:31:54 -05:00
|
|
|
func Issues(ctx *middleware.Context) {
|
|
|
|
ctx.Data["IsRepoToolbarIssues"] = true
|
2014-03-19 08:57:55 -05:00
|
|
|
ctx.HTML(200, "repo/issues", ctx.Data)
|
2014-03-16 02:41:22 -05:00
|
|
|
}
|
|
|
|
|
2014-03-18 17:31:54 -05:00
|
|
|
func Pulls(ctx *middleware.Context) {
|
|
|
|
ctx.Data["IsRepoToolbarPulls"] = true
|
2014-03-19 08:57:55 -05:00
|
|
|
ctx.HTML(200, "repo/pulls", ctx.Data)
|
2014-03-16 02:41:22 -05:00
|
|
|
}
|