361edeebc6
Move the old metadata-service datasource to url datasource. This new datasource checks for the existance of meta-data.json and if it doesn't exist, walks the meta-data directory to build a metadata blob.
30 lines
440 B
Go
30 lines
440 B
Go
package datasource
|
|
|
|
import (
|
|
"io/ioutil"
|
|
)
|
|
|
|
type localFile struct {
|
|
path string
|
|
}
|
|
|
|
func NewLocalFile(path string) *localFile {
|
|
return &localFile{path}
|
|
}
|
|
|
|
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"
|
|
}
|