Skip to content

Commit 2a057b5

Browse files
authored
Merge branch 'master' into add-regsitry-utils
Signed-off-by: Lee Calcote <[email protected]>
2 parents 46b10e8 + dc539c0 commit 2a057b5

File tree

4 files changed

+79
-13
lines changed

4 files changed

+79
-13
lines changed

files/error.go

+59
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package files
33
import (
44
"fmt"
55
"maps"
6+
"path/filepath"
67
"slices"
78
"strings"
89

@@ -104,12 +105,14 @@ func ErrInvalidYaml(fileName string, err error) error {
104105
probableCause := []string{
105106
"The YAML file may contain syntax errors, such as incorrect indentation, missing colons, or invalid characters.",
106107
"The file may have been corrupted or improperly edited.",
108+
"The YAML does not conform to the Meshery model schema.",
107109
}
108110

109111
remedy := []string{
110112
"Review the YAML syntax in the file and correct any errors.",
111113
"Use a YAML validator or linter to identify and fix issues.",
112114
"Ensure the file adheres to the YAML specification.",
115+
"Ensure the YAML conforms to the Meshery model schema. You can refer to the following documentation for more details: https://docs.meshery.io/project/contributing/contributing-models",
113116
}
114117

115118
return errors.New(ErrInvalidYamlCode, errors.Critical, sdescription, ldescription, probableCause, remedy)
@@ -129,13 +132,15 @@ func ErrInvalidJson(fileName string, err error) error {
129132
"The JSON file may contain syntax errors, such as missing commas, curly braces, or square brackets.",
130133
"The file may have been corrupted or improperly edited.",
131134
"Special characters or escape sequences may not have been properly formatted.",
135+
"The JSON does not conform to the Meshery model schema.",
132136
}
133137

134138
remedy := []string{
135139
"Review the JSON syntax in the file and correct any errors.",
136140
"Use a JSON validator or linter to identify and fix issues.",
137141
"Ensure the file adheres to the JSON specification (e.g., double quotes for keys and strings).",
138142
"Check for common issues like trailing commas or unescaped special characters.",
143+
"Ensure the JSON conforms to the Meshery model schema. You can refer to the following documentation for more details: https://docs.meshery.io/project/contributing/contributing-models",
139144
}
140145

141146
return errors.New(ErrInvalidJsonCode, errors.Critical, sdescription, ldescription, probableCause, remedy)
@@ -354,3 +359,57 @@ func ErrWaklingLocalDirectory(err error) error {
354359
func ErrDecodePattern(err error) error {
355360
return errors.New(ErrDecodePatternCode, errors.Alert, []string{"Error failed to decode design data into go slice"}, []string{err.Error()}, []string{}, []string{})
356361
}
362+
363+
var (
364+
ErrInvalidModelCode = "meshkit-11301"
365+
ErrInvalidModelArchiveCode = "meshkit-11302"
366+
ErrEmptyModelCode = "meshkit-11303"
367+
)
368+
369+
func ErrInvalidModel(operation string, filename string, err error) error {
370+
// return error based on file extension
371+
fileExt := filepath.Ext(filename)
372+
373+
switch {
374+
case fileExt == ".json":
375+
return ErrInvalidJson(filename, err)
376+
case fileExt == ".yaml", fileExt == ".yml":
377+
return ErrInvalidYaml(filename, err)
378+
case strings.HasPrefix(fileExt, ".tar"), strings.HasPrefix(fileExt, ".tgz"), strings.HasPrefix(fileExt, ".tar.gz"):
379+
// check prefix as random numeric suffix is appended to archive during file handling (eg: .tar becomes .tar263831)
380+
return ErrInvalidModelArchive(filename, err)
381+
default:
382+
supportedExtensions := slices.Collect(maps.Keys(ValidIacExtensions))
383+
supportedExtensions = slices.DeleteFunc(supportedExtensions, func(ext string) bool {
384+
return ext == ".zip"
385+
})
386+
return ErrUnsupportedExtensionForOperation(operation, filename, fileExt, supportedExtensions)
387+
}
388+
}
389+
390+
func ErrInvalidModelArchive(fileName string, err error) error {
391+
sdescription := []string{
392+
fmt.Sprintf("Failed to extract the archive '%s'.", fileName),
393+
}
394+
395+
ldescription := []string{
396+
fmt.Sprintf("An error occurred while attempting to extract the TAR archive '%s'.", fileName),
397+
fmt.Sprintf("Error details: %s", err.Error()),
398+
}
399+
400+
probableCause := []string{
401+
"The archive may be non OCI compliant.",
402+
"The archive may have been created with a different tool or version that is incompatible.",
403+
}
404+
405+
remedy := []string{
406+
"Make sure the archive is OCI compliant. Meshery Models should be OCI compliant archive.",
407+
"Ensure the archive is created using a compatible tool (eg: ORAS) and version that follows OCI standards.",
408+
}
409+
410+
return errors.New(ErrInvalidModelArchiveCode, errors.Critical, sdescription, ldescription, probableCause, remedy)
411+
}
412+
413+
func ErrEmptyModel() error {
414+
return errors.New(ErrEmptyModelCode, errors.Alert, []string{"No component found in model provided."}, []string{"No component found in model provided. Models must have at least one component."}, []string{}, []string{})
415+
}

models/registration/dir.go

+14-12
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import (
99
"github.com/layer5io/meshkit/models/meshmodel/entity"
1010
"github.com/layer5io/meshkit/models/oci"
1111

12+
meshkitFileUtils "github.com/layer5io/meshkit/files"
1213
"github.com/layer5io/meshkit/utils"
1314

1415
"github.com/meshery/schemas/models/v1alpha3/relationship"
@@ -48,12 +49,7 @@ func (d Dir) PkgUnit(regErrStore RegistrationErrorStore) (_ PackagingUnit, err e
4849
// Process the path (file or directory)
4950
err = processDir(d.dirpath, &pkg, regErrStore)
5051
if err != nil {
51-
modelName := ""
52-
if !reflect.ValueOf(pkg.Model).IsZero() {
53-
modelName = pkg.Model.Name
54-
}
55-
regErrStore.InsertEntityRegError("", modelName, entity.EntityType("unknown"), filename, ErrDirPkgUnitParseFail(d.dirpath, fmt.Errorf("could not process the path: %w", err)))
56-
return pkg, ErrDirPkgUnitParseFail(d.dirpath, fmt.Errorf("could not process the path: %w", err))
52+
return pkg, err
5753
}
5854

5955
if reflect.ValueOf(pkg.Model).IsZero() {
@@ -105,6 +101,7 @@ func processDir(dirPath string, pkg *PackagingUnit, regErrStore RegistrationErro
105101
tempDirs = append(tempDirs, tempDir)
106102
err = oci.UnCompressOCIArtifact(path, tempDir)
107103
if err != nil {
104+
err := meshkitFileUtils.ErrUnCompressOCIArtifact(err)
108105
regErrStore.InsertEntityRegError("", "", entity.EntityType("unknown"), filepath.Base(path), err)
109106
regErrStore.AddInvalidDefinition(path, err)
110107
return nil
@@ -127,6 +124,7 @@ func processDir(dirPath string, pkg *PackagingUnit, regErrStore RegistrationErro
127124
}
128125
tempDirs = append(tempDirs, tempDir)
129126
if err := utils.ExtractFile(path, tempDir); err != nil {
127+
err := meshkitFileUtils.ErrFailedToExtractArchive(filepath.Base(path), err)
130128
regErrStore.InsertEntityRegError("", "", entity.EntityType("unknown"), filepath.Base(path), err)
131129
regErrStore.AddInvalidDefinition(path, err)
132130
return nil
@@ -139,16 +137,20 @@ func processDir(dirPath string, pkg *PackagingUnit, regErrStore RegistrationErro
139137
}
140138

141139
content := data
142-
content, err = utils.YAMLToJSON(content)
143-
if err != nil {
144-
regErrStore.InsertEntityRegError("", "", entity.EntityType("unknown"), filepath.Base(path), err)
145-
return nil
140+
if utils.IsYaml(path) {
141+
content, err = utils.YAMLToJSON(content)
142+
if err != nil {
143+
regErrStore.InsertEntityRegError("", "", entity.EntityType("unknown"), filepath.Base(path), err)
144+
return nil
145+
}
146146
}
147+
147148
// Determine the entity type
148149
entityType, err := utils.FindEntityType(content)
149150
if err != nil {
150-
regErrStore.InsertEntityRegError("", "", entity.EntityType("unknown"), filepath.Base(path), err)
151-
regErrStore.AddInvalidDefinition(path, err)
151+
errMsg := meshkitFileUtils.ErrInvalidModel("import", filepath.Base(path), err)
152+
regErrStore.InsertEntityRegError("", filepath.Base(path), entity.EntityType("unknown"), filepath.Base(path), errMsg)
153+
regErrStore.AddInvalidDefinition(path, errMsg)
152154
return nil
153155
}
154156

schemas/configuration/modelImport.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"file": {
2424
"type": "string",
2525
"format": "file",
26-
"description": "Browse the filter file from your file system",
26+
"description": "Browse the model file from your file system. Ensure it's an OCI artifact in .tar, .tar.gz, or .tgz format.",
2727
"x-rjsf-grid-area": "12"
2828
}
2929
},

schemas/configuration/uiSchemaModelImport.json

+5
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,10 @@
22
"uploadType": {
33
"ui:widget": "radio"
44
},
5+
6+
"url":{
7+
"ui:disabled": true
8+
},
9+
510
"ui:order": ["uploadType", "file", "url"]
611
}

0 commit comments

Comments
 (0)