2014-03-16 09:24:13 +00: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 04:15:58 +00:00
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
2014-03-15 11:31:35 +00:00
|
|
|
"strings"
|
2014-03-13 05:14:43 +00:00
|
|
|
|
2014-03-15 14:34:33 +00:00
|
|
|
"github.com/codegangsta/martini"
|
|
|
|
|
2014-03-13 05:07:07 +00:00
|
|
|
"github.com/gogits/gogs/models"
|
2014-03-15 13:17:16 +00:00
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
2014-03-13 04:15:58 +00:00
|
|
|
)
|
|
|
|
|
2014-03-15 14:34:33 +00:00
|
|
|
func Single(ctx *middleware.Context, params martini.Params) {
|
2014-03-15 16:03:23 +00:00
|
|
|
if !ctx.Repo.IsValid {
|
2014-03-13 04:15:58 +00:00
|
|
|
return
|
|
|
|
}
|
2014-03-15 16:03:23 +00:00
|
|
|
|
2014-03-14 15:54:16 +00:00
|
|
|
if params["branchname"] == "" {
|
|
|
|
params["branchname"] = "master"
|
|
|
|
}
|
2014-03-15 16:03:23 +00:00
|
|
|
|
2014-03-14 15:54:16 +00:00
|
|
|
treename := params["_1"]
|
|
|
|
files, err := models.GetReposFiles(params["username"], params["reponame"],
|
|
|
|
params["branchname"], treename)
|
2014-03-13 05:07:07 +00:00
|
|
|
if err != nil {
|
2014-03-15 13:17:16 +00:00
|
|
|
ctx.Handle(200, "repo.Single", err)
|
2014-03-13 05:07:07 +00:00
|
|
|
return
|
|
|
|
}
|
2014-03-15 14:34:33 +00:00
|
|
|
ctx.Data["Username"] = params["username"]
|
|
|
|
ctx.Data["Reponame"] = params["reponame"]
|
|
|
|
ctx.Data["Branchname"] = params["branchname"]
|
2014-03-15 11:31:35 +00:00
|
|
|
|
|
|
|
var treenames []string
|
2014-03-14 15:54:16 +00:00
|
|
|
Paths := make([]string, 0)
|
2014-03-15 11:31:35 +00: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 15:54:16 +00:00
|
|
|
}
|
2014-03-15 11:31:35 +00:00
|
|
|
|
2014-03-15 14:34:33 +00:00
|
|
|
ctx.Data["Paths"] = Paths
|
|
|
|
ctx.Data["Treenames"] = treenames
|
|
|
|
ctx.Data["IsRepoToolbarSource"] = true
|
2014-03-16 14:35:25 +00:00
|
|
|
ctx.Data["IsRepositoryOwner"] = strings.ToLower(params["username"]) == ctx.User.LowerName
|
2014-03-15 14:34:33 +00:00
|
|
|
ctx.Data["Files"] = files
|
|
|
|
ctx.Render.HTML(200, "repo/single", ctx.Data)
|
2014-03-13 04:15:58 +00:00
|
|
|
}
|
2014-03-13 06:08:49 +00:00
|
|
|
|
2014-03-16 14:35:25 +00:00
|
|
|
func Setting(ctx *middleware.Context, params martini.Params) {
|
2014-03-15 16:03:23 +00:00
|
|
|
if !ctx.Repo.IsValid {
|
2014-03-13 06:08:49 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-03-15 16:03:23 +00:00
|
|
|
var title string
|
|
|
|
if t, ok := ctx.Data["Title"].(string); ok {
|
|
|
|
title = t
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["Title"] = title + " - settings"
|
2014-03-15 14:34:33 +00:00
|
|
|
ctx.Data["IsRepoToolbarSetting"] = true
|
2014-03-16 14:35:25 +00:00
|
|
|
ctx.Data["IsRepositoryOwner"] = strings.ToLower(params["username"]) == ctx.User.LowerName
|
2014-03-15 14:34:33 +00:00
|
|
|
ctx.Render.HTML(200, "repo/setting", ctx.Data)
|
2014-03-13 06:08:49 +00:00
|
|
|
}
|
2014-03-16 07:41:22 +00:00
|
|
|
|
|
|
|
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"
|
|
|
|
}
|