1
0
2025-01-18 16:38:11 +01:00

83 lines
2.0 KiB
Go

package main
import (
"bytes"
"errors"
"fmt"
"log"
"os"
"os/exec"
"git.keyzox.me/42_adjoly/inception/internal/env"
"git.keyzox.me/42_adjoly/inception/internal/log"
"git.keyzox.me/42_adjoly/inception/internal/pass"
)
func makeFpmConf() {
val, is := os.LookupEnv("PHP_NOT_CONFIGURE")
_, err := os.ReadFile("/www-docker.conf")
if (is == true && val == "true") {
_log.Log("note", "PHP-FPM - Not configuring (PHP-CONFIGURE set to true)")
return
}
if errors.Is(err, os.ErrNotExist) {
_log.Log("note", "PHP-FPM - already configured, skipping")
return
}
_log.Log("note", "PHP-FPM - Configuring...")
v, is := os.LookupEnv("PHP_PORT")
content, err := os.ReadFile("/www-docker.conf")
if err != nil {
log.Fatal(err)
}
if !is {
v = "9000"
}
res := bytes.Replace([]byte(content), []byte("$PHP_PORT"), []byte(v), -1)
if err := os.WriteFile("/etc/php84/php-fpm.d/www.conf", res, 0660); err != nil {
log.Fatal(err)
}
os.Remove("/www-docker.conf")
}
func main() {
args := os.Args
if args[1] == "php-fpm84" {
_log.Log("note", "Entrypoint script for Wordpress-PHP-FPM Server started")
makeFpmConf()
_, err := os.ReadFile("/var/www/html/wp-config.php")
if err != nil && env.IsEnvSet("WORDPRESS_") {
content, err := os.ReadFile("/var/www/html/wp-config-docker.php")
if err != nil {
log.Fatal(err)
}
res := bytes.Replace([]byte(content), []byte("put your unique phrase here"), []byte(pass.GenStrPass(32)), -1)
if err := os.WriteFile("/var/www/html/wp-config.php", res, 0660); err != nil {
log.Fatal(err)
}
cmd := exec.Command("chown", "www-data:www-data", "/var/www/html/wp-config.php")
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
if err := cmd.Run(); err == nil {
log.Fatal(err)
}
}
}
_log.Log("note", "Starting container")
cmd := exec.Command(args[1], args[2:]...)
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
cmd.Stdin = os.Stdin
if err := cmd.Run(); err != nil {
fmt.Printf("Error running MariaDB: %v\n", err)
os.Exit(1)
}
}