99 lines
2.6 KiB
Go
99 lines
2.6 KiB
Go
package zenutil
|
|
|
|
import (
|
|
"context"
|
|
"io/ioutil"
|
|
"os"
|
|
"os/exec"
|
|
"strings"
|
|
"syscall"
|
|
)
|
|
|
|
// Run is internal.
|
|
func Run(ctx context.Context, script string, data interface{}) ([]byte, error) {
|
|
var buf strings.Builder
|
|
|
|
err := scripts.ExecuteTemplate(&buf, script, data)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
script = buf.String()
|
|
if Command {
|
|
// Try to use syscall.Exec, fallback to exec.Command.
|
|
if path, err := exec.LookPath("osascript"); err != nil {
|
|
} else if t, err := ioutil.TempFile("", ""); err != nil {
|
|
} else if _, err := t.WriteString(script); err != nil {
|
|
} else if _, err := t.Seek(0, 0); err != nil {
|
|
} else if err := os.Remove(t.Name()); err != nil {
|
|
} else if err := syscall.Dup2(int(t.Fd()), syscall.Stdin); err != nil {
|
|
} else if err := os.Stderr.Close(); err != nil {
|
|
} else {
|
|
syscall.Exec(path, []string{"osascript", "-l", "JavaScript"}, nil)
|
|
}
|
|
}
|
|
|
|
if ctx != nil {
|
|
cmd := exec.CommandContext(ctx, "osascript", "-l", "JavaScript")
|
|
cmd.Stdin = strings.NewReader(script)
|
|
out, err := cmd.Output()
|
|
if ctx.Err() != nil {
|
|
err = ctx.Err()
|
|
}
|
|
return out, err
|
|
}
|
|
cmd := exec.Command("osascript", "-l", "JavaScript")
|
|
cmd.Stdin = strings.NewReader(script)
|
|
return cmd.Output()
|
|
}
|
|
|
|
// File is internal.
|
|
type File struct {
|
|
Operation string
|
|
Separator string
|
|
Options FileOptions
|
|
}
|
|
|
|
// FileOptions is internal.
|
|
type FileOptions struct {
|
|
Prompt *string `json:"withPrompt,omitempty"`
|
|
Type []string `json:"ofType,omitempty"`
|
|
Name string `json:"defaultName,omitempty"`
|
|
Location string `json:"defaultLocation,omitempty"`
|
|
Multiple bool `json:"multipleSelectionsAllowed,omitempty"`
|
|
Invisibles bool `json:"invisibles,omitempty"`
|
|
}
|
|
|
|
// Dialog is internal.
|
|
type Dialog struct {
|
|
Operation string
|
|
Text string
|
|
Extra *string
|
|
Options DialogOptions
|
|
}
|
|
|
|
// DialogOptions is internal.
|
|
type DialogOptions struct {
|
|
Message string `json:"message,omitempty"`
|
|
As string `json:"as,omitempty"`
|
|
Answer *string `json:"defaultAnswer,omitempty"`
|
|
Hidden bool `json:"hiddenAnswer,omitempty"`
|
|
Title *string `json:"withTitle,omitempty"`
|
|
Icon string `json:"withIcon,omitempty"`
|
|
Buttons []string `json:"buttons,omitempty"`
|
|
Cancel int `json:"cancelButton,omitempty"`
|
|
Default int `json:"defaultButton,omitempty"`
|
|
Timeout int `json:"givingUpAfter,omitempty"`
|
|
}
|
|
|
|
// Notify is internal.
|
|
type Notify struct {
|
|
Text string
|
|
Options NotifyOptions
|
|
}
|
|
|
|
// NotifyOptions is internal.
|
|
type NotifyOptions struct {
|
|
Title *string `json:"withTitle,omitempty"`
|
|
Subtitle string `json:"subtitle,omitempty"`
|
|
}
|