mirror of
https://github.com/shivammathur/setup-php.git
synced 2026-08-06 08:12:09 -03:00
Add support for SAPI setup
This commit is contained in:
3
src/configs/httpd-php-apache.conf
Normal file
3
src/configs/httpd-php-apache.conf
Normal file
@@ -0,0 +1,3 @@
|
||||
LoadModule phpPHP_MAJOR_module PHP_DIR\PHP_APACHE_DLL
|
||||
AddHandler application/x-httpd-php .php
|
||||
PHPIniDir PHP_DIR
|
||||
8
src/configs/httpd-php-cgi.conf
Normal file
8
src/configs/httpd-php-cgi.conf
Normal file
@@ -0,0 +1,8 @@
|
||||
LoadModule proxy_module modules/mod_proxy.so
|
||||
LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so
|
||||
LoadModule authnz_fcgi_module modules/mod_authnz_fcgi.so
|
||||
<FilesMatch "\.php$">
|
||||
<If "-f %{REQUEST_FILENAME}">
|
||||
SetHandler "proxy:fcgi://127.0.0.1:9000/"
|
||||
</If>
|
||||
</FilesMatch>
|
||||
36
src/configs/nginx.conf
Normal file
36
src/configs/nginx.conf
Normal file
@@ -0,0 +1,36 @@
|
||||
worker_processes 1;
|
||||
|
||||
events {
|
||||
worker_connections 1024;
|
||||
}
|
||||
|
||||
http {
|
||||
include mime.types;
|
||||
default_type application/octet-stream;
|
||||
|
||||
sendfile on;
|
||||
|
||||
keepalive_timeout 65;
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
server_name localhost;
|
||||
|
||||
location / {
|
||||
root html;
|
||||
index index.php index.html index.htm;
|
||||
}
|
||||
|
||||
error_page 500 502 503 504 /50x.html;
|
||||
location = /50x.html {
|
||||
root html;
|
||||
}
|
||||
location ~ \.php$ {
|
||||
root html;
|
||||
fastcgi_pass 127.0.0.1:9000;
|
||||
fastcgi_index index.php;
|
||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||
include fastcgi_params;
|
||||
}
|
||||
}
|
||||
}
|
||||
5
src/configs/virtual_hosts/darwin/httpd-vhosts.conf
Normal file
5
src/configs/virtual_hosts/darwin/httpd-vhosts.conf
Normal file
@@ -0,0 +1,5 @@
|
||||
<VirtualHost *:80>
|
||||
ServerAdmin webmaster@localhost
|
||||
DocumentRoot "/var/www/html"
|
||||
ServerName localhost
|
||||
</VirtualHost>
|
||||
7
src/configs/virtual_hosts/linux/default_apache
Normal file
7
src/configs/virtual_hosts/linux/default_apache
Normal file
@@ -0,0 +1,7 @@
|
||||
<VirtualHost *:80>
|
||||
ServerName localhost
|
||||
ServerAdmin webmaster@localhost
|
||||
DocumentRoot /var/www/html
|
||||
ErrorLog ${APACHE_LOG_DIR}/error.log
|
||||
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
||||
</VirtualHost>
|
||||
22
src/configs/virtual_hosts/linux/default_nginx
Normal file
22
src/configs/virtual_hosts/linux/default_nginx
Normal file
@@ -0,0 +1,22 @@
|
||||
server {
|
||||
listen 80 default_server;
|
||||
listen [::]:80 default_server;
|
||||
|
||||
root /var/www/html;
|
||||
index index.html index.htm index.php;
|
||||
|
||||
server_name localhost;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ =404;
|
||||
}
|
||||
|
||||
location ~ \.php$ {
|
||||
include snippets/fastcgi-php.conf;
|
||||
fastcgi_pass unix:/run/php/phpPHP_VERSION-fpm.sock;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
}
|
||||
@@ -10,7 +10,7 @@ export async function addExtensionDarwin(
|
||||
extension_csv: string,
|
||||
version: string
|
||||
): Promise<string> {
|
||||
const extensions: Array<string> = await utils.extensionArray(extension_csv);
|
||||
const extensions: Array<string> = await utils.packageArray(extension_csv);
|
||||
let add_script = '\n';
|
||||
let remove_script = '';
|
||||
await utils.asyncForEach(extensions, async function (extension: string) {
|
||||
@@ -115,7 +115,7 @@ export async function addExtensionWindows(
|
||||
extension_csv: string,
|
||||
version: string
|
||||
): Promise<string> {
|
||||
const extensions: Array<string> = await utils.extensionArray(extension_csv);
|
||||
const extensions: Array<string> = await utils.packageArray(extension_csv);
|
||||
let add_script = '\n';
|
||||
let remove_script = '';
|
||||
await utils.asyncForEach(extensions, async function (extension: string) {
|
||||
@@ -229,7 +229,7 @@ export async function addExtensionLinux(
|
||||
extension_csv: string,
|
||||
version: string
|
||||
): Promise<string> {
|
||||
const extensions: Array<string> = await utils.extensionArray(extension_csv);
|
||||
const extensions: Array<string> = await utils.packageArray(extension_csv);
|
||||
let add_script = '\n';
|
||||
let remove_script = '';
|
||||
await utils.asyncForEach(extensions, async function (extension: string) {
|
||||
|
||||
@@ -3,6 +3,7 @@ import * as core from '@actions/core';
|
||||
import * as config from './config';
|
||||
import * as coverage from './coverage';
|
||||
import * as extensions from './extensions';
|
||||
import * as sapi from './sapi';
|
||||
import * as tools from './tools';
|
||||
import * as utils from './utils';
|
||||
|
||||
@@ -26,10 +27,13 @@ export async function getScript(
|
||||
const ini_values_csv: string = await utils.getInput('ini-values', false);
|
||||
const coverage_driver: string = await utils.getInput('coverage', false);
|
||||
const tools_csv: string = await utils.getInput('tools', false);
|
||||
const sapi_csv: string = await utils.getInput('sapi', false);
|
||||
|
||||
let script: string = await utils.readScript(filename);
|
||||
if (sapi_csv) {
|
||||
script += await sapi.addSAPI(sapi_csv, os_version);
|
||||
}
|
||||
script += await tools.addTools(tools_csv, version, os_version);
|
||||
|
||||
if (extension_csv) {
|
||||
script += await extensions.addExtension(extension_csv, version, os_version);
|
||||
}
|
||||
|
||||
51
src/sapi.ts
Normal file
51
src/sapi.ts
Normal file
@@ -0,0 +1,51 @@
|
||||
import * as utils from './utils';
|
||||
|
||||
export async function getSapiList(sapi_csv: string): Promise<Array<string>> {
|
||||
const sapi_list: Array<string> = await utils.packageArray(sapi_csv);
|
||||
const servers: Array<string> = sapi_list.filter(sapi => /.*:.*/.test(sapi));
|
||||
return [servers[servers.length - 1]].concat(
|
||||
sapi_list.filter(sapi => /.*[^:].*/.test(sapi))
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Function to set sapi
|
||||
*
|
||||
* @param sapi_csv
|
||||
* @param os_version
|
||||
*/
|
||||
export async function addSAPI(
|
||||
sapi_csv: string,
|
||||
os_version: string
|
||||
): Promise<string> {
|
||||
let script: string = '\n' + (await utils.stepLog('Setup SAPI', os_version));
|
||||
let sapi_list: Array<string>;
|
||||
switch (true) {
|
||||
case sapi_csv.split(':').length - 1 > 1:
|
||||
sapi_list = await getSapiList(sapi_csv);
|
||||
script +=
|
||||
'\n' +
|
||||
utils.log(
|
||||
'Multiple SAPI with web servers specified, choosing the last one ' +
|
||||
sapi_list[0],
|
||||
os_version,
|
||||
'warning'
|
||||
);
|
||||
break;
|
||||
default:
|
||||
sapi_list = await utils.packageArray(sapi_csv);
|
||||
}
|
||||
await utils.asyncForEach(sapi_list, async function (sapi: string) {
|
||||
sapi = sapi.toLowerCase();
|
||||
switch (os_version) {
|
||||
case 'linux':
|
||||
case 'darwin':
|
||||
script += '\nadd_sapi ' + sapi;
|
||||
break;
|
||||
case 'win32':
|
||||
script += '\nAdd-Sapi ' + sapi;
|
||||
break;
|
||||
}
|
||||
});
|
||||
return script;
|
||||
}
|
||||
@@ -257,9 +257,11 @@ add_composertool() {
|
||||
fi
|
||||
}
|
||||
|
||||
# Function to get PHP version in semver format.
|
||||
# Function to get versions of PHP binaries in semver format.
|
||||
php_semver() {
|
||||
php"$version" -v | grep -Eo -m 1 "[0-9]+\.[0-9]+\.[0-9]+" | head -n 1
|
||||
binary=${1:-"php$version"}
|
||||
arg=${2:-'-v'}
|
||||
"$binary" "$arg" | grep -Eo -m 1 "[0-9]+\.[0-9]+\.[0-9]+" | head -n 1
|
||||
}
|
||||
|
||||
# Function to get the tag for a php version.
|
||||
|
||||
@@ -31,6 +31,23 @@ add_ppa() {
|
||||
fi
|
||||
}
|
||||
|
||||
# Function to add SAPI
|
||||
add_sapi() {
|
||||
sapi=$1
|
||||
status='true'
|
||||
if [ "$sapi" != "cli" ]; then
|
||||
# shellcheck source=.
|
||||
. "${dist}"/../src/scripts/sapi.sh
|
||||
setup_sapi "$sapi" >/dev/null 2>&1
|
||||
fi
|
||||
check_sapi "$sapi"
|
||||
if check_sapi "$sapi"; then
|
||||
add_log "${tick:?}" "$sapi" "Added $sapi"
|
||||
else
|
||||
add_log "${cross:?}" "$sapi" "Could not setup $sapi"
|
||||
fi
|
||||
}
|
||||
|
||||
# Function to update the package lists.
|
||||
update_lists() {
|
||||
if [ ! -e /tmp/setup_php ]; then
|
||||
|
||||
116
src/scripts/sapi/sapi_darwin.sh
Normal file
116
src/scripts/sapi/sapi_darwin.sh
Normal file
@@ -0,0 +1,116 @@
|
||||
#!/bin/bash
|
||||
|
||||
install_httpd() {
|
||||
sudo mkdir -p /var/www/html
|
||||
sudo chown -R _www:_www /var/www
|
||||
brew services stop nginx 2>/dev/null || true
|
||||
if ! command -v httpd >/dev/null; then
|
||||
brew install httpd
|
||||
fi
|
||||
sudo sed -Ei '' 's/Listen.*/Listen 80/' "$httpd_conf"
|
||||
sudo sed -Ei '' 's/DirectoryIndex.*/DirectoryIndex index.php index.html/' "$httpd_conf"
|
||||
}
|
||||
|
||||
install_nginx() {
|
||||
sudo mkdir -p /var/www/html
|
||||
sudo chown -R "$(id -un)":"$(id -gn)" /var/www
|
||||
brew services stop httpd 2>/dev/null || true
|
||||
if ! command -v nginx >/dev/null; then
|
||||
brew install nginx
|
||||
fi
|
||||
sudo sed -Ei '' 's/listen.*/listen 80;/' "$nginx_conf"
|
||||
}
|
||||
|
||||
setup_sapi() {
|
||||
sapi=$1
|
||||
conf_dir="${dist:?}"/../src/configs
|
||||
|
||||
case $sapi in
|
||||
apache*:apache*)
|
||||
install_httpd
|
||||
(
|
||||
echo "LoadModule proxy_module lib/httpd/modules/mod_proxy.so"
|
||||
echo "LoadModule proxy_module lib/httpd/modules/mod_proxy_fcgi.so"
|
||||
) | sudo tee -a "$httpd_conf"
|
||||
echo "Include $httpd_extra/httpd-php.conf" | sudo tee -a "$httpd_conf"
|
||||
|
||||
|
||||
sudo cp "$conf_dir"/default_apache /etc/apache2/sites-available/000-default.conf
|
||||
sudo a2dismod mpm_event 2>/dev/null || true
|
||||
sudo a2enmod mpm_prefork php"${version:?}"
|
||||
sudo service apache2 restart
|
||||
;;
|
||||
fpm:apache*)
|
||||
install_httpd
|
||||
sudo cp "$conf_dir"/default_apache /etc/apache2/sites-available/000-default.conf
|
||||
sudo a2dismod php"${version:?}" 2>/dev/null || true
|
||||
sudo a2enmod proxy_fcgi
|
||||
sudo a2enconf php"${version:?}"-fpm
|
||||
sudo service apache2 restart
|
||||
;;
|
||||
cgi:apache*)
|
||||
install_httpd
|
||||
sudo cp "$conf_dir"/default_apache /etc/apache2/sites-available/000-default.conf
|
||||
echo "Action application/x-httpd-php /cgi-bin/php${version:?}" | sudo tee -a /etc/apache2/conf-available/php"${version:?}"-cgi.conf
|
||||
sudo a2dismod php"${version:?}" mpm_event 2>/dev/null || true
|
||||
sudo a2enmod mpm_prefork actions cgi
|
||||
sudo a2disconf php"${version:?}"-fpm 2>/dev/null || true
|
||||
sudo a2enconf php"${version:?}"-cgi
|
||||
sudo service apache2 restart
|
||||
;;
|
||||
fpm:nginx)
|
||||
install_nginx
|
||||
sudo cp "$conf_dir"/default_nginx /etc/nginx/sites-available/default
|
||||
sudo sed -i "s/PHP_VERSION/${version:?}/" /etc/nginx/sites-available/default
|
||||
sudo service nginx restart
|
||||
;;
|
||||
apache* | fpm | cgi | phpdbg) ;;
|
||||
|
||||
esac
|
||||
}
|
||||
|
||||
check_service() {
|
||||
service=$1
|
||||
if ! pidof "$service"; then
|
||||
return 1
|
||||
fi
|
||||
(
|
||||
printf "::group::\033[34;1m%s \033[0m\033[90;1m%s \033[0m\n" "$service" "Click to check $service status"
|
||||
sudo service "$service" status
|
||||
echo "::endgroup::"
|
||||
) | sudo tee -a /tmp/sapi.log >/dev/null 2>&1
|
||||
return 0
|
||||
}
|
||||
|
||||
check_version() {
|
||||
sapi=$1
|
||||
sapi_version=$(php_semver "$sapi")
|
||||
if [ ${sapi_version%.*} != "${version:?}" ]; then
|
||||
return 1
|
||||
fi
|
||||
add_log "${tick:?}" "$sapi" "Added $sapi $sapi_version" | sudo tee -a /tmp/sapi.log >/dev/null 2>&1
|
||||
return 0
|
||||
}
|
||||
|
||||
check_sapi() {
|
||||
sapi=$1
|
||||
sudo rm /tmp/sapi.log
|
||||
if [[ "$sapi" =~ fpm|cgi ]]; then status=$(check_version php-"$sapi"); fi
|
||||
if [[ "$sapi" =~ ^phpdbg$ ]]; then status=$(check_version phpdbg); fi
|
||||
if [[ "$sapi" =~ .*fpm.* ]]; then status=$(check_service php"${version:?}"-fpm); fi
|
||||
if [[ "$sapi" =~ .*:apache.* ]]; then status=$(check_service apache2); fi
|
||||
if [[ "$sapi" =~ .*:nginx.* ]]; then status=$(check_service nginx); fi
|
||||
|
||||
if [ "$status" = "0" ]; then
|
||||
if [[ "$sapi" =~ .*:.* ]]; then
|
||||
add_log "${tick:?}" "$sapi" "Added $sapi"
|
||||
fi
|
||||
cat /tmp/sapi.log && sudo rm /tmp/sapi.log
|
||||
else
|
||||
add_log "${cross:?}" "$sapi" "Could not setup $sapi"
|
||||
fi
|
||||
}
|
||||
|
||||
httpd_conf=${brew_prefix:?}/etc/httpd/httpd.conf
|
||||
httpd_extra=${brew_prefix:?}/etc/httpd/extra
|
||||
nginx_conf=${brew_prefix:?}/etc/nginx/nginx.conf
|
||||
117
src/scripts/sapi/sapi_linux.sh
Normal file
117
src/scripts/sapi/sapi_linux.sh
Normal file
@@ -0,0 +1,117 @@
|
||||
#!/bin/bash
|
||||
|
||||
install_apache2() {
|
||||
sudo mkdir -p /var/www/html
|
||||
sudo service nginx stop 2>/dev/null || true
|
||||
if ! command -v apache2 >/dev/null; then
|
||||
install_packages apache2-bin apache2 -y;
|
||||
else
|
||||
if ! [[ "$(apache2 -v 2>/dev/null | grep -Eo "([0-9]+\.[0-9]+)")" =~ 2.[4-9] ]]; then
|
||||
sudo "${debconf_fix:?}" apt-get purge apache* apache-* >/dev/null
|
||||
install_packages apache2-bin apache2 -y;
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
install_nginx() {
|
||||
sudo mkdir -p /var/www/html
|
||||
sudo service apache2 stop 2>/dev/null || true
|
||||
if ! command -v nginx >/dev/null; then
|
||||
install_packages nginx -y
|
||||
fi
|
||||
}
|
||||
|
||||
setup_sapi() {
|
||||
sapi=$1
|
||||
conf_dir="${dist:?}"/../src/configs
|
||||
|
||||
if [[ "${version:?}" =~ ${old_versions:?}|${nightly_versions:?} ]]; then
|
||||
switch_sapi "$sapi"
|
||||
else
|
||||
case $sapi in
|
||||
apache*:apache*)
|
||||
install_apache2
|
||||
sudo cp "$conf_dir"/default_apache /etc/apache2/sites-available/000-default.conf
|
||||
install_packages libapache2-mod-php"${version:?}" -y
|
||||
sudo a2dismod mpm_event 2>/dev/null || true
|
||||
sudo a2enmod mpm_prefork php"${version:?}"
|
||||
sudo service apache2 restart
|
||||
;;
|
||||
fpm:apache*)
|
||||
install_apache2
|
||||
sudo cp "$conf_dir"/default_apache /etc/apache2/sites-available/000-default.conf
|
||||
install_packages libapache2-mod-fcgid php"${version:?}"-fpm -y
|
||||
sudo a2dismod php"${version:?}" 2>/dev/null || true
|
||||
sudo a2enmod proxy_fcgi
|
||||
sudo a2enconf php"${version:?}"-fpm
|
||||
sudo service apache2 restart
|
||||
;;
|
||||
cgi:apache*)
|
||||
install_apache2
|
||||
install_packages php"${version:?}"-cgi -y
|
||||
sudo cp "$conf_dir"/default_apache /etc/apache2/sites-available/000-default.conf
|
||||
echo "Action application/x-httpd-php /cgi-bin/php${version:?}" | sudo tee -a /etc/apache2/conf-available/php"${version:?}"-cgi.conf
|
||||
sudo a2dismod php"${version:?}" mpm_event 2>/dev/null || true
|
||||
sudo a2enmod mpm_prefork actions cgi
|
||||
sudo a2disconf php"${version:?}"-fpm 2>/dev/null || true
|
||||
sudo a2enconf php"${version:?}"-cgi
|
||||
sudo service apache2 restart
|
||||
;;
|
||||
fpm:nginx)
|
||||
install_nginx
|
||||
install_packages php"${version:?}"-fpm -y
|
||||
sudo cp "$conf_dir"/default_nginx /etc/nginx/sites-available/default
|
||||
sudo sed -i "s/PHP_VERSION/${version:?}/" /etc/nginx/sites-available/default
|
||||
sudo service nginx restart
|
||||
;;
|
||||
apache*)
|
||||
install_packages libapache2-mod-php"${version:?}" -y
|
||||
;;
|
||||
fpm|embed|cgi|phpdbg)
|
||||
install_packages php"${version:?}"-"$sapi" -y
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
}
|
||||
|
||||
check_service() {
|
||||
service=$1
|
||||
if ! pidof "$service"; then
|
||||
return 1
|
||||
fi
|
||||
(
|
||||
printf "::group::\033[34;1m%s \033[0m\033[90;1m%s \033[0m\n" "$service" "Click to check $service status"
|
||||
sudo service "$service" status
|
||||
echo "::endgroup::"
|
||||
) | sudo tee -a /tmp/sapi.log >/dev/null 2>&1
|
||||
return 0
|
||||
}
|
||||
|
||||
check_version() {
|
||||
sapi=$1
|
||||
sapi_version=$(php_semver "$sapi")
|
||||
if [ "${sapi_version%.*}" != "${version:?}" ]; then
|
||||
return 1;
|
||||
fi
|
||||
add_log "${tick:?}" "$sapi" "Added $sapi $sapi_version" | sudo tee -a /tmp/sapi.log >/dev/null 2>&1
|
||||
return 0
|
||||
}
|
||||
|
||||
check_sapi() {
|
||||
sapi=$1
|
||||
sudo rm /tmp/sapi.log
|
||||
if [[ "$sapi" =~ fpm|cgi ]]; then status=$(check_version php-"$sapi"); fi
|
||||
if [[ "$sapi" =~ ^phpdbg$ ]]; then status=$(check_version phpdbg); fi
|
||||
if [[ "$sapi" =~ .*fpm.* ]]; then status=$(check_service php"${version:?}"-fpm); fi
|
||||
if [[ "$sapi" =~ .*:apache.* ]]; then status=$(check_service apache2); fi
|
||||
if [[ "$sapi" =~ .*:nginx.* ]]; then status=$(check_service nginx); fi
|
||||
|
||||
if [ "$status" = "0" ]; then
|
||||
if [[ "$sapi" =~ .*:.* ]]; then
|
||||
add_log "${tick:?}" "$sapi" "Added $sapi"
|
||||
fi
|
||||
cat /tmp/sapi.log && sudo rm /tmp/sapi.log
|
||||
else
|
||||
add_log "${cross:?}" "$sapi" "Could not setup $sapi"
|
||||
fi
|
||||
}
|
||||
14
src/utils.ts
14
src/utils.ts
@@ -234,20 +234,20 @@ export async function writeScript(
|
||||
/**
|
||||
* Function to break extension csv into an array
|
||||
*
|
||||
* @param extension_csv
|
||||
* @param package_csv
|
||||
*/
|
||||
export async function extensionArray(
|
||||
extension_csv: string
|
||||
export async function packageArray(
|
||||
package_csv: string
|
||||
): Promise<Array<string>> {
|
||||
switch (extension_csv) {
|
||||
switch (package_csv) {
|
||||
case '':
|
||||
case ' ':
|
||||
return [];
|
||||
default:
|
||||
return extension_csv
|
||||
return package_csv
|
||||
.split(',')
|
||||
.map(function (extension: string) {
|
||||
return extension
|
||||
.map(function (package_name: string) {
|
||||
return package_name
|
||||
.trim()
|
||||
.toLowerCase()
|
||||
.replace(/^php[-_]/, '');
|
||||
|
||||
Reference in New Issue
Block a user