Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
245 changes: 245 additions & 0 deletions internal/command/spec.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,245 @@
package command

import (
"fmt"
"net/url"
"slices"
"strconv"

clierrors "github.com/heygen-com/heygen-cli/internal/errors"
"github.com/spf13/cobra"
)

// Spec is the generated, immutable definition of a CLI command.
// Codegen produces these from the OpenAPI spec. The builder converts
// them into Cobra commands; the executor reads the HTTP identity and
// behavioral fields when executing a request.
//
// Example (generated):
//
// var VideoList = &command.Spec{
// Group: "video", Name: "list", Summary: "List videos",
// Endpoint: "/v3/videos", Method: "GET",
// TokenField: "next_token", DataField: "data",
// Flags: []command.FlagSpec{{Name: "limit", Type: "int", Source: "query", JSONName: "limit"}},
// }
type Spec struct {
// CLI presentation (used by builder, ignored by executor)
Group string // parent command group ("video")
Name string // subcommand name ("list")
Summary string // cobra.Command.Short
Description string // cobra.Command.Long
Args []ArgSpec // positional arguments
Flags []FlagSpec // CLI flags (from query params + body fields)
Examples []string // usage examples shown in --help; mandatory for every command

// HTTP identity (used by executor)
Endpoint string // "/v3/videos/{video_id}" — template with placeholders
Method string // "GET", "POST", "PUT", "PATCH", "DELETE"
BodyEncoding string // "json", "multipart", or "" (no body). Builder adds -d/--data when "json".

// Execution behavior (used by executor)
TokenField string // non-empty → paginated; response field with next cursor
DataField string // response field containing the result array (e.g., "data")
PollConfig *PollConfig // non-nil → pollable; defines polling behavior for --wait (future)
Destructive bool // triggers --force confirmation prompt (future)
Columns []Column // TUI table column definitions (future)
}

// ArgSpec defines a positional argument and where its value is routed.
//
// Unlike FlagSpec (which always maps to --name value), positional args
// have no flag prefix — their meaning comes from position. Target determines
// the destination:
//
// - "path": URL template substitution. heygen video get <video-id> → PathParams["video_id"] = "abc123"
// - "body": JSON body field. heygen voice speech <text> → Body["text"] = "Hello"
// - "file": Multipart file upload path. heygen asset upload <file> → FilePath = "./video.mp4"
type ArgSpec struct {
Comment thread
somanshreddy marked this conversation as resolved.
Name string // display name, kebab-case ("video-id")
Target string // "path", "body", or "file"
Param string // target key: path template var ("video_id") or body field name ("prompt")
Help string
}

// FlagSpec defines a named CLI flag (--name value). Source determines
// whether the resolved value becomes a query parameter or a JSON body field.
//
// FlagSpec differs from ArgSpec in that flags are named and optional by default,
// while positional args are unnamed and required. Flags map to query params or
// body fields; args map to path params, body fields, or file paths.
//
// Example:
//
// FlagSpec{Name: "limit", Type: "int", Source: "query", JSONName: "limit"}
// → user passes --limit 10 → inv.QueryParams["limit"] = "10"
//
// FlagSpec{Name: "title", Type: "string", Source: "body", JSONName: "title"}
// → user passes --title "Hello" → inv.Body["title"] = "Hello"
type FlagSpec struct {
Comment thread
somanshreddy marked this conversation as resolved.
Name string // kebab-case ("folder-id")
Type string // "string", "int", "bool", "float64", "string-slice"
Default string // default value as string
Help string // from OpenAPI description
Required bool // from OpenAPI required
Enum []string // from OpenAPI enum (empty = any value)
Min *int // from OpenAPI minimum (nil if not defined)
Max *int // from OpenAPI maximum (nil if not defined)
Source string // "query" or "body"
JSONName string // original API parameter/field name ("folder_id")
}

// PollConfig defines how --wait polling works for async commands (future).
// Will be implemented alongside Track B (polling framework).
type PollConfig struct {

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TODO: Will work on this in a future PR. Will have a better idea of the data structures then

StatusEndpoint string // GET endpoint to check status
StatusField string // JSON field containing status (e.g., "status")
TerminalOK []string // success states: ["completed"]
TerminalFail []string // failure states: ["failed", "error"]
IDField string // field in create response containing the resource ID
}

// Column defines a TUI table column for --human output (future).
// Will be implemented alongside M3 (TUI formatting).
type Column struct {

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Future work

Header string // table column header ("Status")
Field string // JSON field path, supports dot notation ("avatar.name")
Width int // optional fixed width (0 = auto-size)
}

