2015-01-25 06:32:33 +03: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.
|
2014-10-18 02:36:22 +04:00
|
|
|
|
2014-07-31 00:56:36 +04:00
|
|
|
package url
|
2014-06-21 08:11:57 +04:00
|
|
|
|
2014-08-18 23:20:25 +04:00
|
|
|
import (
|
2015-11-09 11:24:52 +03:00
|
|
|
"github.com/coreos/coreos-cloudinit/datasource"
|
|
|
|
"github.com/coreos/coreos-cloudinit/pkg"
|
2014-08-18 23:20:25 +04:00
|
|
|
)
|
2014-06-21 08:11:57 +04:00
|
|
|
|
|
|
|
type remoteFile struct {
|
|
|
|
url string
|
|
|
|
}
|
|
|
|
|
2014-07-31 00:56:36 +04:00
|
|
|
func NewDatasource(url string) *remoteFile {
|
2014-06-21 08:11:57 +04:00
|
|
|
return &remoteFile{url}
|
|
|
|
}
|
|
|
|
|
2014-06-27 02:17:53 +04:00
|
|
|
func (f *remoteFile) IsAvailable() bool {
|
|
|
|
client := pkg.NewHttpClient()
|
|
|
|
_, err := client.Get(f.url)
|
|
|
|
return (err == nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *remoteFile) AvailabilityChanges() bool {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2014-06-21 08:11:57 +04:00
|
|
|
func (f *remoteFile) ConfigRoot() string {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2015-01-23 04:35:39 +03:00
|
|
|
func (f *remoteFile) FetchMetadata() (datasource.Metadata, error) {
|
|
|
|
return datasource.Metadata{}, nil
|
2014-06-21 08:11:57 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f *remoteFile) FetchUserdata() ([]byte, error) {
|
|
|
|
client := pkg.NewHttpClient()
|
2014-06-27 01:58:32 +04:00
|
|
|
return client.GetRetry(f.url)
|
2014-06-21 08:11:57 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f *remoteFile) Type() string {
|
|
|
|
return "url"
|
|
|
|
}
|