gonextcloud/auth_impl.go

57 lines
1.6 KiB
Go
Raw Permalink Normal View History

package gonextcloud
import (
"fmt"
req "github.com/levigross/grequests"
)
2018-07-30 08:08:35 +00:00
var errUnauthorized = fmt.Errorf("login first")
2018-07-30 08:03:38 +00:00
// Login perform login and create a session with the Nextcloud API.
func (c *client) Login(username string, password string) error {
c.username = username
c.password = password
options := req.RequestOptions{
Headers: c.headers,
Auth: []string{c.username, c.password},
}
c.session = req.NewSession(&options)
// TODO What to do with capabilities ? (other thant connection validation)
u := c.baseURL.ResolveReference(routes.capabilities)
2018-07-24 18:26:12 +00:00
res, err := c.session.Get(u.String(), nil)
if err != nil {
return err
}
var r capabilitiesResponse
2018-07-24 18:26:12 +00:00
res.JSON(&r)
// No need to check for Ocs.meta.StatusCode as capabilities are always returned
2018-07-24 18:26:12 +00:00
c.capabilities = &r.Ocs.Data.Capabilities
c.version = &r.Ocs.Data.Version
2018-07-24 18:26:12 +00:00
// Check if authentication failed
if !c.loggedIn() {
e := APIError{Message: "authentication failed"}
2018-07-24 18:26:12 +00:00
return &e
2018-07-09 10:53:53 +00:00
}
// Create webdav client
2019-07-16 06:29:38 +00:00
c.webdav = newWebDav(c.baseURL.String()+"/remote.php/webdav", c.username, c.password)
return nil
}
2018-07-30 08:03:38 +00:00
// Logout logs out from the Nextcloud API, close the session and delete session's cookie
func (c *client) Logout() error {
c.session.CloseIdleConnections()
c.session.HTTPClient.Jar = nil
// Clear capabilities as it is used to check for valid authentication
c.capabilities = nil
return nil
}
func (c *client) loggedIn() bool {
2018-07-24 18:26:12 +00:00
// When authentication failed, capabilities doesn't contains core information
if c.capabilities == nil {
return false
}
2018-07-24 18:26:12 +00:00
return c.capabilities.Core.WebdavRoot != ""
}