2014-10-18 02:36:22 +04:00
|
|
|
/*
|
|
|
|
Copyright 2014 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-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 (
|
|
|
|
"github.com/coreos/coreos-cloudinit/pkg"
|
|
|
|
)
|
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 ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *remoteFile) FetchMetadata() ([]byte, error) {
|
|
|
|
return []byte{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2014-08-18 23:20:25 +04:00
|
|
|
func (f *remoteFile) FetchNetworkConfig(filename string) ([]byte, error) {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2014-06-21 08:11:57 +04:00
|
|
|
func (f *remoteFile) Type() string {
|
|
|
|
return "url"
|
|
|
|
}
|