2018-07-25 13:06:31 +00:00
|
|
|
package gonextcloud
|
2018-07-05 10:50:56 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
req "github.com/levigross/grequests"
|
2018-10-08 16:50:11 +00:00
|
|
|
"gitlab.adphi.fr/partitio/Nextcloud-Partitio/gonextcloud/types"
|
2018-07-05 10:50:56 +00:00
|
|
|
"net/url"
|
|
|
|
)
|
|
|
|
|
2018-07-30 08:03:38 +00:00
|
|
|
// Client is the API client that performs all operations against a Nextcloud server.
|
2018-07-05 10:50:56 +00:00
|
|
|
type Client struct {
|
|
|
|
baseURL *url.URL
|
|
|
|
username string
|
|
|
|
password string
|
|
|
|
session *req.Session
|
|
|
|
headers map[string]string
|
|
|
|
capabilities *types.Capabilities
|
|
|
|
}
|
|
|
|
|
2018-07-30 08:03:38 +00:00
|
|
|
// NewClient create a new Client from the Nextcloud Instance URL
|
2018-07-05 10:50:56 +00:00
|
|
|
func NewClient(hostname string) (*Client, error) {
|
2018-07-13 11:41:51 +00:00
|
|
|
baseURL, err := url.ParseRequestURI(hostname)
|
2018-07-05 10:50:56 +00:00
|
|
|
if err != nil {
|
2018-07-13 11:41:51 +00:00
|
|
|
baseURL, err = url.ParseRequestURI("https://" + hostname)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2018-07-05 10:50:56 +00:00
|
|
|
}
|
2018-07-13 11:41:51 +00:00
|
|
|
|
2018-07-05 10:50:56 +00:00
|
|
|
c := Client{
|
|
|
|
baseURL: baseURL,
|
|
|
|
headers: map[string]string{
|
|
|
|
"OCS-APIREQUEST": "true",
|
|
|
|
"Accept": "application/json",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
return &c, nil
|
|
|
|
}
|