ghorg/cmd/examples.go
2024-09-27 17:23:35 -07:00

46 lines
1.1 KiB
Go

package cmd
import (
"embed"
"fmt"
gtm "github.com/MichaelMure/go-term-markdown"
"github.com/gabrie30/ghorg/colorlog"
"github.com/spf13/cobra"
)
var (
//go:embed examples-copy/*
examples embed.FS
)
var examplesCmd = &cobra.Command{
Use: "examples [github, gitlab, bitbucket, gitea]",
Short: "Documentation and examples for each SCM provider",
Long: `Get documentation and examples for each SCM provider in the terminal`,
Run: examplesFunc,
}
func examplesFunc(cmd *cobra.Command, argz []string) {
if len(argz) == 0 {
colorlog.PrintErrorAndExit("Please additionally provide a SCM provider: github, gitlab, bitbucket, or gitea")
}
// TODO: fix the examples-copy directory mess
filePath := fmt.Sprintf("examples-copy/%s.md", argz[0])
input := getFileContents(filePath)
result := gtm.Render(string(input), 80, 6)
fmt.Println(string(result))
}
func getFileContents(filepath string) []byte {
contents, err := examples.ReadFile(filepath)
if err != nil {
colorlog.PrintErrorAndExit("Only supported SCM providers are available for examples, please use one of the following: github, gitlab, bitbucket, or gitea")
}
return contents
}