2014-08-14 08:12:21 +02:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2020-01-24 20:00:29 +01:00
|
|
|
// Copyright 2020 The Gitea Authors.
|
2014-08-14 08:12:21 +02:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2016-03-11 17:56:52 +01:00
|
|
|
package context
|
2014-08-14 08:12:21 +02:00
|
|
|
|
|
|
|
import (
|
2016-01-31 14:28:42 +01:00
|
|
|
"strings"
|
|
|
|
|
2016-11-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/models"
|
2021-11-28 12:58:28 +01:00
|
|
|
"code.gitea.io/gitea/models/perm"
|
2021-11-11 08:03:30 +01:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2014-08-14 08:12:21 +02:00
|
|
|
)
|
|
|
|
|
2016-11-25 07:51:01 +01:00
|
|
|
// Organization contains organization context
|
2016-03-13 22:37:44 +01:00
|
|
|
type Organization struct {
|
2019-11-20 12:27:49 +01:00
|
|
|
IsOwner bool
|
|
|
|
IsMember bool
|
|
|
|
IsTeamMember bool // Is member of team.
|
|
|
|
IsTeamAdmin bool // In owner team or team that has admin permission level.
|
2021-11-19 12:41:40 +01:00
|
|
|
Organization *models.Organization
|
2019-11-20 12:27:49 +01:00
|
|
|
OrgLink string
|
|
|
|
CanCreateOrgRepo bool
|
2016-03-13 22:37:44 +01:00
|
|
|
|
2021-11-19 12:41:40 +01:00
|
|
|
Team *models.Team
|
|
|
|
Teams []*models.Team
|
2016-03-13 22:37:44 +01:00
|
|
|
}
|
|
|
|
|
2016-11-25 07:51:01 +01:00
|
|
|
// HandleOrgAssignment handles organization assignment
|
2015-11-25 01:14:00 +01:00
|
|
|
func HandleOrgAssignment(ctx *Context, args ...bool) {
|
|
|
|
var (
|
2016-01-31 14:28:42 +01:00
|
|
|
requireMember bool
|
|
|
|
requireOwner bool
|
|
|
|
requireTeamMember bool
|
2016-01-31 16:18:28 +01:00
|
|
|
requireTeamAdmin bool
|
2015-11-25 01:14:00 +01:00
|
|
|
)
|
|
|
|
if len(args) >= 1 {
|
|
|
|
requireMember = args[0]
|
|
|
|
}
|
|
|
|
if len(args) >= 2 {
|
|
|
|
requireOwner = args[1]
|
|
|
|
}
|
|
|
|
if len(args) >= 3 {
|
2016-01-31 14:28:42 +01:00
|
|
|
requireTeamMember = args[2]
|
|
|
|
}
|
|
|
|
if len(args) >= 4 {
|
2016-01-31 16:18:28 +01:00
|
|
|
requireTeamAdmin = args[3]
|
2015-11-25 01:14:00 +01:00
|
|
|
}
|
2014-08-14 08:12:21 +02:00
|
|
|
|
2015-11-25 01:14:00 +01:00
|
|
|
orgName := ctx.Params(":org")
|
2014-08-14 08:12:21 +02:00
|
|
|
|
2015-11-25 01:14:00 +01:00
|
|
|
var err error
|
2021-11-19 12:41:40 +01:00
|
|
|
ctx.Org.Organization, err = models.GetOrgByName(orgName)
|
2015-11-25 01:14:00 +01:00
|
|
|
if err != nil {
|
2021-11-24 10:49:20 +01:00
|
|
|
if user_model.IsErrUserNotExist(err) {
|
2021-11-11 08:03:30 +01:00
|
|
|
redirectUserID, err := user_model.LookupUserRedirect(orgName)
|
2021-01-24 16:23:05 +01:00
|
|
|
if err == nil {
|
|
|
|
RedirectToUser(ctx, orgName, redirectUserID)
|
2021-11-11 08:03:30 +01:00
|
|
|
} else if user_model.IsErrUserRedirectNotExist(err) {
|
2021-01-24 16:23:05 +01:00
|
|
|
ctx.NotFound("GetUserByName", err)
|
|
|
|
} else {
|
|
|
|
ctx.ServerError("LookupUserRedirect", err)
|
|
|
|
}
|
2015-11-25 01:14:00 +01:00
|
|
|
} else {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("GetUserByName", err)
|
2014-08-14 08:12:21 +02:00
|
|
|
}
|
2015-11-25 01:14:00 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
org := ctx.Org.Organization
|
|
|
|
ctx.Data["Org"] = org
|
2014-08-14 08:12:21 +02:00
|
|
|
|
2021-11-20 04:13:24 +01:00
|
|
|
teams, err := org.LoadTeams()
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("LoadTeams", err)
|
|
|
|
}
|
|
|
|
ctx.Data["OrgTeams"] = teams
|
|
|
|
|
2015-11-28 22:31:06 +01:00
|
|
|
// Admin has super access.
|
|
|
|
if ctx.IsSigned && ctx.User.IsAdmin {
|
|
|
|
ctx.Org.IsOwner = true
|
|
|
|
ctx.Org.IsMember = true
|
2016-01-31 14:28:42 +01:00
|
|
|
ctx.Org.IsTeamMember = true
|
2016-01-31 16:18:28 +01:00
|
|
|
ctx.Org.IsTeamAdmin = true
|
2019-11-20 12:27:49 +01:00
|
|
|
ctx.Org.CanCreateOrgRepo = true
|
2015-11-28 22:31:06 +01:00
|
|
|
} else if ctx.IsSigned {
|
2017-12-21 08:43:26 +01:00
|
|
|
ctx.Org.IsOwner, err = org.IsOwnedBy(ctx.User.ID)
|
|
|
|
if err != nil {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("IsOwnedBy", err)
|
2017-12-21 08:43:26 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-11-25 01:14:00 +01:00
|
|
|
if ctx.Org.IsOwner {
|
|
|
|
ctx.Org.IsMember = true
|
2016-01-31 14:28:42 +01:00
|
|
|
ctx.Org.IsTeamMember = true
|
2016-01-31 16:18:28 +01:00
|
|
|
ctx.Org.IsTeamAdmin = true
|
2019-11-20 12:27:49 +01:00
|
|
|
ctx.Org.CanCreateOrgRepo = true
|
2015-11-25 01:14:00 +01:00
|
|
|
} else {
|
2017-12-21 08:43:26 +01:00
|
|
|
ctx.Org.IsMember, err = org.IsOrgMember(ctx.User.ID)
|
|
|
|
if err != nil {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("IsOrgMember", err)
|
2017-12-21 08:43:26 +01:00
|
|
|
return
|
2014-08-14 08:12:21 +02:00
|
|
|
}
|
2019-11-20 12:27:49 +01:00
|
|
|
ctx.Org.CanCreateOrgRepo, err = org.CanCreateOrgRepo(ctx.User.ID)
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("CanCreateOrgRepo", err)
|
|
|
|
return
|
|
|
|
}
|
2014-08-14 08:12:21 +02:00
|
|
|
}
|
2015-11-25 01:14:00 +01:00
|
|
|
} else {
|
|
|
|
// Fake data.
|
2021-11-24 10:49:20 +01:00
|
|
|
ctx.Data["SignedUser"] = &user_model.User{}
|
2015-11-25 01:14:00 +01:00
|
|
|
}
|
|
|
|
if (requireMember && !ctx.Org.IsMember) ||
|
|
|
|
(requireOwner && !ctx.Org.IsOwner) {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.NotFound("OrgAssignment", err)
|
2015-11-25 01:14:00 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["IsOrganizationOwner"] = ctx.Org.IsOwner
|
2015-11-28 22:31:06 +01:00
|
|
|
ctx.Data["IsOrganizationMember"] = ctx.Org.IsMember
|
2021-11-22 16:21:55 +01:00
|
|
|
ctx.Data["IsPublicMember"] = func(uid int64) bool {
|
|
|
|
is, _ := models.IsPublicMembership(ctx.Org.Organization.ID, uid)
|
|
|
|
return is
|
|
|
|
}
|
2019-11-20 12:27:49 +01:00
|
|
|
ctx.Data["CanCreateOrgRepo"] = ctx.Org.CanCreateOrgRepo
|
2014-08-15 12:29:41 +02:00
|
|
|
|
2021-11-19 12:41:40 +01:00
|
|
|
ctx.Org.OrgLink = org.AsUser().OrganisationLink()
|
2015-11-25 01:14:00 +01:00
|
|
|
ctx.Data["OrgLink"] = ctx.Org.OrgLink
|
2014-08-16 10:21:17 +02:00
|
|
|
|
2015-11-25 01:14:00 +01:00
|
|
|
// Team.
|
2016-01-31 14:28:42 +01:00
|
|
|
if ctx.Org.IsMember {
|
2016-01-31 17:13:31 +01:00
|
|
|
if ctx.Org.IsOwner {
|
2021-11-19 12:41:40 +01:00
|
|
|
ctx.Org.Teams, err = org.LoadTeams()
|
|
|
|
if err != nil {
|
2021-08-12 14:43:08 +02:00
|
|
|
ctx.ServerError("LoadTeams", err)
|
2016-01-31 17:13:31 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
2021-11-19 12:41:40 +01:00
|
|
|
ctx.Org.Teams, err = org.GetUserTeams(ctx.User.ID)
|
2016-07-24 12:09:45 +02:00
|
|
|
if err != nil {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("GetUserTeams", err)
|
2016-01-31 17:13:31 +01:00
|
|
|
return
|
|
|
|
}
|
2016-01-31 14:28:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-25 01:14:00 +01:00
|
|
|
teamName := ctx.Params(":team")
|
|
|
|
if len(teamName) > 0 {
|
2016-01-31 14:28:42 +01:00
|
|
|
teamExists := false
|
2021-11-19 12:41:40 +01:00
|
|
|
for _, team := range ctx.Org.Teams {
|
2016-02-04 19:03:34 +01:00
|
|
|
if team.LowerName == strings.ToLower(teamName) {
|
2016-01-31 14:28:42 +01:00
|
|
|
teamExists = true
|
|
|
|
ctx.Org.Team = team
|
|
|
|
ctx.Org.IsTeamMember = true
|
|
|
|
ctx.Data["Team"] = ctx.Org.Team
|
|
|
|
break
|
2014-08-16 10:21:17 +02:00
|
|
|
}
|
2016-01-31 14:28:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if !teamExists {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.NotFound("OrgAssignment", err)
|
2016-01-31 14:28:42 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["IsTeamMember"] = ctx.Org.IsTeamMember
|
|
|
|
if requireTeamMember && !ctx.Org.IsTeamMember {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.NotFound("OrgAssignment", err)
|
2014-08-24 15:09:05 +02:00
|
|
|
return
|
2014-08-16 10:21:17 +02:00
|
|
|
}
|
2016-01-31 14:28:42 +01:00
|
|
|
|
2021-11-28 12:58:28 +01:00
|
|
|
ctx.Org.IsTeamAdmin = ctx.Org.Team.IsOwnerTeam() || ctx.Org.Team.Authorize >= perm.AccessModeAdmin
|
2016-01-31 16:18:28 +01:00
|
|
|
ctx.Data["IsTeamAdmin"] = ctx.Org.IsTeamAdmin
|
|
|
|
if requireTeamAdmin && !ctx.Org.IsTeamAdmin {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.NotFound("OrgAssignment", err)
|
2016-01-31 14:28:42 +01:00
|
|
|
return
|
|
|
|
}
|
2015-11-25 01:14:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-29 16:35:30 +01:00
|
|
|
// OrgAssignment returns a middleware to handle organization assignment
|
2021-01-26 16:36:53 +01:00
|
|
|
func OrgAssignment(args ...bool) func(ctx *Context) {
|
2015-11-25 01:14:00 +01:00
|
|
|
return func(ctx *Context) {
|
|
|
|
HandleOrgAssignment(ctx, args...)
|
2014-08-14 08:12:21 +02:00
|
|
|
}
|
|
|
|
}
|