Go to file
Philippe-Adrien Nousse 6a2cde7e5f Added Licence 2018-07-09 13:40:45 +02:00
client Added Group Search, Improved documentation 2018-07-09 13:36:07 +02:00
docs Fix import typo 2018-07-09 13:37:44 +02:00
vendor Nextcloud API Client, Uers/Response types, User list/search/get/create/delete 2018-07-05 12:50:56 +02:00
.gitignore Nextcloud API Client, Uers/Response types, User list/search/get/create/delete 2018-07-05 12:50:56 +02:00
LICENCE Added Licence 2018-07-09 13:40:45 +02:00
README.md Fix import typo 2018-07-09 13:37:44 +02:00
gonextcloud.iml Nextcloud API Client, Uers/Response types, User list/search/get/create/delete 2018-07-05 12:50:56 +02:00

README.md

[WIP] Nextcloud Go API Client

A simple Client for Nextcloud's API in Go.

TODO

  • Auth
    • login
    • logout
  • Users
    • search
    • list
    • get infos
    • create
    • update
    • delete
    • enable
    • disable
    • get groups
    • add to group
    • remove from group
    • get subadmin group
    • promote subadmin
    • demote subadmin
    • send welcome mail
  • Groups
    • create
    • delete
    • get members
    • get subadmins
  • Apps
    • list
    • get infos
    • enable
    • disable

client

--

    import "github.com/partitio/gonextcloud/client"

Usage

package main

import (
	"fmt"
	"github.com/partitio/gonextcloud/client"
)

func main() {
	url := "https://www.mynextcloud.com"
	username := "admin"
	password := "password"
	c, err := client.NewClient(url)
	if err != nil {
		panic(err)
	}
	if err := c.Login(username, password); err != nil {
		panic(err)
	}
	defer c.Logout()
}

func NewClient

func NewClient(hostname string) (*Client, error)

Authentication

func (*Client) Login

func (c *Client) Login(username string, password string) error

func (*Client) Logout

func (c *Client) Logout() error

Users

func (*Client) User

func (c *Client) User(name string) (*types.User, error)

func (*Client) UserCreate

func (c *Client) UserCreate(username string, password string) error

func (*Client) UserDelete

func (c *Client) UserDelete(name string) error

func (*Client) UserDisable

func (c *Client) UserDisable(name string) error

func (*Client) UserEnable

func (c *Client) UserEnable(name string) error

func (*Client) UserGroupAdd

func (c *Client) UserGroupAdd(name string, group string) error

func (*Client) UserGroupDemote

func (c *Client) UserGroupDemote(name string, group string) error

func (*Client) UserGroupList

func (c *Client) UserGroupList(name string) ([]string, error)

func (*Client) UserGroupPromote

func (c *Client) UserGroupPromote(name string, group string) error

func (*Client) UserGroupRemove

func (c *Client) UserGroupRemove(name string, group string) error

func (*Client) UserGroupSubAdminList

func (c *Client) UserGroupSubAdminList(name string) ([]string, error)

func (*Client) UserList

func (c *Client) UserList() ([]string, error)

func (*Client) UserSearch

func (c *Client) UserSearch(search string) ([]string, error)

func (*Client) UserSendWelcomeEmail

func (c *Client) UserSendWelcomeEmail(name string) error

func (*Client) UserUpdateAddress

func (c *Client) UserUpdateAddress(name string, address string) error

func (*Client) UserUpdateDisplayName

func (c *Client) UserUpdateDisplayName(name string, displayName string) error

func (*Client) UserUpdateEmail

func (c *Client) UserUpdateEmail(name string, email string) error

func (*Client) UserUpdatePassword

func (c *Client) UserUpdatePassword(name string, password string) error

func (*Client) UserUpdatePhone

func (c *Client) UserUpdatePhone(name string, phone string) error

func (*Client) UserUpdateQuota

func (c *Client) UserUpdateQuota(name string, quota string) error

func (*Client) UserUpdateTwitter

func (c *Client) UserUpdateTwitter(name string, twitter string) error

func (*Client) UserUpdateWebSite

Groups

func (c *Client) UserUpdateWebSite(name string, website string) error

func (*Client) GroupCreate

func (c *Client) GroupCreate(name string) error

func (*Client) GroupDelete

func (c *Client) GroupDelete(name string) error

func (*Client) GroupList

func (c *Client) GroupList() ([]string, error)

func (*Client) GroupSearch

func (c *Client) GroupSearch(search string) ([]string, error)

func (*Client) GroupSubAdminList

func (c *Client) GroupSubAdminList(name string) ([]string, error)

func (*Client) GroupUsers

func (c *Client) GroupUsers(name string) ([]string, error)