mirror of
https://gitlab.bertha.cloud/partitio/Nextcloud-Partitio/gonextcloud
synced 2024-11-22 00:06:25 +00:00
client | ||
vendor | ||
.gitignore | ||
gonextcloud.iml | ||
README.md |
[WIP] Nextcloud Go API Client
A simple Client for Nextcloud's API in Go.
TODO
- Auth
loginlogout
- Users
searchlistget infoscreate- 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
Getting started
Authentication
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()
}
Users
List :
func (c *Client) UserList() ([]string, error)
Search
func (c *Client) UserSearch(search string) ([]string, error)
Get
func (c *Client) User(name string) (*types.User, error)
Create
func (c *Client) UserCreate(username string, password string) error
Delete
func (c *Client) UserDelete(name string) error
Groups
TODO
Apps
TODO