mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	modify RepoAssignment
This commit is contained in:
		
							
								
								
									
										76
									
								
								modules/middleware/repo.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										76
									
								
								modules/middleware/repo.go
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,76 @@
 | 
			
		||||
// 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 (
 | 
			
		||||
	"github.com/codegangsta/martini"
 | 
			
		||||
 | 
			
		||||
	"github.com/gogits/gogs/models"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
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
 | 
			
		||||
		ctx.Repo.IsOwner = ctx.IsSigned && ctx.User.LowerName == params["username"]
 | 
			
		||||
		ctx.Data["IsRepositoryOwner"] = ctx.Repo.IsOwner
 | 
			
		||||
 | 
			
		||||
		if !ctx.Repo.IsOwner {
 | 
			
		||||
			user, err = models.GetUserByName(params["username"])
 | 
			
		||||
			if err != nil {
 | 
			
		||||
				if redirect {
 | 
			
		||||
					ctx.Render.Redirect("/")
 | 
			
		||||
					return
 | 
			
		||||
				}
 | 
			
		||||
				//data["ErrorMsg"] = err
 | 
			
		||||
				//log.Error("repo.Single: %v", err)
 | 
			
		||||
				//r.HTML(200, "base/error", data)
 | 
			
		||||
				return
 | 
			
		||||
			}
 | 
			
		||||
		} else {
 | 
			
		||||
			user = ctx.User
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		if user == nil {
 | 
			
		||||
			if redirect {
 | 
			
		||||
				ctx.Render.Redirect("/")
 | 
			
		||||
				return
 | 
			
		||||
			}
 | 
			
		||||
			//data["ErrorMsg"] = "invliad user account for single repository"
 | 
			
		||||
			//log.Error("repo.Single: %v", err)
 | 
			
		||||
			//r.HTML(200, "base/error", data)
 | 
			
		||||
			return
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		// get repository
 | 
			
		||||
		repo, err := models.GetRepositoryByName(user, params["reponame"])
 | 
			
		||||
		if err != nil {
 | 
			
		||||
			if redirect {
 | 
			
		||||
				ctx.Render.Redirect("/")
 | 
			
		||||
				return
 | 
			
		||||
			}
 | 
			
		||||
			//data["ErrorMsg"] = err
 | 
			
		||||
			//log.Error("repo.Single: %v", err)
 | 
			
		||||
			//r.HTML(200, "base/error", data)
 | 
			
		||||
			return
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		ctx.Repo.IsValid = true
 | 
			
		||||
		ctx.Repo.Repository = repo
 | 
			
		||||
 | 
			
		||||
		ctx.Data["IsRepositoryValid"] = true
 | 
			
		||||
		ctx.Data["Repository"] = repo
 | 
			
		||||
		ctx.Data["Owner"] = user
 | 
			
		||||
		ctx.Data["Title"] = user.Name + "/" + repo.Name
 | 
			
		||||
		ctx.Data["RepositoryLink"] = ctx.Data["Title"]
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user