Files
Gogs/routers/api/v1/org/org.go

67 lines
1.7 KiB
Go
Raw Normal View History

2015-12-17 02:28:47 -05: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 (
api "github.com/gogits/go-gogs-client"
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/pkg/context"
2015-12-17 02:28:47 -05:00
"github.com/gogits/gogs/routers/api/v1/convert"
"github.com/gogits/gogs/routers/api/v1/user"
)
2017-06-03 07:26:09 -04:00
func listUserOrgs(c *context.APIContext, u *models.User, all bool) {
2015-12-17 02:28:47 -05:00
if err := u.GetOrganizations(all); err != nil {
2017-06-03 07:26:09 -04:00
c.Error(500, "GetOrganizations", err)
2015-12-17 02:28:47 -05:00
return
}
apiOrgs := make([]*api.Organization, len(u.Orgs))
for i := range u.Orgs {
apiOrgs[i] = convert.ToOrganization(u.Orgs[i])
2015-12-17 02:28:47 -05:00
}
2017-06-03 07:26:09 -04:00
c.JSON(200, &apiOrgs)
2015-12-17 02:28:47 -05:00
}
// https://github.com/gogits/go-gogs-client/wiki/Organizations#list-your-organizations
2017-06-03 07:26:09 -04:00
func ListMyOrgs(c *context.APIContext) {
listUserOrgs(c, c.User, true)
2015-12-17 02:28:47 -05:00
}
// https://github.com/gogits/go-gogs-client/wiki/Organizations#list-user-organizations
2017-06-03 07:26:09 -04:00
func ListUserOrgs(c *context.APIContext) {
u := user.GetUserByParams(c)
if c.Written() {
2015-12-17 02:28:47 -05:00
return
}
2017-06-03 07:26:09 -04:00
listUserOrgs(c, u, false)
2015-12-17 02:28:47 -05:00
}
// https://github.com/gogits/go-gogs-client/wiki/Organizations#get-an-organization
2017-06-03 07:26:09 -04:00
func Get(c *context.APIContext) {
c.JSON(200, convert.ToOrganization(c.Org.Organization))
2015-12-17 02:28:47 -05:00
}
// https://github.com/gogits/go-gogs-client/wiki/Organizations#edit-an-organization
2017-06-03 07:26:09 -04:00
func Edit(c *context.APIContext, form api.EditOrgOption) {
org := c.Org.Organization
if !org.IsOwnedBy(c.User.ID) {
c.Status(403)
2015-12-17 02:28:47 -05:00
return
}
org.FullName = form.FullName
org.Description = form.Description
org.Website = form.Website
org.Location = form.Location
if err := models.UpdateUser(org); err != nil {
2017-06-03 07:26:09 -04:00
c.Error(500, "UpdateUser", err)
2015-12-17 02:28:47 -05:00
return
}
2017-06-03 07:26:09 -04:00
c.JSON(200, convert.ToOrganization(org))
2015-12-17 02:28:47 -05:00
}