// Invocation holds the per-invocation resolved values — what the user
// actually provided. Built fresh by the builder each time a command runs.
type Invocation struct {
PathParams map[string]string // resolved path parameters
QueryParams url.Values // resolved query parameters (stdlib type, handles repeated keys)
Body map[string]any // merged from flags + -d/--data; nil means no body sent
FilePath string // local file path for multipart upload
}

// BuildInvocation resolves positional args and flags from a Cobra command
// into an Invocation. The merge order is:
// 1. -d/--data (base, if provided)
// 2. Positional body args overlay
// 3. Flag body values overlay (flag wins over -d/--data)
//
// -d/--data is the escape hatch for complex request bodies that can't be
// expressed as CLI flags (discriminated unions, nested objects, arrays of
// objects). It accepts inline JSON, a file path, or stdin. When used with
// individual flags, the flags overlay specific fields on top of the JSON base.
// This enables reusable JSON templates with per-invocation flag tweaks.
func (s *Spec) BuildInvocation(cmd *cobra.Command, args []string, data map[string]any) (*Invocation, error) {
inv := &Invocation{
PathParams: make(map[string]string),
QueryParams: make(url.Values),
}

// Step 1: -d/--data as base (if provided)
if data != nil {
inv.Body = data
}

// Step 2: Positional args — routed by ArgSpec.Target
for i, arg := range s.Args {
if i >= len(args) {
break
}
switch arg.Target {
case "path":
inv.PathParams[arg.Param] = args[i]
case "body":
if inv.Body == nil {
inv.Body = make(map[string]any)
}
inv.Body[arg.Param] = args[i]
case "file":
inv.FilePath = args[i]
}
}

// Step 3: Flags — only if explicitly set by the user
for _, flag := range s.Flags {
if !cmd.Flags().Changed(flag.Name) {
continue
}

if err := validateFlag(cmd, flag); err != nil {
return nil, err
}

switch flag.Source {
case "query":
inv.QueryParams.Add(flag.JSONName, getFlagAsString(cmd, flag))
case "body":
if inv.Body == nil {
inv.Body = make(map[string]any)
}
inv.Body[flag.JSONName] = getFlagValue(cmd, flag)
}
}

return inv, nil
}

// validateFlag checks enum membership and min/max bounds.
func validateFlag(cmd *cobra.Command, flag FlagSpec) error {
if len(flag.Enum) > 0 {
val, _ := cmd.Flags().GetString(flag.Name)
if !slices.Contains(flag.Enum, val) {
return clierrors.NewUsage(
fmt.Sprintf("--%s must be one of %v, got %q", flag.Name, flag.Enum, val))
}
}

if flag.Type == "int" && (flag.Min != nil || flag.Max != nil) {
val, _ := cmd.Flags().GetInt(flag.Name)
if flag.Min != nil && val < *flag.Min {
return clierrors.NewUsage(
fmt.Sprintf("--%s must be at least %d, got %d", flag.Name, *flag.Min, val))
}
if flag.Max != nil && val > *flag.Max {
return clierrors.NewUsage(
fmt.Sprintf("--%s must be at most %d, got %d", flag.Name, *flag.Max, val))
}
}

return nil
}

// getFlagAsString reads a flag value as a string for query params.
func getFlagAsString(cmd *cobra.Command, flag FlagSpec) string {
switch flag.Type {
case "int":
v, _ := cmd.Flags().GetInt(flag.Name)
return strconv.Itoa(v)
case "bool":
v, _ := cmd.Flags().GetBool(flag.Name)
return strconv.FormatBool(v)
case "float64":
v, _ := cmd.Flags().GetFloat64(flag.Name)
return strconv.FormatFloat(v, 'f', -1, 64)
default:
v, _ := cmd.Flags().GetString(flag.Name)
return v
}
}

// getFlagValue reads a flag value with its proper Go type for body fields.
func getFlagValue(cmd *cobra.Command, flag FlagSpec) any {
switch flag.Type {
case "int":
v, _ := cmd.Flags().GetInt(flag.Name)
return v
case "bool":
v, _ := cmd.Flags().GetBool(flag.Name)
return v
case "float64":
v, _ := cmd.Flags().GetFloat64(flag.Name)
return v
case "string-slice":
v, _ := cmd.Flags().GetStringSlice(flag.Name)
return v
default:
v, _ := cmd.Flags().GetString(flag.Name)
return v
}
}
Loading
Loading