Skip to content

Commit

Permalink
feat: add dump command (#481)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrexox committed May 17, 2023
1 parent d3efe1f commit d999109
Show file tree
Hide file tree
Showing 7 changed files with 103 additions and 38 deletions.
20 changes: 20 additions & 0 deletions cmd/dump.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
package cmd

import (
"github.com/spf13/cobra"

"github.com/evilmartians/lefthook/internal/lefthook"
)

func newDumpCmd(opts *lefthook.Options) *cobra.Command {
dumpCmd := cobra.Command{
Use: "dump",
Short: "Prints config merged from all extensions",
Example: "lefthook dump",
Run: func(cmd *cobra.Command, hooks []string) {
lefthook.Dump(opts)
},
}

return &dumpCmd
}
1 change: 1 addition & 0 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ var commands = [...]func(*lefthook.Options) *cobra.Command{
newInstallCmd,
newUninstallCmd,
newRunCmd,
newDumpCmd,
}

func newRootCmd() *cobra.Command {
Expand Down
24 changes: 12 additions & 12 deletions internal/config/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@ import (
var errFilesIncompatible = errors.New("One of your runners contains incompatible file types")

type Command struct {
Run string `mapstructure:"run"`
Run string `mapstructure:"run" yaml:",omitempty"`

Skip interface{} `mapstructure:"skip"`
Only interface{} `mapstructure:"only"`
Tags []string `mapstructure:"tags"`
Glob string `mapstructure:"glob"`
Files string `mapstructure:"files"`
Env map[string]string `mapstructure:"env"`
Skip interface{} `mapstructure:"skip" yaml:",omitempty"`
Only interface{} `mapstructure:"only" yaml:",omitempty"`
Tags []string `mapstructure:"tags" yaml:",omitempty"`
Glob string `mapstructure:"glob" yaml:",omitempty"`
Files string `mapstructure:"files" yaml:",omitempty"`
Env map[string]string `mapstructure:"env" yaml:",omitempty"`

Root string `mapstructure:"root"`
Exclude string `mapstructure:"exclude"`
Root string `mapstructure:"root" yaml:",omitempty"`
Exclude string `mapstructure:"exclude" yaml:",omitempty"`

FailText string `mapstructure:"fail_text"`
Interactive bool `mapstructure:"interactive"`
StageFixed bool `mapstructure:"stage_fixed"`
FailText string `mapstructure:"fail_text" yaml:"fail_text,omitempty"`
Interactive bool `mapstructure:"interactive" yaml:",omitempty"`
StageFixed bool `mapstructure:"stage_fixed" yaml:"stage_fixed,omitempty"`
}

func (c Command) Validate() error {
Expand Down
35 changes: 27 additions & 8 deletions internal/config/config.go
Original file line number Diff line number Diff line change
@@ -1,23 +1,42 @@
package config

import (
"os"

"gopkg.in/yaml.v3"

"github.com/evilmartians/lefthook/internal/version"
)

const dumpIndent = 2

type Config struct {
Colors bool `mapstructure:"colors"`
Extends []string `mapstructure:"extends"`
Remote Remote `mapstructure:"remote"`
MinVersion string `mapstructure:"min_version"`
SkipOutput []string `mapstructure:"skip_output"`
SourceDir string `mapstructure:"source_dir"`
SourceDirLocal string `mapstructure:"source_dir_local"`
Rc string `mapstructure:"rc"`
NoTTY bool `mapstructure:"no_tty"`
Extends []string `mapstructure:"extends" yaml:",omitempty"`
Remote Remote `mapstructure:"remote" yaml:",omitempty"`
MinVersion string `mapstructure:"min_version" yaml:"min_version,omitempty"`
SkipOutput []string `mapstructure:"skip_output" yaml:"skip_output,omitempty"`
SourceDir string `mapstructure:"source_dir" yaml:"source_dir,omitempty"`
SourceDirLocal string `mapstructure:"source_dir_local" yaml:"source_dir_local,omitempty"`
Rc string `mapstructure:"rc" yaml:",omitempty"`
NoTTY bool `mapstructure:"no_tty" yaml:"no_tty,omitempty"`

Hooks map[string]*Hook
}

func (c *Config) Validate() error {
return version.CheckCovered(c.MinVersion)
}

func (c *Config) Dump() error {
encoder := yaml.NewEncoder(os.Stdout)
encoder.SetIndent(dumpIndent)
defer encoder.Close()

err := encoder.Encode(c)
if err != nil {
return err
}

return nil
}
20 changes: 10 additions & 10 deletions internal/config/hook.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,20 @@ type Hook struct {
// Should be unmarshalled with `mapstructure:"commands"`
// But replacing '{cmd}' is still an issue
// Unmarshaling it manually, so omit auto unmarshaling
Commands map[string]*Command `mapstructure:"?"`
Commands map[string]*Command `mapstructure:"?" yaml:",omitempty"`

// Should be unmarshalled with `mapstructure:"scripts"`
// But parsing keys with dots in it is still an issue: https://github.com/spf13/viper/issues/324
// Unmarshaling it manually, so omit auto unmarshaling
Scripts map[string]*Script `mapstructure:"?"`

Files string `mapstructure:"files"`
Parallel bool `mapstructure:"parallel"`
Piped bool `mapstructure:"piped"`
ExcludeTags []string `mapstructure:"exclude_tags"`
Skip interface{} `mapstructure:"skip"`
Only interface{} `mapstructure:"only"`
Follow bool `mapstructure:"follow"`
Scripts map[string]*Script `mapstructure:"?" yaml:",omitempty"`

Files string `mapstructure:"files" yaml:",omitempty"`
Parallel bool `mapstructure:"parallel" yaml:",omitempty"`
Piped bool `mapstructure:"piped" yaml:",omitempty"`
ExcludeTags []string `mapstructure:"exclude_tags" yaml:"exclude_tags,omitempty"`
Skip interface{} `mapstructure:"skip" yaml:",omitempty"`
Only interface{} `mapstructure:"only" yaml:",omitempty"`
Follow bool `mapstructure:"follow" yaml:",omitempty"`
}

func (h *Hook) Validate() error {
Expand Down
16 changes: 8 additions & 8 deletions internal/config/script.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ import (
)

type Script struct {
Runner string `mapstructure:"runner"`
Runner string `mapstructure:"runner" yaml:",omitempty"`

Skip interface{} `mapstructure:"skip"`
Only interface{} `mapstructure:"only"`
Tags []string `mapstructure:"tags"`
Env map[string]string `mapstructure:"env"`
Skip interface{} `mapstructure:"skip" yaml:",omitempty"`
Only interface{} `mapstructure:"only" yaml:",omitempty"`
Tags []string `mapstructure:"tags" yaml:",omitempty"`
Env map[string]string `mapstructure:"env" yaml:",omitempty"`

FailText string `mapstructure:"fail_text"`
Interactive bool `mapstructure:"interactive"`
StageFixed bool `mapstructure:"stage_fixed"`
FailText string `mapstructure:"fail_text" yaml:"fail_text,omitempty"`
Interactive bool `mapstructure:"interactive" yaml:",omitempty"`
StageFixed bool `mapstructure:"stage_fixed" yaml:"stage_fixed,omitempty"`
}

func (s Script) DoSkip(gitState git.State) bool {
Expand Down
25 changes: 25 additions & 0 deletions internal/lefthook/dump.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
package lefthook

import (
"github.com/evilmartians/lefthook/internal/config"
"github.com/evilmartians/lefthook/internal/log"
)

func Dump(opts *Options) {
lefthook, err := initialize(opts)
if err != nil {
log.Errorf("couldn't initialize lefthook: %s\n", err)
return
}

cfg, err := config.Load(lefthook.Fs, lefthook.repo)
if err != nil {
log.Errorf("couldn't load config: %s\n", err)
return
}

if err := cfg.Dump(); err != nil {
log.Errorf("couldn't dump config: %s\n", err)
return
}
}

0 comments on commit d999109

Please sign in to comment.