gonextcloud/groups.go

91 lines
2.2 KiB
Go
Raw Normal View History

package gonextcloud
2018-07-09 10:53:53 +00:00
import (
req "github.com/levigross/grequests"
2018-10-26 13:35:50 +00:00
"gitlab.bertha.cloud/partitio/Nextcloud-Partitio/gonextcloud/types"
2018-07-09 10:53:53 +00:00
"net/http"
)
//Groups contains all Groups available actions
type Groups struct {
c *Client
}
//List lists the Nextcloud groups
func (g *Groups) List() ([]string, error) {
res, err := g.c.baseRequest(http.MethodGet, routes.groups, nil)
2018-07-09 10:53:53 +00:00
if err != nil {
return nil, err
}
2018-07-24 18:26:12 +00:00
var r types.GroupListResponse
res.JSON(&r)
return r.Ocs.Data.Groups, nil
2018-07-09 10:53:53 +00:00
}
//ListDetails lists the Nextcloud groups
func (g *Groups) ListDetails() ([]types.Group, error) {
res, err := g.c.baseRequest(http.MethodGet, routes.groups, nil, "details")
if err != nil {
return nil, err
}
var r types.GroupListDetailsResponse
res.JSON(&r)
return r.Ocs.Data.Groups, nil
}
//Users list the group's users
func (g *Groups) Users(name string) ([]string, error) {
res, err := g.c.baseRequest(http.MethodGet, routes.groups, nil, name)
2018-07-09 10:53:53 +00:00
if err != nil {
return nil, err
}
var r types.UserListResponse
res.JSON(&r)
return r.Ocs.Data.Users, nil
}
//Search return the list of groups matching the search string
func (g *Groups) Search(search string) ([]string, error) {
ro := &req.RequestOptions{
Params: map[string]string{"search": search},
}
res, err := g.c.baseRequest(http.MethodGet, routes.groups, ro)
if err != nil {
return nil, err
}
var r types.GroupListResponse
res.JSON(&r)
return r.Ocs.Data.Groups, nil
}
//Create creates a group
func (g *Groups) Create(name string) error {
2018-07-09 10:53:53 +00:00
ro := &req.RequestOptions{
Data: map[string]string{
"groupid": name,
},
}
return g.baseRequest(http.MethodPost, ro)
2018-07-09 10:53:53 +00:00
}
//Delete deletes the group
func (g *Groups) Delete(name string) error {
return g.baseRequest(http.MethodDelete, nil, name)
2018-07-09 10:53:53 +00:00
}
//SubAdminList lists the group's subadmins
func (g *Groups) SubAdminList(name string) ([]string, error) {
res, err := g.c.baseRequest(http.MethodGet, routes.groups, nil, name, "subadmins")
2018-07-09 10:53:53 +00:00
if err != nil {
return nil, err
}
var r types.UserListResponse
res.JSON(&r)
return r.Ocs.Data.Users, nil
}
func (g *Groups) baseRequest(method string, ro *req.RequestOptions, subRoute ...string) error {
_, err := g.c.baseRequest(method, routes.groups, ro, subRoute...)
return err
2018-07-09 10:53:53 +00:00
}