Documentation ¶
Index ¶
- Constants
- Variables
- func Cast[K any](val interface{}) (K, error)
- func CombineErrors(errs []error, sep string) error
- func Contains[G []K, K comparable](slice G, ele K) bool
- func ConvertoCue(reader io.Reader) (cue.Value, error)
- func CreateDirectory(path string) error
- func CreateFile(contents []byte, filename string, location string) error
- func DownloadFile(filepath string, url string) error
- func ErrCloseFile(err error) error
- func ErrCompressToTarGZ(err error, path string) error
- func ErrCopyFile(err error) error
- func ErrCreateDir(err error, filepath string) error
- func ErrCreateFile(err error, filepath string) error
- func ErrCueLookup(err error) error
- func ErrDecodeYaml(err error) error
- func ErrExpectedTypeMismatch(err error, expectedType string) error
- func ErrExtractTarXZ(err error, path string) error
- func ErrExtractZip(err error, path string) error
- func ErrFileWalkDir(err error, path string) error
- func ErrGetBool(key string, err error) error
- func ErrGettingLatestReleaseTag(err error) error
- func ErrJsonSchemaToCue(err error) error
- func ErrJsonToCue(err error) error
- func ErrMarshal(err error) error
- func ErrMissingField(err error, missingFieldName string) error
- func ErrReadDir(err error, dirPath string) error
- func ErrReadFile(err error, filepath string) error
- func ErrReadingLocalFile(err error) error
- func ErrReadingRemoteFile(err error) error
- func ErrRelPath(err error, path string) error
- func ErrRemoteFileNotFound(url string) error
- func ErrTypeCast(err error) error
- func ErrUnmarshal(err error) error
- func ErrUnmarshalInvalid(err error, typ reflect.Type) error
- func ErrUnmarshalSyntax(err error, offset int64) error
- func ErrUnmarshalType(err error, value string) error
- func ErrUnmarshalUnsupportedType(err error, typ reflect.Type) error
- func ErrUnmarshalUnsupportedValue(err error, value reflect.Value) error
- func ErrWriteFile(err error, filepath string) error
- func ErrYamlToCue(err error) error
- func ExtractDomainFromURL(location string) string
- func ExtractTarGz(path, downloadfilePath string) error
- func ExtractZip(path, artifactPath string) error
- func Filepath() string
- func FindEntityType(content []byte) (entity.EntityType, error)
- func FormatName(input string) string
- func GetBool(key string) (bool, error)
- func GetHome() string
- func GetLatestReleaseTagsSorted(org string, repo string) ([]string, error)
- func GetNonConcreteFields(val cue.Value) []string
- func GetRandomAlphabetsOfDigit(length int) (s string)
- func Git() (version, commitHead string)
- func IsClosed[K any](ch chan K) bool
- func IsInterfaceNil(val interface{}) bool
- func IsSchemaEmpty(schema string) (valid bool)
- func IsTarGz(name string) bool
- func IsYaml(name string) bool
- func IsZip(name string) bool
- func JsonSchemaToCue(value string) (cue.Value, error)
- func JsonToCue(value []byte) (cue.Value, error)
- func Lookup(rootVal cue.Value, path string) (cue.Value, error)
- func Marshal(obj interface{}) (string, error)
- func MarshalAndUnmarshal[fromType any, toType any](val fromType) (unmarshalledvalue toType, err error)
- func MergeMaps(mergeInto, toMerge map[string]interface{}) map[string]interface{}
- func MergeToTemplate(tpl []byte, data interface{}) ([]byte, error)
- func NewSheetSRV(cred string) (*sheets.Service, error)
- func NewUUID() (string, error)
- func ProcessContent(filePath string, f func(path string) error) error
- func ReadFileSource(uri string) (string, error)
- func ReadLocalFile(location string) (string, error)
- func ReadRemoteFile(url string) (string, error)
- func ReplaceSpacesAndConvertToLowercase(s string) string
- func SortDottedStringsByDigits(s []string) []string
- func StrConcat(s ...string) string
- func TcpCheck(hp *HostPort, mock *MockOptions) bool
- func TransformMapKeys(input map[string]interface{}, transformFunc func(string) string) map[string]interface{}
- func Unmarshal(obj string, result interface{}) errordeprecated
- func UpdateSVGString(svgStr string, width, height int, skipHeader bool) (string, error)
- func Validate(schema cue.Value, value cue.Value) (bool, []errors.Error)
- func WriteJSONToFile[K any](outputPath string, data K) error
- func WriteToFile(path string, content string) error
- func WriteYamlToFile[K any](outputPath string, data K) error
- func YamlToCue(value string) (cue.Value, error)
- type Endpoint
- type HostPort
- type MockOptions
- type TarWriter
Constants ¶
const XMLTAG = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><!DOCTYPE svg>"
Variables ¶
var ( ErrUnmarshalCode = "meshkit-11159" ErrUnmarshalInvalidCode = "meshkit-11160" ErrUnmarshalSyntaxCode = "meshkit-11161" ErrUnmarshalTypeCode = "meshkit-11162" ErrUnmarshalUnsupportedTypeCode = "meshkit-11163" ErrUnmarshalUnsupportedValueCode = "meshkit-11164" ErrMarshalCode = "meshkit-11165" ErrGetBoolCode = "meshkit-11166" ErrInvalidProtocolCode = "meshkit-11167" ErrRemoteFileNotFoundCode = "meshkit-11168" ErrReadingRemoteFileCode = "meshkit-11169" ErrReadingLocalFileCode = "meshkit-11170" ErrReadFileCode = "meshkit-11171" ErrWriteFileCode = "meshkit-11172" ErrGettingLatestReleaseTagCode = "meshkit-11173" ErrInvalidProtocol = errors.New(ErrInvalidProtocolCode, errors.Alert, []string{"invalid protocol: only http, https and file are valid protocols"}, []string{}, []string{"Network protocol is incorrect"}, []string{"Make sure to specify the right network protocol"}) ErrMissingFieldCode = "meshkit-11174" ErrExpectedTypeMismatchCode = "meshkit-11175" ErrJsonToCueCode = "meshkit-11176" ErrYamlToCueCode = "meshkit-11177" ErrJsonSchemaToCueCode = "meshkit-11178" ErrCueLookupCode = "meshkit-11179" ErrTypeCastCode = "meshkit-11180" ErrCreateFileCode = "meshkit-11181" ErrCreateDirCode = "meshkit-11182" // ErrDecodeYamlCode represents the error which is generated when yaml // decode process fails ErrDecodeYamlCode = "meshkit-11183" ErrExtractTarXZCode = "meshkit-11184" ErrExtractZipCode = "meshkit-11185" ErrReadDirCode = "meshkit-11186" ErrInvalidSchemaVersionCode = "replace_me" ErrFileWalkDirCode = "replace_me" ErrRelPathCode = "replace_me" ErrCopyFileCode = "replace_me" ErrCloseFileCode = "replace_me" ErrCompressToTarGZCode = "meshkit-11248" )
var ( ErrExtractType = errors.New( ErrUnmarshalTypeCode, errors.Alert, []string{"Invalid extraction type"}, []string{"The file type to be extracted is neither `tar.gz` nor `zip`."}, []string{"Invalid object format. The file is not of type `zip` or `tar.gz`."}, []string{"Make sure to check that the file type is `zip` or `tar.gz`."}, ) ErrInvalidSchemaVersion = errors.New( ErrInvalidSchemaVersionCode, errors.Alert, []string{"Invalid schema version"}, []string{"The `schemaVersion` key is either empty or has an incorrect value."}, []string{"The schema is not of type 'relationship', 'component', 'model' , 'policy'."}, []string{"Verify that `schemaVersion` key should be either `relationships.meshery.io`, `component.meshery.io`, `model.meshery.io` or `policy.meshery.io`."}, ) )
var (
GoogleSpreadSheetURL = "https://docs.google.com/spreadsheets/d/"
)
Functions ¶
func CombineErrors ¶ added in v0.7.12
combineErrors merges a slice of error into one error separated by the given separator
func Contains ¶ added in v0.6.56
func Contains[G []K, K comparable](slice G, ele K) bool
func CreateDirectory ¶ added in v0.7.12
func CreateFile ¶ added in v0.1.22
CreateFile creates a file with the given content on the given location with the given filename
func DownloadFile ¶
func ErrCloseFile ¶ added in v0.7.47
func ErrCompressToTarGZ ¶ added in v0.7.30
ErrCompressTar is the error for zipping a file into targz
func ErrCopyFile ¶ added in v0.7.47
func ErrCreateDir ¶ added in v0.7.12
func ErrCreateFile ¶ added in v0.7.12
func ErrCueLookup ¶ added in v0.5.38
func ErrDecodeYaml ¶ added in v0.7.12
ErrDecodeYaml is the error when the yaml unmarshal fails
func ErrExpectedTypeMismatch ¶ added in v0.5.22
func ErrExtractTarXZ ¶ added in v0.7.12
ErrExtractTarXVZ is the error for unzipping the targz file
func ErrExtractZip ¶ added in v0.7.12
ErrExtractZip is the error for unzipping the zip file
func ErrFileWalkDir ¶ added in v0.7.47
func ErrGetBool ¶
func ErrGettingLatestReleaseTag ¶ added in v0.2.35
func ErrJsonSchemaToCue ¶ added in v0.5.33
func ErrJsonToCue ¶ added in v0.5.29
func ErrMarshal ¶
func ErrMissingField ¶ added in v0.5.22
func ErrReadDir ¶ added in v0.7.12
func ErrReadFile ¶ added in v0.7.3
func ErrReadingLocalFile ¶ added in v0.1.31
func ErrReadingRemoteFile ¶ added in v0.1.31
func ErrRelPath ¶ added in v0.7.47
func ErrRemoteFileNotFound ¶ added in v0.1.31
func ErrTypeCast ¶ added in v0.6.88
func ErrUnmarshal ¶
func ErrUnmarshalInvalid ¶ added in v0.1.25
func ErrUnmarshalSyntax ¶ added in v0.1.25
func ErrUnmarshalType ¶ added in v0.1.25
func ErrUnmarshalUnsupportedType ¶ added in v0.1.25
func ErrUnmarshalUnsupportedValue ¶ added in v0.1.25
func ErrWriteFile ¶ added in v0.7.12
func ErrYamlToCue ¶ added in v0.5.29
func ExtractDomainFromURL ¶ added in v0.7.15
func ExtractTarGz ¶ added in v0.7.12
func ExtractZip ¶ added in v0.7.12
func FindEntityType ¶ added in v0.7.47
func FindEntityType(content []byte) (entity.EntityType, error)
func FormatName ¶ added in v0.7.10
FormatName formats the given string to by replacing " " with "-"
func GetLatestReleaseTagsSorted ¶ added in v0.2.36
Gets the latest stable release tags from github for a given org name and repo name(in that org) in sorted order
func GetNonConcreteFields ¶ added in v0.5.35
func GetRandomAlphabetsOfDigit ¶ added in v0.7.12
func Git ¶
func Git() (version, commitHead string)
git method which allows fetch the git HEAD tag version and commit number
func IsInterfaceNil ¶ added in v0.7.18
func IsInterfaceNil(val interface{}) bool
func IsSchemaEmpty ¶ added in v0.7.26
func MarshalAndUnmarshal ¶ added in v0.6.88
func MergeToTemplate ¶ added in v0.1.28
MergeToTemplate merges data into the template tpl and returns the result.
func NewSheetSRV ¶ added in v0.7.10
func ProcessContent ¶ added in v0.7.12
func ReadFileSource ¶ added in v0.1.31
ReadFileSource supports "http", "https" and "file" protocols. it takes in the location as a uri and returns the contents of file as a string.
func ReadLocalFile ¶ added in v0.1.31
ReadLocalFile takes in the location of a local file in the format `file://location/of/file` and returns the content of the file if the path is valid and no error occurs
func ReadRemoteFile ¶ added in v0.1.24
ReadRemoteFile takes in the location of a remote file in the format 'http://location/of/file' or 'https://location/file' and returns the content of the file if the location is valid and no error occurs
func ReplaceSpacesAndConvertToLowercase ¶ added in v0.7.14
func SortDottedStringsByDigits ¶ added in v0.2.36
SortDottedStringsByDigits takes version-like dot separated digits in string format and returns them in sorted normalized form. Takes [v1.4.3,0.9.3,v0.0.0]=> returns [v0.0.0,0.9.3,v1.4.3] This function ignores all letters except for: - numeric digits - alpha, beta, rc, stable For the same version, stable is preferred over edge
func TcpCheck ¶
func TcpCheck(hp *HostPort, mock *MockOptions) bool
func TransformMapKeys ¶ added in v0.5.36
func TransformMapKeys(input map[string]interface{}, transformFunc func(string) string) map[string]interface{}
transforms the keys of a Map recursively with the given transform function
func UpdateSVGString ¶ added in v0.7.13
UpdateSVGString updates the width and height attributes of an SVG file and returns the modified SVG as a string.
func WriteJSONToFile ¶ added in v0.7.12
func WriteToFile ¶ added in v0.7.10
WriteToFile writes the given content to the given file path
func WriteYamlToFile ¶ added in v0.7.44
Types ¶
type MockOptions ¶ added in v0.2.7
type MockOptions struct {
DesiredEndpoint string
}
type TarWriter ¶ added in v0.7.30
func NewTarWriter ¶ added in v0.7.30
func NewTarWriter() *TarWriter