You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.5 KiB
Go
89 lines
2.5 KiB
Go
/*
|
|
Copyright © 2023 NAME HERE <EMAIL ADDRESS>
|
|
*/
|
|
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
"io/fs"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/santhosh-tekuri/jsonschema/v5"
|
|
_ "github.com/santhosh-tekuri/jsonschema/v5/httploader"
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
|
|
"code.ndumas.com/ndumas/obsidian-pipeline"
|
|
)
|
|
|
|
// rootCmd represents the base command when called without any subcommands
|
|
var validateCmd = &cobra.Command{
|
|
Use: "validate",
|
|
Short: "loads a note and ensures its frontmatter follows the provided protobuf schema",
|
|
Long: `Validate YAML frontmatter with jsonschema
|
|
`,
|
|
// Uncomment the following line if your bare application
|
|
// has an action associated with it:
|
|
PreRunE: func(cmd *cobra.Command, args []string) error {
|
|
target := cmd.Flag("target").Value.String()
|
|
if len(target) == 0 {
|
|
return fmt.Errorf("Please profide a target filename")
|
|
}
|
|
root := os.DirFS(target)
|
|
_, err := root.Open(".")
|
|
if err != nil {
|
|
return fmt.Errorf("cannot open provided vault root %q: %w", target, err)
|
|
}
|
|
return nil
|
|
},
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
schema := viper.GetString("schema")
|
|
target := viper.GetString("target")
|
|
root := os.DirFS(target)
|
|
|
|
err := fs.WalkDir(root, ".", func(path string, d fs.DirEntry, err error) error {
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if d.IsDir() {
|
|
return nil
|
|
}
|
|
|
|
absPath, err := filepath.Abs(filepath.Join(target, path))
|
|
if err != nil {
|
|
return fmt.Errorf("error generating absolute path for %q", target)
|
|
}
|
|
target, err := os.Open(absPath)
|
|
if err != nil {
|
|
return fmt.Errorf("could not open target file: %w", err)
|
|
}
|
|
defer target.Close()
|
|
err = obp.Validate(schema, target)
|
|
if err != nil {
|
|
details, ok := err.(*jsonschema.ValidationError)
|
|
if !ok {
|
|
return err
|
|
}
|
|
obp.PrettyDetails(cmd.OutOrStdout(), viper.GetString("format"), details.DetailedOutput(), absPath)
|
|
}
|
|
return nil
|
|
})
|
|
|
|
return err
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
// Cobra also supports local flags, which will only run
|
|
// when this action is called directly.
|
|
// rootCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
|
|
validateCmd.Flags().StringP("schema", "s", "base.schema", "path to protobuf file")
|
|
validateCmd.Flags().StringP("target", "t", "", "directory containing validation targets")
|
|
validateCmd.MarkFlagsRequiredTogether("schema", "target")
|
|
rootCmd.AddCommand(validateCmd)
|
|
viper.BindPFlag("schema", validateCmd.Flags().Lookup("schema"))
|
|
viper.BindPFlag("target", validateCmd.Flags().Lookup("target"))
|
|
}
|