2014-03-15 16:03:23 +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.
|
|
|
|
|
|
|
|
package middleware
|
|
|
|
|
|
|
|
import (
|
2014-03-16 06:28:24 +00:00
|
|
|
"errors"
|
2014-03-20 04:12:33 +00:00
|
|
|
"fmt"
|
2014-03-17 08:47:42 +00:00
|
|
|
"strings"
|
2014-03-16 06:28:24 +00:00
|
|
|
|
2014-03-15 16:03:23 +00:00
|
|
|
"github.com/codegangsta/martini"
|
|
|
|
|
|
|
|
"github.com/gogits/gogs/models"
|
2014-03-20 04:12:33 +00:00
|
|
|
"github.com/gogits/gogs/modules/base"
|
2014-03-15 16:03:23 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func RepoAssignment(redirect bool) martini.Handler {
|
|
|
|
return func(ctx *Context, params martini.Params) {
|
|
|
|
// assign false first
|
|
|
|
ctx.Data["IsRepositoryValid"] = false
|
|
|
|
|
|
|
|
var (
|
|
|
|
user *models.User
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
|
|
|
|
// get repository owner
|
2014-03-17 08:47:42 +00:00
|
|
|
ctx.Repo.IsOwner = ctx.IsSigned && ctx.User.LowerName == strings.ToLower(params["username"])
|
2014-03-15 16:03:23 +00:00
|
|
|
|
|
|
|
if !ctx.Repo.IsOwner {
|
|
|
|
user, err = models.GetUserByName(params["username"])
|
|
|
|
if err != nil {
|
|
|
|
if redirect {
|
2014-03-19 13:57:55 +00:00
|
|
|
ctx.Redirect("/")
|
2014-03-15 16:03:23 +00:00
|
|
|
return
|
|
|
|
}
|
2014-03-16 06:28:24 +00:00
|
|
|
ctx.Handle(200, "RepoAssignment", err)
|
2014-03-15 16:03:23 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
user = ctx.User
|
|
|
|
}
|
|
|
|
|
|
|
|
if user == nil {
|
|
|
|
if redirect {
|
2014-03-19 13:57:55 +00:00
|
|
|
ctx.Redirect("/")
|
2014-03-15 16:03:23 +00:00
|
|
|
return
|
|
|
|
}
|
2014-03-16 06:28:24 +00:00
|
|
|
ctx.Handle(200, "RepoAssignment", errors.New("invliad user account for single repository"))
|
2014-03-15 16:03:23 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-03-15 16:14:26 +00:00
|
|
|
ctx.Repo.Owner = user
|
|
|
|
|
2014-03-15 16:03:23 +00:00
|
|
|
// get repository
|
2014-03-22 08:44:57 +00:00
|
|
|
repo, err := models.GetRepositoryByName(user.Id, params["reponame"])
|
2014-03-15 16:03:23 +00:00
|
|
|
if err != nil {
|
|
|
|
if redirect {
|
2014-03-19 13:57:55 +00:00
|
|
|
ctx.Redirect("/")
|
2014-03-15 16:03:23 +00:00
|
|
|
return
|
|
|
|
}
|
2014-03-16 06:28:24 +00:00
|
|
|
ctx.Handle(200, "RepoAssignment", err)
|
2014-03-15 16:03:23 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Repo.IsValid = true
|
2014-03-20 06:25:21 +00:00
|
|
|
if ctx.User != nil {
|
|
|
|
ctx.Repo.IsWatching = models.IsWatching(ctx.User.Id, repo.Id)
|
|
|
|
}
|
2014-03-15 16:03:23 +00:00
|
|
|
ctx.Repo.Repository = repo
|
2014-03-23 12:40:40 +00:00
|
|
|
scheme := "http"
|
|
|
|
if base.EnableHttpsClone {
|
|
|
|
scheme = "https"
|
|
|
|
}
|
2014-03-25 12:53:11 +00:00
|
|
|
ctx.Repo.CloneLink.SSH = fmt.Sprintf("%s@%s:%s/%s.git", base.RunUser, base.Domain, user.LowerName, repo.LowerName)
|
2014-03-23 12:40:40 +00:00
|
|
|
ctx.Repo.CloneLink.HTTPS = fmt.Sprintf("%s://%s/%s/%s.git", scheme, base.Domain, user.LowerName, repo.LowerName)
|
2014-03-15 16:03:23 +00:00
|
|
|
|
2014-03-25 16:12:27 +00:00
|
|
|
if len(params["branchname"]) == 0 {
|
|
|
|
params["branchname"] = "master"
|
|
|
|
}
|
|
|
|
ctx.Data["Branchname"] = params["branchname"]
|
|
|
|
|
2014-03-15 16:03:23 +00:00
|
|
|
ctx.Data["IsRepositoryValid"] = true
|
|
|
|
ctx.Data["Repository"] = repo
|
|
|
|
ctx.Data["Owner"] = user
|
|
|
|
ctx.Data["Title"] = user.Name + "/" + repo.Name
|
2014-03-20 04:12:33 +00:00
|
|
|
ctx.Data["CloneLink"] = ctx.Repo.CloneLink
|
2014-03-15 16:03:23 +00:00
|
|
|
ctx.Data["RepositoryLink"] = ctx.Data["Title"]
|
2014-03-17 05:12:28 +00:00
|
|
|
ctx.Data["IsRepositoryOwner"] = ctx.Repo.IsOwner
|
2014-03-20 13:28:12 +00:00
|
|
|
ctx.Data["IsRepositoryWatching"] = ctx.Repo.IsWatching
|
2014-03-15 16:03:23 +00:00
|
|
|
}
|
|
|
|
}
|