mirror of
https://github.com/dunglas/frankenphp.git
synced 2025-12-24 13:38:11 +08:00
44 lines
1.0 KiB
Go
44 lines
1.0 KiB
Go
package caddy
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
caddycmd "github.com/caddyserver/caddy/v2/cmd"
|
|
"github.com/dunglas/frankenphp"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
caddycmd.RegisterCommand(caddycmd.Command{
|
|
Name: "php-cli",
|
|
Usage: "script.php [args ...]",
|
|
Short: "Runs a PHP command",
|
|
Long: `
|
|
Executes a PHP script similarly to the CLI SAPI.`,
|
|
CobraFunc: func(cmd *cobra.Command) {
|
|
cmd.DisableFlagParsing = true
|
|
cmd.RunE = caddycmd.WrapCommandFuncForCobra(cmdPHPCLI)
|
|
},
|
|
})
|
|
}
|
|
|
|
func cmdPHPCLI(fs caddycmd.Flags) (int, error) {
|
|
// php's cli sapi expects the 0th arg to be the program itself, only filter out 'php-cli' arg
|
|
args := append([]string{os.Args[0]}, os.Args[2:]...)
|
|
|
|
if frankenphp.EmbeddedAppPath != "" && len(args) > 1 && !strings.HasPrefix(args[1], "-") && strings.HasSuffix(args[1], ".php") {
|
|
if _, err := os.Stat(args[1]); err != nil {
|
|
args[1] = filepath.Join(frankenphp.EmbeddedAppPath, args[1])
|
|
}
|
|
}
|
|
|
|
status := frankenphp.ExecuteScriptCLI(args)
|
|
|
|
os.Exit(status)
|
|
|
|
return status, nil
|
|
}
|