mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
151 lines
3.3 KiB
151 lines
3.3 KiB
10 years ago
|
// 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.
|
||
|
|
||
9 years ago
|
package context
|
||
10 years ago
|
|
||
|
import (
|
||
9 years ago
|
"strings"
|
||
|
|
||
9 years ago
|
"gopkg.in/macaron.v1"
|
||
10 years ago
|
|
||
|
"github.com/gogits/gogs/models"
|
||
8 years ago
|
"github.com/gogits/gogs/models/errors"
|
||
8 years ago
|
"github.com/gogits/gogs/pkg/setting"
|
||
10 years ago
|
)
|
||
|
|
||
9 years ago
|
type Organization struct {
|
||
|
IsOwner bool
|
||
|
IsMember bool
|
||
|
IsTeamMember bool // Is member of team.
|
||
|
IsTeamAdmin bool // In owner team or team that has admin permission level.
|
||
|
Organization *models.User
|
||
|
OrgLink string
|
||
|
|
||
|
Team *models.Team
|
||
|
}
|
||
|
|
||
9 years ago
|
func HandleOrgAssignment(ctx *Context, args ...bool) {
|
||
|
var (
|
||
9 years ago
|
requireMember bool
|
||
|
requireOwner bool
|
||
|
requireTeamMember bool
|
||
9 years ago
|
requireTeamAdmin bool
|
||
9 years ago
|
)
|
||
|
if len(args) >= 1 {
|
||
|
requireMember = args[0]
|
||
|
}
|
||
|
if len(args) >= 2 {
|
||
|
requireOwner = args[1]
|
||
|
}
|
||
|
if len(args) >= 3 {
|
||
9 years ago
|
requireTeamMember = args[2]
|
||
|
}
|
||
|
if len(args) >= 4 {
|
||
9 years ago
|
requireTeamAdmin = args[3]
|
||
9 years ago
|
}
|
||
10 years ago
|
|
||
9 years ago
|
orgName := ctx.Params(":org")
|
||
10 years ago
|
|
||
9 years ago
|
var err error
|
||
|
ctx.Org.Organization, err = models.GetUserByName(orgName)
|
||
|
if err != nil {
|
||
8 years ago
|
ctx.NotFoundOrServerError("GetUserByName", errors.IsUserNotExist, err)
|
||
9 years ago
|
return
|
||
|
}
|
||
|
org := ctx.Org.Organization
|
||
|
ctx.Data["Org"] = org
|
||
10 years ago
|
|
||
9 years ago
|
// Force redirection when username is actually a user.
|
||
|
if !org.IsOrganization() {
|
||
|
ctx.Redirect("/" + org.Name)
|
||
|
return
|
||
|
}
|
||
9 years ago
|
|
||
9 years ago
|
// Admin has super access.
|
||
|
if ctx.IsSigned && ctx.User.IsAdmin {
|
||
|
ctx.Org.IsOwner = true
|
||
|
ctx.Org.IsMember = true
|
||
9 years ago
|
ctx.Org.IsTeamMember = true
|
||
9 years ago
|
ctx.Org.IsTeamAdmin = true
|
||
9 years ago
|
} else if ctx.IsSigned {
|
||
8 years ago
|
ctx.Org.IsOwner = org.IsOwnedBy(ctx.User.ID)
|
||
9 years ago
|
if ctx.Org.IsOwner {
|
||
|
ctx.Org.IsMember = true
|
||
9 years ago
|
ctx.Org.IsTeamMember = true
|
||
9 years ago
|
ctx.Org.IsTeamAdmin = true
|
||
9 years ago
|
} else {
|
||
8 years ago
|
if org.IsOrgMember(ctx.User.ID) {
|
||
10 years ago
|
ctx.Org.IsMember = true
|
||
|
}
|
||
|
}
|
||
9 years ago
|
} else {
|
||
|
// Fake data.
|
||
|
ctx.Data["SignedUser"] = &models.User{}
|
||
|
}
|
||
|
if (requireMember && !ctx.Org.IsMember) ||
|
||
|
(requireOwner && !ctx.Org.IsOwner) {
|
||
|
ctx.Handle(404, "OrgAssignment", err)
|
||
|
return
|
||
|
}
|
||
|
ctx.Data["IsOrganizationOwner"] = ctx.Org.IsOwner
|
||
9 years ago
|
ctx.Data["IsOrganizationMember"] = ctx.Org.IsMember
|
||
10 years ago
|
|
||
9 years ago
|
ctx.Org.OrgLink = setting.AppSubUrl + "/org/" + org.Name
|
||
|
ctx.Data["OrgLink"] = ctx.Org.OrgLink
|
||
10 years ago
|
|
||
9 years ago
|
// Team.
|
||
9 years ago
|
if ctx.Org.IsMember {
|
||
9 years ago
|
if ctx.Org.IsOwner {
|
||
|
if err := org.GetTeams(); err != nil {
|
||
9 years ago
|
ctx.Handle(500, "GetTeams", err)
|
||
9 years ago
|
return
|
||
|
}
|
||
|
} else {
|
||
8 years ago
|
org.Teams, err = org.GetUserTeams(ctx.User.ID)
|
||
|
if err != nil {
|
||
9 years ago
|
ctx.Handle(500, "GetUserTeams", err)
|
||
|
return
|
||
|
}
|
||
9 years ago
|
}
|
||
|
}
|
||
|
|
||
9 years ago
|
teamName := ctx.Params(":team")
|
||
|
if len(teamName) > 0 {
|
||
9 years ago
|
teamExists := false
|
||
|
for _, team := range org.Teams {
|
||
9 years ago
|
if team.LowerName == strings.ToLower(teamName) {
|
||
9 years ago
|
teamExists = true
|
||
|
ctx.Org.Team = team
|
||
|
ctx.Org.IsTeamMember = true
|
||
|
ctx.Data["Team"] = ctx.Org.Team
|
||
|
break
|
||
10 years ago
|
}
|
||
9 years ago
|
}
|
||
|
|
||
|
if !teamExists {
|
||
|
ctx.Handle(404, "OrgAssignment", err)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
ctx.Data["IsTeamMember"] = ctx.Org.IsTeamMember
|
||
|
if requireTeamMember && !ctx.Org.IsTeamMember {
|
||
|
ctx.Handle(404, "OrgAssignment", err)
|
||
10 years ago
|
return
|
||
10 years ago
|
}
|
||
9 years ago
|
|
||
9 years ago
|
ctx.Org.IsTeamAdmin = ctx.Org.Team.IsOwnerTeam() || ctx.Org.Team.Authorize >= models.ACCESS_MODE_ADMIN
|
||
|
ctx.Data["IsTeamAdmin"] = ctx.Org.IsTeamAdmin
|
||
|
if requireTeamAdmin && !ctx.Org.IsTeamAdmin {
|
||
9 years ago
|
ctx.Handle(404, "OrgAssignment", err)
|
||
|
return
|
||
|
}
|
||
9 years ago
|
}
|
||
|
}
|
||
|
|
||
|
func OrgAssignment(args ...bool) macaron.Handler {
|
||
|
return func(ctx *Context) {
|
||
|
HandleOrgAssignment(ctx, args...)
|
||
10 years ago
|
}
|
||
|
}
|