-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschemas.go
41 lines (35 loc) · 1.24 KB
/
schemas.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
41
package main
import (
"encoding/json"
"os"
"path/filepath"
"github.com/invopop/jsonschema"
smd "github.com/openchami/node-orchestrator/internal/api/smd"
nodes "github.com/openchami/node-orchestrator/pkg/nodes"
"github.com/rs/zerolog/log"
)
func generateAndWriteSchemas(path string) {
schemas := map[string]interface{}{
"ComputeNode.json": &nodes.ComputeNode{},
"NetworkInterface.json": &nodes.NetworkInterface{},
"BMC.json": &nodes.BMC{},
"NodeCollection.json": &nodes.NodeCollection{},
"Component.json": &smd.Component{},
"RedfishEndpoint.json": &smd.RedfishEndpoint{},
}
if err := os.MkdirAll(path, 0755); err != nil {
log.Fatal().Err(err).Str("path", path).Msg("Failed to create schema directory")
}
for filename, model := range schemas {
schema := jsonschema.Reflect(model)
data, err := json.MarshalIndent(schema, "", " ")
if err != nil {
log.Fatal().Err(err).Str("filename", filename).Msg("Failed to generate JSON schema")
}
fullpath := filepath.Join(path, filename)
if err := os.WriteFile(fullpath, data, 0644); err != nil {
log.Fatal().Err(err).Str("filename", filename).Msg("Failed to write JSON schema to file")
}
log.Info().Str("fullpath", fullpath).Msg("Schema written")
}
}