c089216cb5
If multiple sources are specified, the first available source is used.
40 lines
610 B
Go
40 lines
610 B
Go
package datasource
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
)
|
|
|
|
type localFile struct {
|
|
path string
|
|
}
|
|
|
|
func NewLocalFile(path string) *localFile {
|
|
return &localFile{path}
|
|
}
|
|
|
|
func (f *localFile) IsAvailable() bool {
|
|
_, err := os.Stat(f.path)
|
|
return !os.IsNotExist(err)
|
|
}
|
|
|
|
func (f *localFile) AvailabilityChanges() bool {
|
|
return true
|
|
}
|
|
|
|
func (f *localFile) ConfigRoot() string {
|
|
return ""
|
|
}
|
|
|
|
func (f *localFile) FetchMetadata() ([]byte, error) {
|
|
return []byte{}, nil
|
|
}
|
|
|
|
func (f *localFile) FetchUserdata() ([]byte, error) {
|
|
return ioutil.ReadFile(f.path)
|
|
}
|
|
|
|
func (f *localFile) Type() string {
|
|
return "local-file"
|
|
}
|