-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.go
40 lines (31 loc) · 840 Bytes
/
parser.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package src
import (
"os"
"github.com/rs/zerolog/log"
yaml "gopkg.in/yaml.v2"
)
type RootFSManifest struct {
Image string `yaml:"image"`
TargetDirectory string `yaml:"target_directory"`
RootFsRegistry string `yaml:"rootfs_registry"`
Context string `yaml:"context"`
DockerfilePath string `yaml:"docker_file"`
}
type Parser interface {
ParseYamlFile(configFile string) (RootFSManifest, error)
}
type ParseHandler struct{}
func (parser *ParseHandler) ParseYamlFile(configFile string) (RootFSManifest, error) {
var config RootFSManifest
data, err := os.ReadFile(configFile)
if err != nil {
log.Err(err).Msg("Error reading YAML file:")
return config, err
}
err = yaml.Unmarshal(data, &config)
if err != nil {
log.Err(err).Msg("Error parsing YAML:")
return config, err
}
return config, nil
}