forked from TrueCloudLab/rclone
Move all backends into backend directory
This commit is contained in:
parent
0a7731cf0d
commit
b8b620f5c2
143 changed files with 88 additions and 87 deletions
77
backend/swift/auth.go
Normal file
77
backend/swift/auth.go
Normal file
|
@ -0,0 +1,77 @@
|
|||
package swift
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
|
||||
"github.com/ncw/swift"
|
||||
)
|
||||
|
||||
// auth is an authenticator for swift. It overrides the StorageUrl
|
||||
// and AuthToken with fixed values.
|
||||
type auth struct {
|
||||
parentAuth swift.Authenticator
|
||||
storageURL string
|
||||
authToken string
|
||||
}
|
||||
|
||||
// newAuth creates a swift authenticator wrapper to override the
|
||||
// StorageUrl and AuthToken values.
|
||||
//
|
||||
// Note that parentAuth can be nil
|
||||
func newAuth(parentAuth swift.Authenticator, storageURL string, authToken string) *auth {
|
||||
return &auth{
|
||||
parentAuth: parentAuth,
|
||||
storageURL: storageURL,
|
||||
authToken: authToken,
|
||||
}
|
||||
}
|
||||
|
||||
// Request creates an http.Request for the auth - return nil if not needed
|
||||
func (a *auth) Request(c *swift.Connection) (*http.Request, error) {
|
||||
if a.parentAuth == nil {
|
||||
return nil, nil
|
||||
}
|
||||
return a.parentAuth.Request(c)
|
||||
}
|
||||
|
||||
// Response parses the http.Response
|
||||
func (a *auth) Response(resp *http.Response) error {
|
||||
if a.parentAuth == nil {
|
||||
return nil
|
||||
}
|
||||
return a.parentAuth.Response(resp)
|
||||
}
|
||||
|
||||
// The public storage URL - set Internal to true to read
|
||||
// internal/service net URL
|
||||
func (a *auth) StorageUrl(Internal bool) string {
|
||||
if a.storageURL != "" {
|
||||
return a.storageURL
|
||||
}
|
||||
if a.parentAuth == nil {
|
||||
return ""
|
||||
}
|
||||
return a.parentAuth.StorageUrl(Internal)
|
||||
}
|
||||
|
||||
// The access token
|
||||
func (a *auth) Token() string {
|
||||
if a.authToken != "" {
|
||||
return a.authToken
|
||||
}
|
||||
if a.parentAuth == nil {
|
||||
return ""
|
||||
}
|
||||
return a.parentAuth.Token()
|
||||
}
|
||||
|
||||
// The CDN url if available
|
||||
func (a *auth) CdnUrl() string {
|
||||
if a.parentAuth == nil {
|
||||
return ""
|
||||
}
|
||||
return a.parentAuth.CdnUrl()
|
||||
}
|
||||
|
||||
// Check the interfaces are satisfied
|
||||
var _ swift.Authenticator = (*auth)(nil)
|
Loading…
Add table
Add a link
Reference in a new issue