49 lines
1.1 KiB
Go
49 lines
1.1 KiB
Go
package gowebdav
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"net/http"
|
|
)
|
|
|
|
// BasicAuth structure holds our credentials
|
|
type BasicAuth struct {
|
|
user string
|
|
pw string
|
|
}
|
|
|
|
// Authorize the current request
|
|
func (b *BasicAuth) Authorize(c *http.Client, rq *http.Request, path string) error {
|
|
rq.SetBasicAuth(b.user, b.pw)
|
|
log.Printf("BasicAuth.Authorize : SetBasicAuth(%s, %s)", b.user, b.pw)
|
|
return nil
|
|
}
|
|
|
|
// Verify verifies if the authentication
|
|
func (b *BasicAuth) Verify(c *http.Client, rs *http.Response, path string) (redo bool, err error) {
|
|
log.Printf("BasicAuth.Verify : StatusCode = %d", rs.StatusCode)
|
|
if rs.StatusCode == 401 {
|
|
err = NewPathError("Authorize", path, rs.StatusCode)
|
|
}
|
|
return
|
|
}
|
|
|
|
// Close cleans up all resources
|
|
func (b *BasicAuth) Close() error {
|
|
log.Printf("BasicAuth.Close")
|
|
return nil
|
|
}
|
|
|
|
// Clone creates a Copy of itself
|
|
func (b *BasicAuth) Clone() Authenticator {
|
|
log.Printf("BasicAuth.Clone")
|
|
// no copy due to read only access
|
|
return b
|
|
}
|
|
|
|
// String toString
|
|
func (b *BasicAuth) String() string {
|
|
log.Printf("BasicAuth.String")
|
|
return fmt.Sprintf("BasicAuth login: %s", b.user)
|
|
}
|