2015-12-17 10:28:47 +03:00
// Copyright 2015 The Gogs Authors. All rights reserved.
2018-11-20 20:31:30 +03:00
// Copyright 2018 The Gitea Authors. All rights reserved.
2022-11-27 21:20:29 +03:00
// SPDX-License-Identifier: MIT
2015-12-17 10:28:47 +03:00
package org
import (
2019-12-20 20:07:12 +03:00
"net/http"
2023-04-04 16:35:31 +03:00
activities_model "code.gitea.io/gitea/models/activities"
2021-11-22 18:21:55 +03:00
"code.gitea.io/gitea/models/db"
2022-03-29 09:29:02 +03:00
"code.gitea.io/gitea/models/organization"
2021-11-28 14:58:28 +03:00
"code.gitea.io/gitea/models/perm"
2021-11-24 12:49:20 +03:00
user_model "code.gitea.io/gitea/models/user"
2016-11-10 19:24:48 +03:00
"code.gitea.io/gitea/modules/context"
2019-08-23 19:40:30 +03:00
api "code.gitea.io/gitea/modules/structs"
2021-01-26 18:36:53 +03:00
"code.gitea.io/gitea/modules/web"
2016-11-10 19:24:48 +03:00
"code.gitea.io/gitea/routers/api/v1/user"
2020-01-24 22:00:29 +03:00
"code.gitea.io/gitea/routers/api/v1/utils"
2022-12-29 05:57:15 +03:00
"code.gitea.io/gitea/services/convert"
2021-11-18 20:42:27 +03:00
"code.gitea.io/gitea/services/org"
2015-12-17 10:28:47 +03:00
)
2021-11-24 12:49:20 +03:00
func listUserOrgs ( ctx * context . APIContext , u * user_model . User ) {
2020-12-17 02:39:12 +03:00
listOptions := utils . GetListOptions ( ctx )
2022-03-22 10:03:22 +03:00
showPrivate := ctx . IsSigned && ( ctx . Doer . IsAdmin || ctx . Doer . ID == u . ID )
2020-12-17 02:39:12 +03:00
2022-03-29 09:29:02 +03:00
opts := organization . FindOrgOptions {
2021-11-22 16:51:45 +03:00
ListOptions : listOptions ,
UserID : u . ID ,
IncludePrivate : showPrivate ,
}
2022-03-29 09:29:02 +03:00
orgs , err := organization . FindOrgs ( opts )
2020-12-17 02:39:12 +03:00
if err != nil {
2021-11-22 16:51:45 +03:00
ctx . Error ( http . StatusInternalServerError , "FindOrgs" , err )
return
}
2022-03-29 09:29:02 +03:00
maxResults , err := organization . CountOrgs ( opts )
2021-11-22 16:51:45 +03:00
if err != nil {
ctx . Error ( http . StatusInternalServerError , "CountOrgs" , err )
2015-12-17 10:28:47 +03:00
return
}
2020-12-17 02:39:12 +03: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 16:37:34 +03:00
apiOrgs [ i ] = convert . ToOrganization ( ctx , orgs [ i ] )
2015-12-17 10:28:47 +03:00
}
2020-12-17 02:39:12 +03:00
2021-11-22 16:51:45 +03:00
ctx . SetLinkHeader ( int ( maxResults ) , listOptions . PageSize )
2022-06-20 13:02:49 +03:00
ctx . SetTotalCountHeader ( maxResults )
2019-12-20 20:07:12 +03:00
ctx . JSON ( http . StatusOK , & apiOrgs )
2015-12-17 10:28:47 +03:00
}
2016-11-24 10:04:31 +03:00
// ListMyOrgs list all my orgs
2016-03-14 01:49:16 +03:00
func ListMyOrgs ( ctx * context . APIContext ) {
2017-11-13 10:02:25 +03:00
// swagger:operation GET /user/orgs organization orgListCurrentUserOrgs
// ---
// summary: List the current user's organizations
// produces:
// - application/json
2020-01-24 22:00:29 +03:00
// parameters:
// - name: page
// in: query
// description: page number of results to return (1-based)
// type: integer
// - name: limit
// in: query
2020-06-09 07:57:38 +03:00
// description: page size of results
2020-01-24 22:00:29 +03:00
// type: integer
2017-11-13 10:02:25 +03:00
// responses:
// "200":
// "$ref": "#/responses/OrganizationList"
2019-12-20 20:07:12 +03:00
2022-03-22 10:03:22 +03:00
listUserOrgs ( ctx , ctx . Doer )
2015-12-17 10:28:47 +03:00
}
2016-11-24 10:04:31 +03:00
// ListUserOrgs list user's orgs
2016-03-14 01:49:16 +03:00
func ListUserOrgs ( ctx * context . APIContext ) {
2018-12-26 22:13:49 +03:00
// swagger:operation GET /users/{username}/orgs organization orgListUserOrgs
2017-11-13 10:02:25 +03:00
// ---
// summary: List a user's organizations
// produces:
// - application/json
// parameters:
// - name: username
// in: path
// description: username of user
// type: string
2018-06-02 18:20:28 +03:00
// required: true
2020-01-24 22:00:29 +03:00
// - name: page
// in: query
// description: page number of results to return (1-based)
// type: integer
// - name: limit
// in: query
2020-06-09 07:57:38 +03:00
// description: page size of results
2020-01-24 22:00:29 +03:00
// type: integer
2017-11-13 10:02:25 +03:00
// responses:
// "200":
// "$ref": "#/responses/OrganizationList"
2019-12-20 20:07:12 +03:00
2022-03-26 12:04:22 +03:00
listUserOrgs ( ctx , ctx . ContextUser )
2015-12-17 10:28:47 +03:00
}
2021-10-12 13:47:19 +03: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 12:49:20 +03:00
var o * user_model . User
2021-10-12 13:47:19 +03:00
if o = user . GetUserByParamsName ( ctx , ":org" ) ; o == nil {
return
}
op := api . OrganizationPermissions { }
2022-03-29 09:29:02 +03:00
if ! organization . HasOrgOrUserVisible ( ctx , o , ctx . ContextUser ) {
2021-10-12 13:47:19 +03:00
ctx . NotFound ( "HasOrgOrUserVisible" , nil )
return
}
2022-03-29 09:29:02 +03:00
org := organization . OrgFromUser ( o )
2022-03-26 12:04:22 +03:00
authorizeLevel , err := org . GetOrgUserMaxAuthorizeLevel ( ctx . ContextUser . ID )
2021-10-12 13:47:19 +03:00
if err != nil {
ctx . Error ( http . StatusInternalServerError , "GetOrgUserAuthorizeLevel" , err )
return
}
2021-11-28 14:58:28 +03:00
if authorizeLevel > perm . AccessModeNone {
2021-10-12 13:47:19 +03:00
op . CanRead = true
}
2021-11-28 14:58:28 +03:00
if authorizeLevel > perm . AccessModeRead {
2021-10-12 13:47:19 +03:00
op . CanWrite = true
}
2021-11-28 14:58:28 +03:00
if authorizeLevel > perm . AccessModeWrite {
2021-10-12 13:47:19 +03:00
op . IsAdmin = true
}
2021-11-28 14:58:28 +03:00
if authorizeLevel > perm . AccessModeAdmin {
2021-10-12 13:47:19 +03:00
op . IsOwner = true
}
2022-03-26 12:04:22 +03:00
op . CanCreateRepository , err = org . CanCreateOrgRepo ( ctx . ContextUser . ID )
2021-10-12 13:47:19 +03:00
if err != nil {
ctx . Error ( http . StatusInternalServerError , "CanCreateOrgRepo" , err )
return
}
ctx . JSON ( http . StatusOK , op )
}
2020-01-12 18:43:44 +03: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 07:57:38 +03:00
// description: page size of results
2020-01-12 18:43:44 +03:00
// type: integer
// responses:
// "200":
// "$ref": "#/responses/OrganizationList"
vMode := [ ] api . VisibleType { api . VisibleTypePublic }
if ctx . IsSigned {
vMode = append ( vMode , api . VisibleTypeLimited )
2022-03-22 10:03:22 +03:00
if ctx . Doer . IsAdmin {
2020-01-12 18:43:44 +03:00
vMode = append ( vMode , api . VisibleTypePrivate )
}
}
2020-06-21 11:22:06 +03:00
listOptions := utils . GetListOptions ( ctx )
2021-11-24 12:49:20 +03:00
publicOrgs , maxResults , err := user_model . SearchUsers ( & user_model . SearchUserOptions {
2022-03-22 10:03:22 +03:00
Actor : ctx . Doer ,
2020-06-21 11:22:06 +03:00
ListOptions : listOptions ,
2021-11-24 12:49:20 +03:00
Type : user_model . UserTypeOrganization ,
OrderBy : db . SearchOrderByAlphabetically ,
2020-01-24 22:00:29 +03:00
Visible : vMode ,
2020-01-12 18:43:44 +03: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 16:37:34 +03:00
orgs [ i ] = convert . ToOrganization ( ctx , organization . OrgFromUser ( publicOrgs [ i ] ) )
2020-01-12 18:43:44 +03:00
}
2020-06-21 11:22:06 +03:00
ctx . SetLinkHeader ( int ( maxResults ) , listOptions . PageSize )
2021-08-12 15:43:08 +03:00
ctx . SetTotalCountHeader ( maxResults )
2020-01-12 18:43:44 +03:00
ctx . JSON ( http . StatusOK , & orgs )
}
2018-11-20 20:31:30 +03:00
// Create api for create organization
2021-01-26 18:36:53 +03:00
func Create ( ctx * context . APIContext ) {
2018-11-20 20:31:30 +03: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 18:36:53 +03:00
form := web . GetForm ( ctx ) . ( * api . CreateOrgOption )
2022-03-22 10:03:22 +03:00
if ! ctx . Doer . CanCreateOrganization ( ) {
2019-12-20 20:07:12 +03:00
ctx . Error ( http . StatusForbidden , "Create organization not allowed" , nil )
2018-11-20 20:31:30 +03:00
return
}
2019-05-30 20:57:55 +03:00
visibility := api . VisibleTypePublic
if form . Visibility != "" {
visibility = api . VisibilityModes [ form . Visibility ]
}
2022-03-29 09:29:02 +03:00
org := & organization . Organization {
2019-09-23 23:08:03 +03:00
Name : form . UserName ,
FullName : form . FullName ,
2023-07-25 11:26:27 +03:00
Email : form . Email ,
2019-09-23 23:08:03 +03:00
Description : form . Description ,
Website : form . Website ,
Location : form . Location ,
IsActive : true ,
2021-11-24 12:49:20 +03:00
Type : user_model . UserTypeOrganization ,
2019-09-23 23:08:03 +03:00
Visibility : visibility ,
RepoAdminChangeTeamAccess : form . RepoAdminChangeTeamAccess ,
2018-11-20 20:31:30 +03:00
}
2022-03-29 09:29:02 +03:00
if err := organization . CreateOrganization ( org , ctx . Doer ) ; err != nil {
2021-11-24 12:49:20 +03:00
if user_model . IsErrUserAlreadyExist ( err ) ||
db . IsErrNameReserved ( err ) ||
db . IsErrNameCharsNotAllowed ( err ) ||
db . IsErrNamePatternNotAllowed ( err ) {
2019-12-20 20:07:12 +03:00
ctx . Error ( http . StatusUnprocessableEntity , "" , err )
2018-11-20 20:31:30 +03:00
} else {
2019-12-20 20:07:12 +03:00
ctx . Error ( http . StatusInternalServerError , "CreateOrganization" , err )
2018-11-20 20:31:30 +03: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 16:37:34 +03:00
ctx . JSON ( http . StatusCreated , convert . ToOrganization ( ctx , org ) )
2018-11-20 20:31:30 +03:00
}
2016-11-24 10:04:31 +03:00
// Get get an organization
2016-03-14 01:49:16 +03:00
func Get ( ctx * context . APIContext ) {
2017-11-13 10:02:25 +03: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"
2019-12-20 20:07:12 +03:00
2022-03-29 09:29:02 +03:00
if ! organization . HasOrgOrUserVisible ( ctx , ctx . Org . Organization . AsUser ( ) , ctx . Doer ) {
2021-06-26 22:53:14 +03:00
ctx . NotFound ( "HasOrgOrUserVisible" , nil )
2019-02-18 19:00:27 +03:00
return
}
2023-07-25 11:26:27 +03: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 10:28:47 +03:00
}
2016-11-24 10:04:31 +03:00
// Edit change an organization's information
2021-01-26 18:36:53 +03:00
func Edit ( ctx * context . APIContext ) {
2017-11-13 10:02:25 +03: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 20:57:55 +03:00
// required: true
2017-11-13 10:02:25 +03:00
// schema:
// "$ref": "#/definitions/EditOrgOption"
// responses:
// "200":
// "$ref": "#/responses/Organization"
2021-01-26 18:36:53 +03:00
form := web . GetForm ( ctx ) . ( * api . EditOrgOption )
2016-03-26 01:04:02 +03:00
org := ctx . Org . Organization
2015-12-17 10:28:47 +03:00
org . FullName = form . FullName
2023-07-25 11:26:27 +03:00
org . Email = form . Email
2015-12-17 10:28:47 +03:00
org . Description = form . Description
org . Website = form . Website
org . Location = form . Location
2019-05-30 20:57:55 +03:00
if form . Visibility != "" {
org . Visibility = api . VisibilityModes [ form . Visibility ]
}
2021-06-18 02:24:55 +03:00
if form . RepoAdminChangeTeamAccess != nil {
org . RepoAdminChangeTeamAccess = * form . RepoAdminChangeTeamAccess
}
2022-03-22 18:22:54 +03:00
if err := user_model . UpdateUserCols ( ctx , org . AsUser ( ) ,
2021-06-18 02:24:55 +03:00
"full_name" , "description" , "website" , "location" ,
"visibility" , "repo_admin_change_team_access" ,
) ; err != nil {
2019-12-20 20:07:12 +03:00
ctx . Error ( http . StatusInternalServerError , "EditOrganization" , err )
2015-12-17 10:28:47 +03: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 16:37:34 +03:00
ctx . JSON ( http . StatusOK , convert . ToOrganization ( ctx , org ) )
2015-12-17 10:28:47 +03:00
}
2018-12-27 18:36:58 +03:00
2022-01-20 20:46:10 +03:00
// Delete an organization
2018-12-27 18:36:58 +03: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"
2019-12-20 20:07:12 +03:00
2021-11-18 20:42:27 +03:00
if err := org . DeleteOrganization ( ctx . Org . Organization ) ; err != nil {
2019-12-20 20:07:12 +03:00
ctx . Error ( http . StatusInternalServerError , "DeleteOrganization" , err )
2018-12-27 18:36:58 +03:00
return
}
2019-12-20 20:07:12 +03:00
ctx . Status ( http . StatusNoContent )
2018-12-27 18:36:58 +03:00
}
2023-04-04 16:35:31 +03: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 )
isMember , err := org . IsOrgMember ( ctx . Doer . ID )
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 ) )
}