gitea/routers/repo/single.go

57 lines
1.3 KiB
Go
Raw Normal View History

2014-03-13 05:15:58 +01:00
package repo
import (
2014-03-15 12:31:35 +01:00
"strings"
2014-03-15 15:34:33 +01:00
"github.com/codegangsta/martini"
"github.com/gogits/gogs/models"
2014-03-15 14:17:16 +01:00
"github.com/gogits/gogs/modules/middleware"
2014-03-13 05:15:58 +01:00
)
2014-03-15 15:34:33 +01:00
func Single(ctx *middleware.Context, params martini.Params) {
if !ctx.Data["IsRepositoryValid"].(bool) {
2014-03-13 05:15:58 +01:00
return
}
2014-03-14 16:54:16 +01:00
if params["branchname"] == "" {
params["branchname"] = "master"
}
treename := params["_1"]
files, err := models.GetReposFiles(params["username"], params["reponame"],
params["branchname"], treename)
if err != nil {
2014-03-15 14:17:16 +01:00
ctx.Handle(200, "repo.Single", err)
return
}
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-14 16:54:16 +01:00
}
2014-03-15 12:31:35 +01:00
2014-03-15 15:34:33 +01:00
ctx.Data["Paths"] = Paths
ctx.Data["Treenames"] = treenames
ctx.Data["IsRepoToolbarSource"] = true
ctx.Data["Files"] = files
2014-03-15 15:34:33 +01:00
ctx.Render.HTML(200, "repo/single", ctx.Data)
2014-03-13 05:15:58 +01:00
}
2014-03-13 07:08:49 +01:00
2014-03-15 15:34:33 +01:00
func Setting(ctx *middleware.Context) {
if !ctx.Data["IsRepositoryValid"].(bool) {
2014-03-13 07:08:49 +01:00
return
}
2014-03-15 15:34:33 +01:00
ctx.Data["Title"] = ctx.Data["Title"].(string) + " - settings"
ctx.Data["IsRepoToolbarSetting"] = true
ctx.Render.HTML(200, "repo/setting", ctx.Data)
2014-03-13 07:08:49 +01:00
}