2020-10-26 16:21:23 +00:00
package main
import (
"errors"
"fmt"
"os"
2020-10-26 19:21:38 +00:00
"os/exec"
"path"
2020-10-26 16:21:23 +00:00
"github.com/charmbracelet/charm/ui/common"
2020-10-26 19:21:38 +00:00
gap "github.com/muesli/go-app-paths"
2020-10-26 16:21:23 +00:00
"github.com/spf13/cobra"
)
2020-10-26 19:21:38 +00:00
const defaultConfig = ` # style name or JSON path ( default "auto" )
style : "light"
# show local files only ; no network ( TUI - mode only )
local : true
# word - wrap at width
width : 80 `
2020-10-26 16:21:23 +00:00
var configCmd = & cobra . Command {
2020-10-26 19:21:38 +00:00
Use : "config" ,
Hidden : false ,
Short : "Edit the glow config file" ,
Long : formatBlock ( fmt . Sprintf ( "\n%s the glow config file. We’ ll use EDITOR to determine which editor to use. If the config file doesn't exist, it will be created." , common . Keyword ( "Edit" ) ) ) ,
Example : formatBlock ( "glow config\nglow config --config path/to/config.yml" ) ,
Args : cobra . NoArgs ,
2020-10-26 16:21:23 +00:00
RunE : func ( cmd * cobra . Command , args [ ] string ) error {
2020-10-26 20:02:09 +00:00
editor := os . Getenv ( "EDITOR" )
if editor == "" {
return errors . New ( "no EDITOR environment variable set" )
}
2020-10-26 19:21:38 +00:00
if configFile == "" {
scope := gap . NewScope ( gap . User , "glow" )
var err error
configFile , err = scope . ConfigPath ( "glow.yml" )
if err != nil {
return err
}
}
if ext := path . Ext ( configFile ) ; ext != ".yaml" && ext != ".yml" {
return fmt . Errorf ( "'%s' is not a supported config type: use '%s' or '%s'\n" , ext , ".yaml" , ".yml" )
}
if _ , err := os . Stat ( configFile ) ; os . IsNotExist ( err ) {
// File doesn't exist yet, create all necessary directories and
// write the default config file
if err := os . MkdirAll ( path . Dir ( configFile ) , 0700 ) ; err != nil {
return err
}
f , err := os . Create ( configFile )
if err != nil {
return err
}
defer f . Close ( )
if _ , err := f . WriteString ( defaultConfig ) ; err != nil {
return err
}
} else if err != nil { // some other error occurred
return err
}
c := exec . Command ( editor , configFile )
c . Stdin = os . Stdin
c . Stdout = os . Stdout
c . Stderr = os . Stderr
if err := c . Run ( ) ; err != nil {
return err
}
fmt . Println ( "Wrote config file to:" , configFile )
2020-10-26 16:21:23 +00:00
return nil
} ,
}