fj/cmd/root.go

97 lines
2.4 KiB
Go
Raw Normal View History

2025-12-08 09:49:07 +01:00
package cmd
import (
"fmt"
"os"
2026-01-05 12:47:28 +01:00
"strings"
2025-12-08 09:49:07 +01:00
"forgejo.zerova.net/sid/fgj-sid/internal/git"
2025-12-08 09:49:07 +01:00
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
var cfgFile string
var jsonErrors bool
2025-12-08 09:49:07 +01:00
var rootCmd = &cobra.Command{
Use: "fgj",
Short: "Forgejo CLI tool - work seamlessly with Forgejo from the command line",
Long: `fgj is a command line tool for Forgejo instances (including Codeberg).
It brings pull requests, issues, and other Forgejo concepts to the terminal.`,
Version: "0.3.0c",
SilenceErrors: true,
}
// JSONErrors reports whether the --json-errors flag is set.
func JSONErrors() bool {
return jsonErrors
2025-12-08 09:49:07 +01:00
}
func Execute() error {
return rootCmd.Execute()
}
func init() {
cobra.OnInitialize(initConfig)
rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.config/fgj/config.yaml)")
rootCmd.PersistentFlags().BoolVar(&jsonErrors, "json-errors", false, "output errors as structured JSON to stderr")
2025-12-08 09:49:07 +01:00
rootCmd.PersistentFlags().String("hostname", "", "Forgejo instance hostname")
2025-12-08 10:00:50 +01:00
_ = viper.BindPFlag("hostname", rootCmd.PersistentFlags().Lookup("hostname"))
2025-12-08 09:49:07 +01:00
}
func initConfig() {
if cfgFile != "" {
viper.SetConfigFile(cfgFile)
} else {
home, err := os.UserHomeDir()
if err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
configDir := home + "/.config/fgj"
2025-12-08 10:00:50 +01:00
_ = os.MkdirAll(configDir, 0755)
2025-12-08 09:49:07 +01:00
viper.AddConfigPath(configDir)
viper.SetConfigType("yaml")
viper.SetConfigName("config")
}
viper.AutomaticEnv()
viper.SetEnvPrefix("FGJ")
2025-12-08 10:00:50 +01:00
_ = viper.ReadInConfig()
2025-12-08 09:49:07 +01:00
}
2026-01-05 12:47:28 +01:00
// parseRepo parses the repository string in the format "owner/name".
// If not provided, it attempts to auto-detect from the git repository.
func parseRepo(repo string) (string, string, error) {
// If repo flag is provided, use it
if repo != "" {
parts := strings.Split(repo, "/")
if len(parts) != 2 {
return "", "", fmt.Errorf("invalid repository format: %s (expected: owner/name)", repo)
}
return parts[0], parts[1], nil
}
// Try to auto-detect from git
owner, name, err := git.DetectRepo()
if err != nil {
return "", "", fmt.Errorf("repository flag is required (use -R owner/name) or run from a git repository: %w", err)
}
return owner, name, nil
}
// getDetectedHost attempts to auto-detect the Forgejo instance hostname.
// Returns empty string if detection fails, which will fall back to other methods.
func getDetectedHost() string {
host, err := git.DetectHost()
if err != nil {
return ""
}
return host
}