bench-forgejo/routers/repo/single.go

107 lines
2.4 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 14:03:53 +05:30
// "github.com/slene/blackfriday"
2014-03-15 20:04:33 +05:30
"github.com/gogits/gogs/models"
2014-03-15 18:47:16 +05:30
"github.com/gogits/gogs/modules/middleware"
2014-03-13 09:45:58 +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-14 21:24:16 +05:30
if params["branchname"] == "" {
params["branchname"] = "master"
}
2014-03-15 21:33:23 +05:30
2014-03-17 10:44:05 +05:30
// Directory and file list.
2014-03-14 21:24:16 +05:30
treename := params["_1"]
files, err := models.GetReposFiles(params["username"], params["reponame"],
params["branchname"], treename)
if err != nil {
2014-03-15 18:47:16 +05:30
ctx.Handle(200, "repo.Single", err)
return
}
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
2014-03-17 10:44:05 +05:30
// Branches.
2014-03-17 09:13:22 +05:30
brs, err := models.GetBranches(params["username"], params["reponame"])
if err != nil {
ctx.Handle(200, "repo.Single", err)
return
}
ctx.Data["Branches"] = brs
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-14 21:24:16 +05:30
}
2014-03-15 17:01:35 +05:30
2014-03-17 10:44:05 +05:30
// Latest commit.
2014-03-17 10:27:18 +05:30
commit, err := models.GetLastestCommit(params["username"], params["reponame"])
if err != nil {
ctx.Handle(200, "repo.Single", err)
return
}
ctx.Data["LatestCommit"] = commit
2014-03-17 10:44:05 +05:30
// README.
// for _, f := range files {
// if f.Name == "README.md" {
// ctx.Data["ReadmeName"] = "README.md"
// ctx.Data["ReadmeContent"] =
// break
// }
// }
2014-03-15 20:04:33 +05:30
ctx.Data["Paths"] = Paths
ctx.Data["Treenames"] = treenames
ctx.Data["IsRepoToolbarSource"] = true
ctx.Data["Files"] = files
ctx.Render.HTML(200, "repo/single", ctx.Data)
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 {
ctx.Render.Error(404)
2014-03-13 11:38:49 +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-15 20:04:33 +05:30
ctx.Data["IsRepoToolbarSetting"] = true
ctx.Render.HTML(200, "repo/setting", ctx.Data)
2014-03-13 11:38:49 +05:30
}
2014-03-16 13:11:22 +05:30
func Commits(ctx *middleware.Context) string {
return "This is commits page"
}
func Issues(ctx *middleware.Context) string {
return "This is issues page"
}
func Pulls(ctx *middleware.Context) string {
return "This is pulls page"
}