glow/stash_cmd.go

92 lines
1.7 KiB
Go
Raw Normal View History

2020-04-23 22:05:38 +00:00
package main
import (
"fmt"
"io/ioutil"
"log"
"os"
"path"
"strings"
2020-04-23 22:05:38 +00:00
"github.com/charmbracelet/charm"
"github.com/charmbracelet/charm/ui/common"
"github.com/muesli/termenv"
2020-04-23 22:05:38 +00:00
"github.com/spf13/cobra"
)
var (
2020-08-24 12:53:55 +00:00
/*
identityFile string
forceKey bool
*/
memo string
2020-08-24 12:53:55 +00:00
stashCmd = &cobra.Command{
2020-04-23 22:05:38 +00:00
Use: "stash SOURCE",
Hidden: false,
Short: "stash a markdown",
Long: "",
Args: cobra.ExactArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
filePath := args[0]
if memo == "" {
memo = strings.Replace(path.Base(filePath), path.Ext(filePath), "", 1)
}
2020-04-23 22:05:38 +00:00
cc := initCharmClient()
f, err := os.Open(filePath)
2020-04-23 22:05:38 +00:00
if err != nil {
return fmt.Errorf("bad filename")
}
2020-04-23 22:05:38 +00:00
defer f.Close()
b, err := ioutil.ReadAll(f)
if err != nil {
return fmt.Errorf("error reading file")
}
_, err = cc.StashMarkdown(memo, string(b))
2020-04-23 22:05:38 +00:00
if err != nil {
return fmt.Errorf("error stashing markdown")
}
dot := termenv.String("•").Foreground(common.Green.Color()).String()
fmt.Println(dot + " Stashed!")
2020-04-23 22:05:38 +00:00
return nil
},
}
)
func getCharmConfig() *charm.Config {
cfg, err := charm.ConfigFromEnv()
if err != nil {
log.Fatal(err)
}
2020-08-24 12:53:55 +00:00
/*
if identityFile != "" {
cfg.SSHKeyPath = identityFile
cfg.ForceKey = true
}
if forceKey {
cfg.ForceKey = true
}
*/
2020-04-23 22:05:38 +00:00
return cfg
}
func initCharmClient() *charm.Client {
cfg := getCharmConfig()
cc, err := charm.NewClient(cfg)
if err == charm.ErrMissingSSHAuth {
log.Fatal("Missing ssh key. Run `ssh-keygen` to make one or set the `CHARM_SSH_KEY_PATH` env var to your private key path.")
} else if err != nil {
fmt.Println(err)
os.Exit(1)
}
return cc
}