forgejo-sdk/gitea/org.go

62 lines
1.9 KiB
Go
Raw Normal View History

2015-12-17 07:15:29 +00:00
// Copyright 2015 The Gogs Authors. All rights reserved.
// Copyright 2019 The Gitea Authors. All rights reserved.
2015-12-17 07:15:29 +00:00
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package gitea
2015-12-17 07:15:29 +00:00
import (
"bytes"
"encoding/json"
"fmt"
"code.gitea.io/gitea/modules/structs"
2015-12-17 07:15:29 +00:00
)
// Organization is equal to structs.Organization
type Organization = structs.Organization
2015-12-17 07:15:29 +00:00
2016-11-10 09:44:00 +00:00
// ListMyOrgs list all of current user's organizations
2015-12-17 07:15:29 +00:00
func (c *Client) ListMyOrgs() ([]*Organization, error) {
orgs := make([]*Organization, 0, 5)
return orgs, c.getParsedResponse("GET", "/user/orgs", nil, nil, &orgs)
}
2016-11-10 09:44:00 +00:00
// ListUserOrgs list all of some user's organizations
2015-12-17 07:15:29 +00:00
func (c *Client) ListUserOrgs(user string) ([]*Organization, error) {
orgs := make([]*Organization, 0, 5)
return orgs, c.getParsedResponse("GET", fmt.Sprintf("/users/%s/orgs", user), nil, nil, &orgs)
}
2016-11-10 09:44:00 +00:00
// GetOrg get one organization by name
2015-12-17 07:15:29 +00:00
func (c *Client) GetOrg(orgname string) (*Organization, error) {
org := new(Organization)
return org, c.getParsedResponse("GET", fmt.Sprintf("/orgs/%s", orgname), nil, nil, org)
}
// CreateOrg creates an organization
func (c *Client) CreateOrg(opt structs.CreateOrgOption) (*Organization, error) {
body, err := json.Marshal(&opt)
if err != nil {
return nil, err
}
org := new(Organization)
return org, c.getParsedResponse("POST", "/orgs", jsonHeader, bytes.NewReader(body), org)
}
2016-11-10 09:44:00 +00:00
// EditOrg modify one organization via options
func (c *Client) EditOrg(orgname string, opt structs.EditOrgOption) error {
2015-12-17 07:15:29 +00:00
body, err := json.Marshal(&opt)
if err != nil {
return err
}
2016-07-17 01:46:54 +01:00
_, err = c.getResponse("PATCH", fmt.Sprintf("/orgs/%s", orgname), jsonHeader, bytes.NewReader(body))
2015-12-17 07:15:29 +00:00
return err
}
// DeleteOrg deletes an organization
func (c *Client) DeleteOrg(orgname string) error {
_, err := c.getResponse("DELETE", fmt.Sprintf("/orgs/%s", orgname), nil, nil)
return err
}