1
0
mirror of https://github.com/rancher/os.git synced 2025-07-13 14:44:03 +00:00
os/config/cloudinit/datasource/metadata/metadata.go

87 lines
2.1 KiB
Go
Raw Normal View History

2015-02-19 20:46:06 +00:00
// Copyright 2015 CoreOS, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package metadata
import (
"fmt"
"net/http"
2015-02-19 20:46:06 +00:00
"strings"
"github.com/rancher/os/config/cloudinit/pkg"
"github.com/rancher/os/log"
2015-02-19 20:46:06 +00:00
)
type Service struct {
2015-02-19 20:46:06 +00:00
Root string
Client pkg.Getter
APIVersion string
2015-02-19 20:46:06 +00:00
UserdataPath string
MetadataPath string
lastError error
2015-02-19 20:46:06 +00:00
}
func NewDatasource(root, apiVersion, userdataPath, metadataPath string, header http.Header) Service {
2015-02-19 20:46:06 +00:00
if !strings.HasSuffix(root, "/") {
root += "/"
}
return Service{root, pkg.NewHTTPClientHeader(header), apiVersion, userdataPath, metadataPath, nil}
2015-02-19 20:46:06 +00:00
}
func (ms Service) IsAvailable() bool {
_, ms.lastError = ms.Client.Get(ms.Root + ms.APIVersion)
if ms.lastError != nil {
log.Errorf("%s: %s (lastError: %s)", "IsAvailable", ms.Root+":"+ms.UserdataPath, ms.lastError)
}
return (ms.lastError == nil)
}
func (ms *Service) Finish() error {
return nil
}
func (ms *Service) String() string {
return fmt.Sprintf("%s: %s (lastError: %s)", "metadata", ms.Root+ms.UserdataPath, ms.lastError)
2015-02-19 20:46:06 +00:00
}
func (ms Service) AvailabilityChanges() bool {
2015-02-19 20:46:06 +00:00
return true
}
func (ms Service) ConfigRoot() string {
2015-02-19 20:46:06 +00:00
return ms.Root
}
func (ms Service) FetchUserdata() ([]byte, error) {
return ms.FetchData(ms.UserdataURL())
2015-02-19 20:46:06 +00:00
}
func (ms Service) FetchData(url string) ([]byte, error) {
2015-02-19 20:46:06 +00:00
if data, err := ms.Client.GetRetry(url); err == nil {
return data, err
} else if _, ok := err.(pkg.ErrNotFound); ok {
return []byte{}, nil
} else {
return data, err
}
}
func (ms Service) MetadataURL() string {
2015-02-19 20:46:06 +00:00
return (ms.Root + ms.MetadataPath)
}
func (ms Service) UserdataURL() string {
2015-02-19 20:46:06 +00:00
return (ms.Root + ms.UserdataPath)
}