mirror of https://github.com/gogits/gogs.git
Unknwon
9 years ago
20 changed files with 204 additions and 55 deletions
@ -0,0 +1,44 @@
|
||||
// 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 admin |
||||
|
||||
import ( |
||||
api "github.com/gogits/go-gogs-client" |
||||
|
||||
"github.com/gogits/gogs/models" |
||||
"github.com/gogits/gogs/modules/middleware" |
||||
"github.com/gogits/gogs/routers/api/v1/convert" |
||||
"github.com/gogits/gogs/routers/api/v1/user" |
||||
) |
||||
|
||||
// https://github.com/gogits/go-gogs-client/wiki/Administration-Organizations#create-a-new-organization
|
||||
func CreateOrg(ctx *middleware.Context, form api.CreateOrgOption) { |
||||
u := user.GetUserByParams(ctx) |
||||
if ctx.Written() { |
||||
return |
||||
} |
||||
|
||||
org := &models.User{ |
||||
Name: form.UserName, |
||||
FullName: form.FullName, |
||||
Description: form.Description, |
||||
Website: form.Website, |
||||
Location: form.Location, |
||||
IsActive: true, |
||||
Type: models.ORGANIZATION, |
||||
} |
||||
if err := models.CreateOrganization(org, u); err != nil { |
||||
if models.IsErrUserAlreadyExist(err) || |
||||
models.IsErrNameReserved(err) || |
||||
models.IsErrNamePatternNotAllowed(err) { |
||||
ctx.APIError(422, "CreateOrganization", err) |
||||
} else { |
||||
ctx.APIError(500, "CreateOrganization", err) |
||||
} |
||||
return |
||||
} |
||||
|
||||
ctx.JSON(201, convert.ToApiOrganization(org)) |
||||
} |
@ -0,0 +1,74 @@
|
||||
// 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/modules/middleware" |
||||
"github.com/gogits/gogs/routers/api/v1/convert" |
||||
"github.com/gogits/gogs/routers/api/v1/user" |
||||
) |
||||
|
||||
func listUserOrgs(ctx *middleware.Context, u *models.User, all bool) { |
||||
if err := u.GetOrganizations(all); err != nil { |
||||
ctx.APIError(500, "GetOrganizations", err) |
||||
return |
||||
} |
||||
|
||||
apiOrgs := make([]*api.Organization, len(u.Orgs)) |
||||
for i := range u.Orgs { |
||||
apiOrgs[i] = convert.ToApiOrganization(u.Orgs[i]) |
||||
} |
||||
ctx.JSON(200, &apiOrgs) |
||||
} |
||||
|
||||
// https://github.com/gogits/go-gogs-client/wiki/Organizations#list-your-organizations
|
||||
func ListMyOrgs(ctx *middleware.Context) { |
||||
listUserOrgs(ctx, ctx.User, true) |
||||
} |
||||
|
||||
// https://github.com/gogits/go-gogs-client/wiki/Organizations#list-user-organizations
|
||||
func ListUserOrgs(ctx *middleware.Context) { |
||||
u := user.GetUserByParams(ctx) |
||||
if ctx.Written() { |
||||
return |
||||
} |
||||
listUserOrgs(ctx, u, false) |
||||
} |
||||
|
||||
// https://github.com/gogits/go-gogs-client/wiki/Organizations#get-an-organization
|
||||
func Get(ctx *middleware.Context) { |
||||
org := user.GetUserByParamsName(ctx, ":orgname") |
||||
if ctx.Written() { |
||||
return |
||||
} |
||||
ctx.JSON(200, convert.ToApiOrganization(org)) |
||||
} |
||||
|
||||
// https://github.com/gogits/go-gogs-client/wiki/Organizations#edit-an-organization
|
||||
func Edit(ctx *middleware.Context, form api.EditOrgOption) { |
||||
org := user.GetUserByParamsName(ctx, ":orgname") |
||||
if ctx.Written() { |
||||
return |
||||
} |
||||
|
||||
if !org.IsOwnedBy(ctx.User.Id) { |
||||
ctx.Error(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 { |
||||
ctx.APIError(500, "UpdateUser", err) |
||||
return |
||||
} |
||||
|
||||
ctx.JSON(200, convert.ToApiOrganization(org)) |
||||
} |
Loading…
Reference in new issue