2017-01-20 03:31:46 +01:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2017-01-20 03:31:46 +01:00
|
|
|
|
|
|
|
package org
|
|
|
|
|
|
|
|
import (
|
2019-12-20 18:07:12 +01:00
|
|
|
"net/http"
|
2021-11-16 19:18:25 +01:00
|
|
|
"net/url"
|
2017-01-20 03:31:46 +01:00
|
|
|
|
|
|
|
"code.gitea.io/gitea/models"
|
2022-03-29 08:29:02 +02:00
|
|
|
"code.gitea.io/gitea/models/organization"
|
2017-01-20 03:31:46 +01:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2019-08-23 18:40:30 +02:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2017-01-20 03:31:46 +01:00
|
|
|
"code.gitea.io/gitea/routers/api/v1/user"
|
2020-01-24 20:00:29 +01:00
|
|
|
"code.gitea.io/gitea/routers/api/v1/utils"
|
2024-02-27 08:12:22 +01:00
|
|
|
"code.gitea.io/gitea/services/context"
|
2022-12-29 03:57:15 +01:00
|
|
|
"code.gitea.io/gitea/services/convert"
|
2017-01-20 03:31:46 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// listMembers list an organization's members
|
|
|
|
func listMembers(ctx *context.APIContext, publicOnly bool) {
|
2022-03-29 08:29:02 +02:00
|
|
|
opts := &organization.FindOrgMembersOpts{
|
2020-01-24 20:00:29 +01:00
|
|
|
OrgID: ctx.Org.Organization.ID,
|
|
|
|
PublicOnly: publicOnly,
|
|
|
|
ListOptions: utils.GetListOptions(ctx),
|
2021-08-12 14:43:08 +02:00
|
|
|
}
|
|
|
|
|
2023-10-03 12:30:41 +02:00
|
|
|
count, err := organization.CountOrgMembers(ctx, opts)
|
2021-08-12 14:43:08 +02:00
|
|
|
if err != nil {
|
|
|
|
ctx.InternalServerError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-09-14 19:09:32 +02:00
|
|
|
members, _, err := organization.FindOrgMembers(ctx, opts)
|
2019-12-06 06:34:54 +01:00
|
|
|
if err != nil {
|
2021-08-12 14:43:08 +02:00
|
|
|
ctx.InternalServerError(err)
|
2019-12-06 06:34:54 +01:00
|
|
|
return
|
2017-01-20 03:31:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
apiMembers := make([]*api.User, len(members))
|
|
|
|
for i, member := range members {
|
Add context cache as a request level cache (#22294)
To avoid duplicated load of the same data in an HTTP request, we can set
a context cache to do that. i.e. Some pages may load a user from a
database with the same id in different areas on the same page. But the
code is hidden in two different deep logic. How should we share the
user? As a result of this PR, now if both entry functions accept
`context.Context` as the first parameter and we just need to refactor
`GetUserByID` to reuse the user from the context cache. Then it will not
be loaded twice on an HTTP request.
But of course, sometimes we would like to reload an object from the
database, that's why `RemoveContextData` is also exposed.
The core context cache is here. It defines a new context
```go
type cacheContext struct {
ctx context.Context
data map[any]map[any]any
lock sync.RWMutex
}
var cacheContextKey = struct{}{}
func WithCacheContext(ctx context.Context) context.Context {
return context.WithValue(ctx, cacheContextKey, &cacheContext{
ctx: ctx,
data: make(map[any]map[any]any),
})
}
```
Then you can use the below 4 methods to read/write/del the data within
the same context.
```go
func GetContextData(ctx context.Context, tp, key any) any
func SetContextData(ctx context.Context, tp, key, value any)
func RemoveContextData(ctx context.Context, tp, key any)
func GetWithContextCache[T any](ctx context.Context, cacheGroupKey string, cacheTargetID any, f func() (T, error)) (T, error)
```
Then let's take a look at how `system.GetString` implement it.
```go
func GetSetting(ctx context.Context, key string) (string, error) {
return cache.GetWithContextCache(ctx, contextCacheKey, key, func() (string, error) {
return cache.GetString(genSettingCacheKey(key), func() (string, error) {
res, err := GetSettingNoCache(ctx, key)
if err != nil {
return "", err
}
return res.SettingValue, nil
})
})
}
```
First, it will check if context data include the setting object with the
key. If not, it will query from the global cache which may be memory or
a Redis cache. If not, it will get the object from the database. In the
end, if the object gets from the global cache or database, it will be
set into the context cache.
An object stored in the context cache will only be destroyed after the
context disappeared.
2023-02-15 14:37:34 +01:00
|
|
|
apiMembers[i] = convert.ToUser(ctx, member, ctx.Doer)
|
2017-01-20 03:31:46 +01:00
|
|
|
}
|
2020-06-21 10:22:06 +02:00
|
|
|
|
2021-08-12 14:43:08 +02:00
|
|
|
ctx.SetTotalCountHeader(count)
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.JSON(http.StatusOK, apiMembers)
|
2017-01-20 03:31:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ListMembers list an organization's members
|
|
|
|
func ListMembers(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation GET /orgs/{org}/members organization orgListMembers
|
|
|
|
// ---
|
|
|
|
// summary: List an organization's members
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: org
|
|
|
|
// in: path
|
|
|
|
// description: name of the organization
|
|
|
|
// type: string
|
|
|
|
// required: true
|
2020-01-24 20:00:29 +01:00
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2020-06-09 06:57:38 +02:00
|
|
|
// description: page size of results
|
2020-01-24 20:00:29 +01:00
|
|
|
// type: integer
|
2017-11-13 08:02:25 +01:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/UserList"
|
2023-09-13 04:37:54 +02:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2019-12-20 18:07:12 +01:00
|
|
|
|
2017-12-21 08:43:26 +01:00
|
|
|
publicOnly := true
|
2022-03-22 08:03:22 +01:00
|
|
|
if ctx.Doer != nil {
|
2023-10-03 12:30:41 +02:00
|
|
|
isMember, err := ctx.Org.Organization.IsOrgMember(ctx, ctx.Doer.ID)
|
2017-12-21 08:43:26 +01:00
|
|
|
if err != nil {
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Error(http.StatusInternalServerError, "IsOrgMember", err)
|
2017-12-21 08:43:26 +01:00
|
|
|
return
|
|
|
|
}
|
2022-03-22 08:03:22 +01:00
|
|
|
publicOnly = !isMember && !ctx.Doer.IsAdmin
|
2017-12-21 08:43:26 +01:00
|
|
|
}
|
2017-06-07 18:10:35 +02:00
|
|
|
listMembers(ctx, publicOnly)
|
2017-01-20 03:31:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ListPublicMembers list an organization's public members
|
|
|
|
func ListPublicMembers(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation GET /orgs/{org}/public_members organization orgListPublicMembers
|
|
|
|
// ---
|
|
|
|
// summary: List an organization's public members
|
|
|
|
// parameters:
|
|
|
|
// - name: org
|
|
|
|
// in: path
|
|
|
|
// description: name of the organization
|
|
|
|
// type: string
|
|
|
|
// required: true
|
2020-01-24 20:00:29 +01:00
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2020-06-09 06:57:38 +02:00
|
|
|
// description: page size of results
|
2020-01-24 20:00:29 +01:00
|
|
|
// type: integer
|
2017-11-13 08:02:25 +01:00
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/UserList"
|
2023-09-13 04:37:54 +02:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2019-12-20 18:07:12 +01:00
|
|
|
|
2017-01-20 03:31:46 +01:00
|
|
|
listMembers(ctx, true)
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsMember check if a user is a member of an organization
|
|
|
|
func IsMember(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation GET /orgs/{org}/members/{username} organization orgIsMember
|
|
|
|
// ---
|
|
|
|
// summary: Check if a user is a member of an organization
|
|
|
|
// parameters:
|
|
|
|
// - name: org
|
|
|
|
// in: path
|
|
|
|
// description: name of the organization
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: username
|
|
|
|
// in: path
|
|
|
|
// description: username of the user
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// description: user is a member
|
2022-03-23 05:54:07 +01:00
|
|
|
// "303":
|
2019-12-20 18:07:12 +01:00
|
|
|
// description: redirection to /orgs/{org}/public_members/{username}
|
2017-11-13 08:02:25 +01:00
|
|
|
// "404":
|
|
|
|
// description: user is not a member
|
2019-12-20 18:07:12 +01:00
|
|
|
|
2017-01-20 03:31:46 +01:00
|
|
|
userToCheck := user.GetUserByParams(ctx)
|
2017-06-07 18:10:35 +02:00
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
2022-03-22 08:03:22 +01:00
|
|
|
if ctx.Doer != nil {
|
2023-10-03 12:30:41 +02:00
|
|
|
userIsMember, err := ctx.Org.Organization.IsOrgMember(ctx, ctx.Doer.ID)
|
2017-12-21 08:43:26 +01:00
|
|
|
if err != nil {
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Error(http.StatusInternalServerError, "IsOrgMember", err)
|
2017-12-21 08:43:26 +01:00
|
|
|
return
|
2022-03-22 08:03:22 +01:00
|
|
|
} else if userIsMember || ctx.Doer.IsAdmin {
|
2023-10-03 12:30:41 +02:00
|
|
|
userToCheckIsMember, err := ctx.Org.Organization.IsOrgMember(ctx, userToCheck.ID)
|
2017-12-21 08:43:26 +01:00
|
|
|
if err != nil {
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Error(http.StatusInternalServerError, "IsOrgMember", err)
|
2017-12-21 08:43:26 +01:00
|
|
|
} else if userToCheckIsMember {
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Status(http.StatusNoContent)
|
2017-12-21 08:43:26 +01:00
|
|
|
} else {
|
2019-03-19 03:29:43 +01:00
|
|
|
ctx.NotFound()
|
2017-12-21 08:43:26 +01:00
|
|
|
}
|
|
|
|
return
|
2022-03-22 08:03:22 +01:00
|
|
|
} else if ctx.Doer.ID == userToCheck.ID {
|
2019-03-19 03:29:43 +01:00
|
|
|
ctx.NotFound()
|
2017-12-21 08:43:26 +01:00
|
|
|
return
|
2017-01-20 03:31:46 +01:00
|
|
|
}
|
|
|
|
}
|
2017-12-21 08:43:26 +01:00
|
|
|
|
2021-11-16 19:18:25 +01:00
|
|
|
redirectURL := setting.AppSubURL + "/api/v1/orgs/" + url.PathEscape(ctx.Org.Organization.Name) + "/public_members/" + url.PathEscape(userToCheck.Name)
|
2022-03-23 05:54:07 +01:00
|
|
|
ctx.Redirect(redirectURL)
|
2017-01-20 03:31:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// IsPublicMember check if a user is a public member of an organization
|
|
|
|
func IsPublicMember(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation GET /orgs/{org}/public_members/{username} organization orgIsPublicMember
|
|
|
|
// ---
|
|
|
|
// summary: Check if a user is a public member of an organization
|
|
|
|
// parameters:
|
|
|
|
// - name: org
|
|
|
|
// in: path
|
|
|
|
// description: name of the organization
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: username
|
|
|
|
// in: path
|
|
|
|
// description: username of the user
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// description: user is a public member
|
|
|
|
// "404":
|
|
|
|
// description: user is not a public member
|
2019-12-20 18:07:12 +01:00
|
|
|
|
2017-01-20 03:31:46 +01:00
|
|
|
userToCheck := user.GetUserByParams(ctx)
|
2017-06-07 18:10:35 +02:00
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
2023-10-03 12:30:41 +02:00
|
|
|
is, err := organization.IsPublicMembership(ctx, ctx.Org.Organization.ID, userToCheck.ID)
|
2021-11-22 16:21:55 +01:00
|
|
|
if err != nil {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "IsPublicMembership", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if is {
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Status(http.StatusNoContent)
|
2017-01-20 03:31:46 +01:00
|
|
|
} else {
|
2019-03-19 03:29:43 +01:00
|
|
|
ctx.NotFound()
|
2017-01-20 03:31:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// PublicizeMember make a member's membership public
|
|
|
|
func PublicizeMember(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation PUT /orgs/{org}/public_members/{username} organization orgPublicizeMember
|
|
|
|
// ---
|
|
|
|
// summary: Publicize a user's membership
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: org
|
|
|
|
// in: path
|
|
|
|
// description: name of the organization
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: username
|
|
|
|
// in: path
|
|
|
|
// description: username of the user
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// description: membership publicized
|
2019-12-20 18:07:12 +01:00
|
|
|
// "403":
|
|
|
|
// "$ref": "#/responses/forbidden"
|
2023-09-13 04:37:54 +02:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2019-12-20 18:07:12 +01:00
|
|
|
|
2017-01-20 03:31:46 +01:00
|
|
|
userToPublicize := user.GetUserByParams(ctx)
|
2017-06-07 18:10:35 +02:00
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
2022-03-22 08:03:22 +01:00
|
|
|
if userToPublicize.ID != ctx.Doer.ID {
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Error(http.StatusForbidden, "", "Cannot publicize another member")
|
2017-01-20 03:31:46 +01:00
|
|
|
return
|
|
|
|
}
|
2023-10-03 12:30:41 +02:00
|
|
|
err := organization.ChangeOrgUserStatus(ctx, ctx.Org.Organization.ID, userToPublicize.ID, true)
|
2017-01-20 03:31:46 +01:00
|
|
|
if err != nil {
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Error(http.StatusInternalServerError, "ChangeOrgUserStatus", err)
|
2017-01-20 03:31:46 +01:00
|
|
|
return
|
|
|
|
}
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Status(http.StatusNoContent)
|
2017-01-20 03:31:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ConcealMember make a member's membership not public
|
|
|
|
func ConcealMember(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation DELETE /orgs/{org}/public_members/{username} organization orgConcealMember
|
|
|
|
// ---
|
|
|
|
// summary: Conceal a user's membership
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: org
|
|
|
|
// in: path
|
|
|
|
// description: name of the organization
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: username
|
|
|
|
// in: path
|
|
|
|
// description: username of the user
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// "$ref": "#/responses/empty"
|
2019-12-20 18:07:12 +01:00
|
|
|
// "403":
|
|
|
|
// "$ref": "#/responses/forbidden"
|
2023-09-13 04:37:54 +02:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2019-12-20 18:07:12 +01:00
|
|
|
|
2017-01-20 03:31:46 +01:00
|
|
|
userToConceal := user.GetUserByParams(ctx)
|
2017-06-07 18:10:35 +02:00
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
2022-03-22 08:03:22 +01:00
|
|
|
if userToConceal.ID != ctx.Doer.ID {
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Error(http.StatusForbidden, "", "Cannot conceal another member")
|
2017-01-20 03:31:46 +01:00
|
|
|
return
|
|
|
|
}
|
2023-10-03 12:30:41 +02:00
|
|
|
err := organization.ChangeOrgUserStatus(ctx, ctx.Org.Organization.ID, userToConceal.ID, false)
|
2017-01-20 03:31:46 +01:00
|
|
|
if err != nil {
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Error(http.StatusInternalServerError, "ChangeOrgUserStatus", err)
|
2017-01-20 03:31:46 +01:00
|
|
|
return
|
|
|
|
}
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Status(http.StatusNoContent)
|
2017-01-20 03:31:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteMember remove a member from an organization
|
|
|
|
func DeleteMember(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation DELETE /orgs/{org}/members/{username} organization orgDeleteMember
|
|
|
|
// ---
|
|
|
|
// summary: Remove a member from an organization
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: org
|
|
|
|
// in: path
|
|
|
|
// description: name of the organization
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: username
|
|
|
|
// in: path
|
|
|
|
// description: username of the user
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// description: member removed
|
2023-09-13 04:37:54 +02:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2019-12-20 18:07:12 +01:00
|
|
|
|
2017-06-07 18:10:35 +02:00
|
|
|
member := user.GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
2023-10-15 17:46:06 +02:00
|
|
|
if err := models.RemoveOrgUser(ctx, ctx.Org.Organization.ID, member.ID); err != nil {
|
2022-03-29 08:29:02 +02:00
|
|
|
ctx.Error(http.StatusInternalServerError, "RemoveOrgUser", err)
|
2017-01-20 03:31:46 +01:00
|
|
|
}
|
2019-12-20 18:07:12 +01:00
|
|
|
ctx.Status(http.StatusNoContent)
|
2017-01-20 03:31:46 +01:00
|
|
|
}
|