2018-07-05 10:50:56 +00:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
req "github.com/levigross/grequests"
|
|
|
|
"github.com/partitio/gonextcloud/client/types"
|
2018-07-05 13:22:56 +00:00
|
|
|
"net/http"
|
2018-07-05 10:50:56 +00:00
|
|
|
"path"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (c *Client) UserList() ([]string, error) {
|
|
|
|
if !c.loggedIn() {
|
|
|
|
return nil, unauthorized
|
|
|
|
}
|
|
|
|
u := c.baseURL.ResolveReference(routes.users)
|
|
|
|
res, err := c.session.Get(u.String(), nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var ul types.UserListResponse
|
|
|
|
res.JSON(&ul)
|
|
|
|
return ul.Ocs.Data.Users, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) User(name string) (*types.User, error) {
|
|
|
|
if !c.loggedIn() {
|
|
|
|
return nil, unauthorized
|
|
|
|
}
|
|
|
|
u := c.baseURL.ResolveReference(routes.users)
|
|
|
|
u.Path = path.Join(u.Path, name)
|
|
|
|
res, err := c.session.Get(u.String(), nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var ur types.UserResponse
|
|
|
|
res.JSON(&ur)
|
|
|
|
if ur.Ocs.Meta.Statuscode != 100 {
|
|
|
|
return nil, fmt.Errorf(ur.Ocs.Meta.Message)
|
|
|
|
}
|
|
|
|
return &ur.Ocs.Data, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) UserSearch(search string) ([]string, error) {
|
|
|
|
if !c.loggedIn() {
|
|
|
|
return nil, unauthorized
|
|
|
|
}
|
|
|
|
u := c.baseURL.ResolveReference(routes.users)
|
|
|
|
ro := &req.RequestOptions{
|
|
|
|
Params: map[string]string{"search": search},
|
|
|
|
}
|
|
|
|
res, err := c.session.Get(u.String(), ro)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var r types.UserListResponse
|
|
|
|
res.JSON(&r)
|
|
|
|
if r.Ocs.Meta.Statuscode != 100 {
|
|
|
|
return nil, fmt.Errorf(r.Ocs.Meta.Message)
|
|
|
|
}
|
|
|
|
return r.Ocs.Data.Users, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) UserCreate(username string, password string) error {
|
|
|
|
ro := &req.RequestOptions{
|
|
|
|
Data: map[string]string{
|
|
|
|
"userid": username,
|
|
|
|
"password": password,
|
|
|
|
},
|
|
|
|
}
|
2018-07-05 13:22:56 +00:00
|
|
|
return c.userBaseRequest("", "", ro, http.MethodPost)
|
2018-07-05 10:50:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) UserDelete(name string) error {
|
2018-07-05 13:22:56 +00:00
|
|
|
return c.userBaseRequest(name, "", nil, http.MethodDelete)
|
2018-07-05 13:01:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) UserEnable(name string) error {
|
|
|
|
ro := &req.RequestOptions{
|
|
|
|
Data: map[string]string{},
|
|
|
|
}
|
2018-07-05 13:22:56 +00:00
|
|
|
return c.userBaseRequest(name, "enable", ro, http.MethodPut)
|
2018-07-05 13:01:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) UserDisable(name string) error {
|
|
|
|
ro := &req.RequestOptions{
|
|
|
|
Data: map[string]string{},
|
|
|
|
}
|
2018-07-05 13:22:56 +00:00
|
|
|
return c.userBaseRequest(name, "disable", ro, http.MethodPut)
|
2018-07-05 13:01:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) UserSendWelcomeEmail(name string) error {
|
2018-07-05 13:22:56 +00:00
|
|
|
return c.userBaseRequest(name, "welcome", nil, http.MethodPost)
|
2018-07-05 13:01:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) UserUpdateEmail(name string, email string) error {
|
|
|
|
return c.userUpdateAttribute(name, "email", email)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) UserUpdateDisplayName(name string, displayName string) error {
|
|
|
|
return c.userUpdateAttribute(name, "displayname", displayName)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) UserUpdatePhone(name string, phone string) error {
|
|
|
|
return c.userUpdateAttribute(name, "phone", phone)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) UserUpdateAddress(name string, address string) error {
|
|
|
|
return c.userUpdateAttribute(name, "address", address)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) UserUpdateWebSite(name string, website string) error {
|
|
|
|
return c.userUpdateAttribute(name, "website", website)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) UserUpdateTwitter(name string, twitter string) error {
|
|
|
|
return c.userUpdateAttribute(name, "twitter", twitter)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) UserUpdatePassword(name string, password string) error {
|
|
|
|
return c.userUpdateAttribute(name, "password", password)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) UserUpdateQuota(name string, quota string) error {
|
|
|
|
return c.userUpdateAttribute(name, "quota", quota)
|
|
|
|
}
|
|
|
|
|
2018-07-05 14:15:51 +00:00
|
|
|
func (c *Client) UserGroupList(name string) ([]string, error) {
|
|
|
|
if !c.loggedIn() {
|
|
|
|
return nil, unauthorized
|
|
|
|
}
|
|
|
|
u := c.baseURL.ResolveReference(routes.users)
|
|
|
|
u.Path = path.Join(u.Path, name, "groups")
|
|
|
|
res, err := c.session.Get(u.String(), nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var r types.GroupListResponse
|
|
|
|
res.JSON(&r)
|
|
|
|
if r.Ocs.Meta.Statuscode != 100 {
|
|
|
|
return nil, fmt.Errorf(r.Ocs.Meta.Message)
|
|
|
|
}
|
|
|
|
return r.Ocs.Data.Groups, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) UserGroupAdd(name string, group string) error {
|
|
|
|
ro := &req.RequestOptions{
|
|
|
|
Data: map[string]string{
|
|
|
|
"groupid": group,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
return c.userBaseRequest(name, "groups", ro, http.MethodPost)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) UserGroupRemove(name string, group string) error {
|
|
|
|
ro := &req.RequestOptions{
|
|
|
|
Data: map[string]string{
|
|
|
|
"groupid": group,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
return c.userBaseRequest(name, "groups", ro, http.MethodDelete)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) UserGroupPromote(name string, group string) error {
|
|
|
|
ro := &req.RequestOptions{
|
|
|
|
Data: map[string]string{
|
|
|
|
"groupid": group,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
return c.userBaseRequest(name, "subadmins", ro, http.MethodPost)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) UserGroupDemote(name string, group string) error {
|
|
|
|
ro := &req.RequestOptions{
|
|
|
|
Data: map[string]string{
|
|
|
|
"groupid": group,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
return c.userBaseRequest(name, "subadmins", ro, http.MethodDelete)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) UserGroupSubAdminList(name string) ([]string, error) {
|
|
|
|
if !c.loggedIn() {
|
|
|
|
return nil, unauthorized
|
|
|
|
}
|
|
|
|
u := c.baseURL.ResolveReference(routes.users)
|
|
|
|
u.Path = path.Join(u.Path, name, "subadmins")
|
|
|
|
res, err := c.session.Get(u.String(), nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var r types.SubAdminResponse
|
|
|
|
res.JSON(&r)
|
|
|
|
if r.Ocs.Meta.Statuscode != 100 {
|
|
|
|
return nil, fmt.Errorf(r.Ocs.Meta.Message)
|
|
|
|
}
|
|
|
|
return r.Ocs.Data, nil
|
|
|
|
}
|
|
|
|
|
2018-07-05 13:01:25 +00:00
|
|
|
func (c *Client) userUpdateAttribute(name string, key string, value string) error {
|
|
|
|
ro := &req.RequestOptions{
|
|
|
|
Data: map[string]string{
|
|
|
|
"key": key,
|
|
|
|
"value": value,
|
|
|
|
},
|
|
|
|
}
|
2018-07-05 13:22:56 +00:00
|
|
|
return c.userBaseRequest(name, "", ro, http.MethodPut)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) userBaseRequest(name string, route string, ro *req.RequestOptions, method string) error {
|
|
|
|
if !c.loggedIn() {
|
|
|
|
return unauthorized
|
|
|
|
}
|
|
|
|
u := c.baseURL.ResolveReference(routes.users)
|
|
|
|
if name != "" {
|
|
|
|
u.Path = path.Join(u.Path, name)
|
|
|
|
}
|
|
|
|
if route != "" {
|
|
|
|
u.Path = path.Join(u.Path, route)
|
|
|
|
}
|
|
|
|
var (
|
|
|
|
res *req.Response
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
if method == http.MethodGet {
|
|
|
|
res, err = c.session.Get(u.String(), ro)
|
|
|
|
} else if method == http.MethodPost {
|
|
|
|
res, err = c.session.Post(u.String(), ro)
|
|
|
|
} else if method == http.MethodPut {
|
|
|
|
res, err = c.session.Put(u.String(), ro)
|
|
|
|
} else if method == http.MethodDelete {
|
|
|
|
res, err = c.session.Delete(u.String(), ro)
|
|
|
|
}
|
2018-07-05 13:01:25 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
var ur types.UserResponse
|
2018-07-05 10:50:56 +00:00
|
|
|
res.JSON(&ur)
|
|
|
|
if ur.Ocs.Meta.Statuscode != 100 {
|
|
|
|
return fmt.Errorf(ur.Ocs.Meta.Message)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|