mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
35 lines
699 B
Go
35 lines
699 B
Go
package runner
|
|
|
|
import (
|
|
"os/exec"
|
|
|
|
"github.com/filebrowser/filebrowser/v2/settings"
|
|
"github.com/caddyserver/caddy"
|
|
)
|
|
|
|
// ParseCommand parses the command taking in account if the current
|
|
// instance uses a shell to run the commands or just calls the binary
|
|
// directyly.
|
|
func ParseCommand(s *settings.Settings, raw string) ([]string, error) {
|
|
command := []string{}
|
|
|
|
if len(s.Shell) == 0 {
|
|
cmd, args, err := caddy.SplitCommandAndArgs(raw)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
_, err = exec.LookPath(cmd)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
command = append(command, cmd)
|
|
command = append(command, args...)
|
|
} else {
|
|
command = append(s.Shell, raw)
|
|
}
|
|
|
|
return command, nil
|
|
}
|