2015-12-17 07:28:47 +00:00
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
2019-01-23 22:30:19 +00:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2015-12-17 07:28:47 +00:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package admin
|
|
|
|
|
|
|
|
import (
|
2020-06-21 08:22:06 +00:00
|
|
|
"fmt"
|
2019-12-20 17:07:12 +00:00
|
|
|
"net/http"
|
|
|
|
|
2016-11-10 16:24:48 +00:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-11-10 04:41:51 +00:00
|
|
|
"code.gitea.io/gitea/modules/convert"
|
2019-08-23 16:40:30 +00:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2021-01-26 15:36:53 +00:00
|
|
|
"code.gitea.io/gitea/modules/web"
|
2016-11-10 16:24:48 +00:00
|
|
|
"code.gitea.io/gitea/routers/api/v1/user"
|
2020-01-24 19:00:29 +00:00
|
|
|
"code.gitea.io/gitea/routers/api/v1/utils"
|
2015-12-17 07:28:47 +00:00
|
|
|
)
|
|
|
|
|
2016-11-24 07:04:31 +00:00
|
|
|
// CreateOrg api for create organization
|
2021-01-26 15:36:53 +00:00
|
|
|
func CreateOrg(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00:00
|
|
|
// swagger:operation POST /admin/users/{username}/orgs admin adminCreateOrg
|
|
|
|
// ---
|
|
|
|
// summary: Create an organization
|
|
|
|
// consumes:
|
|
|
|
// - application/json
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: username
|
|
|
|
// in: path
|
|
|
|
// description: username of the user that will own the created organization
|
|
|
|
// type: string
|
|
|
|
// required: true
|
2018-10-21 03:40:42 +00:00
|
|
|
// - name: organization
|
|
|
|
// in: body
|
|
|
|
// required: true
|
|
|
|
// schema: { "$ref": "#/definitions/CreateOrgOption" }
|
2017-11-13 07:02:25 +00:00
|
|
|
// responses:
|
|
|
|
// "201":
|
|
|
|
// "$ref": "#/responses/Organization"
|
|
|
|
// "403":
|
|
|
|
// "$ref": "#/responses/forbidden"
|
|
|
|
// "422":
|
|
|
|
// "$ref": "#/responses/validationError"
|
2021-01-26 15:36:53 +00:00
|
|
|
form := web.GetForm(ctx).(*api.CreateOrgOption)
|
2015-12-17 07:28:47 +00:00
|
|
|
u := user.GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-05-30 17:57:55 +00:00
|
|
|
visibility := api.VisibleTypePublic
|
|
|
|
if form.Visibility != "" {
|
|
|
|
visibility = api.VisibilityModes[form.Visibility]
|
|
|
|
}
|
|
|
|
|
2015-12-17 07:28:47 +00:00
|
|
|
org := &models.User{
|
|
|
|
Name: form.UserName,
|
|
|
|
FullName: form.FullName,
|
|
|
|
Description: form.Description,
|
|
|
|
Website: form.Website,
|
|
|
|
Location: form.Location,
|
|
|
|
IsActive: true,
|
2016-11-07 16:53:22 +00:00
|
|
|
Type: models.UserTypeOrganization,
|
2019-05-30 17:57:55 +00:00
|
|
|
Visibility: visibility,
|
2015-12-17 07:28:47 +00:00
|
|
|
}
|
2019-05-30 17:57:55 +00:00
|
|
|
|
2015-12-17 07:28:47 +00:00
|
|
|
if err := models.CreateOrganization(org, u); err != nil {
|
|
|
|
if models.IsErrUserAlreadyExist(err) ||
|
|
|
|
models.IsErrNameReserved(err) ||
|
2020-02-23 19:52:05 +00:00
|
|
|
models.IsErrNameCharsNotAllowed(err) ||
|
2015-12-17 07:28:47 +00:00
|
|
|
models.IsErrNamePatternNotAllowed(err) {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", err)
|
2015-12-17 07:28:47 +00:00
|
|
|
} else {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "CreateOrganization", err)
|
2015-12-17 07:28:47 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.JSON(http.StatusCreated, convert.ToOrganization(org))
|
2015-12-17 07:28:47 +00:00
|
|
|
}
|
2019-01-23 22:30:19 +00:00
|
|
|
|
|
|
|
//GetAllOrgs API for getting information of all the organizations
|
|
|
|
func GetAllOrgs(ctx *context.APIContext) {
|
|
|
|
// swagger:operation GET /admin/orgs admin adminGetAllOrgs
|
|
|
|
// ---
|
|
|
|
// summary: List all organizations
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
2019-08-04 18:33:36 +00:00
|
|
|
// parameters:
|
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2020-06-09 04:57:38 +00:00
|
|
|
// description: page size of results
|
2019-08-04 18:33:36 +00:00
|
|
|
// type: integer
|
2019-01-23 22:30:19 +00:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/OrganizationList"
|
|
|
|
// "403":
|
|
|
|
// "$ref": "#/responses/forbidden"
|
2019-12-20 17:07:12 +00:00
|
|
|
|
2020-06-21 08:22:06 +00:00
|
|
|
listOptions := utils.GetListOptions(ctx)
|
|
|
|
|
|
|
|
users, maxResults, err := models.SearchUsers(&models.SearchUserOptions{
|
2020-01-24 19:00:29 +00:00
|
|
|
Type: models.UserTypeOrganization,
|
|
|
|
OrderBy: models.SearchOrderByAlphabetically,
|
2020-06-21 08:22:06 +00:00
|
|
|
ListOptions: listOptions,
|
2020-01-24 19:00:29 +00:00
|
|
|
Visible: []api.VisibleType{api.VisibleTypePublic, api.VisibleTypeLimited, api.VisibleTypePrivate},
|
2019-01-23 22:30:19 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "SearchOrganizations", err)
|
2019-01-23 22:30:19 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
orgs := make([]*api.Organization, len(users))
|
|
|
|
for i := range users {
|
|
|
|
orgs[i] = convert.ToOrganization(users[i])
|
|
|
|
}
|
2020-06-21 08:22:06 +00:00
|
|
|
|
|
|
|
ctx.SetLinkHeader(int(maxResults), listOptions.PageSize)
|
|
|
|
ctx.Header().Set("X-Total-Count", fmt.Sprintf("%d", maxResults))
|
2020-08-13 17:18:18 +00:00
|
|
|
ctx.Header().Set("Access-Control-Expose-Headers", "X-Total-Count, Link")
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.JSON(http.StatusOK, &orgs)
|
2019-01-23 22:30:19 +00:00
|
|
|
}
|