mirror of
https://gitlab.bertha.cloud/partitio/Nextcloud-Partitio/gonextcloud
synced 2024-11-06 03:36:25 +00:00
39 lines
888 B
Go
39 lines
888 B
Go
package gonextcloud
|
|
|
|
import (
|
|
req "github.com/levigross/grequests"
|
|
"gitlab.adphi.fr/partitio/Nextcloud-Partitio/gonextcloud/types"
|
|
"net/url"
|
|
)
|
|
|
|
// Client is the API client that performs all operations against a Nextcloud server.
|
|
type Client struct {
|
|
baseURL *url.URL
|
|
username string
|
|
password string
|
|
session *req.Session
|
|
headers map[string]string
|
|
capabilities *types.Capabilities
|
|
version *types.Version
|
|
}
|
|
|
|
// NewClient create a new Client from the Nextcloud Instance URL
|
|
func NewClient(hostname string) (*Client, error) {
|
|
baseURL, err := url.ParseRequestURI(hostname)
|
|
if err != nil {
|
|
baseURL, err = url.ParseRequestURI("https://" + hostname)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
c := Client{
|
|
baseURL: baseURL,
|
|
headers: map[string]string{
|
|
"OCS-APIREQUEST": "true",
|
|
"Accept": "application/json",
|
|
},
|
|
}
|
|
return &c, nil
|
|
}
|