mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 19:44:21 +00:00
41ae35f2ef
# Which Problems Are Solved Added functionality that user with a userschema can be created and removed. # How the Problems Are Solved Added logic and moved APIs so that everything is API v3 conform. # Additional Changes - move of user and userschema API to resources folder - changed testing and parameters - some renaming # Additional Context closes #7308 --------- Co-authored-by: Elio Bischof <elio@zitadel.com>
42 lines
1004 B
Go
42 lines
1004 B
Go
package schema
|
|
|
|
import (
|
|
_ "embed"
|
|
"io"
|
|
"strings"
|
|
|
|
"github.com/santhosh-tekuri/jsonschema/v5"
|
|
|
|
"github.com/zitadel/zitadel/internal/zerrors"
|
|
)
|
|
|
|
var (
|
|
//go:embed zitadel.schema.v1.json
|
|
zitadelJSON string
|
|
)
|
|
|
|
const (
|
|
MetaSchemaID = "urn:zitadel:schema:v1"
|
|
)
|
|
|
|
func NewSchema(role Role, r io.Reader) (*jsonschema.Schema, error) {
|
|
c := jsonschema.NewCompiler()
|
|
if err := c.AddResource(PermissionSchemaID, strings.NewReader(permissionJSON)); err != nil {
|
|
return nil, err
|
|
}
|
|
if err := c.AddResource(MetaSchemaID, strings.NewReader(zitadelJSON)); err != nil {
|
|
return nil, err
|
|
}
|
|
c.RegisterExtension(PermissionSchemaID, permissionSchema, permissionExtension{
|
|
role,
|
|
})
|
|
if err := c.AddResource("schema.json", r); err != nil {
|
|
return nil, zerrors.ThrowInvalidArgument(err, "COMMA-Frh42", "Errors.UserSchema.Invalid")
|
|
}
|
|
schema, err := c.Compile("schema.json")
|
|
if err != nil {
|
|
return nil, zerrors.ThrowInvalidArgument(err, "COMMA-W21tg", "Errors.UserSchema.Invalid")
|
|
}
|
|
return schema, nil
|
|
}
|