- Add command groups (Getting Started, Search, Downloads, Daemon, System) - Add shell completion command (bash, zsh, fish, powershell) - Add flag completions for --type, --quality, --sort, --lang, --genre, --country, --method, --player - Improve Long descriptions and Examples for all commands - Split doctor disk check into platform-specific files (Unix/Windows) - Validate infoHash length before truncating (prevent panic) - Fix references to non-existent 'unarr daemon start' command - Move stats command to System & Diagnostics group - Rewrite README with complete documentation, correct config format (toml not yaml), all commands, shell completion section
44 lines
906 B
Go
44 lines
906 B
Go
package cmd
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/torrentclaw/torrentclaw-cli/internal/ui"
|
|
)
|
|
|
|
func newStatsCmd() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "stats",
|
|
Short: "Show catalog statistics",
|
|
Long: `Display aggregator statistics from the unarr catalog.
|
|
|
|
Shows total content count, torrent count, sources breakdown, and recent
|
|
ingestion activity. Useful for understanding the catalog coverage.`,
|
|
Example: ` unarr stats
|
|
unarr stats --json`,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
client := getClient()
|
|
|
|
resp, err := client.Stats(context.Background())
|
|
if err != nil {
|
|
return fmt.Errorf("failed to fetch stats: %w", err)
|
|
}
|
|
|
|
if jsonOut {
|
|
enc := json.NewEncoder(os.Stdout)
|
|
enc.SetIndent("", " ")
|
|
return enc.Encode(resp)
|
|
}
|
|
|
|
ui.PrintStats(resp)
|
|
return nil
|
|
},
|
|
}
|
|
|
|
return cmd
|
|
}
|