2015-12-17 08:28:47 +01:00
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package org
|
|
|
|
|
|
|
|
import (
|
2016-11-11 10:39:44 +01:00
|
|
|
api "code.gitea.io/sdk/gitea"
|
2015-12-17 08:28:47 +01:00
|
|
|
|
2016-11-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/routers/api/v1/convert"
|
|
|
|
"code.gitea.io/gitea/routers/api/v1/user"
|
2015-12-17 08:28:47 +01:00
|
|
|
)
|
|
|
|
|
2016-03-13 23:49:16 +01:00
|
|
|
func listUserOrgs(ctx *context.APIContext, u *models.User, all bool) {
|
2015-12-17 08:28:47 +01:00
|
|
|
if err := u.GetOrganizations(all); err != nil {
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Error(500, "GetOrganizations", err)
|
2015-12-17 08:28:47 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
apiOrgs := make([]*api.Organization, len(u.Orgs))
|
|
|
|
for i := range u.Orgs {
|
2016-03-14 04:20:22 +01:00
|
|
|
apiOrgs[i] = convert.ToOrganization(u.Orgs[i])
|
2015-12-17 08:28:47 +01:00
|
|
|
}
|
|
|
|
ctx.JSON(200, &apiOrgs)
|
|
|
|
}
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// ListMyOrgs list all my orgs
|
|
|
|
// see https://github.com/gogits/go-gogs-client/wiki/Organizations#list-your-organizations
|
2016-03-13 23:49:16 +01:00
|
|
|
func ListMyOrgs(ctx *context.APIContext) {
|
2015-12-17 08:28:47 +01:00
|
|
|
listUserOrgs(ctx, ctx.User, true)
|
|
|
|
}
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// ListUserOrgs list user's orgs
|
|
|
|
// see https://github.com/gogits/go-gogs-client/wiki/Organizations#list-user-organizations
|
2016-03-13 23:49:16 +01:00
|
|
|
func ListUserOrgs(ctx *context.APIContext) {
|
2015-12-17 08:28:47 +01:00
|
|
|
u := user.GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
listUserOrgs(ctx, u, false)
|
|
|
|
}
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// Get get an organization
|
|
|
|
// see https://github.com/gogits/go-gogs-client/wiki/Organizations#get-an-organization
|
2016-03-13 23:49:16 +01:00
|
|
|
func Get(ctx *context.APIContext) {
|
2016-03-25 23:04:02 +01:00
|
|
|
ctx.JSON(200, convert.ToOrganization(ctx.Org.Organization))
|
2015-12-17 08:28:47 +01:00
|
|
|
}
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// Edit change an organization's information
|
|
|
|
// see https://github.com/gogits/go-gogs-client/wiki/Organizations#edit-an-organization
|
2016-03-13 23:49:16 +01:00
|
|
|
func Edit(ctx *context.APIContext, form api.EditOrgOption) {
|
2016-03-25 23:04:02 +01:00
|
|
|
org := ctx.Org.Organization
|
2015-12-17 08:28:47 +01:00
|
|
|
org.FullName = form.FullName
|
|
|
|
org.Description = form.Description
|
|
|
|
org.Website = form.Website
|
|
|
|
org.Location = form.Location
|
|
|
|
if err := models.UpdateUser(org); err != nil {
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Error(500, "UpdateUser", err)
|
2015-12-17 08:28:47 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-03-14 04:20:22 +01:00
|
|
|
ctx.JSON(200, convert.ToOrganization(org))
|
2015-12-17 08:28:47 +01:00
|
|
|
}
|