2015-12-17 02:28:47 -05:00
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
2018-11-20 12:31:30 -05:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2015-12-17 02:28:47 -05:00
|
|
|
|
|
|
|
package org
|
|
|
|
|
|
|
|
import (
|
2019-12-20 12:07:12 -05:00
|
|
|
"net/http"
|
|
|
|
|
2023-04-04 09:35:31 -04:00
|
|
|
activities_model "code.gitea.io/gitea/models/activities"
|
2021-11-22 10:21:55 -05:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-03-29 02:29:02 -04:00
|
|
|
"code.gitea.io/gitea/models/organization"
|
2021-11-28 06:58:28 -05:00
|
|
|
"code.gitea.io/gitea/models/perm"
|
2021-11-24 04:49:20 -05:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2024-02-04 08:29:09 -05:00
|
|
|
"code.gitea.io/gitea/modules/optional"
|
2019-08-23 12:40:30 -04:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2021-01-26 10:36:53 -05:00
|
|
|
"code.gitea.io/gitea/modules/web"
|
2016-11-10 11:24:48 -05:00
|
|
|
"code.gitea.io/gitea/routers/api/v1/user"
|
2020-01-24 14:00:29 -05:00
|
|
|
"code.gitea.io/gitea/routers/api/v1/utils"
|
2024-02-27 02:12:22 -05:00
|
|
|
"code.gitea.io/gitea/services/context"
|
2022-12-28 21:57:15 -05:00
|
|
|
"code.gitea.io/gitea/services/convert"
|
2021-11-18 12:42:27 -05:00
|
|
|
"code.gitea.io/gitea/services/org"
|
2024-02-04 08:29:09 -05:00
|
|
|
user_service "code.gitea.io/gitea/services/user"
|
2015-12-17 02:28:47 -05:00
|
|
|
)
|
|
|
|
|
2021-11-24 04:49:20 -05:00
|
|
|
func listUserOrgs(ctx *context.APIContext, u *user_model.User) {
|
2020-12-16 18:39:12 -05:00
|
|
|
listOptions := utils.GetListOptions(ctx)
|
2022-03-22 03:03:22 -04:00
|
|
|
showPrivate := ctx.IsSigned && (ctx.Doer.IsAdmin || ctx.Doer.ID == u.ID)
|
2020-12-16 18:39:12 -05:00
|
|
|
|
2022-03-29 02:29:02 -04:00
|
|
|
opts := organization.FindOrgOptions{
|
2021-11-22 08:51:45 -05:00
|
|
|
ListOptions: listOptions,
|
|
|
|
UserID: u.ID,
|
|
|
|
IncludePrivate: showPrivate,
|
|
|
|
}
|
2023-11-23 22:49:41 -05:00
|
|
|
orgs, maxResults, err := db.FindAndCount[organization.Organization](ctx, opts)
|
2020-12-16 18:39:12 -05:00
|
|
|
if err != nil {
|
2023-11-23 22:49:41 -05:00
|
|
|
ctx.Error(http.StatusInternalServerError, "db.FindAndCount[organization.Organization]", err)
|
2015-12-17 02:28:47 -05:00
|
|
|
return
|
|
|
|
}
|
2020-12-16 18:39:12 -05:00
|
|
|
|
|
|
|
apiOrgs := make([]*api.Organization, len(orgs))
|
|
|
|
for i := range orgs {
|
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 08:37:34 -05:00
|
|
|
apiOrgs[i] = convert.ToOrganization(ctx, orgs[i])
|
2015-12-17 02:28:47 -05:00
|
|
|
}
|
2020-12-16 18:39:12 -05:00
|
|
|
|
2021-11-22 08:51:45 -05:00
|
|
|
ctx.SetLinkHeader(int(maxResults), listOptions.PageSize)
|
2022-06-20 06:02:49 -04:00
|
|
|
ctx.SetTotalCountHeader(maxResults)
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.JSON(http.StatusOK, &apiOrgs)
|
2015-12-17 02:28:47 -05:00
|
|
|
}
|
|
|
|
|
2016-11-24 02:04:31 -05:00
|
|
|
// ListMyOrgs list all my orgs
|
2016-03-13 18:49:16 -04:00
|
|
|
func ListMyOrgs(ctx *context.APIContext) {
|
2017-11-13 02:02:25 -05:00
|
|
|
// swagger:operation GET /user/orgs organization orgListCurrentUserOrgs
|
|
|
|
// ---
|
|
|
|
// summary: List the current user's organizations
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
2020-01-24 14:00:29 -05:00
|
|
|
// parameters:
|
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2020-06-09 00:57:38 -04:00
|
|
|
// description: page size of results
|
2020-01-24 14:00:29 -05:00
|
|
|
// type: integer
|
2017-11-13 02:02:25 -05:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/OrganizationList"
|
2023-09-12 22:37:54 -04:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2019-12-20 12:07:12 -05:00
|
|
|
|
2022-03-22 03:03:22 -04:00
|
|
|
listUserOrgs(ctx, ctx.Doer)
|
2015-12-17 02:28:47 -05:00
|
|
|
}
|
|
|
|
|
2016-11-24 02:04:31 -05:00
|
|
|
// ListUserOrgs list user's orgs
|
2016-03-13 18:49:16 -04:00
|
|
|
func ListUserOrgs(ctx *context.APIContext) {
|
2018-12-26 14:13:49 -05:00
|
|
|
// swagger:operation GET /users/{username}/orgs organization orgListUserOrgs
|
2017-11-13 02:02:25 -05:00
|
|
|
// ---
|
|
|
|
// summary: List a user's organizations
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: username
|
|
|
|
// in: path
|
|
|
|
// description: username of user
|
|
|
|
// type: string
|
2018-06-02 11:20:28 -04:00
|
|
|
// required: true
|
2020-01-24 14:00:29 -05:00
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2020-06-09 00:57:38 -04:00
|
|
|
// description: page size of results
|
2020-01-24 14:00:29 -05:00
|
|
|
// type: integer
|
2017-11-13 02:02:25 -05:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/OrganizationList"
|
2023-09-12 22:37:54 -04:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2019-12-20 12:07:12 -05:00
|
|
|
|
2022-03-26 05:04:22 -04:00
|
|
|
listUserOrgs(ctx, ctx.ContextUser)
|
2015-12-17 02:28:47 -05:00
|
|
|
}
|
|
|
|
|
2021-10-12 06:47:19 -04:00
|
|
|
// GetUserOrgsPermissions get user permissions in organization
|
|
|
|
func GetUserOrgsPermissions(ctx *context.APIContext) {
|
|
|
|
// swagger:operation GET /users/{username}/orgs/{org}/permissions organization orgGetUserPermissions
|
|
|
|
// ---
|
|
|
|
// summary: Get user permissions in organization
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: username
|
|
|
|
// in: path
|
|
|
|
// description: username of user
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: org
|
|
|
|
// in: path
|
|
|
|
// description: name of the organization
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/OrganizationPermissions"
|
|
|
|
// "403":
|
|
|
|
// "$ref": "#/responses/forbidden"
|
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
|
|
|
|
2021-11-24 04:49:20 -05:00
|
|
|
var o *user_model.User
|
2021-10-12 06:47:19 -04:00
|
|
|
if o = user.GetUserByParamsName(ctx, ":org"); o == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
op := api.OrganizationPermissions{}
|
|
|
|
|
2022-03-29 02:29:02 -04:00
|
|
|
if !organization.HasOrgOrUserVisible(ctx, o, ctx.ContextUser) {
|
2021-10-12 06:47:19 -04:00
|
|
|
ctx.NotFound("HasOrgOrUserVisible", nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-03-29 02:29:02 -04:00
|
|
|
org := organization.OrgFromUser(o)
|
2023-10-03 06:30:41 -04:00
|
|
|
authorizeLevel, err := org.GetOrgUserMaxAuthorizeLevel(ctx, ctx.ContextUser.ID)
|
2021-10-12 06:47:19 -04:00
|
|
|
if err != nil {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "GetOrgUserAuthorizeLevel", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-11-28 06:58:28 -05:00
|
|
|
if authorizeLevel > perm.AccessModeNone {
|
2021-10-12 06:47:19 -04:00
|
|
|
op.CanRead = true
|
|
|
|
}
|
2021-11-28 06:58:28 -05:00
|
|
|
if authorizeLevel > perm.AccessModeRead {
|
2021-10-12 06:47:19 -04:00
|
|
|
op.CanWrite = true
|
|
|
|
}
|
2021-11-28 06:58:28 -05:00
|
|
|
if authorizeLevel > perm.AccessModeWrite {
|
2021-10-12 06:47:19 -04:00
|
|
|
op.IsAdmin = true
|
|
|
|
}
|
2021-11-28 06:58:28 -05:00
|
|
|
if authorizeLevel > perm.AccessModeAdmin {
|
2021-10-12 06:47:19 -04:00
|
|
|
op.IsOwner = true
|
|
|
|
}
|
|
|
|
|
2023-10-03 06:30:41 -04:00
|
|
|
op.CanCreateRepository, err = org.CanCreateOrgRepo(ctx, ctx.ContextUser.ID)
|
2021-10-12 06:47:19 -04:00
|
|
|
if err != nil {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "CanCreateOrgRepo", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.JSON(http.StatusOK, op)
|
|
|
|
}
|
|
|
|
|
2020-01-12 10:43:44 -05:00
|
|
|
// GetAll return list of all public organizations
|
|
|
|
func GetAll(ctx *context.APIContext) {
|
|
|
|
// swagger:operation Get /orgs organization orgGetAll
|
|
|
|
// ---
|
|
|
|
// summary: Get list of organizations
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2020-06-09 00:57:38 -04:00
|
|
|
// description: page size of results
|
2020-01-12 10:43:44 -05:00
|
|
|
// type: integer
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/OrganizationList"
|
|
|
|
|
|
|
|
vMode := []api.VisibleType{api.VisibleTypePublic}
|
|
|
|
if ctx.IsSigned {
|
|
|
|
vMode = append(vMode, api.VisibleTypeLimited)
|
2022-03-22 03:03:22 -04:00
|
|
|
if ctx.Doer.IsAdmin {
|
2020-01-12 10:43:44 -05:00
|
|
|
vMode = append(vMode, api.VisibleTypePrivate)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-21 04:22:06 -04:00
|
|
|
listOptions := utils.GetListOptions(ctx)
|
|
|
|
|
2023-09-14 13:09:32 -04:00
|
|
|
publicOrgs, maxResults, err := user_model.SearchUsers(ctx, &user_model.SearchUserOptions{
|
2022-03-22 03:03:22 -04:00
|
|
|
Actor: ctx.Doer,
|
2020-06-21 04:22:06 -04:00
|
|
|
ListOptions: listOptions,
|
2021-11-24 04:49:20 -05:00
|
|
|
Type: user_model.UserTypeOrganization,
|
|
|
|
OrderBy: db.SearchOrderByAlphabetically,
|
2020-01-24 14:00:29 -05:00
|
|
|
Visible: vMode,
|
2020-01-12 10:43:44 -05:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "SearchOrganizations", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
orgs := make([]*api.Organization, len(publicOrgs))
|
|
|
|
for i := range publicOrgs {
|
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 08:37:34 -05:00
|
|
|
orgs[i] = convert.ToOrganization(ctx, organization.OrgFromUser(publicOrgs[i]))
|
2020-01-12 10:43:44 -05:00
|
|
|
}
|
|
|
|
|
2020-06-21 04:22:06 -04:00
|
|
|
ctx.SetLinkHeader(int(maxResults), listOptions.PageSize)
|
2021-08-12 08:43:08 -04:00
|
|
|
ctx.SetTotalCountHeader(maxResults)
|
2020-01-12 10:43:44 -05:00
|
|
|
ctx.JSON(http.StatusOK, &orgs)
|
|
|
|
}
|
|
|
|
|
2018-11-20 12:31:30 -05:00
|
|
|
// Create api for create organization
|
2021-01-26 10:36:53 -05:00
|
|
|
func Create(ctx *context.APIContext) {
|
2018-11-20 12:31:30 -05:00
|
|
|
// swagger:operation POST /orgs organization orgCreate
|
|
|
|
// ---
|
|
|
|
// summary: Create an organization
|
|
|
|
// consumes:
|
|
|
|
// - application/json
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: organization
|
|
|
|
// in: body
|
|
|
|
// required: true
|
|
|
|
// schema: { "$ref": "#/definitions/CreateOrgOption" }
|
|
|
|
// responses:
|
|
|
|
// "201":
|
|
|
|
// "$ref": "#/responses/Organization"
|
|
|
|
// "403":
|
|
|
|
// "$ref": "#/responses/forbidden"
|
|
|
|
// "422":
|
|
|
|
// "$ref": "#/responses/validationError"
|
2021-01-26 10:36:53 -05:00
|
|
|
form := web.GetForm(ctx).(*api.CreateOrgOption)
|
2022-03-22 03:03:22 -04:00
|
|
|
if !ctx.Doer.CanCreateOrganization() {
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Error(http.StatusForbidden, "Create organization not allowed", nil)
|
2018-11-20 12:31:30 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-05-30 13:57:55 -04:00
|
|
|
visibility := api.VisibleTypePublic
|
|
|
|
if form.Visibility != "" {
|
|
|
|
visibility = api.VisibilityModes[form.Visibility]
|
|
|
|
}
|
|
|
|
|
2022-03-29 02:29:02 -04:00
|
|
|
org := &organization.Organization{
|
2019-09-23 16:08:03 -04:00
|
|
|
Name: form.UserName,
|
|
|
|
FullName: form.FullName,
|
2023-07-25 04:26:27 -04:00
|
|
|
Email: form.Email,
|
2019-09-23 16:08:03 -04:00
|
|
|
Description: form.Description,
|
|
|
|
Website: form.Website,
|
|
|
|
Location: form.Location,
|
|
|
|
IsActive: true,
|
2021-11-24 04:49:20 -05:00
|
|
|
Type: user_model.UserTypeOrganization,
|
2019-09-23 16:08:03 -04:00
|
|
|
Visibility: visibility,
|
|
|
|
RepoAdminChangeTeamAccess: form.RepoAdminChangeTeamAccess,
|
2018-11-20 12:31:30 -05:00
|
|
|
}
|
2023-10-03 06:30:41 -04:00
|
|
|
if err := organization.CreateOrganization(ctx, org, ctx.Doer); err != nil {
|
2021-11-24 04:49:20 -05:00
|
|
|
if user_model.IsErrUserAlreadyExist(err) ||
|
|
|
|
db.IsErrNameReserved(err) ||
|
|
|
|
db.IsErrNameCharsNotAllowed(err) ||
|
|
|
|
db.IsErrNamePatternNotAllowed(err) {
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", err)
|
2018-11-20 12:31:30 -05:00
|
|
|
} else {
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Error(http.StatusInternalServerError, "CreateOrganization", err)
|
2018-11-20 12:31:30 -05:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
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 08:37:34 -05:00
|
|
|
ctx.JSON(http.StatusCreated, convert.ToOrganization(ctx, org))
|
2018-11-20 12:31:30 -05:00
|
|
|
}
|
|
|
|
|
2016-11-24 02:04:31 -05:00
|
|
|
// Get get an organization
|
2016-03-13 18:49:16 -04:00
|
|
|
func Get(ctx *context.APIContext) {
|
2017-11-13 02:02:25 -05:00
|
|
|
// swagger:operation GET /orgs/{org} organization orgGet
|
|
|
|
// ---
|
|
|
|
// summary: Get an organization
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: org
|
|
|
|
// in: path
|
|
|
|
// description: name of the organization to get
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/Organization"
|
2023-09-12 22:37:54 -04:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2019-12-20 12:07:12 -05:00
|
|
|
|
2022-03-29 02:29:02 -04:00
|
|
|
if !organization.HasOrgOrUserVisible(ctx, ctx.Org.Organization.AsUser(), ctx.Doer) {
|
2021-06-26 15:53:14 -04:00
|
|
|
ctx.NotFound("HasOrgOrUserVisible", nil)
|
2019-02-18 11:00:27 -05:00
|
|
|
return
|
|
|
|
}
|
2023-07-25 04:26:27 -04:00
|
|
|
|
|
|
|
org := convert.ToOrganization(ctx, ctx.Org.Organization)
|
|
|
|
|
|
|
|
// Don't show Mail, when User is not logged in
|
|
|
|
if ctx.Doer == nil {
|
|
|
|
org.Email = ""
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.JSON(http.StatusOK, org)
|
2015-12-17 02:28:47 -05:00
|
|
|
}
|
|
|
|
|
2016-11-24 02:04:31 -05:00
|
|
|
// Edit change an organization's information
|
2021-01-26 10:36:53 -05:00
|
|
|
func Edit(ctx *context.APIContext) {
|
2017-11-13 02:02:25 -05:00
|
|
|
// swagger:operation PATCH /orgs/{org} organization orgEdit
|
|
|
|
// ---
|
|
|
|
// summary: Edit an organization
|
|
|
|
// consumes:
|
|
|
|
// - application/json
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: org
|
|
|
|
// in: path
|
|
|
|
// description: name of the organization to edit
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: body
|
|
|
|
// in: body
|
2019-05-30 13:57:55 -04:00
|
|
|
// required: true
|
2017-11-13 02:02:25 -05:00
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/EditOrgOption"
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/Organization"
|
2023-09-12 22:37:54 -04:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2024-02-04 08:29:09 -05:00
|
|
|
|
2021-01-26 10:36:53 -05:00
|
|
|
form := web.GetForm(ctx).(*api.EditOrgOption)
|
2024-02-04 08:29:09 -05:00
|
|
|
|
|
|
|
if form.Email != "" {
|
|
|
|
if err := user_service.ReplacePrimaryEmailAddress(ctx, ctx.Org.Organization.AsUser(), form.Email); err != nil {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "ReplacePrimaryEmailAddress", err)
|
|
|
|
return
|
|
|
|
}
|
2019-05-30 13:57:55 -04:00
|
|
|
}
|
2024-02-04 08:29:09 -05:00
|
|
|
|
|
|
|
opts := &user_service.UpdateOptions{
|
|
|
|
FullName: optional.Some(form.FullName),
|
|
|
|
Description: optional.Some(form.Description),
|
|
|
|
Website: optional.Some(form.Website),
|
|
|
|
Location: optional.Some(form.Location),
|
|
|
|
Visibility: optional.FromNonDefault(api.VisibilityModes[form.Visibility]),
|
|
|
|
RepoAdminChangeTeamAccess: optional.FromPtr(form.RepoAdminChangeTeamAccess),
|
2021-06-17 19:24:55 -04:00
|
|
|
}
|
2024-02-04 08:29:09 -05:00
|
|
|
if err := user_service.UpdateUser(ctx, ctx.Org.Organization.AsUser(), opts); err != nil {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "UpdateUser", err)
|
2015-12-17 02:28:47 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-02-04 08:29:09 -05:00
|
|
|
ctx.JSON(http.StatusOK, convert.ToOrganization(ctx, ctx.Org.Organization))
|
2015-12-17 02:28:47 -05:00
|
|
|
}
|
2018-12-27 10:36:58 -05:00
|
|
|
|
2022-01-20 12:46:10 -05:00
|
|
|
// Delete an organization
|
2018-12-27 10:36:58 -05:00
|
|
|
func Delete(ctx *context.APIContext) {
|
|
|
|
// swagger:operation DELETE /orgs/{org} organization orgDelete
|
|
|
|
// ---
|
|
|
|
// summary: Delete an organization
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: org
|
|
|
|
// in: path
|
|
|
|
// description: organization that is to be deleted
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// "$ref": "#/responses/empty"
|
2023-09-12 22:37:54 -04:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2019-12-20 12:07:12 -05:00
|
|
|
|
2023-10-19 09:16:11 -04:00
|
|
|
if err := org.DeleteOrganization(ctx, ctx.Org.Organization, false); err != nil {
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Error(http.StatusInternalServerError, "DeleteOrganization", err)
|
2018-12-27 10:36:58 -05:00
|
|
|
return
|
|
|
|
}
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Status(http.StatusNoContent)
|
2018-12-27 10:36:58 -05:00
|
|
|
}
|
2023-04-04 09:35:31 -04:00
|
|
|
|
|
|
|
func ListOrgActivityFeeds(ctx *context.APIContext) {
|
|
|
|
// swagger:operation GET /orgs/{org}/activities/feeds organization orgListActivityFeeds
|
|
|
|
// ---
|
|
|
|
// summary: List an organization's activity feeds
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: org
|
|
|
|
// in: path
|
|
|
|
// description: name of the org
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: date
|
|
|
|
// in: query
|
|
|
|
// description: the date of the activities to be found
|
|
|
|
// type: string
|
|
|
|
// format: date
|
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
|
|
|
// - name: limit
|
|
|
|
// in: query
|
|
|
|
// description: page size of results
|
|
|
|
// type: integer
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/ActivityFeedsList"
|
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
|
|
|
|
|
|
|
includePrivate := false
|
|
|
|
if ctx.IsSigned {
|
|
|
|
if ctx.Doer.IsAdmin {
|
|
|
|
includePrivate = true
|
|
|
|
} else {
|
|
|
|
org := organization.OrgFromUser(ctx.ContextUser)
|
2023-10-03 06:30:41 -04:00
|
|
|
isMember, err := org.IsOrgMember(ctx, ctx.Doer.ID)
|
2023-04-04 09:35:31 -04:00
|
|
|
if err != nil {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "IsOrgMember", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
includePrivate = isMember
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
listOptions := utils.GetListOptions(ctx)
|
|
|
|
|
|
|
|
opts := activities_model.GetFeedsOptions{
|
|
|
|
RequestedUser: ctx.ContextUser,
|
|
|
|
Actor: ctx.Doer,
|
|
|
|
IncludePrivate: includePrivate,
|
|
|
|
Date: ctx.FormString("date"),
|
|
|
|
ListOptions: listOptions,
|
|
|
|
}
|
|
|
|
|
|
|
|
feeds, count, err := activities_model.GetFeeds(ctx, opts)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "GetFeeds", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.SetTotalCountHeader(count)
|
|
|
|
|
|
|
|
ctx.JSON(http.StatusOK, convert.ToActivities(ctx, feeds, ctx.Doer))
|
|
|
|
}
|