2015-12-17 07:15:29 +00:00
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
2019-06-02 16:39:54 +01:00
|
|
|
// 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.
|
|
|
|
|
2016-11-07 01:57:49 +00:00
|
|
|
package gitea
|
2015-12-17 07:15:29 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
2019-05-11 16:38:52 +01:00
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/structs"
|
2015-12-17 07:15:29 +00:00
|
|
|
)
|
|
|
|
|
2019-05-11 16:38:52 +01: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)
|
|
|
|
}
|
|
|
|
|
2019-06-02 16:39:54 +01:00
|
|
|
// 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
|
2019-05-11 16:38:52 +01:00
|
|
|
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
|
|
|
|
}
|
2019-06-02 16:39:54 +01:00
|
|
|
|
|
|
|
// DeleteOrg deletes an organization
|
|
|
|
func (c *Client) DeleteOrg(orgname string) error {
|
|
|
|
_, err := c.getResponse("DELETE", fmt.Sprintf("/orgs/%s", orgname), nil, nil)
|
|
|
|
return err
|
|
|
|
}
|