go/pkg/php/detect.go
Snider 96d394435a feat(php): implement Laravel development environment support
Add pkg/php for Laravel/PHP development:
- Auto-detect Laravel project and required services
- FrankenPHP/Octane, Vite, Horizon, Reverb, Redis orchestration
- mkcert SSL integration for local HTTPS
- Unified log streaming with colored service prefixes
- Graceful shutdown handling

CLI commands:
- core php dev - start all services
- core php logs - unified/per-service logs
- core php stop - stop all services
- core php status - show service status
- core php ssl - setup SSL certificates

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-28 19:14:06 +00:00

288 lines
6.8 KiB
Go

package php
import (
"bufio"
"encoding/json"
"os"
"path/filepath"
"strings"
)
// DetectedService represents a service that was detected in a Laravel project.
type DetectedService string
const (
ServiceFrankenPHP DetectedService = "frankenphp"
ServiceVite DetectedService = "vite"
ServiceHorizon DetectedService = "horizon"
ServiceReverb DetectedService = "reverb"
ServiceRedis DetectedService = "redis"
)
// IsLaravelProject checks if the given directory is a Laravel project.
// It looks for the presence of artisan file and laravel in composer.json.
func IsLaravelProject(dir string) bool {
// Check for artisan file
artisanPath := filepath.Join(dir, "artisan")
if _, err := os.Stat(artisanPath); os.IsNotExist(err) {
return false
}
// Check composer.json for laravel/framework
composerPath := filepath.Join(dir, "composer.json")
data, err := os.ReadFile(composerPath)
if err != nil {
return false
}
var composer struct {
Require map[string]string `json:"require"`
RequireDev map[string]string `json:"require-dev"`
}
if err := json.Unmarshal(data, &composer); err != nil {
return false
}
// Check for laravel/framework in require
if _, ok := composer.Require["laravel/framework"]; ok {
return true
}
// Also check require-dev (less common but possible)
if _, ok := composer.RequireDev["laravel/framework"]; ok {
return true
}
return false
}
// IsFrankenPHPProject checks if the project is configured for FrankenPHP.
// It looks for laravel/octane with frankenphp driver.
func IsFrankenPHPProject(dir string) bool {
// Check composer.json for laravel/octane
composerPath := filepath.Join(dir, "composer.json")
data, err := os.ReadFile(composerPath)
if err != nil {
return false
}
var composer struct {
Require map[string]string `json:"require"`
}
if err := json.Unmarshal(data, &composer); err != nil {
return false
}
if _, ok := composer.Require["laravel/octane"]; !ok {
return false
}
// Check octane config for frankenphp
configPath := filepath.Join(dir, "config", "octane.php")
if _, err := os.Stat(configPath); os.IsNotExist(err) {
// If no config exists but octane is installed, assume frankenphp
return true
}
configData, err := os.ReadFile(configPath)
if err != nil {
return true // Assume frankenphp if we can't read config
}
// Look for frankenphp in the config
return strings.Contains(string(configData), "frankenphp")
}
// DetectServices detects which services are needed based on project files.
func DetectServices(dir string) []DetectedService {
services := []DetectedService{}
// FrankenPHP/Octane is always needed for a Laravel dev environment
if IsFrankenPHPProject(dir) || IsLaravelProject(dir) {
services = append(services, ServiceFrankenPHP)
}
// Check for Vite
if hasVite(dir) {
services = append(services, ServiceVite)
}
// Check for Horizon
if hasHorizon(dir) {
services = append(services, ServiceHorizon)
}
// Check for Reverb
if hasReverb(dir) {
services = append(services, ServiceReverb)
}
// Check for Redis
if needsRedis(dir) {
services = append(services, ServiceRedis)
}
return services
}
// hasVite checks if the project uses Vite.
func hasVite(dir string) bool {
viteConfigs := []string{
"vite.config.js",
"vite.config.ts",
"vite.config.mjs",
"vite.config.mts",
}
for _, config := range viteConfigs {
if _, err := os.Stat(filepath.Join(dir, config)); err == nil {
return true
}
}
return false
}
// hasHorizon checks if Laravel Horizon is configured.
func hasHorizon(dir string) bool {
horizonConfig := filepath.Join(dir, "config", "horizon.php")
_, err := os.Stat(horizonConfig)
return err == nil
}
// hasReverb checks if Laravel Reverb is configured.
func hasReverb(dir string) bool {
reverbConfig := filepath.Join(dir, "config", "reverb.php")
_, err := os.Stat(reverbConfig)
return err == nil
}
// needsRedis checks if the project uses Redis based on .env configuration.
func needsRedis(dir string) bool {
envPath := filepath.Join(dir, ".env")
file, err := os.Open(envPath)
if err != nil {
return false
}
defer file.Close()
scanner := bufio.NewScanner(file)
for scanner.Scan() {
line := strings.TrimSpace(scanner.Text())
if strings.HasPrefix(line, "#") {
continue
}
// Check for Redis-related environment variables
redisIndicators := []string{
"REDIS_HOST=",
"CACHE_DRIVER=redis",
"QUEUE_CONNECTION=redis",
"SESSION_DRIVER=redis",
"BROADCAST_DRIVER=redis",
}
for _, indicator := range redisIndicators {
if strings.HasPrefix(line, indicator) {
// Check if it's set to localhost or 127.0.0.1
if strings.Contains(line, "127.0.0.1") || strings.Contains(line, "localhost") ||
indicator != "REDIS_HOST=" {
return true
}
}
}
}
return false
}
// DetectPackageManager detects which package manager is used in the project.
// Returns "npm", "pnpm", "yarn", or "bun".
func DetectPackageManager(dir string) string {
// Check for lock files in order of preference
lockFiles := []struct {
file string
manager string
}{
{"bun.lockb", "bun"},
{"pnpm-lock.yaml", "pnpm"},
{"yarn.lock", "yarn"},
{"package-lock.json", "npm"},
}
for _, lf := range lockFiles {
if _, err := os.Stat(filepath.Join(dir, lf.file)); err == nil {
return lf.manager
}
}
// Default to npm if no lock file found
return "npm"
}
// GetLaravelAppName extracts the application name from Laravel's .env file.
func GetLaravelAppName(dir string) string {
envPath := filepath.Join(dir, ".env")
file, err := os.Open(envPath)
if err != nil {
return ""
}
defer file.Close()
scanner := bufio.NewScanner(file)
for scanner.Scan() {
line := strings.TrimSpace(scanner.Text())
if strings.HasPrefix(line, "APP_NAME=") {
value := strings.TrimPrefix(line, "APP_NAME=")
// Remove quotes if present
value = strings.Trim(value, `"'`)
return value
}
}
return ""
}
// GetLaravelAppURL extracts the application URL from Laravel's .env file.
func GetLaravelAppURL(dir string) string {
envPath := filepath.Join(dir, ".env")
file, err := os.Open(envPath)
if err != nil {
return ""
}
defer file.Close()
scanner := bufio.NewScanner(file)
for scanner.Scan() {
line := strings.TrimSpace(scanner.Text())
if strings.HasPrefix(line, "APP_URL=") {
value := strings.TrimPrefix(line, "APP_URL=")
// Remove quotes if present
value = strings.Trim(value, `"'`)
return value
}
}
return ""
}
// ExtractDomainFromURL extracts the domain from a URL string.
func ExtractDomainFromURL(url string) string {
// Remove protocol
domain := strings.TrimPrefix(url, "https://")
domain = strings.TrimPrefix(domain, "http://")
// Remove port if present
if idx := strings.Index(domain, ":"); idx != -1 {
domain = domain[:idx]
}
// Remove path if present
if idx := strings.Index(domain, "/"); idx != -1 {
domain = domain[:idx]
}
return domain
}