-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.go
43 lines (34 loc) · 981 Bytes
/
config.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
42
43
// Copyright © 2022 Ory Corp
// SPDX-License-Identifier: Apache-2.0
package spec
import (
"bytes"
_ "embed"
"io"
"github.com/gofrs/uuid"
"github.com/pkg/errors"
"github.com/tidwall/gjson"
"github.com/ory/x/logrusx"
"github.com/ory/x/otelx"
)
//go:embed config.json
var ConfigValidationSchema []byte
var ConfigSchemaID string
func init() {
ConfigSchemaID = gjson.GetBytes(ConfigValidationSchema, "$id").String()
if ConfigSchemaID == "" {
ConfigSchemaID = uuid.Must(uuid.NewV4()).String() + ".json"
}
}
// AddConfigSchema should be used instead of the schema itself to auto-register the dependencies schemas.
func AddConfigSchema(compiler interface {
AddResource(url string, r io.Reader) error
}) error {
if err := otelx.AddConfigSchema(compiler); err != nil {
return err
}
if err := logrusx.AddConfigSchema(compiler); err != nil {
return err
}
return errors.WithStack(compiler.AddResource(ConfigSchemaID, bytes.NewReader(ConfigValidationSchema)))
}