diff options
Diffstat (limited to 'routes/api/v1/org')
-rw-r--r-- | routes/api/v1/org/org.go | 66 | ||||
-rw-r--r-- | routes/api/v1/org/team.go | 26 |
2 files changed, 92 insertions, 0 deletions
diff --git a/routes/api/v1/org/org.go b/routes/api/v1/org/org.go new file mode 100644 index 00000000..2f8832ca --- /dev/null +++ b/routes/api/v1/org/org.go @@ -0,0 +1,66 @@ +// 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" + "github.com/gogits/gogs/routes/api/v1/convert" + "github.com/gogits/gogs/routes/api/v1/user" +) + +func listUserOrgs(c *context.APIContext, u *models.User, all bool) { + if err := u.GetOrganizations(all); err != nil { + c.Error(500, "GetOrganizations", err) + return + } + + apiOrgs := make([]*api.Organization, len(u.Orgs)) + for i := range u.Orgs { + apiOrgs[i] = convert.ToOrganization(u.Orgs[i]) + } + c.JSON(200, &apiOrgs) +} + +// https://github.com/gogits/go-gogs-client/wiki/Organizations#list-your-organizations +func ListMyOrgs(c *context.APIContext) { + listUserOrgs(c, c.User, true) +} + +// https://github.com/gogits/go-gogs-client/wiki/Organizations#list-user-organizations +func ListUserOrgs(c *context.APIContext) { + u := user.GetUserByParams(c) + if c.Written() { + return + } + listUserOrgs(c, u, false) +} + +// https://github.com/gogits/go-gogs-client/wiki/Organizations#get-an-organization +func Get(c *context.APIContext) { + c.JSON(200, convert.ToOrganization(c.Org.Organization)) +} + +// https://github.com/gogits/go-gogs-client/wiki/Organizations#edit-an-organization +func Edit(c *context.APIContext, form api.EditOrgOption) { + org := c.Org.Organization + if !org.IsOwnedBy(c.User.ID) { + c.Status(403) + return + } + + org.FullName = form.FullName + org.Description = form.Description + org.Website = form.Website + org.Location = form.Location + if err := models.UpdateUser(org); err != nil { + c.Error(500, "UpdateUser", err) + return + } + + c.JSON(200, convert.ToOrganization(org)) +} diff --git a/routes/api/v1/org/team.go b/routes/api/v1/org/team.go new file mode 100644 index 00000000..fd92e728 --- /dev/null +++ b/routes/api/v1/org/team.go @@ -0,0 +1,26 @@ +// Copyright 2016 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/pkg/context" + "github.com/gogits/gogs/routes/api/v1/convert" +) + +func ListTeams(c *context.APIContext) { + org := c.Org.Organization + if err := org.GetTeams(); err != nil { + c.Error(500, "GetTeams", err) + return + } + + apiTeams := make([]*api.Team, len(org.Teams)) + for i := range org.Teams { + apiTeams[i] = convert.ToTeam(org.Teams[i]) + } + c.JSON(200, apiTeams) +} |