|
|
|
@ -62,217 +62,193 @@ func GetOrganizationByParams(ctx *Context) { |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// HandleOrgAssignment handles organization assignment
|
|
|
|
|
// args: requireMember, requireOwner, requireTeamMember, requireTeamAdmin
|
|
|
|
|
func HandleOrgAssignment(ctx *Context, args ...bool) { |
|
|
|
|
var ( |
|
|
|
|
requireMember bool |
|
|
|
|
requireOwner bool |
|
|
|
|
requireTeamMember bool |
|
|
|
|
requireTeamAdmin bool |
|
|
|
|
) |
|
|
|
|
if len(args) >= 1 { |
|
|
|
|
requireMember = args[0] |
|
|
|
|
} |
|
|
|
|
if len(args) >= 2 { |
|
|
|
|
requireOwner = args[1] |
|
|
|
|
} |
|
|
|
|
if len(args) >= 3 { |
|
|
|
|
requireTeamMember = args[2] |
|
|
|
|
} |
|
|
|
|
if len(args) >= 4 { |
|
|
|
|
requireTeamAdmin = args[3] |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
var err error |
|
|
|
|
type OrgAssignmentOptions struct { |
|
|
|
|
RequireMember bool |
|
|
|
|
RequireOwner bool |
|
|
|
|
RequireTeamMember bool |
|
|
|
|
RequireTeamAdmin bool |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if ctx.ContextUser == nil { |
|
|
|
|
// if Organization is not defined, get it from params
|
|
|
|
|
if ctx.Org.Organization == nil { |
|
|
|
|
GetOrganizationByParams(ctx) |
|
|
|
|
if ctx.Written() { |
|
|
|
|
return |
|
|
|
|
// OrgAssignment returns a middleware to handle organization assignment
|
|
|
|
|
func OrgAssignment(opts OrgAssignmentOptions) func(ctx *Context) { |
|
|
|
|
return func(ctx *Context) { |
|
|
|
|
var err error |
|
|
|
|
if ctx.ContextUser == nil { |
|
|
|
|
// if Organization is not defined, get it from params
|
|
|
|
|
if ctx.Org.Organization == nil { |
|
|
|
|
GetOrganizationByParams(ctx) |
|
|
|
|
if ctx.Written() { |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} else if ctx.ContextUser.IsOrganization() { |
|
|
|
|
ctx.Org.Organization = (*organization.Organization)(ctx.ContextUser) |
|
|
|
|
} else { |
|
|
|
|
// ContextUser is an individual User
|
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
} else if ctx.ContextUser.IsOrganization() { |
|
|
|
|
if ctx.Org == nil { |
|
|
|
|
ctx.Org = &Organization{} |
|
|
|
|
} |
|
|
|
|
ctx.Org.Organization = (*organization.Organization)(ctx.ContextUser) |
|
|
|
|
} else { |
|
|
|
|
// ContextUser is an individual User
|
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
org := ctx.Org.Organization |
|
|
|
|
|
|
|
|
|
// Handle Visibility
|
|
|
|
|
if org.Visibility != structs.VisibleTypePublic && !ctx.IsSigned { |
|
|
|
|
// We must be signed in to see limited or private organizations
|
|
|
|
|
ctx.NotFound("OrgAssignment", err) |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if org.Visibility == structs.VisibleTypePrivate { |
|
|
|
|
requireMember = true |
|
|
|
|
} else if ctx.IsSigned && ctx.Doer.IsRestricted { |
|
|
|
|
requireMember = true |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
ctx.ContextUser = org.AsUser() |
|
|
|
|
ctx.Data["Org"] = org |
|
|
|
|
org := ctx.Org.Organization |
|
|
|
|
|
|
|
|
|
// Admin has super access.
|
|
|
|
|
if ctx.IsSigned && ctx.Doer.IsAdmin { |
|
|
|
|
ctx.Org.IsOwner = true |
|
|
|
|
ctx.Org.IsMember = true |
|
|
|
|
ctx.Org.IsTeamMember = true |
|
|
|
|
ctx.Org.IsTeamAdmin = true |
|
|
|
|
ctx.Org.CanCreateOrgRepo = true |
|
|
|
|
} else if ctx.IsSigned { |
|
|
|
|
ctx.Org.IsOwner, err = org.IsOwnedBy(ctx, ctx.Doer.ID) |
|
|
|
|
if err != nil { |
|
|
|
|
ctx.ServerError("IsOwnedBy", err) |
|
|
|
|
// Handle Visibility
|
|
|
|
|
if org.Visibility != structs.VisibleTypePublic && !ctx.IsSigned { |
|
|
|
|
// We must be signed in to see limited or private organizations
|
|
|
|
|
ctx.NotFound("OrgAssignment", err) |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if ctx.Org.IsOwner { |
|
|
|
|
if org.Visibility == structs.VisibleTypePrivate { |
|
|
|
|
opts.RequireMember = true |
|
|
|
|
} else if ctx.IsSigned && ctx.Doer.IsRestricted { |
|
|
|
|
opts.RequireMember = true |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
ctx.ContextUser = org.AsUser() |
|
|
|
|
ctx.Data["Org"] = org |
|
|
|
|
|
|
|
|
|
// Admin has super access.
|
|
|
|
|
if ctx.IsSigned && ctx.Doer.IsAdmin { |
|
|
|
|
ctx.Org.IsOwner = true |
|
|
|
|
ctx.Org.IsMember = true |
|
|
|
|
ctx.Org.IsTeamMember = true |
|
|
|
|
ctx.Org.IsTeamAdmin = true |
|
|
|
|
ctx.Org.CanCreateOrgRepo = true |
|
|
|
|
} else { |
|
|
|
|
ctx.Org.IsMember, err = org.IsOrgMember(ctx, ctx.Doer.ID) |
|
|
|
|
} else if ctx.IsSigned { |
|
|
|
|
ctx.Org.IsOwner, err = org.IsOwnedBy(ctx, ctx.Doer.ID) |
|
|
|
|
if err != nil { |
|
|
|
|
ctx.ServerError("IsOrgMember", err) |
|
|
|
|
ctx.ServerError("IsOwnedBy", err) |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
ctx.Org.CanCreateOrgRepo, err = org.CanCreateOrgRepo(ctx, ctx.Doer.ID) |
|
|
|
|
if err != nil { |
|
|
|
|
ctx.ServerError("CanCreateOrgRepo", err) |
|
|
|
|
return |
|
|
|
|
|
|
|
|
|
if ctx.Org.IsOwner { |
|
|
|
|
ctx.Org.IsMember = true |
|
|
|
|
ctx.Org.IsTeamMember = true |
|
|
|
|
ctx.Org.IsTeamAdmin = true |
|
|
|
|
ctx.Org.CanCreateOrgRepo = true |
|
|
|
|
} else { |
|
|
|
|
ctx.Org.IsMember, err = org.IsOrgMember(ctx, ctx.Doer.ID) |
|
|
|
|
if err != nil { |
|
|
|
|
ctx.ServerError("IsOrgMember", err) |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
ctx.Org.CanCreateOrgRepo, err = org.CanCreateOrgRepo(ctx, ctx.Doer.ID) |
|
|
|
|
if err != nil { |
|
|
|
|
ctx.ServerError("CanCreateOrgRepo", err) |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
// Fake data.
|
|
|
|
|
ctx.Data["SignedUser"] = &user_model.User{} |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
// Fake data.
|
|
|
|
|
ctx.Data["SignedUser"] = &user_model.User{} |
|
|
|
|
} |
|
|
|
|
if (requireMember && !ctx.Org.IsMember) || |
|
|
|
|
(requireOwner && !ctx.Org.IsOwner) { |
|
|
|
|
ctx.NotFound("OrgAssignment", err) |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
ctx.Data["IsOrganizationOwner"] = ctx.Org.IsOwner |
|
|
|
|
ctx.Data["IsOrganizationMember"] = ctx.Org.IsMember |
|
|
|
|
ctx.Data["IsPackageEnabled"] = setting.Packages.Enabled |
|
|
|
|
ctx.Data["IsRepoIndexerEnabled"] = setting.Indexer.RepoIndexerEnabled |
|
|
|
|
ctx.Data["IsPublicMember"] = func(uid int64) bool { |
|
|
|
|
is, _ := organization.IsPublicMembership(ctx, ctx.Org.Organization.ID, uid) |
|
|
|
|
return is |
|
|
|
|
} |
|
|
|
|
ctx.Data["CanCreateOrgRepo"] = ctx.Org.CanCreateOrgRepo |
|
|
|
|
if (opts.RequireMember && !ctx.Org.IsMember) || (opts.RequireOwner && !ctx.Org.IsOwner) { |
|
|
|
|
ctx.NotFound("OrgAssignment", err) |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
ctx.Data["IsOrganizationOwner"] = ctx.Org.IsOwner |
|
|
|
|
ctx.Data["IsOrganizationMember"] = ctx.Org.IsMember |
|
|
|
|
ctx.Data["IsPackageEnabled"] = setting.Packages.Enabled |
|
|
|
|
ctx.Data["IsRepoIndexerEnabled"] = setting.Indexer.RepoIndexerEnabled |
|
|
|
|
ctx.Data["IsPublicMember"] = func(uid int64) bool { |
|
|
|
|
is, _ := organization.IsPublicMembership(ctx, ctx.Org.Organization.ID, uid) |
|
|
|
|
return is |
|
|
|
|
} |
|
|
|
|
ctx.Data["CanCreateOrgRepo"] = ctx.Org.CanCreateOrgRepo |
|
|
|
|
|
|
|
|
|
ctx.Org.OrgLink = org.AsUser().OrganisationLink() |
|
|
|
|
ctx.Data["OrgLink"] = ctx.Org.OrgLink |
|
|
|
|
ctx.Org.OrgLink = org.AsUser().OrganisationLink() |
|
|
|
|
ctx.Data["OrgLink"] = ctx.Org.OrgLink |
|
|
|
|
|
|
|
|
|
// Member
|
|
|
|
|
opts := &organization.FindOrgMembersOpts{ |
|
|
|
|
Doer: ctx.Doer, |
|
|
|
|
OrgID: org.ID, |
|
|
|
|
IsDoerMember: ctx.Org.IsMember, |
|
|
|
|
} |
|
|
|
|
ctx.Data["NumMembers"], err = organization.CountOrgMembers(ctx, opts) |
|
|
|
|
if err != nil { |
|
|
|
|
ctx.ServerError("CountOrgMembers", err) |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
// Member
|
|
|
|
|
findMembersOpts := &organization.FindOrgMembersOpts{ |
|
|
|
|
Doer: ctx.Doer, |
|
|
|
|
OrgID: org.ID, |
|
|
|
|
IsDoerMember: ctx.Org.IsMember, |
|
|
|
|
} |
|
|
|
|
ctx.Data["NumMembers"], err = organization.CountOrgMembers(ctx, findMembersOpts) |
|
|
|
|
if err != nil { |
|
|
|
|
ctx.ServerError("CountOrgMembers", err) |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Team.
|
|
|
|
|
if ctx.Org.IsMember { |
|
|
|
|
shouldSeeAllTeams := false |
|
|
|
|
if ctx.Org.IsOwner { |
|
|
|
|
shouldSeeAllTeams = true |
|
|
|
|
} else { |
|
|
|
|
teams, err := org.GetUserTeams(ctx, ctx.Doer.ID) |
|
|
|
|
if err != nil { |
|
|
|
|
ctx.ServerError("GetUserTeams", err) |
|
|
|
|
return |
|
|
|
|
// Team.
|
|
|
|
|
if ctx.Org.IsMember { |
|
|
|
|
shouldSeeAllTeams := false |
|
|
|
|
if ctx.Org.IsOwner { |
|
|
|
|
shouldSeeAllTeams = true |
|
|
|
|
} else { |
|
|
|
|
teams, err := org.GetUserTeams(ctx, ctx.Doer.ID) |
|
|
|
|
if err != nil { |
|
|
|
|
ctx.ServerError("GetUserTeams", err) |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
for _, team := range teams { |
|
|
|
|
if team.IncludesAllRepositories && team.AccessMode >= perm.AccessModeAdmin { |
|
|
|
|
shouldSeeAllTeams = true |
|
|
|
|
break |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
for _, team := range teams { |
|
|
|
|
if team.IncludesAllRepositories && team.AccessMode >= perm.AccessModeAdmin { |
|
|
|
|
shouldSeeAllTeams = true |
|
|
|
|
break |
|
|
|
|
if shouldSeeAllTeams { |
|
|
|
|
ctx.Org.Teams, err = org.LoadTeams(ctx) |
|
|
|
|
if err != nil { |
|
|
|
|
ctx.ServerError("LoadTeams", err) |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
ctx.Org.Teams, err = org.GetUserTeams(ctx, ctx.Doer.ID) |
|
|
|
|
if err != nil { |
|
|
|
|
ctx.ServerError("GetUserTeams", err) |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
ctx.Data["NumTeams"] = len(ctx.Org.Teams) |
|
|
|
|
} |
|
|
|
|
if shouldSeeAllTeams { |
|
|
|
|
ctx.Org.Teams, err = org.LoadTeams(ctx) |
|
|
|
|
if err != nil { |
|
|
|
|
ctx.ServerError("LoadTeams", err) |
|
|
|
|
return |
|
|
|
|
|
|
|
|
|
teamName := ctx.PathParam("team") |
|
|
|
|
if len(teamName) > 0 { |
|
|
|
|
teamExists := false |
|
|
|
|
for _, team := range ctx.Org.Teams { |
|
|
|
|
if team.LowerName == strings.ToLower(teamName) { |
|
|
|
|
teamExists = true |
|
|
|
|
ctx.Org.Team = team |
|
|
|
|
ctx.Org.IsTeamMember = true |
|
|
|
|
ctx.Data["Team"] = ctx.Org.Team |
|
|
|
|
break |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
ctx.Org.Teams, err = org.GetUserTeams(ctx, ctx.Doer.ID) |
|
|
|
|
if err != nil { |
|
|
|
|
ctx.ServerError("GetUserTeams", err) |
|
|
|
|
|
|
|
|
|
if !teamExists { |
|
|
|
|
ctx.NotFound("OrgAssignment", err) |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
ctx.Data["NumTeams"] = len(ctx.Org.Teams) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
teamName := ctx.PathParam("team") |
|
|
|
|
if len(teamName) > 0 { |
|
|
|
|
teamExists := false |
|
|
|
|
for _, team := range ctx.Org.Teams { |
|
|
|
|
if team.LowerName == strings.ToLower(teamName) { |
|
|
|
|
teamExists = true |
|
|
|
|
ctx.Org.Team = team |
|
|
|
|
ctx.Org.IsTeamMember = true |
|
|
|
|
ctx.Data["Team"] = ctx.Org.Team |
|
|
|
|
break |
|
|
|
|
ctx.Data["IsTeamMember"] = ctx.Org.IsTeamMember |
|
|
|
|
if opts.RequireTeamMember && !ctx.Org.IsTeamMember { |
|
|
|
|
ctx.NotFound("OrgAssignment", err) |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if !teamExists { |
|
|
|
|
ctx.NotFound("OrgAssignment", err) |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
ctx.Data["IsTeamMember"] = ctx.Org.IsTeamMember |
|
|
|
|
if requireTeamMember && !ctx.Org.IsTeamMember { |
|
|
|
|
ctx.NotFound("OrgAssignment", err) |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
ctx.Org.IsTeamAdmin = ctx.Org.Team.IsOwnerTeam() || ctx.Org.Team.AccessMode >= perm.AccessModeAdmin |
|
|
|
|
ctx.Data["IsTeamAdmin"] = ctx.Org.IsTeamAdmin |
|
|
|
|
if requireTeamAdmin && !ctx.Org.IsTeamAdmin { |
|
|
|
|
ctx.NotFound("OrgAssignment", err) |
|
|
|
|
return |
|
|
|
|
ctx.Org.IsTeamAdmin = ctx.Org.Team.IsOwnerTeam() || ctx.Org.Team.AccessMode >= perm.AccessModeAdmin |
|
|
|
|
ctx.Data["IsTeamAdmin"] = ctx.Org.IsTeamAdmin |
|
|
|
|
if opts.RequireTeamAdmin && !ctx.Org.IsTeamAdmin { |
|
|
|
|
ctx.NotFound("OrgAssignment", err) |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
ctx.Data["ContextUser"] = ctx.ContextUser |
|
|
|
|
ctx.Data["ContextUser"] = ctx.ContextUser |
|
|
|
|
|
|
|
|
|
ctx.Data["CanReadProjects"] = ctx.Org.CanReadUnit(ctx, unit.TypeProjects) |
|
|
|
|
ctx.Data["CanReadPackages"] = ctx.Org.CanReadUnit(ctx, unit.TypePackages) |
|
|
|
|
ctx.Data["CanReadCode"] = ctx.Org.CanReadUnit(ctx, unit.TypeCode) |
|
|
|
|
ctx.Data["CanReadProjects"] = ctx.Org.CanReadUnit(ctx, unit.TypeProjects) |
|
|
|
|
ctx.Data["CanReadPackages"] = ctx.Org.CanReadUnit(ctx, unit.TypePackages) |
|
|
|
|
ctx.Data["CanReadCode"] = ctx.Org.CanReadUnit(ctx, unit.TypeCode) |
|
|
|
|
|
|
|
|
|
ctx.Data["IsFollowing"] = ctx.Doer != nil && user_model.IsFollowing(ctx, ctx.Doer.ID, ctx.ContextUser.ID) |
|
|
|
|
if len(ctx.ContextUser.Description) != 0 { |
|
|
|
|
content, err := markdown.RenderString(markup.NewRenderContext(ctx), ctx.ContextUser.Description) |
|
|
|
|
if err != nil { |
|
|
|
|
ctx.ServerError("RenderString", err) |
|
|
|
|
return |
|
|
|
|
ctx.Data["IsFollowing"] = ctx.Doer != nil && user_model.IsFollowing(ctx, ctx.Doer.ID, ctx.ContextUser.ID) |
|
|
|
|
if len(ctx.ContextUser.Description) != 0 { |
|
|
|
|
content, err := markdown.RenderString(markup.NewRenderContext(ctx), ctx.ContextUser.Description) |
|
|
|
|
if err != nil { |
|
|
|
|
ctx.ServerError("RenderString", err) |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
ctx.Data["RenderedDescription"] = content |
|
|
|
|
} |
|
|
|
|
ctx.Data["RenderedDescription"] = content |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// OrgAssignment returns a middleware to handle organization assignment
|
|
|
|
|
// args: requireMember, requireOwner, requireTeamMember, requireTeamAdmin
|
|
|
|
|
func OrgAssignment(args ...bool) func(ctx *Context) { |
|
|
|
|
return func(ctx *Context) { |
|
|
|
|
HandleOrgAssignment(ctx, args...) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|