commit c2aaf2183e55c32a99f1367aa528ecde3fcde0e8 Author: jm.dupuy Date: Wed Jun 12 13:02:54 2024 +0200 premiers tests ok diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..9cd0b6d --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = space +indent_size = 4 +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.{yml,yaml,yaml.example}] +indent_size = 2 diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..46a2ca8 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,5 @@ +# Release Notes + +Please visit https://github.com/laravel/homestead/releases for details about each release. + +Official documentation [is located here](https://laravel.com/docs/homestead). diff --git a/Homestead.yaml b/Homestead.yaml new file mode 100644 index 0000000..c116a0a --- /dev/null +++ b/Homestead.yaml @@ -0,0 +1,47 @@ +--- +ip: "192.168.56.56" +memory: 2048 +cpus: 2 +provider: virtualbox + +# authorize: Path\id_rsa.pub + +# keys: +# - Path\id_rsa + +# folders: +# - map: Path\Code +# to: /home/vagrant/code + +sites: + - map: homestead.test + to: /home/vagrant/code/public + +databases: + - homestead + +features: + - mariadb: false + - postgresql: false + - ohmyzsh: false + - webdriver: false + +services: + - enabled: + - "mysql" +# - disabled: +# - "postgresql@11-main" + +# ports: +# - send: 33060 # MySQL/MariaDB +# to: 3306 +# - send: 4040 +# to: 4040 +# - send: 54320 # PostgreSQL +# to: 5432 +# - send: 8025 # Mailpit +# to: 8025 +# - send: 9600 +# to: 9600 +# - send: 27017 +# to: 27017 diff --git a/Homestead.yaml.example b/Homestead.yaml.example new file mode 100644 index 0000000..c23c64b --- /dev/null +++ b/Homestead.yaml.example @@ -0,0 +1,48 @@ +--- +ip: "192.168.56.56" +memory: 2048 +cpus: 2 +provider: virtualbox + +authorize: ~/.ssh/id_rsa.pub + +keys: + - ~/.ssh/id_rsa + +folders: + - map: ~/code + to: /home/vagrant/code + +sites: + - map: homestead.test + to: /home/vagrant/code/public + +databases: + - homestead + +features: + - mariadb: false + - postgresql: false + - ohmyzsh: false + - webdriver: false + - influxdb: false + +services: + - enabled: + - "mysql" +# - disabled: +# - "postgresql@11-main" + +# ports: +# - send: 33060 # MySQL/MariaDB +# to: 3306 +# - send: 4040 +# to: 4040 +# - send: 54320 # PostgreSQL +# to: 5432 +# - send: 8025 # Mailpit +# to: 8025 +# - send: 9600 +# to: 9600 +# - send: 27017 +# to: 27017 diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..1ce5963 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000..2832f8a --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,60 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +require 'json' +require 'yaml' + +VAGRANTFILE_API_VERSION ||= "2" +confDir = $confDir ||= File.expand_path(File.dirname(__FILE__)) + +homesteadYamlPath = confDir + "/Homestead.yaml" +homesteadJsonPath = confDir + "/Homestead.json" +afterScriptPath = confDir + "/after.sh" +customizationScriptPath = confDir + "/user-customizations.sh" +aliasesPath = confDir + "/aliases" + +require File.expand_path(File.dirname(__FILE__) + '/scripts/homestead.rb') + +Vagrant.require_version '>= 2.4' + +Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| + if File.exist? aliasesPath then + config.vm.provision "file", source: aliasesPath, destination: "/tmp/bash_aliases" + config.vm.provision "handle_aliases", type: "shell" do |s| + s.inline = "awk '{ sub(\"\r$\", \"\"); print }' /tmp/bash_aliases > /home/vagrant/.bash_aliases && chown vagrant:vagrant /home/vagrant/.bash_aliases" + end + end + + if File.exist? homesteadYamlPath then + settings = YAML::load(File.read(homesteadYamlPath)) + elsif File.exist? homesteadJsonPath then + settings = JSON::parse(File.read(homesteadJsonPath)) + else + abort "Homestead settings file not found in #{confDir}" + end + + Homestead.configure(config, settings) + + if File.exist? afterScriptPath then + config.vm.provision "Run after.sh", type: "shell", path: afterScriptPath, privileged: false, keep_color: true + end + + if File.exist? customizationScriptPath then + config.vm.provision "Run customize script", type: "shell", path: customizationScriptPath, privileged: false, keep_color: true + end + + if Vagrant.has_plugin?('vagrant-hostsupdater') + config.hostsupdater.remove_on_suspend = false + config.hostsupdater.aliases = settings['sites'].map { |site| site['map'] } + elsif Vagrant.has_plugin?('vagrant-hostmanager') + config.hostmanager.enabled = true + config.hostmanager.manage_host = true + config.hostmanager.aliases = settings['sites'].map { |site| site['map'] } + elsif Vagrant.has_plugin?('vagrant-goodhosts') + config.goodhosts.aliases = settings['sites'].map { |site| site['map'] } + end + + if Vagrant.has_plugin?('vagrant-notify-forwarder') + config.notify_forwarder.enable = true + end +end diff --git a/after.sh b/after.sh new file mode 100644 index 0000000..c455861 --- /dev/null +++ b/after.sh @@ -0,0 +1,23 @@ +#!/bin/sh + +# If you would like to do some extra provisioning you may +# add any commands you wish to this file and they will +# be run after the Homestead machine is provisioned. +# +# If you have user-specific configurations you would like +# to apply, you may also create user-customizations.sh, +# which will be run after this script. + + +# If you're not quite ready for the latest Node.js version, +# uncomment these lines to roll back to a previous version + +# Remove current Node.js version: +#sudo apt-get -y purge nodejs +#sudo rm -rf /usr/lib/node_modules/npm/lib +#sudo rm -rf //etc/apt/sources.list.d/nodesource.list + +# Install Node.js Version desired (i.e. v13) +# More info: https://github.com/nodesource/distributions/blob/master/README.md#debinstall +#curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash - +#sudo apt-get install -y nodejs diff --git a/aliases b/aliases new file mode 100644 index 0000000..6bf452a --- /dev/null +++ b/aliases @@ -0,0 +1,357 @@ +alias ..="cd .." +alias ...="cd ../.." + +alias h='cd ~' +alias c='clear' +alias art=artisan + +alias codecept='vendor/bin/codecept' +alias phpspec='vendor/bin/phpspec' +alias pint='vendor/bin/pint' +alias serve=serve-laravel + +alias xoff='sudo phpdismod -s cli xdebug' +alias xon='sudo phpenmod -s cli xdebug' + +alias nrd="npm run dev" +alias nrw="npm run watch" +alias nrwp="npm run watch-poll" +alias nrh="npm run hot" +alias nrp="npm run production" + +alias yrd="yarn dev" +alias yrw="yarn watch" +alias yrwp="yarn watch-poll" +alias yrh="yarn hot" +alias yrp="yarn production" + +function artisan() { + php artisan "$@" +} + +function dusk() { + pids=$(pidof /usr/bin/Xvfb) + + if [ ! -n "$pids" ]; then + Xvfb :0 -screen 0 1280x960x24 & + fi + + if [[ $? -eq 0 ]] + then + php artisan dusk + else + php artisan dusk --filter "$@" + fi +} + +function p() { + if [ -f vendor/bin/pest ]; then + vendor/bin/pest "$@" + else + vendor/bin/phpunit "$@" + fi + } + + function pf() { + if [ -f vendor/bin/pest ]; then + vendor/bin/pest --filter "$@" + else + vendor/bin/phpunit --filter "$@" + fi + } + +function php56() { + sudo update-alternatives --set php /usr/bin/php5.6 + sudo update-alternatives --set php-config /usr/bin/php-config5.6 + sudo update-alternatives --set phpize /usr/bin/phpize5.6 +} + +function php70() { + sudo update-alternatives --set php /usr/bin/php7.0 + sudo update-alternatives --set php-config /usr/bin/php-config7.0 + sudo update-alternatives --set phpize /usr/bin/phpize7.0 +} + +function php71() { + sudo update-alternatives --set php /usr/bin/php7.1 + sudo update-alternatives --set php-config /usr/bin/php-config7.1 + sudo update-alternatives --set phpize /usr/bin/phpize7.1 +} + +function php72() { + sudo update-alternatives --set php /usr/bin/php7.2 + sudo update-alternatives --set php-config /usr/bin/php-config7.2 + sudo update-alternatives --set phpize /usr/bin/phpize7.2 +} + +function php73() { + sudo update-alternatives --set php /usr/bin/php7.3 + sudo update-alternatives --set php-config /usr/bin/php-config7.3 + sudo update-alternatives --set phpize /usr/bin/phpize7.3 +} + +function php74() { + sudo update-alternatives --set php /usr/bin/php7.4 + sudo update-alternatives --set php-config /usr/bin/php-config7.4 + sudo update-alternatives --set phpize /usr/bin/phpize7.4 +} + +function php80() { + sudo update-alternatives --set php /usr/bin/php8.0 + sudo update-alternatives --set php-config /usr/bin/php-config8.0 + sudo update-alternatives --set phpize /usr/bin/phpize8.0 +} + +function php81() { + sudo update-alternatives --set php /usr/bin/php8.1 + sudo update-alternatives --set php-config /usr/bin/php-config8.1 + sudo update-alternatives --set phpize /usr/bin/phpize8.1 +} + +function php82() { + sudo update-alternatives --set php /usr/bin/php8.2 + sudo update-alternatives --set php-config /usr/bin/php-config8.2 + sudo update-alternatives --set phpize /usr/bin/phpize8.2 +} + +function php83() { + sudo update-alternatives --set php /usr/bin/php8.3 + sudo update-alternatives --set php-config /usr/bin/php-config8.3 + sudo update-alternatives --set phpize /usr/bin/phpize8.3 +} + +function serve-apache() { + if [[ "$1" && "$2" ]] + then + sudo bash /vagrant/scripts/create-certificate.sh "$1" + sudo dos2unix /vagrant/scripts/site-types/apache.sh + sudo bash /vagrant/scripts/site-types/apache.sh "$1" "$2" 80 443 "${3:-8.3}" + else + echo "Error: missing required parameters." + echo "Usage: " + echo " serve-apache domain path" + fi +} + +function serve-apache-proxy() { + if [[ "$1" && "$2" ]] + then + sudo bash /vagrant/scripts/create-certificate.sh "$1" + sudo dos2unix /vagrant/scripts/site-types/apache-proxy.sh + sudo bash /vagrant/scripts/site-types/apache-proxy.sh "$1" "$2" 80 443 "${3:-8.3}" + else + echo "Error: missing required parameters." + echo "Usage: " + echo " serve-apache-proxy domain port" + fi +} + +function serve-laravel() { + if [[ "$1" && "$2" ]] + then + sudo bash /vagrant/scripts/create-certificate.sh "$1" + sudo dos2unix /vagrant/scripts/site-types/laravel.sh + sudo bash /vagrant/scripts/site-types/laravel.sh "$1" "$2" 80 443 "${3:-8.3}" + else + echo "Error: missing required parameters." + echo "Usage: " + echo " serve domain path" + fi +} + +function serve-proxy() { + if [[ "$1" && "$2" ]] + then + sudo bash /vagrant/scripts/create-certificate.sh "$1" + sudo dos2unix /vagrant/scripts/site-types/proxy.sh + sudo bash /vagrant/scripts/site-types/proxy.sh "$1" "$2" 80 443 "${3:-8.3}" + else + echo "Error: missing required parameters." + echo "Usage: " + echo " serve-proxy domain port" + fi +} + +function serve-silverstripe() { + if [[ "$1" && "$2" ]] + then + sudo bash /vagrant/scripts/create-certificate.sh "$1" + sudo dos2unix /vagrant/scripts/site-types/silverstripe.sh + sudo bash /vagrant/scripts/site-types/silverstripe.sh "$1" "$2" 80 443 "${3:-8.3}" + else + echo "Error: missing required parameters." + echo "Usage: " + echo " serve-silverstripe domain path" + fi +} + +function serve-spa() { + if [[ "$1" && "$2" ]] + then + sudo bash /vagrant/scripts/create-certificate.sh "$1" + sudo dos2unix /vagrant/scripts/site-types/spa.sh + sudo bash /vagrant/scripts/site-types/spa.sh "$1" "$2" 80 443 "${3:-8.3}" + else + echo "Error: missing required parameters." + echo "Usage: " + echo " serve-spa domain path" + fi +} + +function serve-statamic() { + if [[ "$1" && "$2" ]] + then + sudo bash /vagrant/scripts/create-certificate.sh "$1" + sudo dos2unix /vagrant/scripts/site-types/statamic.sh + sudo bash /vagrant/scripts/site-types/statamic.sh "$1" "$2" 80 443 "${3:-8.3}" + else + echo "Error: missing required parameters." + echo "Usage: " + echo " serve-statamic domain path" + fi +} + +function serve-symfony2() { + if [[ "$1" && "$2" ]] + then + sudo bash /vagrant/scripts/create-certificate.sh "$1" + sudo dos2unix /vagrant/scripts/site-types/symfony2.sh + sudo bash /vagrant/scripts/site-types/symfony2.sh "$1" "$2" 80 443 "${3:-8.3}" + else + echo "Error: missing required parameters." + echo "Usage: " + echo " serve-symfony2 domain path" + fi +} + +function serve-symfony4() { + if [[ "$1" && "$2" ]] + then + sudo bash /vagrant/scripts/create-certificate.sh "$1" + sudo dos2unix /vagrant/scripts/site-types/symfony4.sh + sudo bash /vagrant/scripts/site-types/symfony4.sh "$1" "$2" 80 443 "${3:-8.3}" + else + echo "Error: missing required parameters." + echo "Usage: " + echo " serve-symfony4 domain path" + fi +} + +function serve-pimcore() { + if [[ "$1" && "$2" ]] + then + sudo bash /vagrant/scripts/create-certificate.sh "$1" + sudo dos2unix /vagrant/scripts/site-types/pimcore.sh + sudo bash /vagrant/scripts/site-types/pimcore.sh "$1" "$2" 80 443 "${3:-8.3}" + else + echo "Error: missing required parameters." + echo "Usage: " + echo " serve-pimcore domain path" + fi +} + +function share() { + if [[ "$1" ]] + then + ngrok http ${@:2} $1:80 --host-header=rewrite + else + echo "Error: missing required parameters." + echo "Usage: " + echo " share domain" + echo "Invocation with extra params passed directly to ngrok" + echo " share domain -region=eu -subdomain=test1234" + fi +} + +function sshare() { + if [[ "$1" ]] + then + ngrok http ${@:2} $1:443 --host-header=rewrite + else + echo "Error: missing required parameters." + echo "Usage: " + echo " sshare domain" + echo "Invocation with extra params passed directly to ngrok" + echo " sshare domain --subdomain=test1234" + fi +} + +function flip() { + sudo bash /vagrant/scripts/flip-webserver.sh +} + +function __has_pv() { + $(hash pv 2>/dev/null); + + return $? +} + +function __pv_install_message() { + if ! __has_pv; then + echo $1 + echo "Install pv with \`sudo apt-get install -y pv\` then run this command again." + echo "" + fi +} + +function dbexport() { + FILE=${1:-/vagrant/mysqldump.sql.gz} + + # This gives an estimate of the size of the SQL file + # It appears that 80% is a good approximation of + # the ratio of estimated size to actual size + SIZE_QUERY="select ceil(sum(data_length) * 0.8) as size from information_schema.TABLES" + + __pv_install_message "Want to see export progress?" + + echo "Exporting databases to '$FILE'" + + if __has_pv; then + ADJUSTED_SIZE=$(mysql --vertical -uhomestead -psecret -e "$SIZE_QUERY" 2>/dev/null | grep 'size' | awk '{print $2}') + HUMAN_READABLE_SIZE=$(numfmt --to=iec-i --suffix=B --format="%.3f" $ADJUSTED_SIZE) + + echo "Estimated uncompressed size: $HUMAN_READABLE_SIZE" + mysqldump -uhomestead -psecret --all-databases --skip-lock-tables --routines 2>/dev/null | pv --size=$ADJUSTED_SIZE | gzip > "$FILE" + else + mysqldump -uhomestead -psecret --all-databases --skip-lock-tables --routines 2>/dev/null | gzip > "$FILE" + fi + + echo "Done." +} + +function dbimport() { + FILE=${1:-/vagrant/mysqldump.sql.gz} + + __pv_install_message "Want to see import progress?" + + echo "Importing databases from '$FILE'" + + if __has_pv; then + pv "$FILE" --progress --eta | zcat | mysql -uhomestead -psecret 2>/dev/null + else + cat "$FILE" | zcat | mysql -uhomestead -psecret 2>/dev/null + fi + + echo "Done." +} + +function xphp() { + (php -m | grep -q xdebug) + if [[ $? -eq 0 ]] + then + XDEBUG_ENABLED=true + else + XDEBUG_ENABLED=false + fi + + if ! $XDEBUG_ENABLED; then xon; fi + + HOST_IP=$(last --limit=1 | grep -oP '\d+(\.\d+){3}') + + php \ + -dxdebug.client_host=${HOST_IP} \ + -dxdebug.start_with_request=yes \ + "$@" + + if ! $XDEBUG_ENABLED; then xoff; fi +} diff --git a/art/logo.svg b/art/logo.svg new file mode 100644 index 0000000..59badb4 --- /dev/null +++ b/art/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/bin/homestead b/bin/homestead new file mode 100644 index 0000000..4410e58 --- /dev/null +++ b/bin/homestead @@ -0,0 +1,18 @@ +#!/usr/bin/env php +add(new Laravel\Homestead\MakeCommand); +$app->add(new Laravel\Homestead\WslApplyFeatures); +$app->add(new Laravel\Homestead\WslCreateSiteCommand); +$app->add(new Laravel\Homestead\WslCreateDatabaseCommand()); + +$app->run(); diff --git a/bin/wsl-init b/bin/wsl-init new file mode 100644 index 0000000..329101c --- /dev/null +++ b/bin/wsl-init @@ -0,0 +1,239 @@ +#!/usr/bin/env bash +################################## +# Usage: # +# sudo ./bin/homestead/wsl-init # +################################## +export DEBIAN_FRONTEND=noninteractive + +echo "What is your WSL user name?" +read WSL_USER_NAME + +echo "What is your WSL user group? (Same as username if you're unsure)" +read WSL_USER_GROUP + +# Update Package List +apt-get update + +# Update System Packages +apt-get upgrade -y + +# Force Locale +echo "LC_ALL=en_US.UTF-8" >> /etc/default/locale +locale-gen en_US.UTF-8 + +apt-get install -y software-properties-common curl gnupg debian-keyring debian-archive-keyring apt-transport-https \ +ca-certificates + +# Install Some PPAs +apt-add-repository ppa:ondrej/php -y + +# Prepare keyrings directory +sudo mkdir -p /etc/apt/keyrings + +# NodeJS +curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg +echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_21.x nodistro main" | sudo tee /etc/apt/sources.list.d/nodesource.list + +# PostgreSQL +curl -fsSL https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo gpg --dearmor -o /etc/apt/keyrings/postgresql.gpg +sudo sh -c 'echo "deb [signed-by=/etc/apt/keyrings/postgresql.gpg] https://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' + +## Update Package Lists +apt-get update -y + +# Install Some Basic Packages +apt-get install -y build-essential dos2unix gcc git git-lfs libmcrypt4 libpcre3-dev libpng-dev chrony unzip make pv \ +python3-pip re2c supervisor unattended-upgrades whois vim cifs-utils bash-completion zsh graphviz avahi-daemon tshark + +# Install Generic PHP packages +apt-get install -y --allow-change-held-packages \ +php-imagick php-memcached php-redis php-xdebug php-dev php-swoole + +# PHP 8.3 +apt-get install -y --allow-change-held-packages \ +php8.3 php8.3-bcmath php8.3-bz2 php8.3-cgi php8.3-cli php8.3-common php8.3-curl php8.3-dba php8.3-dev \ +php8.3-enchant php8.3-fpm php8.3-gd php8.3-gmp php8.3-imap php8.3-interbase php8.3-intl php8.3-ldap \ +php8.3-mbstring php8.3-mysql php8.3-odbc php8.3-opcache php8.3-pgsql php8.3-phpdbg php8.3-pspell php8.3-readline \ +php8.3-snmp php8.3-soap php8.3-sqlite3 php8.3-sybase php8.3-tidy php8.3-xml php8.3-xsl \ +php8.3-zip php8.3-imagick php8.3-memcached php8.3-redis php8.3-xmlrpc php8.3-xdebug + +# Configure php.ini for CLI +sed -i "s/error_reporting = .*/error_reporting = E_ALL/" /etc/php/8.3/cli/php.ini +sed -i "s/display_errors = .*/display_errors = On/" /etc/php/8.3/cli/php.ini +sed -i "s/memory_limit = .*/memory_limit = 512M/" /etc/php/8.3/cli/php.ini +sed -i "s/;date.timezone.*/date.timezone = UTC/" /etc/php/8.3/cli/php.ini + +# Configure Xdebug +echo "xdebug.mode = debug" >> /etc/php/8.3/mods-available/xdebug.ini +echo "xdebug.discover_client_host = true" >> /etc/php/8.3/mods-available/xdebug.ini +echo "xdebug.client_port = 9003" >> /etc/php/8.3/mods-available/xdebug.ini +echo "xdebug.max_nesting_level = 512" >> /etc/php/8.3/mods-available/xdebug.ini +echo "opcache.revalidate_freq = 0" >> /etc/php/8.3/mods-available/opcache.ini + +# Fixed php fpm bind listening socket - no such file issue. +mkdir -p /run/php +touch /run/php/php8.3-fpm.sock + + # Install Composer + curl -sS https://getcomposer.org/installer | php + mv composer.phar /usr/local/bin/composer + chown -R vagrant:vagrant /home/vagrant/.config + + # Install Global Packages + sudo su vagrant <<'EOF' + /usr/local/bin/composer global require "laravel/envoy=^2.0" + /usr/local/bin/composer global require "laravel/installer=^5.0" + /usr/local/bin/composer global config --no-plugins allow-plugins.slince/composer-registry-manager true + /usr/local/bin/composer global require "slince/composer-registry-manager=^2.0" +EOF + +# Install Nginx +apt-get install -y --allow-downgrades --allow-remove-essential --allow-change-held-packages nginx + +rm /etc/nginx/sites-enabled/default +rm /etc/nginx/sites-available/default + +# Create a configuration file for Nginx overrides. +mkdir -p /home/$WSL_USER_NAME/.config/nginx +chown -R $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME +touch /home/$WSL_USER_NAME/.config/nginx/nginx.conf +ln -sf /home/$WSL_USER_NAME/.config/nginx/nginx.conf /etc/nginx/conf.d/nginx.conf + +# Configure php.ini for FPM +sed -i "s/error_reporting = .*/error_reporting = E_ALL/" /etc/php/8.3/fpm/php.ini +sed -i "s/display_errors = .*/display_errors = On/" /etc/php/8.3/fpm/php.ini +sed -i "s/;cgi.fix_pathinfo=1/cgi.fix_pathinfo=0/" /etc/php/8.3/fpm/php.ini +sed -i "s/memory_limit = .*/memory_limit = 512M/" /etc/php/8.3/fpm/php.ini +sed -i "s/upload_max_filesize = .*/upload_max_filesize = 100M/" /etc/php/8.3/fpm/php.ini +sed -i "s/post_max_size = .*/post_max_size = 100M/" /etc/php/8.3/fpm/php.ini +sed -i "s/;date.timezone.*/date.timezone = UTC/" /etc/php/8.3/fpm/php.ini + +printf "[openssl]\n" | tee -a /etc/php/8.3/fpm/php.ini +printf "openssl.cainfo = /etc/ssl/certs/ca-certificates.crt\n" | tee -a /etc/php/8.3/fpm/php.ini +printf "[curl]\n" | tee -a /etc/php/8.3/fpm/php.ini +printf "curl.cainfo = /etc/ssl/certs/ca-certificates.crt\n" | tee -a /etc/php/8.3/fpm/php.ini + +# Set The Nginx & PHP-FPM User +sed -i "s/user www-data;/user $WSL_USER_NAME;/" /etc/nginx/nginx.conf +sed -i "s/# server_names_hash_bucket_size.*/server_names_hash_bucket_size 64;/" /etc/nginx/nginx.conf + +sed -i "s/user = www-data/user = $WSL_USER_NAME/" /etc/php/8.3/fpm/pool.d/www.conf +sed -i "s/group = www-data/group = $WSL_USER_NAME/" /etc/php/8.3/fpm/pool.d/www.conf + +sed -i "s/listen\.owner.*/listen.owner = $WSL_USER_NAME/" /etc/php/8.3/fpm/pool.d/www.conf +sed -i "s/listen\.group.*/listen.group = $WSL_USER_NAME/" /etc/php/8.3/fpm/pool.d/www.conf +sed -i "s/;listen\.mode.*/listen.mode = 0666/" /etc/php/8.3/fpm/pool.d/www.conf + +# Disable XDebug On The CLI +sudo phpdismod -s cli xdebug + +service nginx restart +service php8.3-fpm restart + +# Add $WSL_USER_NAME User To WWW-Data +usermod -a -G www-data $WSL_USER_NAME +id $WSL_USER_NAME +groups $WSL_USER_GROUP + +# Install Node +apt-get install -y nodejs +/usr/bin/npm install -g npm + +# Install SQLite +apt-get install -y sqlite3 libsqlite3-dev + +# Disable Apparmor +# See https://github.com/laravel/homestead/issues/629#issue-247524528 +service apparmor stop +update-rc.d -f apparmor remove + +# Remove MySQL +apt-get remove -y --purge mysql-server mysql-client mysql-common +apt-get autoremove -y +apt-get autoclean + +rm -rf /var/lib/mysql/* +rm -rf /var/log/mysql +rm -rf /etc/mysql + +# Add Maria PPA +curl -LsS https://downloads.mariadb.com/MariaDB/mariadb_repo_setup | sudo bash + +echo "mariadb-server mysql-server/data-dir select ''" | debconf-set-selections +echo "mariadb-server mysql-server/root_password password secret" | debconf-set-selections +echo "mariadb-server mysql-server/root_password_again password secret" | debconf-set-selections + +mkdir /etc/mysql +touch /etc/mysql/debian.cnf + +# Install MariaDB +apt-get install -y mariadb-server mariadb-client + +# Configure Maria Remote Access and ignore db dirs +sed -i "s/bind-address = 127.0.0.1/bind-address = 0.0.0.0/" /etc/mysql/mariadb.conf.d/50-server.cnf +cat > /etc/mysql/mariadb.conf.d/50-server.cnf << EOF +[mysqld] +bind-address = 0.0.0.0 +ignore-db-dir = lost+found +#general_log +#general_log_file=/var/log/mysql/mariadb.log +EOF + +export MYSQL_PWD=secret + +mysql --user="root" -e "GRANT ALL ON *.* TO root@'0.0.0.0' IDENTIFIED BY 'secret' WITH GRANT OPTION;" +service mysql restart + +mysql --user="root" -e "CREATE USER IF NOT EXISTS 'homestead'@'0.0.0.0' IDENTIFIED BY 'secret';" +mysql --user="root" -e "GRANT ALL ON *.* TO 'homestead'@'0.0.0.0' IDENTIFIED BY 'secret' WITH GRANT OPTION;" +mysql --user="root" -e "GRANT ALL ON *.* TO 'homestead'@'%' IDENTIFIED BY 'secret' WITH GRANT OPTION;" +mysql --user="root" -e "FLUSH PRIVILEGES;" +service mysql restart + +mysql_upgrade --user="root" --verbose --force +service mysql restart + +unset MYSQL_PWD + +# Install Postgres 15 +apt-get install -y postgresql-15 postgresql-server-dev-15 postgresql-15-postgis-3 postgresql-15-postgis-3-scripts + +# Configure Postgres Users +sudo -u postgres psql -c "CREATE ROLE homestead LOGIN PASSWORD 'secret' SUPERUSER INHERIT NOCREATEDB NOCREATEROLE NOREPLICATION;" + +# Configure Postgres Remote Access +sed -i "s/#listen_addresses = 'localhost'/listen_addresses = '*'/g" /etc/postgresql/15/main/postgresql.conf +echo "host all all 10.0.2.2/32 md5" | tee -a /etc/postgresql/15/main/pg_hba.conf + +sudo -u postgres /usr/bin/createdb --echo --owner=homestead homestead +service postgresql restart +# Disable to lower initial overhead +systemctl disable postgresql + +# Install Redis, Memcached, & Beanstalk +apt-get install -y redis-server memcached +systemctl enable redis-server +service redis-server start + +# One last upgrade check +apt-get upgrade -y + +# Clean Up +apt -y autoremove +apt -y clean +chown -R $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME +chown -R $WSL_USER_NAME:$WSL_USER_GROUP /usr/local/bin + +# Add Composer Global Bin To Path +printf "\nPATH=\"$(sudo su - $WSL_USER_NAME -c 'composer config -g home 2>/dev/null')/vendor/bin:\$PATH\"\n" | tee -a /home/$WSL_USER_NAME/.profile + +apt-get -y autoremove; +apt-get -y clean; + +# What are you doing Ubuntu? +# https://askubuntu.com/questions/1250974/user-root-cant-write-to-file-in-tmp-owned-by-someone-else-in-20-04-but-can-in +sysctl fs.protected_regular=0 + +# Setup Homestead repo +su $WSL_USER_NAME -c 'composer install' +su $WSL_USER_NAME -c 'bash init.sh' diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..673e0fd --- /dev/null +++ b/composer.json @@ -0,0 +1,39 @@ +{ + "name": "laravel/homestead", + "description": "A virtual machine for web artisans.", + "require": { + "php": "^8.1 || <8.3", + "symfony/console": "^6.0 || ^7.0", + "symfony/process": "^6.0 || ^7.0", + "symfony/yaml": "^6.0 || ^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.5", + "dms/phpunit-arraysubset-asserts": "^0.2.1", + "phpstan/phpstan": "^1.10" + }, + "license": "MIT", + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + }, + { + "name": "Joe Ferguson", + "email": "joe@joeferguson.me" + } + ], + "autoload": { + "psr-4": { + "Laravel\\Homestead\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "Tests\\": "tests/" + } + }, + "bin": [ + "bin/homestead" + ] +} diff --git a/composer.lock b/composer.lock new file mode 100644 index 0000000..f975aeb --- /dev/null +++ b/composer.lock @@ -0,0 +1,2708 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", + "This file is @generated automatically" + ], + "content-hash": "186632e5fcfc8b65dc45f3bb657fd6b8", + "packages": [ + { + "name": "psr/container", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/container.git", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "shasum": "" + }, + "require": { + "php": ">=7.4.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Container\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common Container Interface (PHP FIG PSR-11)", + "homepage": "https://github.com/php-fig/container", + "keywords": [ + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" + ], + "support": { + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/2.0.2" + }, + "time": "2021-11-05T16:47:00+00:00" + }, + { + "name": "symfony/console", + "version": "v6.4.2", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "0254811a143e6bc6c8deea08b589a7e68a37f625" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/0254811a143e6bc6c8deea08b589a7e68a37f625", + "reference": "0254811a143e6bc6c8deea08b589a7e68a37f625", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/string": "^5.4|^6.0|^7.0" + }, + "conflict": { + "symfony/dependency-injection": "<5.4", + "symfony/dotenv": "<5.4", + "symfony/event-dispatcher": "<5.4", + "symfony/lock": "<5.4", + "symfony/process": "<5.4" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/event-dispatcher": "^5.4|^6.0|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/lock": "^5.4|^6.0|^7.0", + "symfony/messenger": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "symfony/stopwatch": "^5.4|^6.0|^7.0", + "symfony/var-dumper": "^5.4|^6.0|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Eases the creation of beautiful and testable command line interfaces", + "homepage": "https://symfony.com", + "keywords": [ + "cli", + "command-line", + "console", + "terminal" + ], + "support": { + "source": "https://github.com/symfony/console/tree/v6.4.2" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-12-10T16:15:48+00:00" + }, + { + "name": "symfony/deprecation-contracts", + "version": "v3.4.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf", + "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.4-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "files": [ + "function.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "A generic function and convention to trigger deprecation notices", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-05-23T14:45:45+00:00" + }, + { + "name": "symfony/polyfill-ctype", + "version": "v1.28.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", + "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-ctype": "*" + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-01-26T09:26:14+00:00" + }, + { + "name": "symfony/polyfill-intl-grapheme", + "version": "v1.28.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-grapheme.git", + "reference": "875e90aeea2777b6f135677f618529449334a612" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612", + "reference": "875e90aeea2777b6f135677f618529449334a612", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Grapheme\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's grapheme_* functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "grapheme", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-01-26T09:26:14+00:00" + }, + { + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.28.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", + "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Normalizer\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's Normalizer class and related functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "intl", + "normalizer", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-01-26T09:26:14+00:00" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.28.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "42292d99c55abe617799667f454222c54c60e229" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229", + "reference": "42292d99c55abe617799667f454222c54c60e229", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-mbstring": "*" + }, + "suggest": { + "ext-mbstring": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for the Mbstring extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-07-28T09:04:16+00:00" + }, + { + "name": "symfony/process", + "version": "v6.4.2", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "c4b1ef0bc80533d87a2e969806172f1c2a980241" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/c4b1ef0bc80533d87a2e969806172f1c2a980241", + "reference": "c4b1ef0bc80533d87a2e969806172f1c2a980241", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Process\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Executes commands in sub-processes", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/process/tree/v6.4.2" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-12-22T16:42:54+00:00" + }, + { + "name": "symfony/service-contracts", + "version": "v3.4.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/service-contracts.git", + "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/fe07cbc8d837f60caf7018068e350cc5163681a0", + "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/container": "^1.1|^2.0" + }, + "conflict": { + "ext-psr": "<1.1|>=2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.4-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Service\\": "" + }, + "exclude-from-classmap": [ + "/Test/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to writing services", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/service-contracts/tree/v3.4.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-12-26T14:02:43+00:00" + }, + { + "name": "symfony/string", + "version": "v6.4.2", + "source": { + "type": "git", + "url": "https://github.com/symfony/string.git", + "reference": "7cb80bc10bfcdf6b5492741c0b9357dac66940bc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/string/zipball/7cb80bc10bfcdf6b5492741c0b9357dac66940bc", + "reference": "7cb80bc10bfcdf6b5492741c0b9357dac66940bc", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-intl-grapheme": "~1.0", + "symfony/polyfill-intl-normalizer": "~1.0", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/translation-contracts": "<2.5" + }, + "require-dev": { + "symfony/error-handler": "^5.4|^6.0|^7.0", + "symfony/http-client": "^5.4|^6.0|^7.0", + "symfony/intl": "^6.2|^7.0", + "symfony/translation-contracts": "^2.5|^3.0", + "symfony/var-exporter": "^5.4|^6.0|^7.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/functions.php" + ], + "psr-4": { + "Symfony\\Component\\String\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", + "homepage": "https://symfony.com", + "keywords": [ + "grapheme", + "i18n", + "string", + "unicode", + "utf-8", + "utf8" + ], + "support": { + "source": "https://github.com/symfony/string/tree/v6.4.2" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-12-10T16:15:48+00:00" + }, + { + "name": "symfony/yaml", + "version": "v6.4.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "4f9237a1bb42455d609e6687d2613dde5b41a587" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/4f9237a1bb42455d609e6687d2613dde5b41a587", + "reference": "4f9237a1bb42455d609e6687d2613dde5b41a587", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/console": "<5.4" + }, + "require-dev": { + "symfony/console": "^5.4|^6.0|^7.0" + }, + "bin": [ + "Resources/bin/yaml-lint" + ], + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Yaml\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Loads and dumps YAML files", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/yaml/tree/v6.4.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-11-06T11:00:25+00:00" + } + ], + "packages-dev": [ + { + "name": "dms/phpunit-arraysubset-asserts", + "version": "v0.2.1", + "source": { + "type": "git", + "url": "https://github.com/rdohms/phpunit-arraysubset-asserts.git", + "reference": "8e3673a70019a60df484e36fc3271d63cbdc40ea" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/rdohms/phpunit-arraysubset-asserts/zipball/8e3673a70019a60df484e36fc3271d63cbdc40ea", + "reference": "8e3673a70019a60df484e36fc3271d63cbdc40ea", + "shasum": "" + }, + "require": { + "php": "^7.3|^8.0", + "phpunit/phpunit": "^9.0" + }, + "require-dev": { + "dms/coding-standard": "^1.0", + "squizlabs/php_codesniffer": "^3.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "DMS\\PHPUnitExtensions\\ArraySubset\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Rafael Dohms", + "email": "rdohms@gmail.com" + } + ], + "description": "This package provides ArraySubset and related asserts once deprecated in PHPUnit 8", + "support": { + "issues": "https://github.com/rdohms/phpunit-arraysubset-asserts/issues", + "source": "https://github.com/rdohms/phpunit-arraysubset-asserts/tree/v0.2.1" + }, + "time": "2020-10-03T21:43:40+00:00" + }, + { + "name": "doctrine/instantiator", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/instantiator.git", + "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0", + "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "doctrine/coding-standard": "^11", + "ext-pdo": "*", + "ext-phar": "*", + "phpbench/phpbench": "^1.2", + "phpstan/phpstan": "^1.9.4", + "phpstan/phpstan-phpunit": "^1.3", + "phpunit/phpunit": "^9.5.27", + "vimeo/psalm": "^5.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com", + "homepage": "https://ocramius.github.io/" + } + ], + "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", + "homepage": "https://www.doctrine-project.org/projects/instantiator.html", + "keywords": [ + "constructor", + "instantiate" + ], + "support": { + "issues": "https://github.com/doctrine/instantiator/issues", + "source": "https://github.com/doctrine/instantiator/tree/2.0.0" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator", + "type": "tidelift" + } + ], + "time": "2022-12-30T00:23:10+00:00" + }, + { + "name": "myclabs/deep-copy", + "version": "1.11.1", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", + "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "conflict": { + "doctrine/collections": "<1.6.8", + "doctrine/common": "<2.13.3 || >=3,<3.2.2" + }, + "require-dev": { + "doctrine/collections": "^1.6.8", + "doctrine/common": "^2.13.3 || ^3.2.2", + "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" + }, + "type": "library", + "autoload": { + "files": [ + "src/DeepCopy/deep_copy.php" + ], + "psr-4": { + "DeepCopy\\": "src/DeepCopy/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Create deep copies (clones) of your objects", + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ], + "support": { + "issues": "https://github.com/myclabs/DeepCopy/issues", + "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1" + }, + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", + "type": "tidelift" + } + ], + "time": "2023-03-08T13:26:56+00:00" + }, + { + "name": "nikic/php-parser", + "version": "v5.0.0", + "source": { + "type": "git", + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "4a21235f7e56e713259a6f76bf4b5ea08502b9dc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4a21235f7e56e713259a6f76bf4b5ea08502b9dc", + "reference": "4a21235f7e56e713259a6f76bf4b5ea08502b9dc", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "ext-json": "*", + "ext-tokenizer": "*", + "php": ">=7.4" + }, + "require-dev": { + "ircmaxell/php-yacc": "^0.0.7", + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" + }, + "bin": [ + "bin/php-parse" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0-dev" + } + }, + "autoload": { + "psr-4": { + "PhpParser\\": "lib/PhpParser" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Nikita Popov" + } + ], + "description": "A PHP parser written in PHP", + "keywords": [ + "parser", + "php" + ], + "support": { + "issues": "https://github.com/nikic/PHP-Parser/issues", + "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.0" + }, + "time": "2024-01-07T17:17:35+00:00" + }, + { + "name": "phar-io/manifest", + "version": "2.0.3", + "source": { + "type": "git", + "url": "https://github.com/phar-io/manifest.git", + "reference": "97803eca37d319dfa7826cc2437fc020857acb53" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53", + "reference": "97803eca37d319dfa7826cc2437fc020857acb53", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-phar": "*", + "ext-xmlwriter": "*", + "phar-io/version": "^3.0.1", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "support": { + "issues": "https://github.com/phar-io/manifest/issues", + "source": "https://github.com/phar-io/manifest/tree/2.0.3" + }, + "time": "2021-07-20T11:28:43+00:00" + }, + { + "name": "phar-io/version", + "version": "3.2.1", + "source": { + "type": "git", + "url": "https://github.com/phar-io/version.git", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Library for handling version information and constraints", + "support": { + "issues": "https://github.com/phar-io/version/issues", + "source": "https://github.com/phar-io/version/tree/3.2.1" + }, + "time": "2022-02-21T01:04:05+00:00" + }, + { + "name": "phpstan/phpstan", + "version": "1.10.57", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpstan.git", + "reference": "1627b1d03446904aaa77593f370c5201d2ecc34e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/1627b1d03446904aaa77593f370c5201d2ecc34e", + "reference": "1627b1d03446904aaa77593f370c5201d2ecc34e", + "shasum": "" + }, + "require": { + "php": "^7.2|^8.0" + }, + "conflict": { + "phpstan/phpstan-shim": "*" + }, + "bin": [ + "phpstan", + "phpstan.phar" + ], + "type": "library", + "autoload": { + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "PHPStan - PHP Static Analysis Tool", + "keywords": [ + "dev", + "static analysis" + ], + "support": { + "docs": "https://phpstan.org/user-guide/getting-started", + "forum": "https://github.com/phpstan/phpstan/discussions", + "issues": "https://github.com/phpstan/phpstan/issues", + "security": "https://github.com/phpstan/phpstan/security/policy", + "source": "https://github.com/phpstan/phpstan-src" + }, + "funding": [ + { + "url": "https://github.com/ondrejmirtes", + "type": "github" + }, + { + "url": "https://github.com/phpstan", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan", + "type": "tidelift" + } + ], + "time": "2024-01-24T11:51:34+00:00" + }, + { + "name": "phpunit/php-code-coverage", + "version": "9.2.30", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ca2bd87d2f9215904682a9cb9bb37dda98e76089", + "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-xmlwriter": "*", + "nikic/php-parser": "^4.18 || ^5.0", + "php": ">=7.3", + "phpunit/php-file-iterator": "^3.0.3", + "phpunit/php-text-template": "^2.0.2", + "sebastian/code-unit-reverse-lookup": "^2.0.2", + "sebastian/complexity": "^2.0", + "sebastian/environment": "^5.1.2", + "sebastian/lines-of-code": "^1.0.3", + "sebastian/version": "^3.0.1", + "theseer/tokenizer": "^1.2.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "suggest": { + "ext-pcov": "PHP extension that provides line coverage", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "9.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", + "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "keywords": [ + "coverage", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", + "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.30" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-12-22T06:47:57+00:00" + }, + { + "name": "phpunit/php-file-iterator", + "version": "3.0.6", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", + "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "FilterIterator implementation that filters files based on a list of suffixes.", + "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", + "keywords": [ + "filesystem", + "iterator" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2021-12-02T12:48:52+00:00" + }, + { + "name": "phpunit/php-invoker", + "version": "3.1.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-invoker.git", + "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67", + "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "ext-pcntl": "*", + "phpunit/phpunit": "^9.3" + }, + "suggest": { + "ext-pcntl": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Invoke callables with a timeout", + "homepage": "https://github.com/sebastianbergmann/php-invoker/", + "keywords": [ + "process" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-invoker/issues", + "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-09-28T05:58:55+00:00" + }, + { + "name": "phpunit/php-text-template", + "version": "2.0.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", + "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Simple template engine.", + "homepage": "https://github.com/sebastianbergmann/php-text-template/", + "keywords": [ + "template" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-text-template/issues", + "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T05:33:50+00:00" + }, + { + "name": "phpunit/php-timer", + "version": "5.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", + "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Utility class for timing", + "homepage": "https://github.com/sebastianbergmann/php-timer/", + "keywords": [ + "timer" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-timer/issues", + "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T13:16:10+00:00" + }, + { + "name": "phpunit/phpunit", + "version": "9.6.16", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "3767b2c56ce02d01e3491046f33466a1ae60a37f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/3767b2c56ce02d01e3491046f33466a1ae60a37f", + "reference": "3767b2c56ce02d01e3491046f33466a1ae60a37f", + "shasum": "" + }, + "require": { + "doctrine/instantiator": "^1.3.1 || ^2", + "ext-dom": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xml": "*", + "ext-xmlwriter": "*", + "myclabs/deep-copy": "^1.10.1", + "phar-io/manifest": "^2.0.3", + "phar-io/version": "^3.0.2", + "php": ">=7.3", + "phpunit/php-code-coverage": "^9.2.28", + "phpunit/php-file-iterator": "^3.0.5", + "phpunit/php-invoker": "^3.1.1", + "phpunit/php-text-template": "^2.0.3", + "phpunit/php-timer": "^5.0.2", + "sebastian/cli-parser": "^1.0.1", + "sebastian/code-unit": "^1.0.6", + "sebastian/comparator": "^4.0.8", + "sebastian/diff": "^4.0.3", + "sebastian/environment": "^5.1.3", + "sebastian/exporter": "^4.0.5", + "sebastian/global-state": "^5.0.1", + "sebastian/object-enumerator": "^4.0.3", + "sebastian/resource-operations": "^3.0.3", + "sebastian/type": "^3.2", + "sebastian/version": "^3.0.2" + }, + "suggest": { + "ext-soap": "To be able to generate mocks based on WSDL files", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" + }, + "bin": [ + "phpunit" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "9.6-dev" + } + }, + "autoload": { + "files": [ + "src/Framework/Assert/Functions.php" + ], + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "The PHP Unit Testing framework.", + "homepage": "https://phpunit.de/", + "keywords": [ + "phpunit", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/phpunit/issues", + "security": "https://github.com/sebastianbergmann/phpunit/security/policy", + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.16" + }, + "funding": [ + { + "url": "https://phpunit.de/sponsors.html", + "type": "custom" + }, + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit", + "type": "tidelift" + } + ], + "time": "2024-01-19T07:03:14+00:00" + }, + { + "name": "sebastian/cli-parser", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/cli-parser.git", + "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2", + "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for parsing CLI options", + "homepage": "https://github.com/sebastianbergmann/cli-parser", + "support": { + "issues": "https://github.com/sebastianbergmann/cli-parser/issues", + "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-09-28T06:08:49+00:00" + }, + { + "name": "sebastian/code-unit", + "version": "1.0.8", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit.git", + "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120", + "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the PHP code units", + "homepage": "https://github.com/sebastianbergmann/code-unit", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit/issues", + "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T13:08:54+00:00" + }, + { + "name": "sebastian/code-unit-reverse-lookup", + "version": "2.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", + "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Looks up which function or method a line of code belongs to", + "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-09-28T05:30:19+00:00" + }, + { + "name": "sebastian/comparator", + "version": "4.0.8", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "fa0f136dd2334583309d32b62544682ee972b51a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a", + "reference": "fa0f136dd2334583309d32b62544682ee972b51a", + "shasum": "" + }, + "require": { + "php": ">=7.3", + "sebastian/diff": "^4.0", + "sebastian/exporter": "^4.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + } + ], + "description": "Provides the functionality to compare PHP values for equality", + "homepage": "https://github.com/sebastianbergmann/comparator", + "keywords": [ + "comparator", + "compare", + "equality" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/comparator/issues", + "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2022-09-14T12:41:17+00:00" + }, + { + "name": "sebastian/complexity", + "version": "2.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/complexity.git", + "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a", + "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^4.18 || ^5.0", + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for calculating the complexity of PHP code units", + "homepage": "https://github.com/sebastianbergmann/complexity", + "support": { + "issues": "https://github.com/sebastianbergmann/complexity/issues", + "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-12-22T06:19:30+00:00" + }, + { + "name": "sebastian/diff", + "version": "4.0.5", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131", + "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3", + "symfony/process": "^4.2 || ^5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + } + ], + "description": "Diff implementation", + "homepage": "https://github.com/sebastianbergmann/diff", + "keywords": [ + "diff", + "udiff", + "unidiff", + "unified diff" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/diff/issues", + "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-05-07T05:35:17+00:00" + }, + { + "name": "sebastian/environment", + "version": "5.1.5", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", + "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "suggest": { + "ext-posix": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides functionality to handle HHVM/PHP environments", + "homepage": "http://www.github.com/sebastianbergmann/environment", + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/environment/issues", + "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:03:51+00:00" + }, + { + "name": "sebastian/exporter", + "version": "4.0.5", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", + "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", + "shasum": "" + }, + "require": { + "php": ">=7.3", + "sebastian/recursion-context": "^4.0" + }, + "require-dev": { + "ext-mbstring": "*", + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Provides the functionality to export PHP variables for visualization", + "homepage": "https://www.github.com/sebastianbergmann/exporter", + "keywords": [ + "export", + "exporter" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/exporter/issues", + "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2022-09-14T06:03:37+00:00" + }, + { + "name": "sebastian/global-state", + "version": "5.0.6", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "bde739e7565280bda77be70044ac1047bc007e34" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34", + "reference": "bde739e7565280bda77be70044ac1047bc007e34", + "shasum": "" + }, + "require": { + "php": ">=7.3", + "sebastian/object-reflector": "^2.0", + "sebastian/recursion-context": "^4.0" + }, + "require-dev": { + "ext-dom": "*", + "phpunit/phpunit": "^9.3" + }, + "suggest": { + "ext-uopz": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Snapshotting of global state", + "homepage": "http://www.github.com/sebastianbergmann/global-state", + "keywords": [ + "global state" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/global-state/issues", + "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-08-02T09:26:13+00:00" + }, + { + "name": "sebastian/lines-of-code", + "version": "1.0.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/lines-of-code.git", + "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5", + "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^4.18 || ^5.0", + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for counting the lines of code in PHP source code", + "homepage": "https://github.com/sebastianbergmann/lines-of-code", + "support": { + "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", + "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-12-22T06:20:34+00:00" + }, + { + "name": "sebastian/object-enumerator", + "version": "4.0.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "5c9eeac41b290a3712d88851518825ad78f45c71" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71", + "reference": "5c9eeac41b290a3712d88851518825ad78f45c71", + "shasum": "" + }, + "require": { + "php": ">=7.3", + "sebastian/object-reflector": "^2.0", + "sebastian/recursion-context": "^4.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Traverses array structures and object graphs to enumerate all referenced objects", + "homepage": "https://github.com/sebastianbergmann/object-enumerator/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T13:12:34+00:00" + }, + { + "name": "sebastian/object-reflector", + "version": "2.0.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", + "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Allows reflection of object attributes, including inherited and non-public ones", + "homepage": "https://github.com/sebastianbergmann/object-reflector/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-reflector/issues", + "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T13:14:26+00:00" + }, + { + "name": "sebastian/recursion-context", + "version": "4.0.5", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", + "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "description": "Provides functionality to recursively process PHP variables", + "homepage": "https://github.com/sebastianbergmann/recursion-context", + "support": { + "issues": "https://github.com/sebastianbergmann/recursion-context/issues", + "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:07:39+00:00" + }, + { + "name": "sebastian/resource-operations", + "version": "3.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/resource-operations.git", + "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", + "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides a list of PHP built-in functions that operate on resources", + "homepage": "https://www.github.com/sebastianbergmann/resource-operations", + "support": { + "issues": "https://github.com/sebastianbergmann/resource-operations/issues", + "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-09-28T06:45:17+00:00" + }, + { + "name": "sebastian/type", + "version": "3.2.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/type.git", + "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", + "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the types of the PHP type system", + "homepage": "https://github.com/sebastianbergmann/type", + "support": { + "issues": "https://github.com/sebastianbergmann/type/issues", + "source": "https://github.com/sebastianbergmann/type/tree/3.2.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:13:03+00:00" + }, + { + "name": "sebastian/version", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "c6c1022351a901512170118436c764e473f6de8c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c", + "reference": "c6c1022351a901512170118436c764e473f6de8c", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version", + "support": { + "issues": "https://github.com/sebastianbergmann/version/issues", + "source": "https://github.com/sebastianbergmann/version/tree/3.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-09-28T06:39:44+00:00" + }, + { + "name": "theseer/tokenizer", + "version": "1.2.2", + "source": { + "type": "git", + "url": "https://github.com/theseer/tokenizer.git", + "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b2ad5003ca10d4ee50a12da31de12a5774ba6b96", + "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-tokenizer": "*", + "ext-xmlwriter": "*", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + } + ], + "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", + "support": { + "issues": "https://github.com/theseer/tokenizer/issues", + "source": "https://github.com/theseer/tokenizer/tree/1.2.2" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2023-11-20T00:12:19+00:00" + } + ], + "aliases": [], + "minimum-stability": "stable", + "stability-flags": [], + "prefer-stable": false, + "prefer-lowest": false, + "platform": { + "php": "^8.1 || <8.3" + }, + "platform-dev": [], + "plugin-api-version": "2.6.0" +} diff --git a/init.bat b/init.bat new file mode 100644 index 0000000..62b30f3 --- /dev/null +++ b/init.bat @@ -0,0 +1,13 @@ +@echo off + +if ["%~1"]==["json"] ( + copy /-y resources\Homestead.json Homestead.json +) +if ["%~1"]==[""] ( + copy /-y resources\Homestead.yaml Homestead.yaml +) + +copy /-y resources\after.sh after.sh +copy /-y resources\aliases aliases + +echo Homestead initialized! diff --git a/init.sh b/init.sh new file mode 100644 index 0000000..f5a66ae --- /dev/null +++ b/init.sh @@ -0,0 +1,12 @@ +#!/usr/bin/env bash + +if [[ -n "$1" ]]; then + cp -i resources/Homestead.json Homestead.json +else + cp -i resources/Homestead.yaml Homestead.yaml +fi + +cp -i resources/after.sh after.sh +cp -i resources/aliases aliases + +echo "Homestead initialized!" diff --git a/phpstan.src.neon.dist b/phpstan.src.neon.dist new file mode 100644 index 0000000..f5d4e57 --- /dev/null +++ b/phpstan.src.neon.dist @@ -0,0 +1,17 @@ +parameters: + paths: + - src + level: 0 + ignoreErrors: + - "#\\(void\\) is used#" + - "#Access to an undefined property#" + - "#Call to an undefined method#" + - "#but return statement is missing.#" + - "#Caught class [a-zA-Z0-9\\\\_]+ not found.#" + - "#Class [a-zA-Z0-9\\\\_]+ not found.#" + - "#has invalid type#" + - "#should always throw an exception or terminate script execution#" + - "#Instantiated class [a-zA-Z0-9\\\\_]+ not found.#" + - "#Unsafe usage of new static#" + excludePaths: + - "src/Illuminate/Testing/ParallelRunner.php" diff --git a/phpunit.xml.dist b/phpunit.xml.dist new file mode 100644 index 0000000..8b3709e --- /dev/null +++ b/phpunit.xml.dist @@ -0,0 +1,13 @@ + + + + + src + + + + + ./tests + + + diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..dc72131 --- /dev/null +++ b/readme.md @@ -0,0 +1,110 @@ +### Laravel Homestead + +Ceci est une adaptation des distributions officielles, pour le montage d'un environnement de développement complet sur un ordinateur personnel. + + +## Préparation du déploiement + +Clôner le dépôt sur la machine. + +Dans le fichier `Homestead.yaml`, renseigner : +``` +authorize: ## Le chemin de la clé publique de la machine ## + +keys: + - ## Le chemin de la clé privée de la machine ## + +folders: + - map: ## Le répertoire de montage pour le code du projet (à créer sur la machine) ## + to: /home/vagrant/code +``` + + + +## Création de la VM + +Depuis la racine du dépôt, lancer l'import de la box et son provisionning avec `vagrant up` + + +## Création d'un projet Laravel + +Se connecter au terminal de la VM depuis la racine du dépôt, avec `vagrant ssh`. + +Pour le premier projet, récupérer l'installeur : + +``` +composer global require laravel/installer +``` + +Puis, construire le projet au niveau du point de montage entre la VM et la machine : + +``` +cd code +laravel new test_app +``` +Possibilité de choisir un starter kit (pas utile pour tester), un système de test, d'initialiser immédiatement un dépôt git pour le projet... + +Quand prompt, sélectionner MySQL comme SGBD. Ne PAS demander à faire automatiquement les premières migrations. + +## Configuration de la base de données + +Une fois connecté en root (`mysql -u root`), créer l'utilisateur de l'application et la base de données de cette dernière : +``` +CREATE USER 'admin_test'@'%' IDENTIFIED BY 'mdp_test'; +CREATE DATABASE test_app; +GRANT ALL PRIVILEGES ON test_app.* TO 'admin_test'@'%'; +FLUSH PRIVILEGES; +``` + +Ensuite, dans les fichiers du projet au niveau du point de montage, aller éditer dans le fichier `.env` : + +``` +DB_CONNECTION=mysql +DB_HOST=127.0.0.1 +DB_PORT=3306 +DB_DATABASE=test_app +DB_USERNAME=admin_test +DB_PASSWORD=mdp_test +``` + +## Première migration +Réaliser la première migration (utilisation des classes du code pour structurer la base de données) : +``` +cd test_app +php artisan make:migration 1st_tables +php artisan migrate +``` + +## Démarrage du serveur web et connexion +Démarrer le serveur web de la VM avec : +``` +php artisan serve --port=8000 --host=0.0.0.0 +``` + +L'application est alors accessible via : http://192.168.56.56:8000/ + +## Ressources officielles + +

+ + Build Status + + + Total Downloads + + + Latest Stable Version + + + License + +

+ + + +Laravel Homestead is an official, pre-packaged Vagrant box that provides you a wonderful development environment without requiring you to install PHP, a web server, or any other server software on your local machine. No more worrying about messing up your operating system! Vagrant boxes are completely disposable. If something goes wrong, you can destroy and re-create the box in minutes! + +Homestead runs on any Windows, Mac, or Linux system, and includes the Nginx web server, PHP, MySQL, Postgres, Redis, Memcached, Node, and all of the other goodies you need to develop amazing Laravel applications. + +Official documentation [is located here](https://laravel.com/docs/homestead). + diff --git a/resources/Homestead.json b/resources/Homestead.json new file mode 100644 index 0000000..2286363 --- /dev/null +++ b/resources/Homestead.json @@ -0,0 +1,47 @@ +{ + "ip": "192.168.56.56", + "memory": 2048, + "cpus": 2, + "provider": "virtualbox", + "authorize": "~/.ssh/id_rsa.pub", + "keys": [ + "~/.ssh/id_rsa" + ], + "folders": [ + { + "map": "~/code", + "to": "/home/vagrant/code" + } + ], + "sites": [ + { + "map": "homestead.test", + "to": "/home/vagrant/code/public" + } + ], + "databases": [ + "homestead" + ], + "features": [ + { + "mysql": true + }, + { + "mariadb": false + }, + { + "postgresql": false + }, + { + "ohmyzsh": false + }, + { + "webdriver": false + } + ], + "services": [ + { + "mysql": true + } + ] +} diff --git a/resources/Homestead.yaml b/resources/Homestead.yaml new file mode 100644 index 0000000..fad6827 --- /dev/null +++ b/resources/Homestead.yaml @@ -0,0 +1,47 @@ +--- +ip: "192.168.56.56" +memory: 2048 +cpus: 2 +provider: virtualbox + +authorize: ~/.ssh/id_rsa.pub + +keys: + - ~/.ssh/id_rsa + +folders: + - map: ~/code + to: /home/vagrant/code + +sites: + - map: homestead.test + to: /home/vagrant/code/public + +databases: + - homestead + +features: + - mariadb: false + - postgresql: false + - ohmyzsh: false + - webdriver: false + +services: + - enabled: + - "mysql" +# - disabled: +# - "postgresql@11-main" + +# ports: +# - send: 33060 # MySQL/MariaDB +# to: 3306 +# - send: 4040 +# to: 4040 +# - send: 54320 # PostgreSQL +# to: 5432 +# - send: 8025 # Mailpit +# to: 8025 +# - send: 9600 +# to: 9600 +# - send: 27017 +# to: 27017 diff --git a/resources/after.sh b/resources/after.sh new file mode 100644 index 0000000..c455861 --- /dev/null +++ b/resources/after.sh @@ -0,0 +1,23 @@ +#!/bin/sh + +# If you would like to do some extra provisioning you may +# add any commands you wish to this file and they will +# be run after the Homestead machine is provisioned. +# +# If you have user-specific configurations you would like +# to apply, you may also create user-customizations.sh, +# which will be run after this script. + + +# If you're not quite ready for the latest Node.js version, +# uncomment these lines to roll back to a previous version + +# Remove current Node.js version: +#sudo apt-get -y purge nodejs +#sudo rm -rf /usr/lib/node_modules/npm/lib +#sudo rm -rf //etc/apt/sources.list.d/nodesource.list + +# Install Node.js Version desired (i.e. v13) +# More info: https://github.com/nodesource/distributions/blob/master/README.md#debinstall +#curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash - +#sudo apt-get install -y nodejs diff --git a/resources/aliases b/resources/aliases new file mode 100644 index 0000000..6bf452a --- /dev/null +++ b/resources/aliases @@ -0,0 +1,357 @@ +alias ..="cd .." +alias ...="cd ../.." + +alias h='cd ~' +alias c='clear' +alias art=artisan + +alias codecept='vendor/bin/codecept' +alias phpspec='vendor/bin/phpspec' +alias pint='vendor/bin/pint' +alias serve=serve-laravel + +alias xoff='sudo phpdismod -s cli xdebug' +alias xon='sudo phpenmod -s cli xdebug' + +alias nrd="npm run dev" +alias nrw="npm run watch" +alias nrwp="npm run watch-poll" +alias nrh="npm run hot" +alias nrp="npm run production" + +alias yrd="yarn dev" +alias yrw="yarn watch" +alias yrwp="yarn watch-poll" +alias yrh="yarn hot" +alias yrp="yarn production" + +function artisan() { + php artisan "$@" +} + +function dusk() { + pids=$(pidof /usr/bin/Xvfb) + + if [ ! -n "$pids" ]; then + Xvfb :0 -screen 0 1280x960x24 & + fi + + if [[ $? -eq 0 ]] + then + php artisan dusk + else + php artisan dusk --filter "$@" + fi +} + +function p() { + if [ -f vendor/bin/pest ]; then + vendor/bin/pest "$@" + else + vendor/bin/phpunit "$@" + fi + } + + function pf() { + if [ -f vendor/bin/pest ]; then + vendor/bin/pest --filter "$@" + else + vendor/bin/phpunit --filter "$@" + fi + } + +function php56() { + sudo update-alternatives --set php /usr/bin/php5.6 + sudo update-alternatives --set php-config /usr/bin/php-config5.6 + sudo update-alternatives --set phpize /usr/bin/phpize5.6 +} + +function php70() { + sudo update-alternatives --set php /usr/bin/php7.0 + sudo update-alternatives --set php-config /usr/bin/php-config7.0 + sudo update-alternatives --set phpize /usr/bin/phpize7.0 +} + +function php71() { + sudo update-alternatives --set php /usr/bin/php7.1 + sudo update-alternatives --set php-config /usr/bin/php-config7.1 + sudo update-alternatives --set phpize /usr/bin/phpize7.1 +} + +function php72() { + sudo update-alternatives --set php /usr/bin/php7.2 + sudo update-alternatives --set php-config /usr/bin/php-config7.2 + sudo update-alternatives --set phpize /usr/bin/phpize7.2 +} + +function php73() { + sudo update-alternatives --set php /usr/bin/php7.3 + sudo update-alternatives --set php-config /usr/bin/php-config7.3 + sudo update-alternatives --set phpize /usr/bin/phpize7.3 +} + +function php74() { + sudo update-alternatives --set php /usr/bin/php7.4 + sudo update-alternatives --set php-config /usr/bin/php-config7.4 + sudo update-alternatives --set phpize /usr/bin/phpize7.4 +} + +function php80() { + sudo update-alternatives --set php /usr/bin/php8.0 + sudo update-alternatives --set php-config /usr/bin/php-config8.0 + sudo update-alternatives --set phpize /usr/bin/phpize8.0 +} + +function php81() { + sudo update-alternatives --set php /usr/bin/php8.1 + sudo update-alternatives --set php-config /usr/bin/php-config8.1 + sudo update-alternatives --set phpize /usr/bin/phpize8.1 +} + +function php82() { + sudo update-alternatives --set php /usr/bin/php8.2 + sudo update-alternatives --set php-config /usr/bin/php-config8.2 + sudo update-alternatives --set phpize /usr/bin/phpize8.2 +} + +function php83() { + sudo update-alternatives --set php /usr/bin/php8.3 + sudo update-alternatives --set php-config /usr/bin/php-config8.3 + sudo update-alternatives --set phpize /usr/bin/phpize8.3 +} + +function serve-apache() { + if [[ "$1" && "$2" ]] + then + sudo bash /vagrant/scripts/create-certificate.sh "$1" + sudo dos2unix /vagrant/scripts/site-types/apache.sh + sudo bash /vagrant/scripts/site-types/apache.sh "$1" "$2" 80 443 "${3:-8.3}" + else + echo "Error: missing required parameters." + echo "Usage: " + echo " serve-apache domain path" + fi +} + +function serve-apache-proxy() { + if [[ "$1" && "$2" ]] + then + sudo bash /vagrant/scripts/create-certificate.sh "$1" + sudo dos2unix /vagrant/scripts/site-types/apache-proxy.sh + sudo bash /vagrant/scripts/site-types/apache-proxy.sh "$1" "$2" 80 443 "${3:-8.3}" + else + echo "Error: missing required parameters." + echo "Usage: " + echo " serve-apache-proxy domain port" + fi +} + +function serve-laravel() { + if [[ "$1" && "$2" ]] + then + sudo bash /vagrant/scripts/create-certificate.sh "$1" + sudo dos2unix /vagrant/scripts/site-types/laravel.sh + sudo bash /vagrant/scripts/site-types/laravel.sh "$1" "$2" 80 443 "${3:-8.3}" + else + echo "Error: missing required parameters." + echo "Usage: " + echo " serve domain path" + fi +} + +function serve-proxy() { + if [[ "$1" && "$2" ]] + then + sudo bash /vagrant/scripts/create-certificate.sh "$1" + sudo dos2unix /vagrant/scripts/site-types/proxy.sh + sudo bash /vagrant/scripts/site-types/proxy.sh "$1" "$2" 80 443 "${3:-8.3}" + else + echo "Error: missing required parameters." + echo "Usage: " + echo " serve-proxy domain port" + fi +} + +function serve-silverstripe() { + if [[ "$1" && "$2" ]] + then + sudo bash /vagrant/scripts/create-certificate.sh "$1" + sudo dos2unix /vagrant/scripts/site-types/silverstripe.sh + sudo bash /vagrant/scripts/site-types/silverstripe.sh "$1" "$2" 80 443 "${3:-8.3}" + else + echo "Error: missing required parameters." + echo "Usage: " + echo " serve-silverstripe domain path" + fi +} + +function serve-spa() { + if [[ "$1" && "$2" ]] + then + sudo bash /vagrant/scripts/create-certificate.sh "$1" + sudo dos2unix /vagrant/scripts/site-types/spa.sh + sudo bash /vagrant/scripts/site-types/spa.sh "$1" "$2" 80 443 "${3:-8.3}" + else + echo "Error: missing required parameters." + echo "Usage: " + echo " serve-spa domain path" + fi +} + +function serve-statamic() { + if [[ "$1" && "$2" ]] + then + sudo bash /vagrant/scripts/create-certificate.sh "$1" + sudo dos2unix /vagrant/scripts/site-types/statamic.sh + sudo bash /vagrant/scripts/site-types/statamic.sh "$1" "$2" 80 443 "${3:-8.3}" + else + echo "Error: missing required parameters." + echo "Usage: " + echo " serve-statamic domain path" + fi +} + +function serve-symfony2() { + if [[ "$1" && "$2" ]] + then + sudo bash /vagrant/scripts/create-certificate.sh "$1" + sudo dos2unix /vagrant/scripts/site-types/symfony2.sh + sudo bash /vagrant/scripts/site-types/symfony2.sh "$1" "$2" 80 443 "${3:-8.3}" + else + echo "Error: missing required parameters." + echo "Usage: " + echo " serve-symfony2 domain path" + fi +} + +function serve-symfony4() { + if [[ "$1" && "$2" ]] + then + sudo bash /vagrant/scripts/create-certificate.sh "$1" + sudo dos2unix /vagrant/scripts/site-types/symfony4.sh + sudo bash /vagrant/scripts/site-types/symfony4.sh "$1" "$2" 80 443 "${3:-8.3}" + else + echo "Error: missing required parameters." + echo "Usage: " + echo " serve-symfony4 domain path" + fi +} + +function serve-pimcore() { + if [[ "$1" && "$2" ]] + then + sudo bash /vagrant/scripts/create-certificate.sh "$1" + sudo dos2unix /vagrant/scripts/site-types/pimcore.sh + sudo bash /vagrant/scripts/site-types/pimcore.sh "$1" "$2" 80 443 "${3:-8.3}" + else + echo "Error: missing required parameters." + echo "Usage: " + echo " serve-pimcore domain path" + fi +} + +function share() { + if [[ "$1" ]] + then + ngrok http ${@:2} $1:80 --host-header=rewrite + else + echo "Error: missing required parameters." + echo "Usage: " + echo " share domain" + echo "Invocation with extra params passed directly to ngrok" + echo " share domain -region=eu -subdomain=test1234" + fi +} + +function sshare() { + if [[ "$1" ]] + then + ngrok http ${@:2} $1:443 --host-header=rewrite + else + echo "Error: missing required parameters." + echo "Usage: " + echo " sshare domain" + echo "Invocation with extra params passed directly to ngrok" + echo " sshare domain --subdomain=test1234" + fi +} + +function flip() { + sudo bash /vagrant/scripts/flip-webserver.sh +} + +function __has_pv() { + $(hash pv 2>/dev/null); + + return $? +} + +function __pv_install_message() { + if ! __has_pv; then + echo $1 + echo "Install pv with \`sudo apt-get install -y pv\` then run this command again." + echo "" + fi +} + +function dbexport() { + FILE=${1:-/vagrant/mysqldump.sql.gz} + + # This gives an estimate of the size of the SQL file + # It appears that 80% is a good approximation of + # the ratio of estimated size to actual size + SIZE_QUERY="select ceil(sum(data_length) * 0.8) as size from information_schema.TABLES" + + __pv_install_message "Want to see export progress?" + + echo "Exporting databases to '$FILE'" + + if __has_pv; then + ADJUSTED_SIZE=$(mysql --vertical -uhomestead -psecret -e "$SIZE_QUERY" 2>/dev/null | grep 'size' | awk '{print $2}') + HUMAN_READABLE_SIZE=$(numfmt --to=iec-i --suffix=B --format="%.3f" $ADJUSTED_SIZE) + + echo "Estimated uncompressed size: $HUMAN_READABLE_SIZE" + mysqldump -uhomestead -psecret --all-databases --skip-lock-tables --routines 2>/dev/null | pv --size=$ADJUSTED_SIZE | gzip > "$FILE" + else + mysqldump -uhomestead -psecret --all-databases --skip-lock-tables --routines 2>/dev/null | gzip > "$FILE" + fi + + echo "Done." +} + +function dbimport() { + FILE=${1:-/vagrant/mysqldump.sql.gz} + + __pv_install_message "Want to see import progress?" + + echo "Importing databases from '$FILE'" + + if __has_pv; then + pv "$FILE" --progress --eta | zcat | mysql -uhomestead -psecret 2>/dev/null + else + cat "$FILE" | zcat | mysql -uhomestead -psecret 2>/dev/null + fi + + echo "Done." +} + +function xphp() { + (php -m | grep -q xdebug) + if [[ $? -eq 0 ]] + then + XDEBUG_ENABLED=true + else + XDEBUG_ENABLED=false + fi + + if ! $XDEBUG_ENABLED; then xon; fi + + HOST_IP=$(last --limit=1 | grep -oP '\d+(\.\d+){3}') + + php \ + -dxdebug.client_host=${HOST_IP} \ + -dxdebug.start_with_request=yes \ + "$@" + + if ! $XDEBUG_ENABLED; then xoff; fi +} diff --git a/resources/localized/Vagrantfile b/resources/localized/Vagrantfile new file mode 100644 index 0000000..de4e6ba --- /dev/null +++ b/resources/localized/Vagrantfile @@ -0,0 +1,53 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +require 'json' +require 'yaml' + +VAGRANTFILE_API_VERSION ||= "2" +confDir = $confDir ||= File.expand_path("vendor/laravel/homestead", File.dirname(__FILE__)) + +homesteadYamlPath = File.expand_path("Homestead.yaml", File.dirname(__FILE__)) +homesteadJsonPath = File.expand_path("Homestead.json", File.dirname(__FILE__)) +afterScriptPath = "after.sh" +customizationScriptPath = "user-customizations.sh" +aliasesPath = "aliases" + +require File.expand_path(confDir + '/scripts/homestead.rb') + +Vagrant.require_version '>= 2.2.4' + +Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| + if File.exist? aliasesPath then + config.vm.provision "file", source: aliasesPath, destination: "/tmp/bash_aliases" + config.vm.provision "shell" do |s| + s.inline = "awk '{ sub(\"\r$\", \"\"); print }' /tmp/bash_aliases > /home/vagrant/.bash_aliases" + end + end + + if File.exist? homesteadYamlPath then + settings = YAML::load(File.read(homesteadYamlPath)) + elsif File.exist? homesteadJsonPath then + settings = JSON::parse(File.read(homesteadJsonPath)) + else + abort "Homestead settings file not found in " + File.dirname(__FILE__) + end + + Homestead.configure(config, settings) + + if File.exist? afterScriptPath then + config.vm.provision "shell", path: afterScriptPath, privileged: false, keep_color: true + end + + if File.exist? customizationScriptPath then + config.vm.provision "shell", path: customizationScriptPath, privileged: false, keep_color: true + end + + if Vagrant.has_plugin?('vagrant-hostsupdater') + config.hostsupdater.aliases = settings['sites'].map { |site| site['map'] } + elsif Vagrant.has_plugin?('vagrant-hostmanager') + config.hostmanager.enabled = true + config.hostmanager.manage_host = true + config.hostmanager.aliases = settings['sites'].map { |site| site['map'] } + end +end diff --git a/resources/localized/aliases b/resources/localized/aliases new file mode 100644 index 0000000..cae6cbd --- /dev/null +++ b/resources/localized/aliases @@ -0,0 +1,321 @@ +alias ..="cd .." +alias ...="cd ../.." + +alias h='cd ~' +alias c='clear' +alias art=artisan + +alias codecept='vendor/bin/codecept' +alias phpspec='vendor/bin/phpspec' +alias serve=serve-laravel + +alias xoff='sudo phpdismod -s cli xdebug' +alias xon='sudo phpenmod -s cli xdebug' + +function artisan() { + php artisan "$@" +} + +function dusk() { + pids=$(pidof /usr/bin/Xvfb) + + if [ ! -n "$pids" ]; then + Xvfb :0 -screen 0 1280x960x24 & + fi + + if [[ $? -eq 0 ]] + then + php artisan dusk + else + php artisan dusk --filter "$@" + fi +} + +function p() { + if [ -f vendor/bin/pest ]; then + vendor/bin/pest "$@" + else + vendor/bin/phpunit "$@" + fi + } + + function pf() { + if [ -f vendor/bin/pest ]; then + vendor/bin/pest --filter "$@" + else + vendor/bin/phpunit --filter "$@" + fi + } + +function php56() { + sudo update-alternatives --set php /usr/bin/php5.6 + sudo update-alternatives --set php-config /usr/bin/php-config5.6 + sudo update-alternatives --set phpize /usr/bin/phpize5.6 +} + +function php70() { + sudo update-alternatives --set php /usr/bin/php7.0 + sudo update-alternatives --set php-config /usr/bin/php-config7.0 + sudo update-alternatives --set phpize /usr/bin/phpize7.0 +} + +function php71() { + sudo update-alternatives --set php /usr/bin/php7.1 + sudo update-alternatives --set php-config /usr/bin/php-config7.1 + sudo update-alternatives --set phpize /usr/bin/phpize7.1 +} + +function php72() { + sudo update-alternatives --set php /usr/bin/php7.2 + sudo update-alternatives --set php-config /usr/bin/php-config7.2 + sudo update-alternatives --set phpize /usr/bin/phpize7.2 +} + +function php73() { + sudo update-alternatives --set php /usr/bin/php7.3 + sudo update-alternatives --set php-config /usr/bin/php-config7.3 + sudo update-alternatives --set phpize /usr/bin/phpize7.3 +} + +function php74() { + sudo update-alternatives --set php /usr/bin/php7.4 + sudo update-alternatives --set php-config /usr/bin/php-config7.4 + sudo update-alternatives --set phpize /usr/bin/phpize7.4 +} + +function php80() { + sudo update-alternatives --set php /usr/bin/php8.0 + sudo update-alternatives --set php-config /usr/bin/php-config8.0 + sudo update-alternatives --set phpize /usr/bin/phpize8.0 +} + +function php81() { + sudo update-alternatives --set php /usr/bin/php8.1 + sudo update-alternatives --set php-config /usr/bin/php-config8.1 + sudo update-alternatives --set phpize /usr/bin/phpize8.1 +} + +function php82() { + sudo update-alternatives --set php /usr/bin/php8.2 + sudo update-alternatives --set php-config /usr/bin/php-config8.2 + sudo update-alternatives --set phpize /usr/bin/phpize8.2 +} + +function serve-apache() { + if [[ "$1" && "$2" ]] + then + sudo bash /vagrant/vendor/laravel/homestead/scripts/create-certificate.sh "$1" + sudo dos2unix /vagrant/vendor/laravel/homestead/scripts/site-types/apache.sh + sudo bash /vagrant/vendor/laravel/homestead/scripts/site-types/apache.sh "$1" "$2" 80 443 "${3:-8.3}" + else + echo "Error: missing required parameters." + echo "Usage: " + echo " serve-apache domain path" + fi +} + +function serve-laravel() { + if [[ "$1" && "$2" ]] + then + sudo bash /vagrant/vendor/laravel/homestead/scripts/create-certificate.sh "$1" + sudo dos2unix /vagrant/vendor/laravel/homestead/scripts/site-types/laravel.sh + sudo bash /vagrant/vendor/laravel/homestead/scripts/site-types/laravel.sh "$1" "$2" 80 443 "${3:-8.3}" + else + echo "Error: missing required parameters." + echo "Usage: " + echo " serve domain path" + fi +} + +function serve-proxy() { + if [[ "$1" && "$2" ]] + then + sudo dos2unix /vagrant/vendor/laravel/homestead/scripts/site-types/proxy.sh + sudo bash /vagrant/vendor/laravel/homestead/scripts/site-types/proxy.sh "$1" "$2" 80 443 "${3:-8.3}" + else + echo "Error: missing required parameters." + echo "Usage: " + echo " serve-proxy domain port" + fi +} + +function serve-silverstripe() { + if [[ "$1" && "$2" ]] + then + sudo bash /vagrant/vendor/laravel/homestead/scripts/create-certificate.sh "$1" + sudo dos2unix /vagrant/vendor/laravel/homestead/scripts/site-types/silverstripe.sh + sudo bash /vagrant/vendor/laravel/homestead/scripts/site-types/silverstripe.sh "$1" "$2" 80 443 "${3:-8.3}" + else + echo "Error: missing required parameters." + echo "Usage: " + echo " serve-silverstripe domain path" + fi +} + +function serve-spa() { + if [[ "$1" && "$2" ]] + then + sudo bash /vagrant/vendor/laravel/homestead/scripts/create-certificate.sh "$1" + sudo dos2unix /vagrant/vendor/laravel/homestead/scripts/site-types/spa.sh + sudo bash /vagrant/vendor/laravel/homestead/scripts/site-types/spa.sh "$1" "$2" 80 443 "${3:-8.3}" + else + echo "Error: missing required parameters." + echo "Usage: " + echo " serve-spa domain path" + fi +} + +function serve-statamic() { + if [[ "$1" && "$2" ]] + then + sudo bash /vagrant/vendor/laravel/homestead/scripts/create-certificate.sh "$1" + sudo dos2unix /vagrant/vendor/laravel/homestead/scripts/site-types/statamic.sh + sudo bash /vagrant/vendor/laravel/homestead/scripts/site-types/statamic.sh "$1" "$2" 80 443 "${3:-8.3}" + else + echo "Error: missing required parameters." + echo "Usage: " + echo " serve-statamic domain path" + fi +} + +function serve-symfony2() { + if [[ "$1" && "$2" ]] + then + sudo bash /vagrant/vendor/laravel/homestead/scripts/create-certificate.sh "$1" + sudo dos2unix /vagrant/vendor/laravel/homestead/scripts/site-types/symfony2.sh + sudo bash /vagrant/vendor/laravel/homestead/scripts/site-types/symfony2.sh "$1" "$2" 80 443 "${3:-8.3}" + else + echo "Error: missing required parameters." + echo "Usage: " + echo " serve-symfony2 domain path" + fi +} + +function serve-symfony4() { + if [[ "$1" && "$2" ]] + then + sudo bash /vagrant/vendor/laravel/homestead/scripts/create-certificate.sh "$1" + sudo dos2unix /vagrant/vendor/laravel/homestead/scripts/site-types/symfony4.sh + sudo bash /vagrant/vendor/laravel/homestead/scripts/site-types/symfony4.sh "$1" "$2" 80 443 "${3:-8.3}" + else + echo "Error: missing required parameters." + echo "Usage: " + echo " serve-symfony4 domain path" + fi +} + +function serve-pimcore() { + if [[ "$1" && "$2" ]] + then + sudo bash /vagrant/vendor/laravel/homestead/scripts/create-certificate.sh "$1" + sudo dos2unix /vagrant/vendor/laravel/homestead/scripts/site-types/pimcore.sh + sudo bash /vagrant/vendor/laravel/homestead/scripts/site-types/pimcore.sh "$1" "$2" 80 443 "${3:-8.3}" + else + echo "Error: missing required parameters." + echo "Usage: " + echo " serve-pimcore domain path" + fi +} + +function share() { + if [[ "$1" ]] + then + ngrok http ${@:2} $1:80 + else + echo "Error: missing required parameters." + echo "Usage: " + echo " share domain" + echo "Invocation with extra params passed directly to ngrok" + echo " share domain -region=eu -subdomain=test1234" + fi +} + +function flip() { + sudo bash /vagrant/vendor/laravel/homestead/scripts/flip-webserver.sh +} + +function __has_pv() { + $(hash pv 2>/dev/null); + + return $? +} + +function __pv_install_message() { + if ! __has_pv; then + echo $1 + echo "Install pv with \`sudo apt-get install -y pv\` then run this command again." + echo "" + fi +} + +function dbexport() { + FILE=${1:-/vagrant/mysqldump.sql.gz} + + # This gives an estimate of the size of the SQL file + # It appears that 80% is a good approximation of + # the ratio of estimated size to actual size + SIZE_QUERY="select ceil(sum(data_length) * 0.8) as size from information_schema.TABLES" + + __pv_install_message "Want to see export progress?" + + echo "Exporting databases to '$FILE'" + + if __has_pv; then + ADJUSTED_SIZE=$(mysql --vertical -uhomestead -psecret -e "$SIZE_QUERY" 2>/dev/null | grep 'size' | awk '{print $2}') + HUMAN_READABLE_SIZE=$(numfmt --to=iec-i --suffix=B --format="%.3f" $ADJUSTED_SIZE) + + echo "Estimated uncompressed size: $HUMAN_READABLE_SIZE" + mysqldump -uhomestead -psecret --all-databases --skip-lock-tables --routines 2>/dev/null | pv --size=$ADJUSTED_SIZE | gzip > "$FILE" + else + mysqldump -uhomestead -psecret --all-databases --skip-lock-tables --routines 2>/dev/null | gzip > "$FILE" + fi + + echo "Done." +} + +function dbimport() { + FILE=${1:-/vagrant/mysqldump.sql.gz} + + __pv_install_message "Want to see import progress?" + + echo "Importing databases from '$FILE'" + + if __has_pv; then + pv "$FILE" --progress --eta | zcat | mysql -uhomestead -psecret 2>/dev/null + else + cat "$FILE" | zcat | mysql -uhomestead -psecret 2>/dev/null + fi + + echo "Done." +} + +function xphp() { + (php -m | grep -q xdebug) + if [[ $? -eq 0 ]] + then + XDEBUG_ENABLED=true + else + XDEBUG_ENABLED=false + fi + + if ! $XDEBUG_ENABLED; then xon; fi + + php \ + -dxdebug.client_host=192.168.10.1 \ + -dxdebug.start_with_request=yes \ + "$@" + + if ! $XDEBUG_ENABLED; then xoff; fi +} + +function update-socket-wrench() { + cd /var/www/socket-wrench + git pull origin release + composer install + php artisan migrate --force +} + +function seed-socket-wrench() { + cd /var/www/socket-wrench + php artisan db:seed +} diff --git a/scripts/clear-nginx.sh b/scripts/clear-nginx.sh new file mode 100644 index 0000000..6343b48 --- /dev/null +++ b/scripts/clear-nginx.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash + +# Clear The Old Nginx Sites + +rm -f /etc/nginx/sites-enabled/* +rm -f /etc/nginx/sites-available/* diff --git a/scripts/clear-variables.sh b/scripts/clear-variables.sh new file mode 100644 index 0000000..534535a --- /dev/null +++ b/scripts/clear-variables.sh @@ -0,0 +1,41 @@ +#!/usr/bin/env bash + +# Clear The Old Environment Variables + +sed -i '/# Set Homestead Environment Variable/,+1d' /home/vagrant/.profile + +if [ -f /etc/php/5.6/fpm/pool.d/www.conf ]; then + sed -i '/env\[.*/,+1d' /etc/php/5.6/fpm/pool.d/www.conf +fi + +if [ -f /etc/php/7.0/fpm/pool.d/www.conf ]; then + sed -i '/env\[.*/,+1d' /etc/php/7.0/fpm/pool.d/www.conf +fi + +if [ -f /etc/php/7.1/fpm/pool.d/www.conf ]; then + sed -i '/env\[.*/,+1d' /etc/php/7.1/fpm/pool.d/www.conf +fi + +if [ -f /etc/php/7.2/fpm/pool.d/www.conf ]; then + sed -i '/env\[.*/,+1d' /etc/php/7.2/fpm/pool.d/www.conf +fi + +if [ -f /etc/php/7.3/fpm/pool.d/www.conf ]; then + sed -i '/env\[.*/,+1d' /etc/php/7.3/fpm/pool.d/www.conf +fi + +if [ -f /etc/php/7.4/fpm/pool.d/www.conf ]; then + sed -i '/env\[.*/,+1d' /etc/php/7.4/fpm/pool.d/www.conf +fi + +if [ -f /etc/php/8.0/fpm/pool.d/www.conf ]; then + sed -i '/env\[.*/,+1d' /etc/php/8.0/fpm/pool.d/www.conf +fi + +if [ -f /etc/php/8.1/fpm/pool.d/www.conf ]; then + sed -i '/env\[.*/,+1d' /etc/php/8.1/fpm/pool.d/www.conf +fi + +if [ -f /etc/php/8.2/fpm/pool.d/www.conf ]; then + sed -i '/env\[.*/,+1d' /etc/php/8.2/fpm/pool.d/www.conf +fi diff --git a/scripts/configure-avahi.sh b/scripts/configure-avahi.sh new file mode 100644 index 0000000..c56597c --- /dev/null +++ b/scripts/configure-avahi.sh @@ -0,0 +1,5 @@ +#!/usr/bin/env bash + +sed -i "s/#browse-domains=.*/browse-domains=$1/" /etc/avahi/avahi-daemon.conf +sed -i "s/browse-domains=.*/browse-domains=$1/" /etc/avahi/avahi-daemon.conf +service avahi-daemon restart diff --git a/scripts/create-certificate.sh b/scripts/create-certificate.sh new file mode 100644 index 0000000..8a58a52 --- /dev/null +++ b/scripts/create-certificate.sh @@ -0,0 +1,125 @@ +#!/usr/bin/env bash + +set -f +PATH_SSL="/etc/ssl/certs" + +# Path to the custom Homestead $(hostname) Root CA certificate. +PATH_ROOT_CNF="${PATH_SSL}/ca.homestead.$(hostname).cnf" +PATH_ROOT_CRT="${PATH_SSL}/ca.homestead.$(hostname).crt" +PATH_ROOT_KEY="${PATH_SSL}/ca.homestead.$(hostname).key" + +# Path to the custom site certificate. +PATH_CNF="${PATH_SSL}/${1}.cnf" +PATH_CRT="${PATH_SSL}/${1}.crt" +PATH_CSR="${PATH_SSL}/${1}.csr" +PATH_KEY="${PATH_SSL}/${1}.key" + +BASE_CNF=" + [ ca ] + default_ca = ca_homestead_$(hostname) + + [ ca_homestead_$(hostname) ] + dir = $PATH_SSL + certs = $PATH_SSL + new_certs_dir = $PATH_SSL + + private_key = $PATH_ROOT_KEY + certificate = $PATH_ROOT_CRT + + default_md = sha256 + + name_opt = ca_default + cert_opt = ca_default + default_days = 365 + preserve = no + policy = policy_loose + + [ policy_loose ] + countryName = optional + stateOrProvinceName = optional + localityName = optional + organizationName = optional + organizationalUnitName = optional + commonName = supplied + emailAddress = optional + + [ req ] + prompt = no + encrypt_key = no + default_bits = 2048 + distinguished_name = req_distinguished_name + string_mask = utf8only + default_md = sha256 + x509_extensions = v3_ca + + [ v3_ca ] + authorityKeyIdentifier = keyid,issuer + basicConstraints = critical, CA:true, pathlen:0 + keyUsage = critical, digitalSignature, keyCertSign + subjectKeyIdentifier = hash + + [ server_cert ] + authorityKeyIdentifier = keyid,issuer:always + basicConstraints = CA:FALSE + extendedKeyUsage = serverAuth + keyUsage = critical, digitalSignature, keyEncipherment + subjectAltName = @alternate_names + subjectKeyIdentifier = hash +" + +# Only generate the root certificate when there isn't one already there. +if [ ! -f $PATH_ROOT_CNF ] || [ ! -f $PATH_ROOT_KEY ] || [ ! -f $PATH_ROOT_CRT ] +then + # Generate an OpenSSL configuration file specifically for this certificate. + cnf=" + ${BASE_CNF} + [ req_distinguished_name ] + O = Vagrant + C = UN + CN = Homestead $(hostname) Root CA + " + echo "$cnf" > $PATH_ROOT_CNF + + # Finally, generate the private key and certificate. + openssl genrsa -out "$PATH_ROOT_KEY" 4096 2>/dev/null + openssl req -config "$PATH_ROOT_CNF" \ + -key "$PATH_ROOT_KEY" \ + -x509 -new -extensions v3_ca -days 3650 -sha256 \ + -out "$PATH_ROOT_CRT" 2>/dev/null + + # Symlink ca to local certificate storage and run update command + ln --force --symbolic $PATH_ROOT_CRT /usr/local/share/ca-certificates/ + update-ca-certificates +fi + +# Only generate a certificate if there isn't one already there. +if [ ! -f $PATH_CNF ] || [ ! -f $PATH_KEY ] || [ ! -f $PATH_CRT ] +then + # Uncomment the global 'copy_extentions' OpenSSL option to ensure the SANs are copied into the certificate. + sed -i '/copy_extensions\ =\ copy/s/^#\ //g' /etc/ssl/openssl.cnf + + # Generate an OpenSSL configuration file specifically for this certificate. + cnf=" + ${BASE_CNF} + [ req_distinguished_name ] + O = Vagrant + C = UN + CN = $1 + + [ alternate_names ] + DNS.1 = $1 + DNS.2 = *.$1 + " + echo "$cnf" > $PATH_CNF + + # Finally, generate the private key and certificate signed with the Homestead $(hostname) Root CA. + openssl genrsa -out "$PATH_KEY" 2048 2>/dev/null + openssl req -config "$PATH_CNF" \ + -key "$PATH_KEY" \ + -new -sha256 -out "$PATH_CSR" 2>/dev/null + openssl x509 -req -extfile "$PATH_CNF" \ + -extensions server_cert -days 365 -sha256 \ + -in "$PATH_CSR" \ + -CA "$PATH_ROOT_CRT" -CAkey "$PATH_ROOT_KEY" -CAcreateserial \ + -out "$PATH_CRT" 2>/dev/null +fi diff --git a/scripts/create-couch.sh b/scripts/create-couch.sh new file mode 100644 index 0000000..72c9d83 --- /dev/null +++ b/scripts/create-couch.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +curl -sX PUT http://127.0.0.1:5984/$1 diff --git a/scripts/create-ecosystem.sh b/scripts/create-ecosystem.sh new file mode 100644 index 0000000..bafa4c7 --- /dev/null +++ b/scripts/create-ecosystem.sh @@ -0,0 +1,30 @@ +#!/usr/bin/env bash + +mkdir /home/vagrant/ecosystem 2>/dev/null + +PATH_ECOSYSTEM="/home/vagrant/ecosystem" + +rm -rf /home/vagrant/ecosystem/* + +PATH_JSON="${PATH_ECOSYSTEM}/${1}.json" + +# variables +# 1 = name +# 2 = script +# 3 = args +# 4 = path + +BASE_ECO=' +{ + "name": "'$1'", + "script": "'$2'", + "args": "'$3'", + "cwd": "'$4'" +} +' + +# Only generate a ecosystem if there isn't one already there. +if [ ! -f $PATH_JSON ] +then + echo "$BASE_ECO" > $PATH_JSON +fi diff --git a/scripts/create-influxdb.sh b/scripts/create-influxdb.sh new file mode 100644 index 0000000..bfefe14 --- /dev/null +++ b/scripts/create-influxdb.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +influx bucket create --token="homestead_secret" --name="$1" --org="homestead" diff --git a/scripts/create-minio-bucket.sh b/scripts/create-minio-bucket.sh new file mode 100644 index 0000000..d884196 --- /dev/null +++ b/scripts/create-minio-bucket.sh @@ -0,0 +1,11 @@ +#!/usr/bin/env bash + +if [[ -d /usr/local/share/minio/$1 ]]; then + echo "Bucket already exists, skipping..." + exit +fi + +mc mb /usr/local/share/minio/$1 +mc anonymous set $2 /usr/local/share/minio/$1 +# Minio CLI Makes Buckets Under Root For Some Reason +sudo chown minio-user:minio-user /usr/local/share/minio/* diff --git a/scripts/create-mongo.sh b/scripts/create-mongo.sh new file mode 100644 index 0000000..16fada2 --- /dev/null +++ b/scripts/create-mongo.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +mongosh $1 --eval "db.test.insertOne({name:'db creation'})" diff --git a/scripts/create-mysql.sh b/scripts/create-mysql.sh new file mode 100644 index 0000000..4bf5d40 --- /dev/null +++ b/scripts/create-mysql.sh @@ -0,0 +1,31 @@ +#!/usr/bin/env bash + +cat > /root/.my.cnf << EOF +[client] +user = root +password = secret +host = 127.0.0.1 +EOF + +cat > /home/vagrant/.my.cnf << EOF +[client] +user = homestead +password = secret +host = 127.0.0.1 +EOF + +chown vagrant /home/vagrant/.my.cnf + +DB=$1 + +mariadb=$(ps ax | grep mariadb | wc -l) +mysql=$(ps ax | grep mysql | wc -l) + +if [ "$mariadb" -gt 1 ]; then + mariadb -e "CREATE DATABASE IF NOT EXISTS \`$DB\` DEFAULT CHARACTER SET utf8mb4 DEFAULT COLLATE utf8mb4_unicode_ci" +elif [ "$mysql" -gt 1 ]; then + mysql -e "CREATE DATABASE IF NOT EXISTS \`$DB\` DEFAULT CHARACTER SET utf8mb4 DEFAULT COLLATE utf8mb4_unicode_ci" +else + # Skip Creating database + echo "We didn't find MariaDB (\$mariadb) or MySQL (\$mysql), skipping \`$DB\` creation" +fi diff --git a/scripts/create-ngrok.sh b/scripts/create-ngrok.sh new file mode 100644 index 0000000..cc416b2 --- /dev/null +++ b/scripts/create-ngrok.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash + +PATH_NGROK="/home/vagrant/.config/ngrok" +PATH_CONFIG="${PATH_NGROK}/ngrok.yml" + +# Only create a ngrok config file if there isn't one already there. +if [ ! -f $PATH_CONFIG ]; then + mkdir -p "$PATH_NGROK" + cat > "$PATH_CONFIG" << EOF +version: 2 +web_addr: $1:4040 +EOF +fi diff --git a/scripts/create-postgres.sh b/scripts/create-postgres.sh new file mode 100644 index 0000000..41c80da --- /dev/null +++ b/scripts/create-postgres.sh @@ -0,0 +1,14 @@ +#!/usr/bin/env bash + +DB=$1; +postgres=$(pidof postgres) + +if [ -z "$postgres" ] +then + # Skip Creating postgres database + echo "We didn't find a PID for postgres, skipping \$DB creation" +else + if ! su postgres -c "psql $DB -c '\q' 2>/dev/null"; then + su postgres -c "createdb -O homestead '$DB'" + fi +fi diff --git a/scripts/cron-schedule.sh b/scripts/cron-schedule.sh new file mode 100644 index 0000000..d89c4f2 --- /dev/null +++ b/scripts/cron-schedule.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash + +if [ ! -d /etc/cron.d ]; then + mkdir /etc/cron.d +fi + +SITE_DOMAIN=$1 +SITE_PUBLIC_DIRECTORY=$2 +SITE_PHP_VERSION=$3 + +cron="* * * * * vagrant . /home/vagrant/.profile; /usr/bin/php$SITE_PHP_VERSION $SITE_PUBLIC_DIRECTORY/../artisan schedule:run >> /dev/null 2>&1" + +echo "$cron" > "/etc/cron.d/$SITE_DOMAIN" diff --git a/scripts/features/blackfire.sh b/scripts/features/blackfire.sh new file mode 100644 index 0000000..f60f913 --- /dev/null +++ b/scripts/features/blackfire.sh @@ -0,0 +1,59 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +# Make sure Blackfire is updated to v2 +if [ -f /home/$WSL_USER_NAME/.homestead-features/blackfire ] && [ ! -f /usr/bin/blackfire-agent ] +then + echo "blackfire already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/blackfire +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +curl -fsSL https://packages.blackfire.io/gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/blackfire.gpg +echo "deb [signed-by=/etc/apt/keyrings/blackfire.gpg] http://packages.blackfire.io/debian any main" | sudo tee /etc/apt/sources.list.d/blackfire.list + +# Install Blackfire +sudo DEBIAN_FRONTEND=noninteractive apt-get update +sudo DEBIAN_FRONTEND=noninteractive apt-get install -y blackfire blackfire-php + +agent="[blackfire] +ca-cert= +collector=https://blackfire.io +log-file=stderr +log-level=1 +server-id=${server_id} +server-token=${server_token} +socket=unix:///var/run/blackfire/agent.sock +spec= +" + +client="[blackfire] +ca-cert= +client-id=${client_id} +client-token=${client_token} +endpoint=https://blackfire.io +timeout=15s +" + +echo "$agent" > "/etc/blackfire/agent" +echo "$client" > "/home/vagrant/.blackfire.ini" + +service php5.6-fpm restart +service php7.0-fpm restart +service php7.1-fpm restart +service php7.2-fpm restart +service php7.3-fpm restart +service php7.4-fpm restart +service php8.0-fpm restart +service blackfire-agent restart diff --git a/scripts/features/cassandra.sh b/scripts/features/cassandra.sh new file mode 100644 index 0000000..9e5f83d --- /dev/null +++ b/scripts/features/cassandra.sh @@ -0,0 +1,97 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +if [ -f /home/$WSL_USER_NAME/.homestead-features/cassandra ] +then + echo "cassandra already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/cassandra +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +# Install Cassandra and driver dependencies +echo "deb https://debian.cassandra.apache.org 41x main" | sudo tee -a /etc/apt/sources.list.d/cassandra.sources.list +curl https://downloads.apache.org/cassandra/KEYS | sudo apt-key add - + +sudo DEBIAN_FRONTEND=noninteractive apt update +sudo DEBIAN_FRONTEND=noninteractive apt install cassandra openjdk-8-jdk git libgmp-dev php7.1-dev php7.2-dev php7.3-dev php7.4-dev -y + +# Start Cassandra and boot at runtime +sudo service cassandra start +sudo update-rc.d cassandra defaults + +# Install DataStax C++ (required for PHP Extension) +wget -q https://downloads.datastax.com/cpp-driver/ubuntu/18.04/dependencies/libuv/v1.28.0/libuv1-dev_1.28.0-1_amd64.deb +wget -q https://downloads.datastax.com/cpp-driver/ubuntu/18.04/dependencies/libuv/v1.28.0/libuv1_1.28.0-1_amd64.deb +wget -q https://downloads.datastax.com/cpp-driver/ubuntu/18.04/cassandra/v2.12.0/cassandra-cpp-driver-dev_2.12.0-1_amd64.deb +wget -q https://downloads.datastax.com/cpp-driver/ubuntu/18.04/cassandra/v2.12.0/cassandra-cpp-driver_2.12.0-1_amd64.deb +dpkg -i libuv1_1.28.0-1_amd64.deb +dpkg -i libuv1-dev_1.28.0-1_amd64.deb +dpkg -i cassandra-cpp-driver_2.12.0-1_amd64.deb +dpkg -i cassandra-cpp-driver-dev_2.12.0-1_amd64.deb +rm libuv1-dev_1.28.0-1_amd64.deb libuv1_1.28.0-1_amd64.deb cassandra-cpp-driver-dev_2.12.0-1_amd64.deb cassandra-cpp-driver_2.12.0-1_amd64.deb + +# Install PHP Extension +cd /usr/src +git clone https://github.com/datastax/php-driver.git + +cd /usr/src/php-driver/ext +sudo phpize7.1 +mkdir /usr/src/php-driver/build +cd /usr/src/php-driver/build +sudo ../ext/configure --with-php-config=/usr/bin/php-config7.1 > /dev/null +make clean >/dev/null +make >/dev/null 2>&1 +sudo make install +sudo chmod 644 /usr/lib/php/20160303/cassandra.so + +cd /usr/src/php-driver/ext +sudo phpize7.2 +cd /usr/src/php-driver/build +sudo /usr/src/php-driver/ext/configure --with-php-config=/usr/bin/php-config7.2 > /dev/null +sudo make clean >/dev/null +make >/dev/null 2>&1 +sudo make install +sudo chmod 644 /usr/lib/php/20170718/cassandra.so + +cd /usr/src/php-driver/ext +sudo phpize7.3 +cd /usr/src/php-driver/build +sudo /usr/src/php-driver/ext/configure --with-php-config=/usr/bin/php-config7.3 > /dev/null +sudo make clean >/dev/null +make >/dev/null 2>&1 +sudo make install +sudo chmod 644 /usr/lib/php/20180731/cassandra.so + +echo "; configuration for php cassandra module" >/etc/php/7.1/mods-available/cassandra.ini +echo "; priority=20" >>/etc/php/7.1/mods-available/cassandra.ini +echo "extension=cassandra.so" >>/etc/php/7.1/mods-available/cassandra.ini + +echo "; configuration for php cassandra module" >/etc/php/7.2/mods-available/cassandra.ini +echo "; priority=20" >>/etc/php/7.2/mods-available/cassandra.ini +echo "extension=cassandra.so" >>/etc/php/7.2/mods-available/cassandra.ini + +echo "; configuration for php cassandra module" >/etc/php/7.3/mods-available/cassandra.ini +echo "; priority=20" >>/etc/php/7.3/mods-available/cassandra.ini +echo "extension=cassandra.so" >>/etc/php/7.3/mods-available/cassandra.ini + +sudo phpenmod cassandra + +# Clean Up +sudo rm -R /usr/src/php-driver + +# Just in case other Java versions exist, set JAVA_HOME, because Cassandra doesn't work with newer +# Java versions than Java 8 +echo "JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64" | sudo tee -a /etc/default/cassandra +sudo service cassandra stop +sudo service cassandra start diff --git a/scripts/features/chronograf.sh b/scripts/features/chronograf.sh new file mode 100644 index 0000000..b8004db --- /dev/null +++ b/scripts/features/chronograf.sh @@ -0,0 +1,30 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +if [ -f /home/$WSL_USER_NAME/.homestead-features/chronograf ] +then + echo "chronograf already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/chronograf +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +chronourl="https://dl.influxdata.com/chronograf/releases/chronograf_1.5.0.1_amd64.deb" + +wget -q -O chronograf.deb $chronourl +sudo dpkg -i chronograf.deb +rm chronograf.deb + +systemctl enable chronograf +systemctl daemon-reload +systemctl start chronograf diff --git a/scripts/features/couchdb.sh b/scripts/features/couchdb.sh new file mode 100644 index 0000000..f6e92da --- /dev/null +++ b/scripts/features/couchdb.sh @@ -0,0 +1,47 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +if [ -f /home/$WSL_USER_NAME/.homestead-features/couchdb ] +then + echo "couchdb already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/couchdb +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +curl -fsSL https://couchdb.apache.org/repo/keys.asc | sudo gpg --dearmor -o /etc/apt/keyrings/couchdb.gpg +echo "deb [signed-by=/etc/apt/keyrings/couchdb.gpg] https://apache.jfrog.io/artifactory/couchdb-deb/ jammy main" | sudo tee /etc/apt/sources.list.d/couchdb.list + +sudo apt-get update +echo "couchdb couchdb/mode select standalone +couchdb couchdb/mode seen true +couchdb couchdb/bindaddress string 127.0.0.1 +couchdb couchdb/bindaddress seen true" | debconf-set-selections +DEBIAN_FRONTEND=noninteractive apt-get install -y couchdb + +sudo chown -R couchdb:couchdb /etc/couchdb +sudo chmod -R 0770 /etc/couchdb + +sudo sed -i "s/;bind_address =.*/bind_address = 0.0.0.0/" /opt/couchdb/etc/local.ini + +sudo service couchdb restart + +sudo service nginx restart + +sudo service php5.6-fpm restart +sudo service php7.0-fpm restart +sudo service php7.1-fpm restart +sudo service php7.2-fpm restart +sudo service php7.3-fpm restart +sudo service php7.4-fpm restart +sudo service php8.0-fpm restart diff --git a/scripts/features/crystal.sh b/scripts/features/crystal.sh new file mode 100644 index 0000000..ed5521c --- /dev/null +++ b/scripts/features/crystal.sh @@ -0,0 +1,39 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +if [ -f /home/$WSL_USER_NAME/.homestead-features/crystal ] +then + echo "crystal already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/crystal +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +# Install Crystal Programming Language Support +curl -fsSL https://keybase.io/crystal/pgp_keys.asc | sudo gpg --dearmor -o /etc/apt/keyrings/crystal.gpg +echo "deb [signed-by=/etc/apt/keyrings/crystal.gpg] https://dist.crystal-lang.org/apt crystal main" | sudo tee /etc/apt/sources.list.d/crystal.list + +apt-get update +apt-get install -y crystal + +# Install Lucky Framework for Crystal + +wget https://github.com/luckyframework/lucky_cli/archive/v0.11.0.tar.gz +tar -zxvf v0.11.0.tar.gz +cd lucky_cli-0.11.0 +shards install +crystal build src/lucky.cr --release --no-debug +mv lucky /usr/local/bin/. +cd /home/vagrant +rm -rf lucky_cli-0.11.0 +rm -rf v0.11.0.tar.gz diff --git a/scripts/features/dockstead.sh b/scripts/features/dockstead.sh new file mode 100644 index 0000000..18f7e91 --- /dev/null +++ b/scripts/features/dockstead.sh @@ -0,0 +1,23 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +if [ -f /home/$WSL_USER_NAME/.homestead-features/dockstead ] +then + echo "dockstead already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/dockstead +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +# Ensure we're in swarm mode +docker swarm init --advertise-addr 192.168.56.56 diff --git a/scripts/features/dockstead/env.docker b/scripts/features/dockstead/env.docker new file mode 100644 index 0000000..9461341 --- /dev/null +++ b/scripts/features/dockstead/env.docker @@ -0,0 +1,5 @@ +# Mysql Parameters +MYSQL_ROOT_PASSWORD=secret +MYSQL_DATABASE=homestead +MYSQL_USER=homestead +MYSQL_PASSWORD=secret diff --git a/scripts/features/dockstead/mysql-5.7.yaml b/scripts/features/dockstead/mysql-5.7.yaml new file mode 100644 index 0000000..83525cd --- /dev/null +++ b/scripts/features/dockstead/mysql-5.7.yaml @@ -0,0 +1,25 @@ +--- +# +# docker stack deploy -c /vagrant/scripts/features/dockstead/mysql-5.7.yaml mysql-56 +# +version: "3.7" +services: + mysql: + image: mysql:5.7 + volumes: + - type: volume + source: mysql-data + target: /var/lib/mysql + volume: + nocopy: true + ports: + - "3306:3306" + healthcheck: + test: mysqladmin ping -h 127.0.0.1 -u $$MYSQL_USER --password=$$MYSQL_PASSWORD + interval: 3s + timeout: 1s + retries: 5 + env_file: + - env.docker +volumes: + mysql-data: diff --git a/scripts/features/dockstead/mysql-57.sh b/scripts/features/dockstead/mysql-57.sh new file mode 100644 index 0000000..d47bd99 --- /dev/null +++ b/scripts/features/dockstead/mysql-57.sh @@ -0,0 +1,12 @@ +#!/usr/bin/env bash + +# Stop the default MySQL Service +sudo service mysql stop + +# Update /home/vagrant/.my.cnf +sed -i "s/localhost/127.0.0.1/" /home/vagrant/.my.cnf + +# Start the MySQL 5.7 stack +docker stack deploy -c /vagrant/scripts/features/dockstead/mysql-5.7.yaml mysql-57 +echo "Sleeping for 30 seconds while we wait for MySQL service to come up" +sleep 30 diff --git a/scripts/features/dragonflydb.sh b/scripts/features/dragonflydb.sh new file mode 100644 index 0000000..4427f4a --- /dev/null +++ b/scripts/features/dragonflydb.sh @@ -0,0 +1,59 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +if [ -f /home/$WSL_USER_NAME/.homestead-features/dragonflydb ]; then + echo "Dragonflydb already installed." + exit 0 +fi + +ARCH=$(arch) +DRAGONFLY_URL="https://dragonflydb.gateway.scarf.sh/latest/dragonfly-$ARCH.tar.gz" + +# Install Dragonfly +if ! curl -sSL "$DRAGONFLY_URL" -o dragonflydb.tar.gz; then + echo "Error downloading Dragonfly archive." + exit 1 +fi + +if ! tar -xzf dragonflydb.tar.gz "dragonfly-$ARCH"; then + echo "Error extracting Dragonfly archive." + exit 1 +fi + +mv "dragonfly-$ARCH" /usr/local/bin/dragonfly + +# Create systemd service file +cat > /etc/systemd/system/dragonfly.service << EOF +[Unit] +Description=DragonFly +After=network.target + +[Service] +User=vagrant +ExecStart=/usr/bin/env /usr/local/bin/dragonfly + +[Install] +WantedBy=multi-user.target +EOF + +# Disable and stop redis +systemctl disable --now redis-server + +# Enable and start dragonfly +systemctl enable --now dragonfly + +# Clean up +rm -rf dragonflydb.tar.gz + +# Mark installation as complete +touch /home/$WSL_USER_NAME/.homestead-features/dragonflydb +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features \ No newline at end of file diff --git a/scripts/features/elasticsearch.sh b/scripts/features/elasticsearch.sh new file mode 100644 index 0000000..973c9ad --- /dev/null +++ b/scripts/features/elasticsearch.sh @@ -0,0 +1,62 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +if [ -f /home/$WSL_USER_NAME/.homestead-features/elasticsearch ] +then + echo "Elasticsearch already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/elasticsearch +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +# Determine version from config + +set -- "$1" +IFS="."; + +if [ -z "${version}" ]; then + installVersion="" # by not specifying we'll install latest + majorVersion="7" # default to version 7 +else + installVersion="=$version" + majorVersion="$(echo $version | head -c 1)" +fi + + +echo "Elasticsearch installVersion: $installVersion" +echo "Elasticsearch majorVersion: $majorVersion" + + +# Install Java & Elasticsearch +curl -fsSL https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo gpg --dearmor -o /etc/apt/keyrings/elasticsearch.gpg + +if [ ! -f /etc/apt/sources.list.d/elastic-$majorVersion.x.list ]; then + echo "deb [signed-by=/etc/apt/keyrings/elasticsearch.gpg] https://artifacts.elastic.co/packages/$majorVersion.x/apt stable main" | sudo tee /etc/apt/sources.list.d/elastic-$majorVersion.x.list +fi + +sudo apt-get update +sudo apt-get -y install openjdk-11-jre +sudo apt-get -y install elasticsearch"$installVersion" + +# Start Elasticsearch on boot + +sudo update-rc.d elasticsearch defaults 95 10 + +# Update configuration to use 'homestead' as the cluster + +sudo sed -i "s/#cluster.name: my-application/cluster.name: homestead/" /etc/elasticsearch/elasticsearch.yml + +# Enable Start Elasticsearch + +sudo systemctl enable elasticsearch.service +sudo service elasticsearch start diff --git a/scripts/features/eventstore.sh b/scripts/features/eventstore.sh new file mode 100644 index 0000000..9ed1585 --- /dev/null +++ b/scripts/features/eventstore.sh @@ -0,0 +1,54 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +if [ -f /home/$WSL_USER_NAME/.homestead-features/eventstore ] +then + echo "eventstore already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/eventstore +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +# Determine wanted version from config +set -- "$1" +IFS="."; + +if [ -z "${version}" ]; then + installVersion="" # by not specifying we'll install latest +else + installVersion="=${version}" +fi + +# Install repository +curl -s https://packagecloud.io/install/repositories/EventStore/EventStore-OSS/script.deb.sh | bash + +# Install EventStore package +apt-get install -y eventstore-oss"$installVersion" + +# Update configuration +sed -i "s/RunProjections: None/RunProjections: ${run_projections:-All}/" /etc/eventstore/eventstore.conf + +configuration=" +extIp: ${external_ip:-0.0.0.0} +extTcpPort: ${external_tcp_port:-2112} +extHttpPort: ${external_http_port:-2113} +AdminOnExt: ${admin_on_ext:-true} +" +echo "$configuration" >> /etc/eventstore/eventstore.conf + +# Allow the Event Store executable to bind to a port lower than 1024 +setcap CAP_NET_BIND_SERVICE=+eip /usr/bin/eventstored + +# Enable and Start EventStore +systemctl enable eventstore.service +systemctl start eventstore.service diff --git a/scripts/features/flyway.sh b/scripts/features/flyway.sh new file mode 100644 index 0000000..b8183ad --- /dev/null +++ b/scripts/features/flyway.sh @@ -0,0 +1,27 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +if [ -f /home/$WSL_USER_NAME/.homestead-features/flyway ] +then + echo "flyway CLI already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/flyway +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +# Install Flyway +wget https://repo1.maven.org/maven2/org/flywaydb/flyway-commandline/4.2.0/flyway-commandline-4.2.0-linux-x64.tar.gz +tar -zxvf flyway-commandline-4.2.0-linux-x64.tar.gz -C /usr/local +chmod +x /usr/local/flyway-4.2.0/flyway +ln -s /usr/local/flyway-4.2.0/flyway /usr/local/bin/flyway +rm -rf flyway-commandline-4.2.0-linux-x64.tar.gz diff --git a/scripts/features/gearman.sh b/scripts/features/gearman.sh new file mode 100644 index 0000000..44f35e9 --- /dev/null +++ b/scripts/features/gearman.sh @@ -0,0 +1,28 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +if [ -f /home/$WSL_USER_NAME/.homestead-features/gearman ] +then + echo "gearman already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/gearman +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +# Install Gearman Job Server and PHP Extension +sudo apt-get update +sudo apt-get install gearman-job-server php-gearman -y + +# Listen on 0.0.0.0 +sudo sed -i 's/localhost/0.0.0.0/g' /etc/default/gearman-job-server +sudo service gearman-job-server restart diff --git a/scripts/features/golang.sh b/scripts/features/golang.sh new file mode 100644 index 0000000..bda962d --- /dev/null +++ b/scripts/features/golang.sh @@ -0,0 +1,35 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +if [ -f /home/$WSL_USER_NAME/.homestead-features/golang ] +then + echo "Golang already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/golang +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +ARCH=$(arch) + +# Install Golang +if [[ "$ARCH" == "aarch64" ]]; then + GOLANG_LATEST_STABLE_VERSION=$(curl https://go.dev/dl/?mode=json | grep -o 'go.*.linux-arm64.tar.gz' | head -n 1 | tr -d '\r\n') + wget https://dl.google.com/go/${GOLANG_LATEST_STABLE_VERSION} -O golang.tar.gz +else + GOLANG_LATEST_STABLE_VERSION=$(curl https://go.dev/dl/?mode=json | grep -o 'go.*.linux-amd64.tar.gz' | head -n 1 | tr -d '\r\n') + wget https://dl.google.com/go/${GOLANG_LATEST_STABLE_VERSION} -O golang.tar.gz +fi + +tar -C /usr/local -xzf golang.tar.gz go +printf "\nPATH=\"/usr/local/go/bin:\$PATH\"\n" | tee -a /home/vagrant/.profile +rm -rf golang.tar.gz diff --git a/scripts/features/grafana.sh b/scripts/features/grafana.sh new file mode 100644 index 0000000..5114bcb --- /dev/null +++ b/scripts/features/grafana.sh @@ -0,0 +1,30 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +if [ -f /home/$WSL_USER_NAME/.homestead-features/grafana ] +then + echo "grafana already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/grafana +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +curl -fsSL https://packages.grafana.com/gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/grafana.gpg +echo "deb [signed-by=/etc/apt/keyrings/grafana.gpg] https://packages.grafana.com/oss/deb stable main" | sudo tee /etc/apt/sources.list.d/grafana.list + +apt-get update -y +apt-get install -y grafana + +systemctl enable grafana-server +systemctl daemon-reload +systemctl start grafana-server diff --git a/scripts/features/heroku.sh b/scripts/features/heroku.sh new file mode 100644 index 0000000..889c64c --- /dev/null +++ b/scripts/features/heroku.sh @@ -0,0 +1,23 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +if [ -f /home/$WSL_USER_NAME/.homestead-features/heroku ] +then + echo "Heroku CLI already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/heroku +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +# Install Heroku CLI +curl https://cli-assets.heroku.com/install-ubuntu.sh | sh diff --git a/scripts/features/influxdb.sh b/scripts/features/influxdb.sh new file mode 100644 index 0000000..d323d6e --- /dev/null +++ b/scripts/features/influxdb.sh @@ -0,0 +1,42 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +if [ -f /home/$WSL_USER_NAME/.homestead-features/influxdb ] +then + echo "influxdb already installed." + exit 0 +fi + + +# InfluxDB v2.7.5 - from https://www.influxdata.com/downloads/ +# influxdata-archive_compat.key GPG fingerprint: +# 9D53 9D90 D332 8DC7 D6C8 D3B9 D8FF 8E1F 7DF8 B07E +wget -q https://repos.influxdata.com/influxdata-archive_compat.key +echo '393e8779c89ac8d958f81f942f9ad7fb82a25e133faddaf92e15b16e6ac9ce4c influxdata-archive_compat.key' | sha256sum -c && cat influxdata-archive_compat.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/influxdata-archive_compat.gpg > /dev/null +echo 'deb [signed-by=/etc/apt/trusted.gpg.d/influxdata-archive_compat.gpg] https://repos.influxdata.com/debian stable main' | sudo tee /etc/apt/sources.list.d/influxdata.list + +apt-get update +apt-get install -y influxdb2 + +systemctl enable --now influxdb + +influx setup \ + --force \ + --username "homestead" \ + --password "secretkey" \ + --org "homestead" \ + --bucket "homestead" \ + --name "homestead" \ + --token "homestead_secret" + +touch /home/$WSL_USER_NAME/.homestead-features/influxdb +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features diff --git a/scripts/features/logstash.sh b/scripts/features/logstash.sh new file mode 100644 index 0000000..3f94e61 --- /dev/null +++ b/scripts/features/logstash.sh @@ -0,0 +1,53 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +if [ -f /home/$WSL_USER_NAME/.homestead-features/logstash ] +then + echo "logstash already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/logstash +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +# Determine version from config + +set -- "$1" +IFS="."; + +if [ -z "${version}" ]; then + installVersion="" # by not specifying we'll install latest + majorVersion="7" # default to version 7 +else + installVersion="=$version" + majorVersion="$(echo $version | head -c 1)" +fi + + +echo "Logstash installVersion: $installVersion" +echo "Logstash majorVersion: $majorVersion" + + +# Install Java & Logstash +curl -fsSL https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo gpg --dearmor -o /etc/apt/keyrings/elasticsearch.gpg + +if [ ! -f /etc/apt/sources.list.d/elastic-$majorVersion.x.list ]; then + echo "deb [signed-by=/etc/apt/keyrings/elasticsearch.gpg] https://artifacts.elastic.co/packages/$majorVersion.x/apt stable main" | sudo tee /etc/apt/sources.list.d/elastic-$majorVersion.x.list +fi + +sudo apt-get update +sudo apt-get -y install openjdk-11-jre +sudo apt-get -y install logstash"$installVersion" + +# Enable Start Elasticsearch + +sudo systemctl enable --now logstash.service diff --git a/scripts/features/mariadb.sh b/scripts/features/mariadb.sh new file mode 100644 index 0000000..989374e --- /dev/null +++ b/scripts/features/mariadb.sh @@ -0,0 +1,82 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +if [ -f /home/$WSL_USER_NAME/.homestead-features/mariadb ]; then + echo "MariaDB already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/mariadb +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +# Disable Apparmor +# See https://github.com/laravel/homestead/issues/629#issue-247524528 +service apparmor stop +update-rc.d -f apparmor remove + +# Remove MySQL +apt-get -o Dpkg::Options::="--force-confnew" remove -y --purge mysql-server mysql-client +apt-get autoremove -y +apt-get autoclean + +rm -rf /var/lib/mysql/* +rm -rf /var/log/mysql +rm -rf /etc/mysql + +# Determine version from config +set -- "$1" +IFS="." + +# Add Maria PPA +if [ -z "${version}" ]; then + curl -LsS https://downloads.mariadb.com/MariaDB/mariadb_repo_setup | sudo bash +else + curl -LsS -O https://downloads.mariadb.com/MariaDB/mariadb_repo_setup | sudo bash + sudo bash mariadb_repo_setup --mariadb-server-version="$version" + echo "MariaDB specific target version : $version" +fi + +debconf-set-selections <<< "mariadb-server mysql-server/data-dir select ''" +debconf-set-selections <<< "mariadb-server mysql-server/root_password password secret" +debconf-set-selections <<< "mariadb-server mysql-server/root_password_again password secret" +mkdir /etc/mysql +touch /etc/mysql/debian.cnf + +# Install MariaDB +apt-get -o Dpkg::Options::="--force-confnew" install -y mariadb-server mariadb-client mysql-common + +# Configure Maria Remote Access and ignore db dirs +sed -i "s/bind-address = 127.0.0.1/bind-address = 0.0.0.0/" /etc/mysql/mariadb.conf.d/50-server.cnf +cat > /etc/mysql/mariadb.conf.d/50-server.cnf << EOF +[mysqld] +bind-address = 0.0.0.0 +ignore-db-dir = lost+found +#general_log +#general_log_file=/var/log/mysql/mariadb.log +EOF + +export MYSQL_PWD=secret + +mariadb --user="root" --password="secret" -h localhost -e "GRANT ALL ON *.* TO root@'localhost' IDENTIFIED BY 'secret' WITH GRANT OPTION;" +mariadb --user="root" --password="secret" -h localhost -e "GRANT ALL ON *.* TO root@'0.0.0.0' IDENTIFIED BY 'secret' WITH GRANT OPTION;" +service mariadb restart + +mariadb --user="root" --password="secret" -h localhost -e "CREATE USER IF NOT EXISTS 'homestead'@'0.0.0.0' IDENTIFIED BY 'secret';" +mariadb --user="root" --password="secret" -h localhost -e "GRANT ALL ON *.* TO 'homestead'@'0.0.0.0' IDENTIFIED BY 'secret' WITH GRANT OPTION;" +mariadb --user="root" --password="secret" -h localhost -e "GRANT ALL ON *.* TO 'homestead'@'%' IDENTIFIED BY 'secret' WITH GRANT OPTION;" +mariadb --user="root" --password="secret" -h localhost -e "FLUSH PRIVILEGES;" +service mariadb restart + +mariadb-upgrade --user="root" --verbose --force +service mariadb restart + +unset MYSQL_PWD diff --git a/scripts/features/meilisearch.sh b/scripts/features/meilisearch.sh new file mode 100644 index 0000000..4966b98 --- /dev/null +++ b/scripts/features/meilisearch.sh @@ -0,0 +1,45 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +if [ -f /home/$WSL_USER_NAME/.homestead-features/meilisearch ] +then + echo "meilisearch already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/meilisearch +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +# add the sources for meilisearch +curl -L https://install.meilisearch.com | sh +mv ./meilisearch /usr/bin/ + +# Create a service file +cat > /etc/systemd/system/meilisearch.service << EOF +[Unit] +Description=MeiliSearch +After=systemd-user-sessions.service + +[Service] +Type=simple +ExecStart=/usr/bin/meilisearch --http-addr '0.0.0.0:7700' + +[Install] +WantedBy=default.target +EOF + +# Set the service meilisearch +systemctl daemon-reload +systemctl enable meilisearch + +# Start the meilisearch service +systemctl start meilisearch diff --git a/scripts/features/minio.sh b/scripts/features/minio.sh new file mode 100644 index 0000000..de07a4c --- /dev/null +++ b/scripts/features/minio.sh @@ -0,0 +1,68 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +if [ -f /home/$WSL_USER_NAME/.homestead-features/minio ] +then + echo "minio already installed." + exit 0 +fi + +ARCH=$(arch) + + +touch /home/$WSL_USER_NAME/.homestead-features/minio +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +if [[ "$ARCH" == "aarch64" ]]; then + curl -sO https://dl.minio.io/server/minio/release/linux-arm64/minio +else + curl -sO https://dl.minio.io/server/minio/release/linux-amd64/minio +fi + +sudo chmod +x minio +sudo mv minio /usr/local/bin +sudo useradd -r minio-user -s /sbin/nologin +sudo mkdir /usr/local/share/minio +sudo mkdir /etc/minio + +cat <> /etc/default/minio +# Local export path. +MINIO_VOLUMES="/usr/local/share/minio/" +# Use if you want to run Minio on a custom port. +MINIO_OPTS="--config-dir /etc/minio --address :9600 --console-address :9601" +MINIO_CONFIG_ENV_FILE=/etc/default/minio +MINIO_ROOT_USER=homestead +MINIO_ROOT_PASSWORD=secretkey + +EOT + +sudo chown minio-user:minio-user /usr/local/share/minio +sudo chown minio-user:minio-user /etc/minio + +curl -sO https://raw.githubusercontent.com/minio/minio-service/master/linux-systemd/minio.service +sudo mv minio.service /etc/systemd/system +sudo systemctl daemon-reload +sudo systemctl enable minio +sudo systemctl start minio + +sudo ufw allow 9600 + +# Installing Minio Client +if [[ "$ARCH" == "aarch64" ]]; then + curl -sO https://dl.minio.io/client/mc/release/linux-arm64/mc +else + curl -sO https://dl.minio.io/client/mc/release/linux-amd64/mc +fi + +chmod +x mc +sudo mv mc /usr/local/bin +mc config host add homestead http://127.0.1.1:9600 homestead secretkey diff --git a/scripts/features/mongodb.sh b/scripts/features/mongodb.sh new file mode 100644 index 0000000..397c9fa --- /dev/null +++ b/scripts/features/mongodb.sh @@ -0,0 +1,164 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +if [ -f /home/$WSL_USER_NAME/.homestead-features/mongodb ] +then + echo "MongoDB already installed." + exit 0 +fi + +ARCH=$(arch) + +touch /home/$WSL_USER_NAME/.homestead-features/mongodb +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +curl -fsSL https://www.mongodb.org/static/pgp/server-6.0.asc | sudo gpg --dearmor -o /etc/apt/keyrings/mongodb.gpg +if [[ "$ARCH" == "aarch64" ]]; then + echo "deb [signed-by=/etc/apt/keyrings/mongodb.gpg arch=arm64] https://repo.mongodb.org/apt/ubuntu $(lsb_release -cs)/mongodb-org/6.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-6.0.list +else + echo "deb [signed-by=/etc/apt/keyrings/mongodb.gpg arch=amd64] https://repo.mongodb.org/apt/ubuntu $(lsb_release -cs)/mongodb-org/6.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-6.0.list +fi + +sudo apt-get update + +sudo DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-confnew" install mongodb-org autoconf g++ make openssl libssl-dev libcurl4-openssl-dev pkg-config libsasl2-dev php-dev + +sudo ufw allow 27017 +sudo sed -i "s/bindIp: .*/bindIp: 0.0.0.0/" /etc/mongod.conf + +sudo systemctl enable mongod +sudo systemctl start mongod + +sudo rm -rf /tmp/mongo-php-driver /usr/src/mongo-php-driver +git clone -c advice.detachedHead=false -q -b '1.16.2' --single-branch https://github.com/mongodb/mongo-php-driver.git /tmp/mongo-php-driver +sudo mv /tmp/mongo-php-driver /usr/src/mongo-php-driver +cd /usr/src/mongo-php-driver +git submodule -q update --init + +if [ -f /home/$WSL_USER_NAME/.homestead-features/php56 ] +then + sudo DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-confold" install php5.6-dev + phpize5.6 + ./configure --with-php-config=/usr/bin/php-config5.6 > /dev/null + make clean > /dev/null + make >/dev/null 2>&1 + sudo make install + sudo bash -c "echo 'extension=mongodb.so' > /etc/php/5.6/mods-available/mongo.ini" + sudo ln -s /etc/php/5.6/mods-available/mongo.ini /etc/php/5.6/cli/conf.d/20-mongo.ini + sudo ln -s /etc/php/5.6/mods-available/mongo.ini /etc/php/5.6/fpm/conf.d/20-mongo.ini + sudo service php5.6-fpm restart +fi + +if [ -f /home/$WSL_USER_NAME/.homestead-features/php70 ] +then + sudo DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-confold" install php7.0-dev + phpize7.0 + ./configure --with-php-config=/usr/bin/php-config7.0 > /dev/null + make clean > /dev/null + make >/dev/null 2>&1 + sudo make install + sudo bash -c "echo 'extension=mongodb.so' > /etc/php/7.0/mods-available/mongo.ini" + sudo ln -s /etc/php/7.0/mods-available/mongo.ini /etc/php/7.0/cli/conf.d/20-mongo.ini + sudo ln -s /etc/php/7.0/mods-available/mongo.ini /etc/php/7.0/fpm/conf.d/20-mongo.ini + sudo service php7.0-fpm restart +fi + +if [ -f /home/$WSL_USER_NAME/.homestead-features/php71 ] +then + sudo DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-confold" install php7.1-dev + phpize7.1 + ./configure --with-php-config=/usr/bin/php-config7.1 > /dev/null + make clean > /dev/null + make >/dev/null 2>&1 + sudo make install + sudo bash -c "echo 'extension=mongodb.so' > /etc/php/7.1/mods-available/mongo.ini" + sudo ln -s /etc/php/7.1/mods-available/mongo.ini /etc/php/7.1/cli/conf.d/20-mongo.ini + sudo ln -s /etc/php/7.1/mods-available/mongo.ini /etc/php/7.1/fpm/conf.d/20-mongo.ini + sudo service php7.1-fpm restart +fi + +if [ -f /home/$WSL_USER_NAME/.homestead-features/php72 ] +then + phpize7.2 + ./configure --with-php-config=/usr/bin/php-config7.2 > /dev/null + make clean > /dev/null + make >/dev/null 2>&1 + sudo make install + sudo bash -c "echo 'extension=mongodb.so' > /etc/php/7.2/mods-available/mongo.ini" + sudo ln -s /etc/php/7.2/mods-available/mongo.ini /etc/php/7.2/cli/conf.d/20-mongo.ini + sudo ln -s /etc/php/7.2/mods-available/mongo.ini /etc/php/7.2/fpm/conf.d/20-mongo.ini + sudo service php7.2-fpm restart +fi + +if [ -f /home/$WSL_USER_NAME/.homestead-features/php73 ] +then + phpize7.3 + ./configure --with-php-config=/usr/bin/php-config7.3 > /dev/null + make clean > /dev/null + make >/dev/null 2>&1 + sudo make install + sudo bash -c "echo 'extension=mongodb.so' > /etc/php/7.3/mods-available/mongo.ini" + sudo ln -s /etc/php/7.3/mods-available/mongo.ini /etc/php/7.3/cli/conf.d/20-mongo.ini + sudo ln -s /etc/php/7.3/mods-available/mongo.ini /etc/php/7.3/fpm/conf.d/20-mongo.ini + sudo service php7.3-fpm restart +fi + +if [ -f /home/$WSL_USER_NAME/.homestead-features/php74 ] +then + phpize7.4 + ./configure --with-php-config=/usr/bin/php-config7.4 > /dev/null + make clean > /dev/null + make >/dev/null 2>&1 + sudo make install + sudo bash -c "echo 'extension=mongodb.so' > /etc/php/7.4/mods-available/mongo.ini" + sudo ln -s /etc/php/7.4/mods-available/mongo.ini /etc/php/7.4/cli/conf.d/20-mongo.ini + sudo ln -s /etc/php/7.4/mods-available/mongo.ini /etc/php/7.4/fpm/conf.d/20-mongo.ini + sudo service php7.4-fpm restart +fi + +if [ -f /home/$WSL_USER_NAME/.homestead-features/php80 ] +then + phpize8.0 + ./configure --with-php-config=/usr/bin/php-config8.0 > /dev/null + make clean > /dev/null + make >/dev/null 2>&1 + sudo make install + sudo bash -c "echo 'extension=mongodb.so' > /etc/php/8.0/mods-available/mongo.ini" + sudo ln -s /etc/php/8.0/mods-available/mongo.ini /etc/php/8.0/cli/conf.d/20-mongo.ini + sudo ln -s /etc/php/8.0/mods-available/mongo.ini /etc/php/8.0/fpm/conf.d/20-mongo.ini + sudo service php8.0-fpm restart +fi + +if [ -f /home/$WSL_USER_NAME/.homestead-features/php81 ] +then + phpize8.1 + ./configure --with-php-config=/usr/bin/php-config8.1 > /dev/null + make clean > /dev/null + make >/dev/null 2>&1 + sudo make install + sudo bash -c "echo 'extension=mongodb.so' > /etc/php/8.1/mods-available/mongo.ini" + sudo ln -s /etc/php/8.1/mods-available/mongo.ini /etc/php/8.1/cli/conf.d/20-mongo.ini + sudo ln -s /etc/php/8.1/mods-available/mongo.ini /etc/php/8.1/fpm/conf.d/20-mongo.ini + sudo service php8.1-fpm restart +fi + +phpize8.2 +./configure --with-php-config=/usr/bin/php-config8.2 > /dev/null +make clean > /dev/null +make >/dev/null 2>&1 +sudo make install +sudo bash -c "echo 'extension=mongodb.so' > /etc/php/8.2/mods-available/mongo.ini" +sudo ln -s /etc/php/8.2/mods-available/mongo.ini /etc/php/8.2/cli/conf.d/20-mongo.ini +sudo ln -s /etc/php/8.2/mods-available/mongo.ini /etc/php/8.2/fpm/conf.d/20-mongo.ini +sudo service php8.2-fpm restart + +mongosh admin --eval "db.createUser({user:'homestead',pwd:'secret',roles:['root']})" diff --git a/scripts/features/neo4j.sh b/scripts/features/neo4j.sh new file mode 100644 index 0000000..156879b --- /dev/null +++ b/scripts/features/neo4j.sh @@ -0,0 +1,53 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +if [ -f /home/$WSL_USER_NAME/.homestead-features/neo4j ] +then + echo "neo4j already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/neo4j +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +wget -O - https://debian.neo4j.com/neotechnology.gpg.key | sudo apt-key add - +echo 'deb https://debian.neo4j.com stable latest' | sudo tee /etc/apt/sources.list.d/neo4j.list + +apt-get update + +# Install Neo4j Community Edition +apt-get install -y neo4j + +# Stop Neo4j for configuration +systemctl stop neo4j + +# Configure Neo4j Remote Access +sed -i "s/#dbms.connectors.default_listen_address=0.0.0.0/dbms.connectors.default_listen_address=0.0.0.0/" /etc/neo4j/neo4j.conf + +# Enable Neo4j as system service +systemctl enable neo4j +systemctl start neo4j + +# Poll Neo4j +end="$((SECONDS+60))" +while true; do + nc -w 2 localhost 7687 && break + [[ "${SECONDS}" -ge "${end}" ]] && exit 1 + sleep 1 +done + +# Add new Neo4j user +cypher-shell -u neo4j -p neo4j "CALL dbms.changePassword('secret');" +cypher-shell -u neo4j -p secret "CALL dbms.security.createUser('homestead', 'secret', false);" + +# Delete default Neo4j user +cypher-shell -u homestead -p secret "CALL dbms.security.deleteUser('neo4j');" diff --git a/scripts/features/ohmyzsh.sh b/scripts/features/ohmyzsh.sh new file mode 100644 index 0000000..2a02f47 --- /dev/null +++ b/scripts/features/ohmyzsh.sh @@ -0,0 +1,39 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +if [ -f /home/$WSL_USER_NAME/.homestead-features/oh-my-zsh ] +then + echo "oh-my-zsh already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/oh-my-zsh +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +# Install oh-my-zsh +git clone https://github.com/ohmyzsh/ohmyzsh.git /home/vagrant/.oh-my-zsh +cp /home/vagrant/.oh-my-zsh/templates/zshrc.zsh-template /home/vagrant/.zshrc + +# Set theme and plugins according to config +if [ -n "${theme}" ]; then + sed -i "s/^ZSH_THEME=.*/ZSH_THEME=\"${theme}\"/" /home/vagrant/.zshrc +fi +if [ -n "${plugins}" ]; then + sed -i "s/^plugins=.*/plugins=(${plugins})/" /home/vagrant/.zshrc +fi + +printf "\nemulate sh -c 'source ~/.bash_aliases'\n" | tee -a /home/vagrant/.zprofile +printf "\nemulate sh -c 'source ~/.profile'\n" | tee -a /home/vagrant/.zprofile +chown -R vagrant:vagrant /home/vagrant/.oh-my-zsh +chown vagrant:vagrant /home/vagrant/.zshrc +chown vagrant:vagrant /home/vagrant/.zprofile +chsh -s /bin/zsh vagrant diff --git a/scripts/features/openresty.sh b/scripts/features/openresty.sh new file mode 100644 index 0000000..b41e748 --- /dev/null +++ b/scripts/features/openresty.sh @@ -0,0 +1,34 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +if [ -f /home/$WSL_USER_NAME/.homestead-features/openresty ] +then + echo "openresty already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/openresty +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +# Install Openresty +curl -fsSL https://openresty.org/package/pubkey.gpg | sudo gpg --dearmor -o /etc/apt/keyrings/openresty.gpg +echo "deb [signed-by=/etc/apt/keyrings/openresty.gpg] http://openresty.org/package/ubuntu jammy main" | sudo tee /etc/apt/sources.list.d/openresty.list + +sudo apt-get update +sudo service nginx stop +sudo apt-get install -y openresty +sudo sed -i "s/listen\s*80;/listen\ 8888;/g" /etc/openresty/nginx.conf + +# Start Openresty + +sudo service openresty restart +sudo service nginx start diff --git a/scripts/features/php5.6.sh b/scripts/features/php5.6.sh new file mode 100644 index 0000000..ff91b2f --- /dev/null +++ b/scripts/features/php5.6.sh @@ -0,0 +1,74 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +SERVICE_STATUS=$(systemctl is-enabled php5.6-fpm.service) + +if [ "$SERVICE_STATUS" == "disabled" ]; +then + systemctl enable php5.6-fpm + service php5.6-fpm restart +fi + +if [ -f /home/$WSL_USER_NAME/.homestead-features/php56 ] +then + echo "PHP 5.6 already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/php56 +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +# PHP 5.6 +apt-get install -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" --allow-change-held-packages \ +php5.6-bcmath php5.6-bz2 php5.6-cgi php5.6-cli php5.6-common php5.6-curl php5.6-dba php5.6-dev php5.6-enchant \ +php5.6-fpm php5.6-gd php5.6-gmp php5.6-imap php5.6-interbase php5.6-intl php5.6-json php5.6-ldap php5.6-mbstring \ +php5.6-mcrypt php5.6-mysql php5.6-odbc php5.6-opcache php5.6-pgsql php5.6-phpdbg php5.6-pspell php5.6-readline \ +php5.6-recode php5.6-snmp php5.6-soap php5.6-sqlite3 php5.6-sybase php5.6-tidy php5.6-xml php5.6-xmlrpc php5.6-xsl \ +php5.6-zip php5.6-memcached php5.6-redis + +# Configure php.ini for CLI +sed -i "s/error_reporting = .*/error_reporting = E_ALL/" /etc/php/5.6/cli/php.ini +sed -i "s/display_errors = .*/display_errors = On/" /etc/php/5.6/cli/php.ini +sed -i "s/memory_limit = .*/memory_limit = 512M/" /etc/php/5.6/cli/php.ini +sed -i "s/;date.timezone.*/date.timezone = UTC/" /etc/php/5.6/cli/php.ini + +# Configure Xdebug +echo "xdebug.remote_enable = 1" >> /etc/php/5.6/mods-available/xdebug.ini +echo "xdebug.remote_connect_back = 1" >> /etc/php/5.6/mods-available/xdebug.ini +echo "xdebug.remote_port = 9000" >> /etc/php/5.6/mods-available/xdebug.ini +echo "xdebug.max_nesting_level = 512" >> /etc/php/5.6/mods-available/xdebug.ini +echo "opcache.revalidate_freq = 0" >> /etc/php/5.6/mods-available/opcache.ini + +# Configure php.ini for FPM +sed -i "s/error_reporting = .*/error_reporting = E_ALL/" /etc/php/5.6/fpm/php.ini +sed -i "s/display_errors = .*/display_errors = On/" /etc/php/5.6/fpm/php.ini +sed -i "s/;cgi.fix_pathinfo=1/cgi.fix_pathinfo=0/" /etc/php/5.6/fpm/php.ini +sed -i "s/memory_limit = .*/memory_limit = 512M/" /etc/php/5.6/fpm/php.ini +sed -i "s/upload_max_filesize = .*/upload_max_filesize = 100M/" /etc/php/5.6/fpm/php.ini +sed -i "s/post_max_size = .*/post_max_size = 100M/" /etc/php/5.6/fpm/php.ini +sed -i "s/;date.timezone.*/date.timezone = UTC/" /etc/php/5.6/fpm/php.ini + +printf "[openssl]\n" | tee -a /etc/php/5.6/fpm/php.ini +printf "openssl.cainfo = /etc/ssl/certs/ca-certificates.crt\n" | tee -a /etc/php/5.6/fpm/php.ini + +printf "[curl]\n" | tee -a /etc/php/5.6/fpm/php.ini +printf "curl.cainfo = /etc/ssl/certs/ca-certificates.crt\n" | tee -a /etc/php/5.6/fpm/php.ini + +# Configure FPM +sed -i "s/user = www-data/user = vagrant/" /etc/php/5.6/fpm/pool.d/www.conf +sed -i "s/group = www-data/group = vagrant/" /etc/php/5.6/fpm/pool.d/www.conf +sed -i "s/listen\.owner.*/listen.owner = vagrant/" /etc/php/5.6/fpm/pool.d/www.conf +sed -i "s/listen\.group.*/listen.group = vagrant/" /etc/php/5.6/fpm/pool.d/www.conf +sed -i "s/;listen\.mode.*/listen.mode = 0666/" /etc/php/5.6/fpm/pool.d/www.conf + +systemctl enable php5.6-fpm +service php5.6-fpm restart diff --git a/scripts/features/php7.0.sh b/scripts/features/php7.0.sh new file mode 100644 index 0000000..f168bc0 --- /dev/null +++ b/scripts/features/php7.0.sh @@ -0,0 +1,73 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +SERVICE_STATUS=$(systemctl is-enabled php7.0-fpm.service) + +if [ "$SERVICE_STATUS" == "disabled" ]; +then + systemctl enable php7.0-fpm + service php7.0-fpm restart +fi + +if [ -f /home/$WSL_USER_NAME/.homestead-features/php70 ] +then + echo "PHP 7.0 already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/php70 +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +# PHP 7.0 +apt-get install -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" --allow-change-held-packages \ +php7.0-bcmath php7.0-bz2 php7.0-cgi php7.0-cli php7.0-common php7.0-curl php7.0-dba php7.0-dev php7.0-enchant \ +php7.0-fpm php7.0-gd php7.0-gmp php7.0-imap php7.0-interbase php7.0-intl php7.0-json php7.0-ldap php7.0-mbstring \ +php7.0-mcrypt php7.0-mysql php7.0-odbc php7.0-opcache php7.0-pgsql php7.0-phpdbg php7.0-pspell php7.0-readline \ +php7.0-recode php7.0-snmp php7.0-soap php7.0-sqlite3 php7.0-sybase php7.0-tidy php7.0-xml php7.0-xmlrpc php7.0-xsl \ +php7.0-zip php7.0-memcached php7.0-redis + +# Configure php.ini for CLI +sed -i "s/error_reporting = .*/error_reporting = E_ALL/" /etc/php/7.0/cli/php.ini +sed -i "s/display_errors = .*/display_errors = On/" /etc/php/7.0/cli/php.ini +sed -i "s/memory_limit = .*/memory_limit = 512M/" /etc/php/7.0/cli/php.ini +sed -i "s/;date.timezone.*/date.timezone = UTC/" /etc/php/7.0/cli/php.ini + +# Configure Xdebug +echo "xdebug.remote_enable = 1" >> /etc/php/7.0/mods-available/xdebug.ini +echo "xdebug.remote_connect_back = 1" >> /etc/php/7.0/mods-available/xdebug.ini +echo "xdebug.remote_port = 9000" >> /etc/php/7.0/mods-available/xdebug.ini +echo "xdebug.max_nesting_level = 512" >> /etc/php/7.0/mods-available/xdebug.ini +echo "opcache.revalidate_freq = 0" >> /etc/php/7.0/mods-available/opcache.ini + +# Configure php.ini for FPM +sed -i "s/error_reporting = .*/error_reporting = E_ALL/" /etc/php/7.0/fpm/php.ini +sed -i "s/display_errors = .*/display_errors = On/" /etc/php/7.0/fpm/php.ini +sed -i "s/;cgi.fix_pathinfo=1/cgi.fix_pathinfo=0/" /etc/php/7.0/fpm/php.ini +sed -i "s/memory_limit = .*/memory_limit = 512M/" /etc/php/7.0/fpm/php.ini +sed -i "s/upload_max_filesize = .*/upload_max_filesize = 100M/" /etc/php/7.0/fpm/php.ini +sed -i "s/post_max_size = .*/post_max_size = 100M/" /etc/php/7.0/fpm/php.ini +sed -i "s/;date.timezone.*/date.timezone = UTC/" /etc/php/7.0/fpm/php.ini + +printf "[openssl]\n" | tee -a /etc/php/7.0/fpm/php.ini +printf "openssl.cainfo = /etc/ssl/certs/ca-certificates.crt\n" | tee -a /etc/php/7.0/fpm/php.ini +printf "[curl]\n" | tee -a /etc/php/7.0/fpm/php.ini +printf "curl.cainfo = /etc/ssl/certs/ca-certificates.crt\n" | tee -a /etc/php/7.0/fpm/php.ini + +# Configure FPM +sed -i "s/user = www-data/user = vagrant/" /etc/php/7.0/fpm/pool.d/www.conf +sed -i "s/group = www-data/group = vagrant/" /etc/php/7.0/fpm/pool.d/www.conf +sed -i "s/listen\.owner.*/listen.owner = vagrant/" /etc/php/7.0/fpm/pool.d/www.conf +sed -i "s/listen\.group.*/listen.group = vagrant/" /etc/php/7.0/fpm/pool.d/www.conf +sed -i "s/;listen\.mode.*/listen.mode = 0666/" /etc/php/7.0/fpm/pool.d/www.conf + +systemctl enable php7.0-fpm +service php7.0-fpm restart diff --git a/scripts/features/php7.1.sh b/scripts/features/php7.1.sh new file mode 100644 index 0000000..d03f979 --- /dev/null +++ b/scripts/features/php7.1.sh @@ -0,0 +1,73 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +SERVICE_STATUS=$(systemctl is-enabled php7.1-fpm.service) + +if [ "$SERVICE_STATUS" == "disabled" ]; +then + systemctl enable php7.1-fpm + service php7.1-fpm restart +fi + +if [ -f /home/$WSL_USER_NAME/.homestead-features/php71 ] +then + echo "PHP 7.1 already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/php71 +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +# PHP 7.1 +apt-get install -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" --allow-change-held-packages \ +php7.1-bcmath php7.1-bz2 php7.1-cgi php7.1-cli php7.1-common php7.1-curl php7.1-dba php7.1-dev php7.1-enchant \ +php7.1-fpm php7.1-gd php7.1-gmp php7.1-imap php7.1-interbase php7.1-intl php7.1-json php7.1-ldap php7.1-mbstring \ +php7.1-mcrypt php7.1-mysql php7.1-odbc php7.1-opcache php7.1-pgsql php7.1-phpdbg php7.1-pspell php7.1-readline \ +php7.1-recode php7.1-snmp php7.1-soap php7.1-sqlite3 php7.1-sybase php7.1-tidy php7.1-xdebug php7.1-xml php7.1-xmlrpc \ +php7.1-xsl php7.1-zip php7.1-memcached php7.1-redis + +# Configure php.ini for CLI +sed -i "s/error_reporting = .*/error_reporting = E_ALL/" /etc/php/7.1/cli/php.ini +sed -i "s/display_errors = .*/display_errors = On/" /etc/php/7.1/cli/php.ini +sed -i "s/memory_limit = .*/memory_limit = 512M/" /etc/php/7.1/cli/php.ini +sed -i "s/;date.timezone.*/date.timezone = UTC/" /etc/php/7.1/cli/php.ini + +# Configure Xdebug +echo "xdebug.remote_enable = 1" >> /etc/php/7.1/mods-available/xdebug.ini +echo "xdebug.remote_connect_back = 1" >> /etc/php/7.1/mods-available/xdebug.ini +echo "xdebug.remote_port = 9000" >> /etc/php/7.1/mods-available/xdebug.ini +echo "xdebug.max_nesting_level = 512" >> /etc/php/7.1/mods-available/xdebug.ini +echo "opcache.revalidate_freq = 0" >> /etc/php/7.1/mods-available/opcache.ini + +# Configure php.ini for FPM +sed -i "s/error_reporting = .*/error_reporting = E_ALL/" /etc/php/7.1/fpm/php.ini +sed -i "s/display_errors = .*/display_errors = On/" /etc/php/7.1/fpm/php.ini +sed -i "s/;cgi.fix_pathinfo=1/cgi.fix_pathinfo=0/" /etc/php/7.1/fpm/php.ini +sed -i "s/memory_limit = .*/memory_limit = 512M/" /etc/php/7.1/fpm/php.ini +sed -i "s/upload_max_filesize = .*/upload_max_filesize = 100M/" /etc/php/7.1/fpm/php.ini +sed -i "s/post_max_size = .*/post_max_size = 100M/" /etc/php/7.1/fpm/php.ini +sed -i "s/;date.timezone.*/date.timezone = UTC/" /etc/php/7.1/fpm/php.ini + +printf "[openssl]\n" | tee -a /etc/php/7.1/fpm/php.ini +printf "openssl.cainfo = /etc/ssl/certs/ca-certificates.crt\n" | tee -a /etc/php/7.1/fpm/php.ini +printf "[curl]\n" | tee -a /etc/php/7.1/fpm/php.ini +printf "curl.cainfo = /etc/ssl/certs/ca-certificates.crt\n" | tee -a /etc/php/7.1/fpm/php.ini + +# Configure FPM +sed -i "s/user = www-data/user = vagrant/" /etc/php/7.1/fpm/pool.d/www.conf +sed -i "s/group = www-data/group = vagrant/" /etc/php/7.1/fpm/pool.d/www.conf +sed -i "s/listen\.owner.*/listen.owner = vagrant/" /etc/php/7.1/fpm/pool.d/www.conf +sed -i "s/listen\.group.*/listen.group = vagrant/" /etc/php/7.1/fpm/pool.d/www.conf +sed -i "s/;listen\.mode.*/listen.mode = 0666/" /etc/php/7.1/fpm/pool.d/www.conf + +systemctl enable php7.1-fpm +service php7.1-fpm restart diff --git a/scripts/features/php7.2.sh b/scripts/features/php7.2.sh new file mode 100644 index 0000000..86193c2 --- /dev/null +++ b/scripts/features/php7.2.sh @@ -0,0 +1,74 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +SERVICE_STATUS=$(systemctl is-enabled php7.2-fpm.service) + +if [ "$SERVICE_STATUS" == "disabled" ]; +then + systemctl enable php7.2-fpm + service php7.2-fpm restart +fi + +if [ -f /home/$WSL_USER_NAME/.homestead-features/php72 ] +then + echo "PHP 7.2 already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/php72 +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +# PHP 7.2 +apt-get install -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" --allow-change-held-packages \ +php7.2-bcmath php7.2-bz2 php7.2-dba php7.2-enchant php7.2-fpm php7.2-imap php7.2-interbase php7.2-intl \ +php7.2-mbstring php7.2-phpdbg php7.2-soap php7.2-sybase php7.2-xsl php7.2-zip php7.2-cgi php7.2-cli php7.2-common \ +php7.2-curl php7.2-dev php7.2-gd php7.2-gmp php7.2-json php7.2-ldap php7.2-mysql php7.2-odbc php7.2-opcache \ +php7.2-pgsql php7.2-pspell php7.2-readline php7.2-recode php7.2-snmp php7.2-sqlite3 php7.2-tidy php7.2-xdebug \ +php7.2-xml php7.2-xmlrpc php7.2-memcached php7.2-redis + +# Configure php.ini for CLI +sed -i "s/error_reporting = .*/error_reporting = E_ALL/" /etc/php/7.2/cli/php.ini +sed -i "s/display_errors = .*/display_errors = On/" /etc/php/7.2/cli/php.ini +sed -i "s/memory_limit = .*/memory_limit = 512M/" /etc/php/7.2/cli/php.ini +sed -i "s/;date.timezone.*/date.timezone = UTC/" /etc/php/7.2/cli/php.ini + +# Configure Xdebug +echo "xdebug.mode = debug" >> /etc/php/7.2/mods-available/xdebug.ini +echo "xdebug.discover_client_host = true" >> /etc/php/7.2/mods-available/xdebug.ini +echo "xdebug.client_port = 9003" >> /etc/php/7.2/mods-available/xdebug.ini +echo "xdebug.max_nesting_level = 512" >> /etc/php/7.2/mods-available/xdebug.ini +echo "opcache.revalidate_freq = 0" >> /etc/php/7.2/mods-available/opcache.ini + +# Configure php.ini for FPM +sed -i "s/error_reporting = .*/error_reporting = E_ALL/" /etc/php/7.2/fpm/php.ini +sed -i "s/display_errors = .*/display_errors = On/" /etc/php/7.2/fpm/php.ini +sed -i "s/;cgi.fix_pathinfo=1/cgi.fix_pathinfo=0/" /etc/php/7.2/fpm/php.ini +sed -i "s/memory_limit = .*/memory_limit = 512M/" /etc/php/7.2/fpm/php.ini +sed -i "s/upload_max_filesize = .*/upload_max_filesize = 100M/" /etc/php/7.2/fpm/php.ini +sed -i "s/post_max_size = .*/post_max_size = 100M/" /etc/php/7.2/fpm/php.ini +sed -i "s/;date.timezone.*/date.timezone = UTC/" /etc/php/7.2/fpm/php.ini + +printf "[openssl]\n" | tee -a /etc/php/7.2/fpm/php.ini +printf "openssl.cainfo = /etc/ssl/certs/ca-certificates.crt\n" | tee -a /etc/php/7.2/fpm/php.ini +printf "[curl]\n" | tee -a /etc/php/7.2/fpm/php.ini +printf "curl.cainfo = /etc/ssl/certs/ca-certificates.crt\n" | tee -a /etc/php/7.2/fpm/php.ini + +# Configure FPM +sed -i "s/user = www-data/user = vagrant/" /etc/php/7.2/fpm/pool.d/www.conf +sed -i "s/group = www-data/group = vagrant/" /etc/php/7.2/fpm/pool.d/www.conf + +sed -i "s/listen\.owner.*/listen.owner = vagrant/" /etc/php/7.2/fpm/pool.d/www.conf +sed -i "s/listen\.group.*/listen.group = vagrant/" /etc/php/7.2/fpm/pool.d/www.conf +sed -i "s/;listen\.mode.*/listen.mode = 0666/" /etc/php/7.2/fpm/pool.d/www.conf + +systemctl enable php7.2-fpm +service php7.2-fpm restart diff --git a/scripts/features/php7.3.sh b/scripts/features/php7.3.sh new file mode 100644 index 0000000..bf98e10 --- /dev/null +++ b/scripts/features/php7.3.sh @@ -0,0 +1,73 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +SERVICE_STATUS=$(systemctl is-enabled php7.3-fpm.service) + +if [ "$SERVICE_STATUS" == "disabled" ]; +then + systemctl enable php7.3-fpm + service php7.3-fpm restart +fi + +if [ -f /home/$WSL_USER_NAME/.homestead-features/php73 ] +then + echo "PHP 7.3 already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/php73 +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +# PHP 7.3 +apt-get install -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" --allow-change-held-packages \ +php7.3 php7.3-bcmath php7.3-bz2 php7.3-cgi php7.3-cli php7.3-common php7.3-curl php7.3-dba php7.3-dev php7.3-enchant \ +php7.3-fpm php7.3-gd php7.3-gmp php7.3-imap php7.3-interbase php7.3-intl php7.3-json php7.3-ldap php7.3-mbstring \ +php7.3-mysql php7.3-odbc php7.3-opcache php7.3-pgsql php7.3-phpdbg php7.3-pspell php7.3-readline php7.3-recode \ +php7.3-snmp php7.3-soap php7.3-sqlite3 php7.3-sybase php7.3-tidy php7.3-xdebug php7.3-xml php7.3-xmlrpc php7.3-xsl \ +php7.3-zip php7.3-memcached php7.3-redis + +# Configure php.ini for CLI +sed -i "s/error_reporting = .*/error_reporting = E_ALL/" /etc/php/7.3/cli/php.ini +sed -i "s/display_errors = .*/display_errors = On/" /etc/php/7.3/cli/php.ini +sed -i "s/memory_limit = .*/memory_limit = 512M/" /etc/php/7.3/cli/php.ini +sed -i "s/;date.timezone.*/date.timezone = UTC/" /etc/php/7.3/cli/php.ini + +# Configure Xdebug +echo "xdebug.mode = debug" >> /etc/php/7.3/mods-available/xdebug.ini +echo "xdebug.discover_client_host = true" >> /etc/php/7.3/mods-available/xdebug.ini +echo "xdebug.client_port = 9003" >> /etc/php/7.3/mods-available/xdebug.ini +echo "xdebug.max_nesting_level = 512" >> /etc/php/7.3/mods-available/xdebug.ini +echo "opcache.revalidate_freq = 0" >> /etc/php/7.3/mods-available/opcache.ini + +# Configure php.ini for FPM +sed -i "s/error_reporting = .*/error_reporting = E_ALL/" /etc/php/7.3/fpm/php.ini +sed -i "s/display_errors = .*/display_errors = On/" /etc/php/7.3/fpm/php.ini +sed -i "s/;cgi.fix_pathinfo=1/cgi.fix_pathinfo=0/" /etc/php/7.3/fpm/php.ini +sed -i "s/memory_limit = .*/memory_limit = 512M/" /etc/php/7.3/fpm/php.ini +sed -i "s/upload_max_filesize = .*/upload_max_filesize = 100M/" /etc/php/7.3/fpm/php.ini +sed -i "s/post_max_size = .*/post_max_size = 100M/" /etc/php/7.3/fpm/php.ini +sed -i "s/;date.timezone.*/date.timezone = UTC/" /etc/php/7.3/fpm/php.ini + +printf "[openssl]\n" | tee -a /etc/php/7.3/fpm/php.ini +printf "openssl.cainfo = /etc/ssl/certs/ca-certificates.crt\n" | tee -a /etc/php/7.3/fpm/php.ini +printf "[curl]\n" | tee -a /etc/php/7.3/fpm/php.ini +printf "curl.cainfo = /etc/ssl/certs/ca-certificates.crt\n" | tee -a /etc/php/7.3/fpm/php.ini + +# Configure FPM +sed -i "s/user = www-data/user = vagrant/" /etc/php/7.3/fpm/pool.d/www.conf +sed -i "s/group = www-data/group = vagrant/" /etc/php/7.3/fpm/pool.d/www.conf +sed -i "s/listen\.owner.*/listen.owner = vagrant/" /etc/php/7.3/fpm/pool.d/www.conf +sed -i "s/listen\.group.*/listen.group = vagrant/" /etc/php/7.3/fpm/pool.d/www.conf +sed -i "s/;listen\.mode.*/listen.mode = 0666/" /etc/php/7.3/fpm/pool.d/www.conf + +systemctl enable php7.3-fpm +service php7.3-fpm restart diff --git a/scripts/features/php7.4.sh b/scripts/features/php7.4.sh new file mode 100644 index 0000000..4dc6940 --- /dev/null +++ b/scripts/features/php7.4.sh @@ -0,0 +1,73 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +SERVICE_STATUS=$(systemctl is-enabled php7.4-fpm.service) + +if [ "$SERVICE_STATUS" == "disabled" ]; +then + systemctl enable php7.4-fpm + service php7.4-fpm restart +fi + +if [ -f /home/$WSL_USER_NAME/.homestead-features/php74 ] +then + echo "PHP 7.4 already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/php74 +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +# PHP 7.4 +apt-get install -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" --allow-change-held-packages \ +php7.4 php7.4-bcmath php7.4-bz2 php7.4-cgi php7.4-cli php7.4-common php7.4-curl php7.4-dba php7.4-dev \ +php7.4-enchant php7.4-fpm php7.4-gd php7.4-gmp php7.4-imap php7.4-interbase php7.4-intl php7.4-json php7.4-ldap \ +php7.4-mbstring php7.4-mysql php7.4-odbc php7.4-opcache php7.4-pgsql php7.4-phpdbg php7.4-pspell php7.4-readline \ +php7.4-snmp php7.4-soap php7.4-sqlite3 php7.4-sybase php7.4-tidy php7.4-xdebug php7.4-xml php7.4-xmlrpc php7.4-xsl \ +php7.4-zip php7.4-memcached php7.4-redis + +# Configure php.ini for CLI +sed -i "s/error_reporting = .*/error_reporting = E_ALL/" /etc/php/7.4/cli/php.ini +sed -i "s/display_errors = .*/display_errors = On/" /etc/php/7.4/cli/php.ini +sed -i "s/memory_limit = .*/memory_limit = 512M/" /etc/php/7.4/cli/php.ini +sed -i "s/;date.timezone.*/date.timezone = UTC/" /etc/php/7.4/cli/php.ini + +# Configure Xdebug +echo "xdebug.mode = debug" >> /etc/php/7.4/mods-available/xdebug.ini +echo "xdebug.discover_client_host = true" >> /etc/php/7.4/mods-available/xdebug.ini +echo "xdebug.client_port = 9003" >> /etc/php/7.4/mods-available/xdebug.ini +echo "xdebug.max_nesting_level = 512" >> /etc/php/7.4/mods-available/xdebug.ini +echo "opcache.revalidate_freq = 0" >> /etc/php/7.4/mods-available/opcache.ini + +# Configure php.ini for FPM +sed -i "s/error_reporting = .*/error_reporting = E_ALL/" /etc/php/7.4/fpm/php.ini +sed -i "s/display_errors = .*/display_errors = On/" /etc/php/7.4/fpm/php.ini +sed -i "s/;cgi.fix_pathinfo=1/cgi.fix_pathinfo=0/" /etc/php/7.4/fpm/php.ini +sed -i "s/memory_limit = .*/memory_limit = 512M/" /etc/php/7.4/fpm/php.ini +sed -i "s/upload_max_filesize = .*/upload_max_filesize = 100M/" /etc/php/7.4/fpm/php.ini +sed -i "s/post_max_size = .*/post_max_size = 100M/" /etc/php/7.4/fpm/php.ini +sed -i "s/;date.timezone.*/date.timezone = UTC/" /etc/php/7.4/fpm/php.ini + +printf "[openssl]\n" | tee -a /etc/php/7.4/fpm/php.ini +printf "openssl.cainfo = /etc/ssl/certs/ca-certificates.crt\n" | tee -a /etc/php/7.4/fpm/php.ini +printf "[curl]\n" | tee -a /etc/php/7.4/fpm/php.ini +printf "curl.cainfo = /etc/ssl/certs/ca-certificates.crt\n" | tee -a /etc/php/7.4/fpm/php.ini + +# Configure FPM +sed -i "s/user = www-data/user = vagrant/" /etc/php/7.4/fpm/pool.d/www.conf +sed -i "s/group = www-data/group = vagrant/" /etc/php/7.4/fpm/pool.d/www.conf +sed -i "s/listen\.owner.*/listen.owner = vagrant/" /etc/php/7.4/fpm/pool.d/www.conf +sed -i "s/listen\.group.*/listen.group = vagrant/" /etc/php/7.4/fpm/pool.d/www.conf +sed -i "s/;listen\.mode.*/listen.mode = 0666/" /etc/php/7.4/fpm/pool.d/www.conf + +systemctl enable php7.4-fpm +service php7.4-fpm restart diff --git a/scripts/features/php8.0.sh b/scripts/features/php8.0.sh new file mode 100644 index 0000000..9025a63 --- /dev/null +++ b/scripts/features/php8.0.sh @@ -0,0 +1,73 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +SERVICE_STATUS=$(systemctl is-enabled php8.0-fpm.service) + +if [ "$SERVICE_STATUS" == "disabled" ]; +then + systemctl enable php8.0-fpm + service php8.0-fpm restart +fi + +if [ -f /home/$WSL_USER_NAME/.homestead-features/php80 ] +then + echo "PHP 8.0 already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/php80 +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +# PHP 8.0 +apt-get install -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" --allow-change-held-packages \ +php8.0 php8.0-bcmath php8.0-bz2 php8.0-cgi php8.0-cli php8.0-common php8.0-curl php8.0-dba php8.0-dev \ +php8.0-enchant php8.0-fpm php8.0-gd php8.0-gmp php8.0-imap php8.0-interbase php8.0-intl php8.0-ldap \ +php8.0-mbstring php8.0-mysql php8.0-odbc php8.0-opcache php8.0-pgsql php8.0-phpdbg php8.0-pspell php8.0-readline \ +php8.0-snmp php8.0-soap php8.0-sqlite3 php8.0-sybase php8.0-tidy php8.0-xdebug php8.0-xml php8.0-xmlrpc php8.0-xsl \ +php8.0-zip php8.0-memcached php8.0-redis + +# Configure php.ini for CLI +sed -i "s/error_reporting = .*/error_reporting = E_ALL/" /etc/php/8.0/cli/php.ini +sed -i "s/display_errors = .*/display_errors = On/" /etc/php/8.0/cli/php.ini +sed -i "s/memory_limit = .*/memory_limit = 512M/" /etc/php/8.0/cli/php.ini +sed -i "s/;date.timezone.*/date.timezone = UTC/" /etc/php/8.0/cli/php.ini + +# Configure Xdebug +echo "xdebug.mode = debug" >> /etc/php/8.0/mods-available/xdebug.ini +echo "xdebug.discover_client_host = true" >> /etc/php/8.0/mods-available/xdebug.ini +echo "xdebug.client_port = 9003" >> /etc/php/8.0/mods-available/xdebug.ini +echo "xdebug.max_nesting_level = 512" >> /etc/php/8.0/mods-available/xdebug.ini +echo "opcache.revalidate_freq = 0" >> /etc/php/8.0/mods-available/opcache.ini + +# Configure php.ini for FPM +sed -i "s/error_reporting = .*/error_reporting = E_ALL/" /etc/php/8.0/fpm/php.ini +sed -i "s/display_errors = .*/display_errors = On/" /etc/php/8.0/fpm/php.ini +sed -i "s/;cgi.fix_pathinfo=1/cgi.fix_pathinfo=0/" /etc/php/8.0/fpm/php.ini +sed -i "s/memory_limit = .*/memory_limit = 512M/" /etc/php/8.0/fpm/php.ini +sed -i "s/upload_max_filesize = .*/upload_max_filesize = 100M/" /etc/php/8.0/fpm/php.ini +sed -i "s/post_max_size = .*/post_max_size = 100M/" /etc/php/8.0/fpm/php.ini +sed -i "s/;date.timezone.*/date.timezone = UTC/" /etc/php/8.0/fpm/php.ini + +printf "[openssl]\n" | tee -a /etc/php/8.0/fpm/php.ini +printf "openssl.cainfo = /etc/ssl/certs/ca-certificates.crt\n" | tee -a /etc/php/8.0/fpm/php.ini +printf "[curl]\n" | tee -a /etc/php/8.0/fpm/php.ini +printf "curl.cainfo = /etc/ssl/certs/ca-certificates.crt\n" | tee -a /etc/php/8.0/fpm/php.ini + +# Configure FPM +sed -i "s/user = www-data/user = vagrant/" /etc/php/8.0/fpm/pool.d/www.conf +sed -i "s/group = www-data/group = vagrant/" /etc/php/8.0/fpm/pool.d/www.conf +sed -i "s/listen\.owner.*/listen.owner = vagrant/" /etc/php/8.0/fpm/pool.d/www.conf +sed -i "s/listen\.group.*/listen.group = vagrant/" /etc/php/8.0/fpm/pool.d/www.conf +sed -i "s/;listen\.mode.*/listen.mode = 0666/" /etc/php/8.0/fpm/pool.d/www.conf + +systemctl enable php8.0-fpm +service php8.0-fpm restart diff --git a/scripts/features/php8.1.sh b/scripts/features/php8.1.sh new file mode 100644 index 0000000..4bc038c --- /dev/null +++ b/scripts/features/php8.1.sh @@ -0,0 +1,75 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +SERVICE_STATUS=$(systemctl is-enabled php8.1-fpm.service) + +if [ "$SERVICE_STATUS" == "disabled" ]; +then + systemctl enable php8.1-fpm + service php8.1-fpm restart +fi + +if [ -f /home/$WSL_USER_NAME/.homestead-features/php81 ] +then + echo "PHP 8.1 already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/php81 +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +# PHP 8.1 +apt-get install -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" --allow-change-held-packages \ +php8.1 php8.1-bcmath php8.1-bz2 php8.1-cgi php8.1-cli php8.1-common php8.1-curl php8.1-dba php8.1-dev \ +php8.1-enchant php8.1-fpm php8.1-gd php8.1-gmp php8.1-imap php8.1-interbase php8.1-intl php8.1-ldap \ +php8.1-mbstring php8.1-mysql php8.1-odbc php8.1-opcache php8.1-pgsql php8.1-phpdbg php8.1-pspell php8.1-readline \ +php8.1-snmp php8.1-soap php8.1-sqlite3 php8.1-sybase php8.1-tidy php8.1-xml php8.1-xsl \ +php8.1-zip + +# php8.1-xdebug php8.1-xmlrpc php8.1-memcached php8.1-redis + +# Configure php.ini for CLI +sed -i "s/error_reporting = .*/error_reporting = E_ALL/" /etc/php/8.1/cli/php.ini +sed -i "s/display_errors = .*/display_errors = On/" /etc/php/8.1/cli/php.ini +sed -i "s/memory_limit = .*/memory_limit = 512M/" /etc/php/8.1/cli/php.ini +sed -i "s/;date.timezone.*/date.timezone = UTC/" /etc/php/8.1/cli/php.ini + +# Configure Xdebug +# echo "xdebug.mode = debug" >> /etc/php/8.1/mods-available/xdebug.ini +# echo "xdebug.discover_client_host = true" >> /etc/php/8.1/mods-available/xdebug.ini +# echo "xdebug.client_port = 9003" >> /etc/php/8.1/mods-available/xdebug.ini +# echo "xdebug.max_nesting_level = 512" >> /etc/php/8.1/mods-available/xdebug.ini +# echo "opcache.revalidate_freq = 0" >> /etc/php/8.1/mods-available/opcache.ini + +# Configure php.ini for FPM +sed -i "s/error_reporting = .*/error_reporting = E_ALL/" /etc/php/8.1/fpm/php.ini +sed -i "s/display_errors = .*/display_errors = On/" /etc/php/8.1/fpm/php.ini +sed -i "s/;cgi.fix_pathinfo=1/cgi.fix_pathinfo=0/" /etc/php/8.1/fpm/php.ini +sed -i "s/memory_limit = .*/memory_limit = 512M/" /etc/php/8.1/fpm/php.ini +sed -i "s/upload_max_filesize = .*/upload_max_filesize = 100M/" /etc/php/8.1/fpm/php.ini +sed -i "s/post_max_size = .*/post_max_size = 100M/" /etc/php/8.1/fpm/php.ini +sed -i "s/;date.timezone.*/date.timezone = UTC/" /etc/php/8.1/fpm/php.ini + +printf "[openssl]\n" | tee -a /etc/php/8.1/fpm/php.ini +printf "openssl.cainfo = /etc/ssl/certs/ca-certificates.crt\n" | tee -a /etc/php/8.1/fpm/php.ini +printf "[curl]\n" | tee -a /etc/php/8.1/fpm/php.ini +printf "curl.cainfo = /etc/ssl/certs/ca-certificates.crt\n" | tee -a /etc/php/8.1/fpm/php.ini + +# Configure FPM +sed -i "s/user = www-data/user = vagrant/" /etc/php/8.1/fpm/pool.d/www.conf +sed -i "s/group = www-data/group = vagrant/" /etc/php/8.1/fpm/pool.d/www.conf +sed -i "s/listen\.owner.*/listen.owner = vagrant/" /etc/php/8.1/fpm/pool.d/www.conf +sed -i "s/listen\.group.*/listen.group = vagrant/" /etc/php/8.1/fpm/pool.d/www.conf +sed -i "s/;listen\.mode.*/listen.mode = 0666/" /etc/php/8.1/fpm/pool.d/www.conf + +systemctl enable php8.1-fpm +service php8.1-fpm restart diff --git a/scripts/features/php8.2.sh b/scripts/features/php8.2.sh new file mode 100644 index 0000000..3d09ef7 --- /dev/null +++ b/scripts/features/php8.2.sh @@ -0,0 +1,73 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +SERVICE_STATUS=$(systemctl is-enabled php8.2-fpm.service) + +if [ "$SERVICE_STATUS" == "disabled" ]; +then + systemctl enable php8.2-fpm + service php8.2-fpm restart +fi + +if [ -f /home/$WSL_USER_NAME/.homestead-features/php82 ] +then + echo "PHP 8.2 already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/php82 +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +# PHP 8.2 +apt-get install -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" --allow-change-held-packages \ +php8.2 php8.2-bcmath php8.2-bz2 php8.2-cgi php8.2-cli php8.2-common php8.2-curl php8.2-dba php8.2-dev \ +php8.2-enchant php8.2-fpm php8.2-gd php8.2-gmp php8.2-imap php8.2-interbase php8.2-intl php8.2-ldap \ +php8.2-mbstring php8.2-mysql php8.2-odbc php8.2-opcache php8.2-pgsql php8.2-phpdbg php8.2-pspell php8.2-readline \ +php8.2-snmp php8.2-soap php8.2-sqlite3 php8.2-sybase php8.2-tidy php8.2-xml php8.2-xsl \ +php8.2-zip php8.2-imagick php8.2-memcached php8.2-redis php8.2-xmlrpc php8.2-xdebug + +# Configure php.ini for CLI +sed -i "s/error_reporting = .*/error_reporting = E_ALL/" /etc/php/8.2/cli/php.ini +sed -i "s/display_errors = .*/display_errors = On/" /etc/php/8.2/cli/php.ini +sed -i "s/memory_limit = .*/memory_limit = 512M/" /etc/php/8.2/cli/php.ini +sed -i "s/;date.timezone.*/date.timezone = UTC/" /etc/php/8.2/cli/php.ini + +# Configure Xdebug +echo "xdebug.mode = debug" >> /etc/php/8.2/mods-available/xdebug.ini +echo "xdebug.discover_client_host = true" >> /etc/php/8.2/mods-available/xdebug.ini +echo "xdebug.client_port = 9003" >> /etc/php/8.2/mods-available/xdebug.ini +echo "xdebug.max_nesting_level = 512" >> /etc/php/8.2/mods-available/xdebug.ini +echo "opcache.revalidate_freq = 0" >> /etc/php/8.2/mods-available/opcache.ini + +# Configure php.ini for FPM +sed -i "s/error_reporting = .*/error_reporting = E_ALL/" /etc/php/8.2/fpm/php.ini +sed -i "s/display_errors = .*/display_errors = On/" /etc/php/8.2/fpm/php.ini +sed -i "s/;cgi.fix_pathinfo=1/cgi.fix_pathinfo=0/" /etc/php/8.2/fpm/php.ini +sed -i "s/memory_limit = .*/memory_limit = 512M/" /etc/php/8.2/fpm/php.ini +sed -i "s/upload_max_filesize = .*/upload_max_filesize = 100M/" /etc/php/8.2/fpm/php.ini +sed -i "s/post_max_size = .*/post_max_size = 100M/" /etc/php/8.2/fpm/php.ini +sed -i "s/;date.timezone.*/date.timezone = UTC/" /etc/php/8.2/fpm/php.ini + +printf "[openssl]\n" | tee -a /etc/php/8.2/fpm/php.ini +printf "openssl.cainfo = /etc/ssl/certs/ca-certificates.crt\n" | tee -a /etc/php/8.2/fpm/php.ini +printf "[curl]\n" | tee -a /etc/php/8.2/fpm/php.ini +printf "curl.cainfo = /etc/ssl/certs/ca-certificates.crt\n" | tee -a /etc/php/8.2/fpm/php.ini + +# Configure FPM +sed -i "s/user = www-data/user = vagrant/" /etc/php/8.2/fpm/pool.d/www.conf +sed -i "s/group = www-data/group = vagrant/" /etc/php/8.2/fpm/pool.d/www.conf +sed -i "s/listen\.owner.*/listen.owner = vagrant/" /etc/php/8.2/fpm/pool.d/www.conf +sed -i "s/listen\.group.*/listen.group = vagrant/" /etc/php/8.2/fpm/pool.d/www.conf +sed -i "s/;listen\.mode.*/listen.mode = 0666/" /etc/php/8.2/fpm/pool.d/www.conf + +systemctl enable php8.2-fpm +service php8.2-fpm restart diff --git a/scripts/features/php8.3.sh b/scripts/features/php8.3.sh new file mode 100644 index 0000000..4cc3346 --- /dev/null +++ b/scripts/features/php8.3.sh @@ -0,0 +1,70 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +SERVICE_STATUS=$(systemctl is-enabled php8.3-fpm.service) + +if [ "$SERVICE_STATUS" == "disabled" ]; +then + systemctl enable php8.3-fpm + service php8.3-fpm restart +fi + +if [ -f /home/$WSL_USER_NAME/.homestead-features/php83 ] +then + echo "PHP 8.3 already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/php83 +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +# PHP 8.3 +apt-get install -y --allow-change-held-packages \ +php8.3 php8.3-bcmath php8.3-bz2 php8.3-cgi php8.3-cli php8.3-common php8.3-curl php8.3-dba php8.3-dev \ +php8.3-enchant php8.3-fpm php8.3-gd php8.3-gmp php8.3-imap php8.3-interbase php8.3-intl php8.3-ldap \ +php8.3-mbstring php8.3-mysql php8.3-odbc php8.3-opcache php8.3-pgsql php8.3-phpdbg php8.3-pspell php8.3-readline \ +php8.3-snmp php8.3-soap php8.3-sqlite3 php8.3-sybase php8.3-tidy php8.3-xml php8.3-xsl \ +php8.3-zip php8.3-imagick php8.3-memcached php8.3-redis php8.3-xmlrpc php8.3-xdebug + +# Configure php.ini for CLI +sed -i "s/error_reporting = .*/error_reporting = E_ALL/" /etc/php/8.3/cli/php.ini +sed -i "s/display_errors = .*/display_errors = On/" /etc/php/8.3/cli/php.ini +sed -i "s/memory_limit = .*/memory_limit = 512M/" /etc/php/8.3/cli/php.ini +sed -i "s/;date.timezone.*/date.timezone = UTC/" /etc/php/8.3/cli/php.ini + +# Configure Xdebug +echo "xdebug.mode = debug" >> /etc/php/8.3/mods-available/xdebug.ini +echo "xdebug.discover_client_host = true" >> /etc/php/8.3/mods-available/xdebug.ini +echo "xdebug.client_port = 9003" >> /etc/php/8.3/mods-available/xdebug.ini +echo "xdebug.max_nesting_level = 512" >> /etc/php/8.3/mods-available/xdebug.ini +echo "opcache.revalidate_freq = 0" >> /etc/php/8.3/mods-available/opcache.ini + +# Configure php.ini for FPM +sed -i "s/error_reporting = .*/error_reporting = E_ALL/" /etc/php/8.3/fpm/php.ini +sed -i "s/display_errors = .*/display_errors = On/" /etc/php/8.3/fpm/php.ini +sed -i "s/;cgi.fix_pathinfo=1/cgi.fix_pathinfo=0/" /etc/php/8.3/fpm/php.ini +sed -i "s/memory_limit = .*/memory_limit = 512M/" /etc/php/8.3/fpm/php.ini +sed -i "s/upload_max_filesize = .*/upload_max_filesize = 100M/" /etc/php/8.3/fpm/php.ini +sed -i "s/post_max_size = .*/post_max_size = 100M/" /etc/php/8.3/fpm/php.ini +sed -i "s/;date.timezone.*/date.timezone = UTC/" /etc/php/8.3/fpm/php.ini + +printf "[openssl]\n" | tee -a /etc/php/8.3/fpm/php.ini +printf "openssl.cainfo = /etc/ssl/certs/ca-certificates.crt\n" | tee -a /etc/php/8.3/fpm/php.ini +printf "[curl]\n" | tee -a /etc/php/8.3/fpm/php.ini +printf "curl.cainfo = /etc/ssl/certs/ca-certificates.crt\n" | tee -a /etc/php/8.3/fpm/php.ini + +# Configure FPM +sed -i "s/user = www-data/user = vagrant/" /etc/php/8.3/fpm/pool.d/www.conf +sed -i "s/group = www-data/group = vagrant/" /etc/php/8.3/fpm/pool.d/www.conf +sed -i "s/listen\.owner.*/listen.owner = vagrant/" /etc/php/8.3/fpm/pool.d/www.conf +sed -i "s/listen\.group.*/listen.group = vagrant/" /etc/php/8.3/fpm/pool.d/www.conf +sed -i "s/;listen\.mode.*/listen.mode = 0666/" /etc/php/8.3/fpm/pool.d/www.conf diff --git a/scripts/features/pm2.sh b/scripts/features/pm2.sh new file mode 100644 index 0000000..70c3c12 --- /dev/null +++ b/scripts/features/pm2.sh @@ -0,0 +1,23 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +if [ -f /home/$WSL_USER_NAME/.homestead-features/pm2 ] +then + echo "pm2 already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/pm2 +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +# Install pm2 +npm install -g pm2 diff --git a/scripts/features/python.sh b/scripts/features/python.sh new file mode 100644 index 0000000..cb88cb8 --- /dev/null +++ b/scripts/features/python.sh @@ -0,0 +1,27 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +if [ -f /home/$WSL_USER_NAME/.homestead-features/pythontools ] +then + echo "pythontools already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/pythontools +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +# Install Python +apt-get update +apt-get install -y python3-pip build-essential libssl-dev libffi-dev python3-dev python3-venv +sudo -H -u vagrant bash -c 'pip3 install django' +sudo -H -u vagrant bash -c 'pip3 install numpy' +sudo -H -u vagrant bash -c 'pip3 install masonite' diff --git a/scripts/features/r-base.sh b/scripts/features/r-base.sh new file mode 100644 index 0000000..8e6febf --- /dev/null +++ b/scripts/features/r-base.sh @@ -0,0 +1,26 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +if [ -f /home/$WSL_USER_NAME/.homestead-features/r-base ] +then + echo "r-base already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/r-base +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +wget -qO- https://cloud.r-project.org/bin/linux/ubuntu/marutter_pubkey.asc | sudo gpg --dearmor -o /etc/apt/keyrings/r-project.gpg +echo "deb [signed-by=/etc/apt/keyrings/r-project.gpg] https://cloud.r-project.org/bin/linux/ubuntu jammy-cran40/" | sudo tee /etc/apt/sources.list.d/r-project.list + +apt-get update +apt install -y r-base diff --git a/scripts/features/rabbitmq.sh b/scripts/features/rabbitmq.sh new file mode 100644 index 0000000..5d6100d --- /dev/null +++ b/scripts/features/rabbitmq.sh @@ -0,0 +1,59 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +if [ -f /home/$WSL_USER_NAME/.homestead-features/rabbitmq ] +then + echo "rabbitmq already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/rabbitmq +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +sudo apt-get install curl gnupg debian-keyring debian-archive-keyring apt-transport-https -y + +# Import signing keys +curl -1sLf "https://keys.openpgp.org/vks/v1/by-fingerprint/0A9AF2115F4687BD29803A206B73A36E6026DFCA" | sudo gpg --dearmor -o /etc/apt/keyrings/com.rabbitmq.team.gpg +curl -1sLf "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xf77f1eda57ebb1cc" | sudo gpg --dearmor -o /etc/apt/keyrings/net.launchpad.ppa.rabbitmq.erlang.gpg +curl -1sLf "https://packagecloud.io/rabbitmq/rabbitmq-server/gpgkey" | sudo gpg --dearmor -o /etc/apt/keyrings/io.packagecloud.rabbitmq.gpg + +## Add apt repositories maintained by Team RabbitMQ +tee /etc/apt/sources.list.d/rabbitmq.list <> /etc/php/8.1/mods-available/trader.ini' +sudo ln -s /etc/php/8.1/mods-available/trader.ini /etc/php/8.1/fpm/conf.d/20-trader.ini +sudo ln -s /etc/php/8.1/mods-available/trader.ini /etc/php/8.1/cgi/conf.d/20-trader.ini +sudo ln -s /etc/php/8.1/mods-available/trader.ini /etc/php/8.1/cli/conf.d/20-trader.ini +sudo ln -s /etc/php/8.1/mods-available/trader.ini /etc/php/8.1/phpdbg/conf.d/20-trader.ini + +sudo touch /etc/php/8.0/mods-available/trader.ini +sudo bash -c 'echo "extension=trader.so" >> /etc/php/8.0/mods-available/trader.ini' +sudo ln -s /etc/php/8.0/mods-available/trader.ini /etc/php/8.0/fpm/conf.d/20-trader.ini +sudo ln -s /etc/php/8.0/mods-available/trader.ini /etc/php/8.0/cgi/conf.d/20-trader.ini +sudo ln -s /etc/php/8.0/mods-available/trader.ini /etc/php/8.0/cli/conf.d/20-trader.ini +sudo ln -s /etc/php/8.0/mods-available/trader.ini /etc/php/8.0/phpdbg/conf.d/20-trader.ini + +sudo touch /etc/php/7.4/mods-available/trader.ini +sudo bash -c 'echo "extension=trader.so" >> /etc/php/7.4/mods-available/trader.ini' +sudo ln -s /etc/php/7.4/mods-available/trader.ini /etc/php/7.4/fpm/conf.d/20-trader.ini +sudo ln -s /etc/php/7.4/mods-available/trader.ini /etc/php/7.4/cgi/conf.d/20-trader.ini +sudo ln -s /etc/php/7.4/mods-available/trader.ini /etc/php/7.4/cli/conf.d/20-trader.ini +sudo ln -s /etc/php/7.4/mods-available/trader.ini /etc/php/7.4/phpdbg/conf.d/20-trader.ini + +sudo touch /etc/php/7.3/mods-available/trader.ini +sudo bash -c 'echo "extension=trader.so" >> /etc/php/7.3/mods-available/trader.ini' +sudo ln -s /etc/php/7.3/mods-available/trader.ini /etc/php/7.3/fpm/conf.d/20-trader.ini +sudo ln -s /etc/php/7.3/mods-available/trader.ini /etc/php/7.3/cgi/conf.d/20-trader.ini +sudo ln -s /etc/php/7.3/mods-available/trader.ini /etc/php/7.3/cli/conf.d/20-trader.ini +sudo ln -s /etc/php/7.3/mods-available/trader.ini /etc/php/7.3/phpdbg/conf.d/20-trader.ini + +sudo touch /etc/php/7.2/mods-available/trader.ini +sudo bash -c 'echo "extension=trader.so" >> /etc/php/7.2/mods-available/trader.ini' +sudo ln -s /etc/php/7.2/mods-available/trader.ini /etc/php/7.2/fpm/conf.d/20-trader.ini +sudo ln -s /etc/php/7.2/mods-available/trader.ini /etc/php/7.2/cgi/conf.d/20-trader.ini +sudo ln -s /etc/php/7.2/mods-available/trader.ini /etc/php/7.2/cli/conf.d/20-trader.ini +sudo ln -s /etc/php/7.2/mods-available/trader.ini /etc/php/7.2/phpdbg/conf.d/20-trader.ini + +sudo touch /etc/php/7.1/mods-available/trader.ini +sudo bash -c 'echo "extension=trader.so" >> /etc/php/7.1/mods-available/trader.ini' +sudo ln -s /etc/php/7.1/mods-available/trader.ini /etc/php/7.1/fpm/conf.d/20-trader.ini +sudo ln -s /etc/php/7.1/mods-available/trader.ini /etc/php/7.1/cgi/conf.d/20-trader.ini +sudo ln -s /etc/php/7.1/mods-available/trader.ini /etc/php/7.1/cli/conf.d/20-trader.ini +sudo ln -s /etc/php/7.1/mods-available/trader.ini /etc/php/7.1/phpdbg/conf.d/20-trader.ini + +sudo touch /etc/php/7.0/mods-available/trader.ini +sudo bash -c 'echo "extension=trader.so" >> /etc/php/7.0/mods-available/trader.ini' +sudo ln -s /etc/php/7.0/mods-available/trader.ini /etc/php/7.0/fpm/conf.d/20-trader.ini +sudo ln -s /etc/php/7.0/mods-available/trader.ini /etc/php/7.0/cgi/conf.d/20-trader.ini +sudo ln -s /etc/php/7.0/mods-available/trader.ini /etc/php/7.0/cli/conf.d/20-trader.ini +sudo ln -s /etc/php/7.0/mods-available/trader.ini /etc/php/7.0/phpdbg/conf.d/20-trader.ini + +sudo touch /etc/php/5.6/mods-available/trader.ini +sudo bash -c 'echo "extension=trader.so" >> /etc/php/5.6/mods-available/trader.ini' +sudo ln -s /etc/php/5.6/mods-available/trader.ini /etc/php/5.6/fpm/conf.d/20-trader.ini +sudo ln -s /etc/php/5.6/mods-available/trader.ini /etc/php/5.6/cgi/conf.d/20-trader.ini +sudo ln -s /etc/php/5.6/mods-available/trader.ini /etc/php/5.6/cli/conf.d/20-trader.ini +sudo ln -s /etc/php/5.6/mods-available/trader.ini /etc/php/5.6/phpdbg/conf.d/20-trader.ini diff --git a/scripts/features/webdriver.sh b/scripts/features/webdriver.sh new file mode 100644 index 0000000..0b9ecdc --- /dev/null +++ b/scripts/features/webdriver.sh @@ -0,0 +1,32 @@ +#!/usr/bin/env bash + +if [ -f ~/.homestead-features/wsl_user_name ]; then + WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" + WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" +else + WSL_USER_NAME=vagrant + WSL_USER_GROUP=vagrant +fi + +export DEBIAN_FRONTEND=noninteractive + +if [ -f /home/$WSL_USER_NAME/.homestead-features/webdriverutils ] +then + echo "Web Driver utilities already installed." + exit 0 +fi + +touch /home/$WSL_USER_NAME/.homestead-features/webdriverutils +chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features + +ARCH=$(arch) + +# Install The Chrome Web Driver & Dusk Utilities +if [[ "$ARCH" != "aarch64" ]]; then + wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb -O /tmp/chrome.deb + apt-get install -y /tmp/chrome.deb + rm -f /tmp/chrome.deb +fi + +apt-get -y install libxpm4 libxrender1 libgtk2.0-0 libnss3 libgconf-2-4 chromium-browser xvfb gtk2-engines-pixbuf \ +xfonts-cyrillic xfonts-100dpi xfonts-75dpi xfonts-base xfonts-scalable imagemagick x11-apps diff --git a/scripts/flip-webserver.sh b/scripts/flip-webserver.sh new file mode 100644 index 0000000..d96ab2a --- /dev/null +++ b/scripts/flip-webserver.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env bash + +ps auxw | grep apache2 | grep -v grep > /dev/null + +if [ $? != 0 ] +then + service nginx stop > /dev/null + echo 'nginx stopped' + service apache2 start > /dev/null + echo 'apache started' +else + service apache2 stop > /dev/null + echo 'apache stopped' + service nginx start > /dev/null + echo 'nginx started' +fi diff --git a/scripts/homestead.rb b/scripts/homestead.rb new file mode 100644 index 0000000..7c2cc45 --- /dev/null +++ b/scripts/homestead.rb @@ -0,0 +1,779 @@ +# Main Homestead Class +class Homestead + def self.configure(config, settings) + # Set The VM Provider + ENV['VAGRANT_DEFAULT_PROVIDER'] = settings['provider'] ||= 'virtualbox' + + # Configure Local Variable To Access Scripts From Remote Location + script_dir = File.dirname(__FILE__) + + # Allow SSH Agent Forward from The Box + config.ssh.forward_agent = true + + # Configure Verify Host Key + if settings.has_key?('verify_host_key') + config.ssh.verify_host_key = settings['verify_host_key'] + end + + # Configure The Box + config.vm.define settings['name'] ||= 'homestead' + config.vm.box = settings['box'] ||= 'laravel/homestead' + unless settings.has_key?('SpeakFriendAndEnter') + config.vm.box_version = settings['version'] ||= '>= 14.0.2, < 15.0.0' + end + config.vm.hostname = settings['hostname'] ||= 'homestead' + + # Configure A Private Network IP + if settings['ip'] != 'autonetwork' + config.vm.network :private_network, ip: settings['ip'] ||= '192.168.56.56' + else + config.vm.network :private_network, ip: '0.0.0.0', auto_network: true + end + + # Configure Additional Networks + if settings.has_key?('networks') + settings['networks'].each do |network| + config.vm.network network['type'], ip: network['ip'], mac: network['mac'], bridge: network['bridge'] ||= nil, dev: network['dev'] ||= nil, netmask: network['netmask'] ||= '255.255.255.0' + end + end + + # Configure A Few VirtualBox Settings + config.vm.provider 'virtualbox' do |vb| + vb.name = settings['name'] ||= 'homestead' + vb.customize ['modifyvm', :id, '--memory', settings['memory'] ||= '2048'] + vb.customize ['modifyvm', :id, '--cpus', settings['cpus'] ||= '1'] + vb.customize ['modifyvm', :id, '--natdnsproxy1', 'on'] + vb.customize ['modifyvm', :id, '--natdnshostresolver1', settings['natdnshostresolver'] ||= 'on'] + vb.customize ['modifyvm', :id, '--ostype', 'Ubuntu_64'] + + if settings.has_key?('gui') && settings['gui'] + vb.gui = true + end + # --paravirtprovider none|default|legacy|minimal|hyperv|kvm + # Specifies which paravirtualization interface to provide to + # the guest operating system. + if settings.has_key?('paravirtprovider') && settings['paravirtprovider'] + vb.customize ['modifyvm', :id, '--paravirtprovider', settings['paravirtprovider'] ||= 'kvm'] + end + + if Vagrant::Util::Platform.windows? + vb.customize ["setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate/v-root", "1"] + end + end + + # Override Default SSH port on the host + if settings.has_key?('default_ssh_port') + config.vm.network :forwarded_port, guest: 22, host: settings['default_ssh_port'], auto_correct: false, id: "ssh" + end + + # Configure A Few VMware Settings + ['vmware_fusion', 'vmware_workstation', 'vmware_desktop'].each do |vmware| + config.vm.provider vmware do |v| + v.vmx['displayName'] = settings['name'] ||= 'homestead' + v.vmx['memsize'] = settings['memory'] ||= 2048 + v.vmx['numvcpus'] = settings['cpus'] ||= 1 + v.vmx['guestOS'] = 'ubuntu-64' + if settings.has_key?('gui') && settings['gui'] + v.gui = true + end + end + end + + # Configure A Few Hyper-V Settings + config.vm.provider "hyperv" do |h, override| + h.vmname = settings['name'] ||= 'homestead' + h.cpus = settings['cpus'] ||= 1 + h.memory = settings['memory'] ||= 2048 + h.linked_clone = true + if settings.has_key?('hyperv_mac') && settings['hyperv_mac'] + h.mac = settings['hyperv_mac'] + end + if settings.has_key?('hyperv_maxmemory') && settings['hyperv_maxmemory'] + h.maxmemory = settings['hyperv_maxmemory'] + end + if settings.has_key?('hyperv_enable_virtualization_extensions') && settings['hyperv_enable_virtualization_extensions'] + h.enable_virtualization_extensions = true + end + + if Vagrant.has_plugin?('vagrant-hostmanager') + override.hostmanager.ignore_private_ip = true + end + end + + # Configure A Few Parallels Settings + config.vm.provider 'parallels' do |v| + v.name = settings['name'] ||= 'homestead' + v.update_guest_tools = settings['update_parallels_tools'] ||= false + v.memory = settings['memory'] ||= 2048 + v.cpus = settings['cpus'] ||= 1 + end + + # Configure libvirt settings + config.vm.provider "libvirt" do |libvirt| + libvirt.default_prefix = '' + libvirt.memory = settings["memory"] ||= "2048" + libvirt.cpus = settings["cpus"] ||= "1" + libvirt.nested = "true" + libvirt.disk_bus = "virtio" + libvirt.machine_type = "q35" + libvirt.disk_driver :cache => "none" + libvirt.memorybacking :access, :mode => 'shared' + libvirt.nic_model_type = "virtio" + libvirt.driver = "kvm" + libvirt.qemu_use_session = false + end + + # Standardize Ports Naming Schema + if settings.has_key?('ports') + settings['ports'].each do |port| + port['guest'] ||= port['to'] + port['host'] ||= port['send'] + port['protocol'] ||= 'tcp' + end + else + settings['ports'] = [] + end + + # Default Port Forwarding + default_ports = { + 80 => 8000, + 443 => 44300, + } + + # Use Default Port Forwarding Unless Overridden + unless settings.has_key?('default_ports') && settings['default_ports'] == false + default_ports.each do |guest, host| + unless settings['ports'].any? { |mapping| mapping['guest'] == guest } + config.vm.network 'forwarded_port', guest: guest, host: host, auto_correct: true + end + end + end + + # Add Custom Ports From Configuration + if settings.has_key?('ports') + settings['ports'].each do |port| + config.vm.network 'forwarded_port', guest: port['guest'], host: port['host'], protocol: port['protocol'], auto_correct: true + end + end + + # Configure The Public Key For SSH Access + if settings.include? 'authorize' + if File.exist? File.expand_path(settings['authorize']) + config.vm.provision "setting authorize key", type: "shell" do |s| + s.inline = "echo $1 | grep -xq \"$1\" /home/vagrant/.ssh/authorized_keys || echo \"\n$1\" | tee -a /home/vagrant/.ssh/authorized_keys" + s.args = [File.read(File.expand_path(settings['authorize']))] + end + end + end + + # Copy The SSH Private Keys To The Box + if settings.include? 'keys' + if settings['keys'].to_s.length.zero? + puts 'Check your Homestead.yaml file, you have no private key(s) specified.' + exit + end + settings['keys'].each do |key| + if File.exist? File.expand_path(key) + config.vm.provision "setting authorize permissions for #{key.split('/').last}", type: "shell" do |s| + s.privileged = false + s.inline = "echo \"$1\" > /home/vagrant/.ssh/\"$2\" && chmod 600 /home/vagrant/.ssh/\"$2\"" + # s.inline = "echo \"$1\" > /home/vagrant/.ssh/$2 && chmod 600 /home/vagrant/.ssh/$2" + s.args = [File.read(File.expand_path(key)), key.split('/').last] + end + else + puts 'Check your Homestead.yaml (or Homestead.json) file, the path to your private key does not exist.' + exit + end + end + end + + # Copy User Files Over to VM + if settings.include? 'copy' + settings['copy'].each do |file| + config.vm.provision 'file' do |f| + f.source = File.expand_path(file['from']) + f.destination = file['to'].chomp('/') + '/' + file['from'].split('/').last + end + end + end + + # Register All Of The Configured Shared Folders + if settings.include? 'folders' + settings['folders'].each do |folder| + if File.exist? File.expand_path(folder['map']) + mount_opts = [] + + if ENV['VAGRANT_DEFAULT_PROVIDER'] == 'hyperv' + folder['type'] = 'smb' + end + + if ENV['VAGRANT_DEFAULT_PROVIDER'] == 'libvirt' + folder['type'] ||= 'virtiofs' + end + + if folder['type'] == 'nfs' + mount_opts = folder['mount_options'] ? folder['mount_options'] : ['actimeo=1', 'nolock'] + + # Ubuntu 22.04 does not support NFS UDP, so we need to ensure it is disabled + nfs_options = {nfs_udp: false} + elsif folder['type'] == 'smb' + mount_opts = folder['mount_options'] ? folder['mount_options'] : ['vers=3.02', 'mfsymlinks'] + + smb_creds = {smb_host: folder['smb_host'], smb_username: folder['smb_username'], smb_password: folder['smb_password']} + end + + # For b/w compatibility keep separate 'mount_opts', but merge with options + options = (folder['options'] || {}) + .merge({ mount_options: mount_opts }) + .merge(smb_creds || {}) + .merge(nfs_options || {}) + + # Double-splat (**) operator only works with symbol keys, so convert + options.keys.each{|k| options[k.to_sym] = options.delete(k) } + + config.vm.synced_folder folder['map'], folder['to'], type: folder['type'] ||= nil, **options + + # Bindfs support to fix shared folder (NFS) permission issue on Mac + if folder['type'] == 'nfs' && Vagrant.has_plugin?('vagrant-bindfs') + config.bindfs.bind_folder folder['to'], folder['to'] + end + else + config.vm.provision 'shell' do |s| + s.inline = ">&2 echo \"Unable to mount one of your folders. Please check your folders in Homestead.yaml\"" + end + end + end + end + + # use virtiofs for /vagrant mount when using libvirt provider + if ENV['VAGRANT_DEFAULT_PROVIDER'] == 'libvirt' + config.vm.synced_folder "./", "/vagrant", type: "virtiofs" + end + + # Change PHP CLI version based on configuration + if settings.has_key?('php') && settings['php'] + config.vm.provision "Changing PHP CLI Version", type: "shell" do |s| + s.name = 'Changing PHP CLI Version' + s.inline = "sudo update-alternatives --set php /usr/bin/php#{settings['php']}; sudo update-alternatives --set php-config /usr/bin/php-config#{settings['php']}; sudo update-alternatives --set phpize /usr/bin/phpize#{settings['php']}" + end + end + + # Creates folder for opt-in features lockfiles + config.vm.provision "mk_features", type: "shell", inline: "mkdir -p /home/vagrant/.homestead-features" + config.vm.provision "own_features", type: "shell", inline: "chown -Rf vagrant:vagrant /home/vagrant/.homestead-features" + + # Install opt-in features + if settings.has_key?('features') + if settings.has_key?('in-flight-service') + config.vm.provision 'shell' do |s| + s.name = 'Running our in-flight-service.' + s.path = script_dir + '/in-flight-service.sh' + end + end + + config.vm.provision "apt_update", type: "shell", inline: "apt-get update" + + # Ensure we have PHP versions used in sites in our features + if settings.has_key?('sites') + settings['sites'].each do |site| + if site.has_key?('php') + settings['features'].push({"php" + site['php'] => true}) + end + end + end + + # Remove duplicate features to prevent trying to install it multiple times + settings['features'] = settings['features'].uniq{ |e| e.keys[0] } + + settings['features'].each do |feature| + feature_name = feature.keys[0] + feature_variables = feature[feature_name] + feature_path = script_dir + "/features/" + feature_name + ".sh" + + # Check for boolean parameters + # Compares against true/false to show that it really means ": " + if feature_variables == false + config.vm.provision "shell", inline: "echo Ignoring feature: #{feature_name} because it is set to false \n" + next + elsif feature_variables == true + # If feature_arguments is true, set it to empty, so it could be passed to script without problem + feature_variables = {} + end + + # Check if feature really exists + if !File.exist? File.expand_path(feature_path) + config.vm.provision "shell", inline: "echo Invalid feature: #{feature_name} \n" + next + end + + config.vm.provision "shell" do |s| + s.name = "Installing " + feature_name + s.path = feature_path + s.env = feature_variables + end + end + end + + # Enable Services + if settings.has_key?('services') + settings['services'].each do |service| + service['enabled'].each do |enable_service| + config.vm.provision "enable #{enable_service}", type: "shell", inline: "sudo systemctl enable #{enable_service}" + config.vm.provision "start #{enable_service}", type: "shell", inline: "sudo systemctl start #{enable_service}" + end if service.include?('enabled') + + service['disabled'].each do |disable_service| + config.vm.provision "disable #{disable_service}", type: "shell", inline: "sudo systemctl disable #{disable_service}" + config.vm.provision "stop #{disable_service}", type: "shell", inline: "sudo systemctl stop #{disable_service}" + end if service.include?('disabled') + end + end + + # Clear any existing nginx sites + config.vm.provision 'shell' do |s| + s.path = script_dir + '/clear-nginx.sh' + end + + # Clear any Homestead sites and insert markers in /etc/hosts + config.vm.provision 'shell' do |s| + s.path = script_dir + '/hosts-reset.sh' + end + + # Install All The Configured Nginx Sites + if settings.include? 'sites' + + domains = [] + + settings['sites'].each do |site| + + domains.push(site['map']) + + # Create SSL certificate + config.vm.provision 'shell' do |s| + s.name = 'Creating Certificate: ' + site['map'] + s.path = script_dir + '/create-certificate.sh' + s.args = [site['map']] + end + + if site['wildcard'] == 'yes' + config.vm.provision 'shell' do |s| + s.name = 'Creating Wildcard Certificate: *.' + site['map'] + s.path = script_dir + '/create-certificate.sh' + s.args = ['*.' + site['map']] + end + end + + type = site['type'] ||= 'laravel' + load_balancer = settings['load_balancer'] ||= false + http_port = load_balancer ? '8111' : '80' + https_port = load_balancer ? '8112' : '443' + + if load_balancer + config.vm.provision 'shell' do |s| + s.path = script_dir + '/install-load-balancer.sh' + end + end + + case type + when 'apigility' + type = 'zf' + when 'expressive' + type = 'zf' + when 'symfony' + type = 'symfony2' + end + + config.vm.provision 'shell' do |s| + s.name = 'Creating Site: ' + site['map'] + if site.include? 'params' + params = '(' + site['params'].each do |param| + params += ' [' + param['key'] + ']=' + param['value'] + end + params += ' )' + end + if site.include? 'headers' + headers = '(' + site['headers'].each do |header| + headers += ' [' + header['key'] + ']=' + header['value'] + end + headers += ' )' + end + if site.include? 'rewrites' + rewrites = '(' + site['rewrites'].each do |rewrite| + rewrites += ' [' + rewrite['map'] + ']=' + "'" + rewrite['to'] + "'" + end + rewrites += ' )' + # Escape variables for bash + rewrites.gsub! '$', '\$' + end + + # Convert the site & any options to an array of arguments passed to the + # specific site type script (defaults to laravel) + s.path = script_dir + "/site-types/#{type}.sh" + s.args = [ + site['map'], # $1 + site['to'], # $2 + site['port'] ||= http_port, # $3 + site['ssl'] ||= https_port, # $4 + site['php'] ||= '8.3', # $5 + params ||= '', # $6 + site['xhgui'] ||= '', # $7 + site['exec'] ||= 'false', # $8 + headers ||= '', # $9 + rewrites ||= '', # $10 + site['prod'] ||='' # $11 + ] + + # Should we use the wildcard ssl? + if site['wildcard'] == 'yes' or site['use_wildcard'] == 'yes' + if site['use_wildcard'] != 'no' + if site['type'] != 'apache' + config.vm.provision 'shell' do |s| + s.inline = "sed -i \"s/$1.crt/*.$1.crt/\" /etc/nginx/sites-available/$1" + s.args = [site['map']] + end + + config.vm.provision 'shell' do |s| + s.inline = "sed -i \"s/$1.key/*.$1.key/\" /etc/nginx/sites-available/$1" + s.args = [site['map']] + end + else + config.vm.provision 'shell' do |s| + s.inline = "sed -i \"s/$1.crt/*.$1.crt/\" /etc/apache2/sites-available/$1-ssl.conf" + s.args = [site['map']] + end + + config.vm.provision 'shell' do |s| + s.inline = "sed -i \"s/$1.key/*.$1.key/\" /etc/apache2/sites-available/$1-ssl.conf" + s.args = [site['map']] + end + end + end + end + + # generate pm2 json config file + if site['pm2'] + config.vm.provision "shell" do |s2| + s2.name = 'Creating Site Ecosystem for pm2: ' + site['map'] + s2.path = script_dir + "/create-ecosystem.sh" + s2.args = Array.new + s2.args << site['pm2'][0]['name'] + s2.args << site['pm2'][0]['script'] ||= "npm" + s2.args << site['pm2'][0]['args'] ||= "run serve" + s2.args << site['pm2'][0]['cwd'] + end + end + + if site['xhgui'] == 'true' + config.vm.provision 'shell' do |s| + s.path = script_dir + '/features/mongodb.sh' + end + + config.vm.provision 'shell' do |s| + s.path = script_dir + '/install-xhgui.sh' + end + + config.vm.provision 'shell' do |s| + s.inline = 'ln -sf /opt/xhgui/webroot ' + site['to'] + '/xhgui' + end + else + config.vm.provision 'shell' do |s| + s.inline = 'rm -rf ' + site['to'].to_s + '/xhgui' + end + end + + end + + config.vm.provision 'shell' do |s| + s.path = script_dir + "/hosts-add.sh" + s.args = ['127.0.0.1', site['map']] + end + + # Configure The Cron Schedule + if site.has_key?('schedule') + config.vm.provision 'shell' do |s| + s.name = 'Creating Schedule' + + if site['schedule'] + s.path = script_dir + '/cron-schedule.sh' + s.args = [site['map'].tr('^A-Za-z0-9', ''), site['to'], site['php'] ||= ''] + else + s.inline = "rm -f /etc/cron.d/$1" + s.args = [site['map'].tr('^A-Za-z0-9', '')] + end + end + else + config.vm.provision 'shell' do |s| + s.name = 'Checking for old Schedule' + s.inline = "rm -f /etc/cron.d/$1" + s.args = [site['map'].tr('^A-Za-z0-9', '')] + end + end + end + end + + # Configure All Of The Server Environment Variables + config.vm.provision 'shell' do |s| + s.name = 'Clear Variables' + s.path = script_dir + '/clear-variables.sh' + end + + if settings.has_key?('variables') + settings['variables'].each do |var| + config.vm.provision 'shell' do |s| + s.inline = "echo \"\nenv[$1] = '$2'\" >> /etc/php/5.6/fpm/pool.d/www.conf" + s.args = [var['key'], var['value']] + end + + config.vm.provision 'shell' do |s| + s.inline = "echo \"\nenv[$1] = '$2'\" >> /etc/php/7.0/fpm/pool.d/www.conf" + s.args = [var['key'], var['value']] + end + + config.vm.provision 'shell' do |s| + s.inline = "echo \"\nenv[$1] = '$2'\" >> /etc/php/7.1/fpm/pool.d/www.conf" + s.args = [var['key'], var['value']] + end + + config.vm.provision 'shell' do |s| + s.inline = "echo \"\nenv[$1] = '$2'\" >> /etc/php/7.2/fpm/pool.d/www.conf" + s.args = [var['key'], var['value']] + end + + config.vm.provision 'shell' do |s| + s.inline = "echo \"\nenv[$1] = '$2'\" >> /etc/php/7.3/fpm/pool.d/www.conf" + s.args = [var['key'], var['value']] + end + + config.vm.provision 'shell' do |s| + s.inline = "echo \"\nenv[$1] = '$2'\" >> /etc/php/7.4/fpm/pool.d/www.conf" + s.args = [var['key'], var['value']] + end + + config.vm.provision 'shell' do |s| + s.inline = "echo \"\nenv[$1] = '$2'\" >> /etc/php/8.0/fpm/pool.d/www.conf" + s.args = [var['key'], var['value']] + end + + config.vm.provision 'shell' do |s| + s.inline = "echo \"\nenv[$1] = '$2'\" >> /etc/php/8.1/fpm/pool.d/www.conf" + s.args = [var['key'], var['value']] + end + + config.vm.provision 'shell' do |s| + s.inline = "echo \"\nenv[$1] = '$2'\" >> /etc/php/8.2/fpm/pool.d/www.conf" + s.args = [var['key'], var['value']] + end + + config.vm.provision 'shell' do |s| + s.inline = "echo \"\nenv[$1] = '$2'\" >> /etc/php/8.3/fpm/pool.d/www.conf" + s.args = [var['key'], var['value']] + end + + config.vm.provision 'shell' do |s| + s.inline = "echo \"\n# Set Homestead Environment Variable\nexport $1=$2\" >> /home/vagrant/.profile" + s.args = [var['key'], var['value']] + end + end + + config.vm.provision 'shell' do |s| + s.inline = 'service php5.6-fpm restart;service php7.0-fpm restart;service php7.1-fpm restart; service php7.2-fpm restart; service php7.3-fpm restart; service php7.4-fpm restart; service php8.0-fpm restart; service php8.1-fpm restart; service php8.2-fpm restart; service php8.3-fpm restart;' + end + end + + config.vm.provision 'shell' do |s| + s.name = 'Restarting Cron' + s.inline = 'sudo service cron restart' + end + + config.vm.provision 'shell' do |s| + s.name = 'Restart Webserver' + s.path = script_dir + '/restart-webserver.sh' + end + + # Configure All Of The Configured Databases + if settings.has_key?('databases') + enabled_databases = Array.new + # Check which databases are enabled + if settings.has_key?('features') + settings['features'].each do |feature| + feature_name = feature.keys[0] + feature_arguments = feature[feature_name] + + # If feature is set to false, ignore + if feature_arguments == false + next + end + + enabled_databases.push feature_name + end + end + + # Enable MySQL if MariaDB is not enabled + if (!enabled_databases.include? 'mysql') && (!enabled_databases.include? 'mariadb') + enabled_databases.push 'mysql' + end + + settings['databases'].each do |db| + if (enabled_databases.include? 'mysql') || (enabled_databases.include? 'mariadb') + config.vm.provision 'shell' do |s| + s.name = 'Creating MySQL / MariaDB Database: ' + db + s.path = script_dir + '/create-mysql.sh' + s.args = [db] + end + end + + if enabled_databases.include? 'postgresql' + config.vm.provision 'shell' do |s| + s.name = 'Creating Postgres Database: ' + db + s.path = script_dir + '/create-postgres.sh' + s.args = [db] + end + end + + if enabled_databases.include? 'mongodb' + config.vm.provision 'shell' do |s| + s.name = 'Creating Mongo Database: ' + db + s.path = script_dir + '/create-mongo.sh' + s.args = [db] + end + end + + if enabled_databases.include? 'couchdb' + config.vm.provision 'shell' do |s| + s.name = 'Creating Couch Database: ' + db + s.path = script_dir + '/create-couch.sh' + s.args = [db] + end + end + + if enabled_databases.include? 'influxdb' + config.vm.provision 'shell' do |s| + s.name = 'Creating InfluxDB Database: ' + db + s.path = script_dir + '/create-influxdb.sh' + s.args = [db] + end + end + + end + end + + # Create Minio Buckets + if settings.has_key?('buckets') && settings['features'].any? { |feature| feature.include?('minio') } + settings['buckets'].each do |bucket| + config.vm.provision 'shell' do |s| + s.name = 'Creating Minio Bucket: ' + bucket['name'] + s.path = script_dir + '/create-minio-bucket.sh' + s.args = [bucket['name'], bucket['policy'] || 'none'] + end + end + end + + # Update Composer On Every Provision + config.vm.provision 'shell' do |s| + s.name = 'Update Composer' + s.inline = 'sudo chown -R vagrant:vagrant /usr/local/bin && sudo -u vagrant /usr/bin/php8.3 /usr/local/bin/composer self-update --no-progress && sudo chown -R vagrant:vagrant /home/vagrant/.config/' + s.privileged = false + end + + # Add config file for ngrok + config.vm.provision 'shell' do |s| + s.path = script_dir + '/create-ngrok.sh' + s.args = [settings['ip']] + s.privileged = false + end + + config.vm.provision 'shell' do |s| + s.name = 'Update motd' + s.inline = 'sudo service motd-news restart' + end + + if settings.has_key?('backup') && settings['backup'] && (Vagrant::VERSION >= '2.1.0' || Vagrant.has_plugin?('vagrant-triggers')) + dir_prefix = '/vagrant/.backup' + + # Rebuild the enabled_databases so we can check before backing up + enabled_databases = Array.new + # Check which databases are enabled + if settings.has_key?('features') + settings['features'].each do |feature| + feature_name = feature.keys[0] + feature_arguments = feature[feature_name] + + # If feature is set to false, ignore + if feature_arguments == false + next + end + + enabled_databases.push feature_name + end + end + + # Enable MySQL if MariaDB is not enabled + if (!enabled_databases.include? 'mysql') && (!enabled_databases.include? 'mariadb') + enabled_databases.push 'mysql' + end + + # Loop over each DB + settings['databases'].each do |database| + # Backup MySQL/MariaDB + if (enabled_databases.include? 'mysql') || (enabled_databases.include? 'mariadb') + Homestead.backup_mysql(database, "#{dir_prefix}/mysql_backup", config) + end + # Backup PostgreSQL + if enabled_databases.include? 'postgresql' + Homestead.backup_postgres(database, "#{dir_prefix}/postgres_backup", config) + end + # Backup MongoDB + if enabled_databases.include? 'mongodb' + Homestead.backup_mongodb(database, "#{dir_prefix}/mongodb_backup", config) + end + end + end + + # Turn off CFQ scheduler idling https://github.com/laravel/homestead/issues/896 + if settings.has_key?('disable_cfq') + config.vm.provision 'shell' do |s| + s.inline = 'sudo sh -c "echo 0 >> /sys/block/sda/queue/iosched/slice_idle"' + end + config.vm.provision 'shell' do |s| + s.inline = 'sudo sh -c "echo 0 >> /sys/block/sda/queue/iosched/group_idle"' + end + end + + + # Ajouts perso : exécution de mysql_secure_installation, compte root/root + config.vm.provision 'shell' do |s| + s.inline = "(echo '' ; echo 'n' ; echo 'y' ; echo 'root' ; echo 'root' ; echo 'y' ; echo 'y' ; echo 'y' ; echo 'y' ) | mysql_secure_installation" + end + + end + + def self.backup_mysql(database, dir, config) + now = Time.now.strftime("%Y%m%d%H%M") + config.trigger.before :destroy do |trigger| + trigger.warn = "Backing up mysql database #{database}..." + trigger.run_remote = {inline: "mkdir -p #{dir}/#{now} && mysqldump --routines #{database} > #{dir}/#{now}/#{database}-#{now}.sql"} + end + end + + def self.backup_postgres(database, dir, config) + now = Time.now.strftime("%Y%m%d%H%M") + config.trigger.before :destroy do |trigger| + trigger.warn = "Backing up postgres database #{database}..." + trigger.run_remote = {inline: "mkdir -p #{dir}/#{now} && echo localhost:5432:#{database}:homestead:secret > ~/.pgpass && chmod 600 ~/.pgpass && pg_dump -U homestead -h localhost #{database} > #{dir}/#{now}/#{database}-#{now}.sql"} + end + end + + def self.backup_mongodb(database, dir, config) + now = Time.now.strftime("%Y%m%d%H%M") + config.trigger.before :destroy do |trigger| + trigger.warn = "Backing up mongodb database #{database}..." + trigger.run_remote = {inline: "mkdir -p #{dir}/#{now} && mongodump --db #{database} --out #{dir}/#{now}"} + end + end +end + + + diff --git a/scripts/hosts-add.sh b/scripts/hosts-add.sh new file mode 100644 index 0000000..8df4aa6 --- /dev/null +++ b/scripts/hosts-add.sh @@ -0,0 +1,26 @@ +#!/usr/bin/env bash + +# Add new IP-host pair to /etc/hosts. + +if [[ "$1" && "$2" ]] +then + IP=$1 + HOSTNAME=$2 + + if [ -n "$(grep [^\.]$HOSTNAME /etc/hosts)" ] + then + echo "$HOSTNAME already exists:"; + echo $(grep [^\.]$HOSTNAME /etc/hosts); + else + sudo sed -i "/#### HOMESTEAD-SITES-BEGIN/c\#### HOMESTEAD-SITES-BEGIN\\n$IP\t$HOSTNAME" /etc/hosts + + if ! [ -n "$(grep [^\.]$HOSTNAME /etc/hosts)" ] + then + echo "Failed to add $HOSTNAME."; + fi + fi +else + echo "Error: missing required parameters." + echo "Usage: " + echo " addhost ip domain" +fi diff --git a/scripts/hosts-reset.sh b/scripts/hosts-reset.sh new file mode 100644 index 0000000..bf60902 --- /dev/null +++ b/scripts/hosts-reset.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash + +# Remove any Homestead entries from /etc/hosts and prepare for adding new ones. + +sudo sed -i '/#### HOMESTEAD-SITES-BEGIN/,/#### HOMESTEAD-SITES-END/d' /etc/hosts + +printf "#### HOMESTEAD-SITES-BEGIN\n#### HOMESTEAD-SITES-END\n" | sudo tee -a /etc/hosts > /dev/null diff --git a/scripts/in-flight-service.sh b/scripts/in-flight-service.sh new file mode 100644 index 0000000..12b0b5e --- /dev/null +++ b/scripts/in-flight-service.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# scripts/in-flight-service.sh +# this script is solely for doing questionable things to update the base OS +# Without having to ship an entirely new base box. + +# Fix expired certs: https://github.com/laravel/homestead/issues/1707 +# sudo rm -rf /usr/share/ca-certificates/mozilla/DST_Root_CA_X3.crt +# sudo update-ca-certificates diff --git a/scripts/install-load-balancer.sh b/scripts/install-load-balancer.sh new file mode 100644 index 0000000..a2cdf03 --- /dev/null +++ b/scripts/install-load-balancer.sh @@ -0,0 +1,27 @@ +#!/usr/bin/env bash + +block=" +upstream homesteadup { + server 127.0.1.1:8111; +} + +server { + listen 80; + listen 443 ssl default_server; + + location / { + proxy_pass http://homesteadup; + proxy_set_header HOST \$host; + proxy_set_header X-Forwarded-Proto \$scheme; + proxy_set_header X-Real-IP \$remote_addr; + proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for; + } + + ssl_certificate /etc/nginx/ssl/homestead.test.crt; + ssl_certificate_key /etc/nginx/ssl/homestead.test.key; + +} +" + +echo "$block" > "/etc/nginx/sites-available/default" +ln -fs "/etc/nginx/sites-available/default" "/etc/nginx/sites-enabled/default" diff --git a/scripts/install-xhgui.sh b/scripts/install-xhgui.sh new file mode 100644 index 0000000..68194a1 --- /dev/null +++ b/scripts/install-xhgui.sh @@ -0,0 +1,153 @@ +#!/usr/bin/env bash + +# Check If xhgui Has Been Installed + +if [ -f /home/vagrant/.homestead-features/xhgui ] +then + echo "xhgui already installed." + exit 0 +fi + +touch /home/vagrant/.homestead-features/xhgui +chown -Rf vagrant:vagrant /home/vagrant/.homestead-features + +apt install -y php-tideways +phpenmod -v ALL tideways + +git clone https://github.com/perftools/xhgui.git /opt/xhgui + +cat <<'EOT' > /opt/xhgui/webroot/.htaccess + + RewriteEngine On + RewriteCond %{REQUEST_FILENAME} !-f + RewriteRule ^ /xhgui/index.php [QSA,L] + +EOT + +cat <<'EOT' > /opt/xhgui/config/config.php + 'file', + // # Beware of file locking. You can adujst this file path + // # to reduce locking problems (eg uniqid, time ...) + // 'save.handler.filename' => __DIR__.'/../data/xhgui_'.date('Ymd').'.dat', + // + 'save.handler' => 'mongodb', + + // Database options for MongoDB. + // + // - db.host: Connection string in the form `mongodb://[ip or host]:[port]`. + // + // - db.db: The database name. + // + // - db.options: Additional options for the MongoClient contructor, + // for example 'username', 'password', or 'replicaSet'. + // See . + // + 'db.host' => 'mongodb://127.0.0.1:27017', + 'db.db' => 'xhprof', + 'db.options' => array('username' => 'homestead', 'password' => 'secret'), + + // Whether to instrument a user request. + // + // NOTE: Only applies to using the external/header.php include. + // + // Must be a function that returns a boolean, + // or any non-function value to disable the profiler. + // + // Default: Profile 1 in 100 requests. + // + // Example (profile all requests): + // + // 'profiler.enabled' => function() { + // return true; + // }, + // + 'profiler.enable' => function() { + // Never profile ourself. + if (isset($_SERVER['REQUEST_URI']) && strpos($_SERVER['REQUEST_URI'], '/xhgui') === 0) { + return false; + } + + // Profile if ?xhgui=on, and continue to profile for the next hour. + foreach (array('xhgui') as $switch) { + if (isset($_GET[$switch]) && $_GET[$switch] == 'on') { + setcookie('xhgui', 'on', time() + 3600); + return true; + } + } + + // Profile if we have been set to profiling mode. + if (isset($_COOKIE['xhgui']) && $_COOKIE['xhgui'] == 'on') { + return true; + } + + // Profile the CLI when the XHGUI environment variable is set. + if (getenv('XHGUI') == 'on') { + return true; + } + }, + + // Transformation for the "simple" variant of the URL. + // This is stored as `meta.simple_url` and used for + // aggregate data. + // + // NOTE: Only applies to using the external/header.php include. + // + // Must be a function that returns a string, or any + // non-callable value for the default behaviour. + // + // Default: Remove numeric values after `=`. For example, + // it turns "/foo?page=2" into "/foo?page". + 'profiler.simple_url' => null, + + // Additional options to be passed to the `_enable()` function + // of the profiler extension (xhprof, tideways, etc.). + // + // NOTE: Only applies to using the external/header.php include. + 'profiler.options' => array(), + + // Date format used when browsing XHGui pages. + // + // Must be a format supported by the PHP date() function. + // See . + 'date.format' => 'M jS H:i:s', + + // The number of items to show in "Top lists" with functions + // using the most time or memory resources, on XHGui Run pages. + 'detail.count' => 6, + + // The number of items to show per page, on XHGui list pages. + 'page.limit' => 25, + + ); +EOT + +# Add indexes documented at https://github.com/perftools/xhgui#installation +mongo --eval "db.results.ensureIndex( { 'meta.SERVER.REQUEST_TIME' : -1 } ); \ +db.results.ensureIndex( { 'profile.main().wt' : -1 } ); \ +db.results.ensureIndex( { 'profile.main().mu' : -1 } ); \ +db.results.ensureIndex( { 'profile.main().cpu' : -1 } ); \ +db.results.ensureIndex( { 'meta.url' : 1 } ); \ +db.results.ensureIndex( { 'meta.simple_url' : 1 } ); \ +db.results.ensureIndex( { "meta.request_ts" : 1 }, { expireAfterSeconds : 432000 } )" xhprof + +cd /opt/xhgui +php install.php + +for version in 5.6 7.0 7.1 7.2 7.3 7.4 +do + cat << 'EOT' > /etc/php/$version/mods-available/xhgui.ini +; Include xhgui's header for performance profiling. +auto_prepend_file="/opt/xhgui/external/header.php" +EOT +done +phpenmod -v ALL xhgui diff --git a/scripts/restart-webserver.sh b/scripts/restart-webserver.sh new file mode 100644 index 0000000..1d17307 --- /dev/null +++ b/scripts/restart-webserver.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash + +# Restart whichever web server isn't disabled + +# is nginx enabled? +OUTPUT="$(systemctl is-enabled nginx)" + +if [ "$OUTPUT" == "enabled" ]; then + service nginx restart +else + service nginx stop + service apache2 restart +fi diff --git a/scripts/site-types/apache-proxy.sh b/scripts/site-types/apache-proxy.sh new file mode 100644 index 0000000..0e04d79 --- /dev/null +++ b/scripts/site-types/apache-proxy.sh @@ -0,0 +1,134 @@ +#!/usr/bin/env bash + +declare -A params=$6 # Create an associative array +declare -A headers=${9} # Create an associative array +paramsTXT="" +if [ -n "$6" ]; then + for element in "${!params[@]}" + do + paramsTXT="${paramsTXT} + SetEnv ${element} \"${params[$element]}\"" + done +fi +headersTXT="" +if [ -n "${9}" ]; then + for element in "${!headers[@]}" + do + headersTXT="${headersTXT} + Header always set ${element} \"${headers[$element]}\"" + done +fi + +if [ -n "$2" ] +then + if ! [[ "$2" =~ ^[0-9]+$ ]] + then + if ! [[ "$2" =~ ^https: ]] + then + socket=$(echo "$2" | sed -E "s/^http(s?):\/\//ws:\/\//g") + else + socket=$(echo "$2" | sed -E "s/^http(s?):\/\//wss:\/\//g") + fi + + proxyPass=" + RewriteEngine On + RewriteCond %{HTTP:Upgrade} =websocket [NC] + RewriteRule /(.*) $socket/ [P,L] + + ProxyPass / ${2}/ + ProxyPassReverse / ${2}/ + " + else proxyPass=" + RewriteEngine On + RewriteCond %{HTTP:Upgrade} =websocket [NC] + RewriteRule /(.*) ws://127.0.0.1:$2/ [P,L] + + ProxyPass / http://127.0.0.1:$2/ + ProxyPassReverse / http://127.0.0.1:$2/ + " + fi +else proxyPass=" +RewriteEngine On +RewriteCond %{HTTP:Upgrade} =websocket [NC] +RewriteRule /(.*) ws://127.0.0.1/ [P,L] + +ProxyPass / http://127.0.0.1/ +ProxyPassReverse / http://127.0.0.1/ +" +fi + +export DEBIAN_FRONTEND=noninteractive + +sudo service nginx stop +sudo systemctl disable nginx +sudo systemctl enable apache2 + +sudo a2enmod proxy +sudo a2enmod proxy_http +sudo a2enmod proxy_ajp +sudo a2enmod rewrite +sudo a2enmod deflate +sudo a2enmod headers +sudo a2enmod proxy_balancer +sudo a2enmod proxy_connect +sudo a2enmod proxy_html + +block=" + ServerAdmin webmaster@localhost + ServerName $1 + ServerAlias www.$1 + + ProxyPreserveHost On + RequestHeader set X-Real-IP %{REMOTE_ADDR}s + RequestHeader set Upgrade websocket + RequestHeader set Connection Upgrade + + $paramsTXT + $headersTXT + + $proxyPass + + +# vim: syntax=apache ts=4 sw=4 sts=4 sr noet +" + +echo "$block" > "/etc/apache2/sites-available/$1.conf" +ln -fs "/etc/apache2/sites-available/$1.conf" "/etc/apache2/sites-enabled/$1.conf" + +blockssl=" + + ServerAdmin webmaster@localhost + ServerName $1 + ServerAlias www.$1 + + ProxyPreserveHost On + RequestHeader set X-Real-IP %{REMOTE_ADDR}s + RequestHeader set Upgrade websocket + RequestHeader set Connection Upgrade + + $paramsTXT + $headersTXT + + SSLEngine on + + SSLCertificateFile /etc/ssl/certs/$1.crt + SSLCertificateKeyFile /etc/ssl/certs/$1.key + + $proxyPass + + + +# vim: syntax=apache ts=4 sw=4 sts=4 sr noet +" + +echo "$blockssl" > "/etc/apache2/sites-available/$1-ssl.conf" +ln -fs "/etc/apache2/sites-available/$1-ssl.conf" "/etc/apache2/sites-enabled/$1-ssl.conf" + +ps auxw | grep apache2 | grep -v grep > /dev/null + +service apache2 restart + +if [ $? == 0 ] +then + service apache2 reload +fi diff --git a/scripts/site-types/apache.sh b/scripts/site-types/apache.sh new file mode 100644 index 0000000..f724798 --- /dev/null +++ b/scripts/site-types/apache.sh @@ -0,0 +1,154 @@ +#!/usr/bin/env bash + +declare -A params=$6 # Create an associative array +declare -A headers=${9} # Create an associative array +paramsTXT="" +if [ -n "$6" ]; then + for element in "${!params[@]}" + do + paramsTXT="${paramsTXT} + SetEnv ${element} \"${params[$element]}\"" + done +fi +headersTXT="" +if [ -n "${9}" ]; then + for element in "${!headers[@]}" + do + headersTXT="${headersTXT} + Header always set ${element} \"${headers[$element]}\"" + done +fi + +export DEBIAN_FRONTEND=noninteractive + +sudo service nginx stop +sudo systemctl disable nginx +sudo systemctl enable apache2 + +block=" + ServerAdmin webmaster@localhost + ServerName $1 + ServerAlias www.$1 + DocumentRoot "$2" + $paramsTXT + $headersTXT + + + AllowOverride All + Require all granted + EnableMMAP Off + + + AddHandler php"$5"-fcgi .php + Action php"$5"-fcgi /php"$5"-fcgi + Alias /php"$5"-fcgi /usr/lib/cgi-bin/php"$5" + FastCgiExternalServer /usr/lib/cgi-bin/php"$5" -socket /var/run/php/php"$5"-fpm.sock -pass-header Authorization + + + + + SetHandler \"proxy:unix:/var/run/php/php"$5"-fpm.sock|fcgi://localhost\" + + + + #LogLevel info ssl:warn + + ErrorLog \${APACHE_LOG_DIR}/$1-error.log + CustomLog \${APACHE_LOG_DIR}/$1-access.log combined + + #Include conf-available/serve-cgi-bin.conf + + +# vim: syntax=apache ts=4 sw=4 sts=4 sr noet +" + +echo "$block" > "/etc/apache2/sites-available/$1.conf" +ln -fs "/etc/apache2/sites-available/$1.conf" "/etc/apache2/sites-enabled/$1.conf" + +blockssl=" + + + ServerAdmin webmaster@localhost + ServerName $1 + ServerAlias www.$1 + DocumentRoot "$2" + $paramsTXT + + + AllowOverride All + Require all granted + + + #LogLevel info ssl:warn + + ErrorLog \${APACHE_LOG_DIR}/$1-error.log + CustomLog \${APACHE_LOG_DIR}/$1-access.log combined + + #Include conf-available/serve-cgi-bin.conf + + # SSL Engine Switch: + # Enable/Disable SSL for this virtual host. + SSLEngine on + + #SSLCertificateFile /etc/ssl/certs/ssl-cert-snakeoil.pem + #SSLCertificateKeyFile /etc/ssl/private/ssl-cert-snakeoil.key + + SSLCertificateFile /etc/ssl/certs/$1.crt + SSLCertificateKeyFile /etc/ssl/certs/$1.key + + + #SSLCertificateChainFile /etc/apache2/ssl.crt/server-ca.crt + + #SSLCACertificatePath /etc/ssl/certs/ + #SSLCACertificateFile /etc/apache2/ssl.crt/ca-bundle.crt + + #SSLCARevocationPath /etc/apache2/ssl.crl/ + #SSLCARevocationFile /etc/apache2/ssl.crl/ca-bundle.crl + + #SSLVerifyClient require + #SSLVerifyDepth 10 + + + SSLOptions +StdEnvVars + + + SSLOptions +StdEnvVars + + + + AddHandler php"$5"-fcgi .php + Action php"$5"-fcgi /php"$5"-fcgi + Alias /php"$5"-fcgi /usr/lib/cgi-bin/php"$5" + FastCgiExternalServer /usr/lib/cgi-bin/php"$5" -socket /var/run/php/php"$5"-fpm.sock -pass-header Authorization + + + + + SetHandler \"proxy:unix:/var/run/php/php"$5"-fpm.sock|fcgi://localhost\" + + + + BrowserMatch \"MSIE [2-6]\" \ + nokeepalive ssl-unclean-shutdown \ + downgrade-1.0 force-response-1.0 + # MSIE 7 and newer should be able to use keepalive + BrowserMatch \"MSIE [17-9]\" ssl-unclean-shutdown + + + + +# vim: syntax=apache ts=4 sw=4 sts=4 sr noet +" + +echo "$blockssl" > "/etc/apache2/sites-available/$1-ssl.conf" +ln -fs "/etc/apache2/sites-available/$1-ssl.conf" "/etc/apache2/sites-enabled/$1-ssl.conf" + +ps auxw | grep apache2 | grep -v grep > /dev/null + +service apache2 restart +service php"$5"-fpm restart + +if [ $? == 0 ] +then + service apache2 reload +fi diff --git a/scripts/site-types/cakephp3.sh b/scripts/site-types/cakephp3.sh new file mode 100644 index 0000000..5b4c5ea --- /dev/null +++ b/scripts/site-types/cakephp3.sh @@ -0,0 +1,97 @@ +#!/usr/bin/env bash + +declare -A params=$6 # Create an associative array +declare -A headers=${9} # Create an associative array +declare -A rewrites=${10} # Create an associative array +paramsTXT="" +if [ -n "$6" ]; then + for element in "${!params[@]}" + do + paramsTXT="${paramsTXT} + fastcgi_param ${element} ${params[$element]};" + done +fi +headersTXT="" +if [ -n "${9}" ]; then + for element in "${!headers[@]}" + do + headersTXT="${headersTXT} + add_header ${element} ${headers[$element]};" + done +fi +rewritesTXT="" +if [ -n "${10}" ]; then + for element in "${!rewrites[@]}" + do + rewritesTXT="${rewritesTXT} + location ~ ${element} { if (!-f \$request_filename) { return 301 ${rewrites[$element]}; } }" + done +fi + +if [ "$7" = "true" ] +then configureXhgui=" +location /xhgui { + try_files \$uri \$uri/ /xhgui/index.php?\$args; +} +" +else configureXhgui="" +fi + +block="server { + listen ${3:-80}; + listen ${4:-443} ssl http2; + server_name www.$1; + return 301 http://$1\$request_uri; + + ssl_certificate /etc/ssl/certs/$1.crt; + ssl_certificate_key /etc/ssl/certs/$1.key; +} + +server { + listen ${3:-80}; + listen ${4:-443} ssl http2; + server_name .$1; + root \"$2\"; + + index index.php; + + charset utf-8; + client_max_body_size 100M; + $rewritesTXT + + location / { + try_files \$uri \$uri/ /index.php?\$args; + $headersTXT + } + + $configureXhgui + + location = /favicon.ico { access_log off; log_not_found off; } + location = /robots.txt { access_log off; log_not_found off; } + + access_log $2/../logs/$1-access.log; + error_log $2/../logs/$1-error.log error; + + sendfile off; + + location ~ \.php$ { + try_files \$uri =404; + include fastcgi_params; + fastcgi_pass unix:/var/run/php/php$5-fpm.sock; + fastcgi_index index.php; + fastcgi_intercept_errors on; + fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name; + $paramsTXT + } + + location ~ /\.ht { + deny all; + } + + ssl_certificate /etc/ssl/certs/$1.crt; + ssl_certificate_key /etc/ssl/certs/$1.key; +} +" + +echo "$block" > "/etc/nginx/sites-available/$1" +ln -fs "/etc/nginx/sites-available/$1" "/etc/nginx/sites-enabled/$1" diff --git a/scripts/site-types/crystal.sh b/scripts/site-types/crystal.sh new file mode 100644 index 0000000..0520214 --- /dev/null +++ b/scripts/site-types/crystal.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash + +sudo service nginx stop + +if [ -d /etc/apache2/sites-available ] +then + sudo service apache2 stop +fi diff --git a/scripts/site-types/elgg.sh b/scripts/site-types/elgg.sh new file mode 100644 index 0000000..48e4694 --- /dev/null +++ b/scripts/site-types/elgg.sh @@ -0,0 +1,115 @@ +#!/usr/bin/env bash + +declare -A params=$6 # Create an associative array +declare -A headers=${9} # Create an associative array +declare -A rewrites=${10} # Create an associative array +paramsTXT="" +if [ -n "$6" ]; then + for element in "${!params[@]}" + do + paramsTXT="${paramsTXT} + fastcgi_param ${element} ${params[$element]};" + done +fi +headersTXT="" +if [ -n "${9}" ]; then + for element in "${!headers[@]}" + do + headersTXT="${headersTXT} + add_header ${element} ${headers[$element]};" + done +fi +rewritesTXT="" +if [ -n "${10}" ]; then + for element in "${!rewrites[@]}" + do + rewritesTXT="${rewritesTXT} + location ~ ${element} { if (!-f \$request_filename) { return 301 ${rewrites[$element]}; } }" + done +fi + +if [ "$7" = "true" ] +then configureXhgui=" +location /xhgui { + try_files \$uri \$uri/ /xhgui/index.php?\$args; +} +" +else configureXhgui="" +fi + +block="server { + listen ${3:-80}; + listen ${4:-443} ssl http2; + server_name $1; + + root $2; + index index.php index.html index.htm; + + error_log /var/log/nginx/$1-error.log error; + access_log off; + + gzip on; + gzip_types + # text/html is always compressed by HttpGzipModule + text/css + text/javascript + text/xml + text/plain + text/x-component + application/javascript + application/x-javascript + application/json + application/xml + application/rss+xml + font/truetype + font/opentype + application/vnd.ms-fontobject + image/svg+xml; + + client_max_body_size 100M; + $rewritesTXT + + location ~ /.well-known { + allow all; + } + + location ~ (^\.|/\.) { + deny all; + } + + location = /rewrite.php { + rewrite ^(.*)$ /install.php; + } + + location / { + try_files \$uri \$uri/ @elgg; + $headersTXT + } + + $configureXhgui + + # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 + location ~ \.php$ { + try_files \$uri @elgg; + fastcgi_index index.php; + fastcgi_pass unix:/var/run/php/php$5-fpm.sock; + fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name; + include /etc/nginx/fastcgi_params; + } + + location @elgg { + fastcgi_pass unix:/var/run/php/php$5-fpm.sock; + + include /etc/nginx/fastcgi_params; + fastcgi_param SCRIPT_FILENAME \$document_root/index.php; + fastcgi_param SCRIPT_NAME /index.php; + fastcgi_param QUERY_STRING __elgg_uri=\$uri&\$args; + } + + ssl_certificate /etc/ssl/certs/$1.crt; + ssl_certificate_key /etc/ssl/certs/$1.key; +} +" + +echo "$block" > "/etc/nginx/sites-available/$1" +ln -fs "/etc/nginx/sites-available/$1" "/etc/nginx/sites-enabled/$1" diff --git a/scripts/site-types/fastadmin.sh b/scripts/site-types/fastadmin.sh new file mode 100644 index 0000000..dad712d --- /dev/null +++ b/scripts/site-types/fastadmin.sh @@ -0,0 +1,98 @@ +#!/usr/bin/env bash + +declare -A params=$6 # Create an associative array +declare -A headers=${9} # Create an associative array +declare -A rewrites=${10} # Create an associative array +paramsTXT="" +if [ -n "$6" ]; then + for element in "${!params[@]}" + do + paramsTXT="${paramsTXT} + fastcgi_param ${element} ${params[$element]};" + done +fi +headersTXT="" +if [ -n "${9}" ]; then + for element in "${!headers[@]}" + do + headersTXT="${headersTXT} + add_header ${element} ${headers[$element]};" + done +fi +rewritesTXT="" +if [ -n "${10}" ]; then + for element in "${!rewrites[@]}" + do + rewritesTXT="${rewritesTXT} + location ~ ${element} { if (!-f \$request_filename) { return 301 ${rewrites[$element]}; } }" + done +fi + +if [ "$7" = "true" ] +then configureXhgui=" +location /xhgui { + try_files \$uri \$uri/ /xhgui/index.php?\$args; +} +" +else configureXhgui="" +fi + +block="server { + listen ${3:-80}; + listen ${4:-443} ssl http2; + server_name .$1; + root \"$2\"; + + index index.html index.htm index.php; + + charset utf-8; + client_max_body_size 100M; + + $rewritesTXT + + location / { + if (!-e \$request_filename) { + rewrite ^(.*)$ /index.php?s=/\$1 last; + break; + } + $headersTXT + } + + $configureXhgui + + location = /favicon.ico { access_log off; log_not_found off; } + location = /robots.txt { access_log off; log_not_found off; } + + access_log off; + error_log /var/log/nginx/$1-error.log error; + + sendfile off; + + location ~ [^/]\.php(/|$) { + fastcgi_split_path_info ^(.+\.php)(/.+)$; + fastcgi_pass unix:/var/run/php/php$5-fpm.sock; + fastcgi_index index.php; + include fastcgi_params; + fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name; + fastcgi_param PATH_INFO \$fastcgi_path_info; + $paramsTXT + + fastcgi_intercept_errors off; + fastcgi_buffer_size 16k; + fastcgi_buffers 4 16k; + fastcgi_connect_timeout 300; + fastcgi_send_timeout 300; + fastcgi_read_timeout 300; + } + + location ~ /\.ht { + deny all; + } + + ssl_certificate /etc/ssl/certs/$1.crt; + ssl_certificate_key /etc/ssl/certs/$1.key; +} +" + +echo "$block" > "/etc/nginx/sites-available/$1" +ln -fs "/etc/nginx/sites-available/$1" "/etc/nginx/sites-enabled/$1" diff --git a/scripts/site-types/frontcontroller.sh b/scripts/site-types/frontcontroller.sh new file mode 100644 index 0000000..df9f512 --- /dev/null +++ b/scripts/site-types/frontcontroller.sh @@ -0,0 +1,92 @@ +#!/usr/bin/env bash + +declare -A params=$6 # Create an associative array +declare -A headers=${9} # Create an associative array +declare -A rewrites=${10} # Create an associative array +paramsTXT="" +if [ -n "$6" ]; then + for element in "${!params[@]}" + do + paramsTXT="${paramsTXT} + fastcgi_param ${element} ${params[$element]};" + done +fi +headersTXT="" +if [ -n "${9}" ]; then + for element in "${!headers[@]}" + do + headersTXT="${headersTXT} + add_header ${element} ${headers[$element]};" + done +fi +rewritesTXT="" +if [ -n "${10}" ]; then + for element in "${!rewrites[@]}" + do + rewritesTXT="${rewritesTXT} + location ~ ${element} { if (!-f \$request_filename) { return 301 ${rewrites[$element]}; } }" + done +fi + +if [ "$7" = "true" ] +then configureXhgui=" +location /xhgui { + try_files \$uri \$uri/ /xhgui/index.php?\$args; +} +" +else configureXhgui="" +fi + +block="server { + listen ${3:-80}; + listen ${4:-443} ssl http2; + server_name .$1; + root \"$2\"; + + charset utf-8; + + client_max_body_size 100M; + $rewritesTXT + + location / { + try_files \$uri /index.php?\$query_string; + $headersTXT + } + + $configureXhgui + + location = /favicon.ico { access_log off; log_not_found off; } + location = /robots.txt { access_log off; log_not_found off; } + + access_log off; + error_log /var/log/nginx/$1-error.log error; + + sendfile off; + + location = /index.php { + fastcgi_split_path_info ^(.+\.php)(/.+)$; + fastcgi_pass unix:/var/run/php/php$5-fpm.sock; + fastcgi_index index.php; + include fastcgi_params; + fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name; + $paramsTXT + + fastcgi_intercept_errors off; + fastcgi_buffer_size 16k; + fastcgi_buffers 4 16k; + fastcgi_connect_timeout 300; + fastcgi_send_timeout 300; + fastcgi_read_timeout 300; + } + + location ~ /\.ht { + deny all; + } + + ssl_certificate /etc/ssl/certs/$1.crt; + ssl_certificate_key /etc/ssl/certs/$1.key; +} +" + +echo "$block" > "/etc/nginx/sites-available/$1" +ln -fs "/etc/nginx/sites-available/$1" "/etc/nginx/sites-enabled/$1" diff --git a/scripts/site-types/laravel.sh b/scripts/site-types/laravel.sh new file mode 100644 index 0000000..6a0d502 --- /dev/null +++ b/scripts/site-types/laravel.sh @@ -0,0 +1,93 @@ +#!/usr/bin/env bash + +declare -A params=$6 # Create an associative array +declare -A headers=${9} # Create an associative array +declare -A rewrites=${10} # Create an associative array +paramsTXT="" +if [ -n "$6" ]; then + for element in "${!params[@]}" + do + paramsTXT="${paramsTXT} + fastcgi_param ${element} ${params[$element]};" + done +fi +headersTXT="" +if [ -n "${9}" ]; then + for element in "${!headers[@]}" + do + headersTXT="${headersTXT} + add_header ${element} ${headers[$element]};" + done +fi +rewritesTXT="" +if [ -n "${10}" ]; then + for element in "${!rewrites[@]}" + do + rewritesTXT="${rewritesTXT} + location ~ ${element} { if (!-f \$request_filename) { return 301 ${rewrites[$element]}; } }" + done +fi + +if [ "$7" = "true" ] +then configureXhgui=" +location /xhgui { + try_files \$uri \$uri/ /xhgui/index.php?\$args; +} +" +else configureXhgui="" +fi + +block="server { + listen ${3:-80}; + listen ${4:-443} ssl http2; + server_name .$1; + root \"$2\"; + + index index.html index.htm index.php; + + charset utf-8; + + $rewritesTXT + + location / { + try_files \$uri \$uri/ /index.php?\$query_string; + $headersTXT + } + + $configureXhgui + + location = /favicon.ico { access_log off; log_not_found off; } + location = /robots.txt { access_log off; log_not_found off; } + + access_log off; + error_log /var/log/nginx/$1-error.log error; + + sendfile off; + + location ~ \.php$ { + fastcgi_split_path_info ^(.+\.php)(/.+)$; + fastcgi_pass unix:/var/run/php/php$5-fpm.sock; + fastcgi_index index.php; + include fastcgi_params; + fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name; + $paramsTXT + + fastcgi_intercept_errors off; + fastcgi_buffer_size 16k; + fastcgi_buffers 4 16k; + fastcgi_connect_timeout 300; + fastcgi_send_timeout 300; + fastcgi_read_timeout 300; + } + + location ~ /\.ht { + deny all; + } + + ssl_certificate /etc/ssl/certs/$1.crt; + ssl_certificate_key /etc/ssl/certs/$1.key; +} +" + +echo "$block" > "/etc/nginx/sites-available/$1" +ln -fs "/etc/nginx/sites-available/$1" "/etc/nginx/sites-enabled/$1" diff --git a/scripts/site-types/magento.sh b/scripts/site-types/magento.sh new file mode 100644 index 0000000..6ee728d --- /dev/null +++ b/scripts/site-types/magento.sh @@ -0,0 +1,207 @@ +declare -A params=$6 # Create an associative array + +paramsTXT="" +if [ -n "$6" ]; then + for element in "${!params[@]}" + do + paramsTXT="${paramsTXT} + fastcgi_param ${element} ${params[$element]};" + done +fi + +block="server { + listen ${3:-80}; + listen ${4:-443} ssl http2; + server_name .$1; + + set \$MAGE_ROOT $2; + + root \$MAGE_ROOT/pub; + + index index.php; + autoindex off; + charset utf-8; + client_max_body_size 100M; + error_page 404 403 = /errors/404.php; + + + # PHP entry point for setup application + location ~* ^/setup($|/) { + root \$MAGE_ROOT; + location ~ ^/setup/index.php { + fastcgi_pass unix:/var/run/php/php$5-fpm.sock; + + fastcgi_param PHP_FLAG \"session.auto_start=off \n suhosin.session.cryptua=off\"; + fastcgi_param PHP_VALUE \"memory_limit=756M \n max_execution_time=600\"; + fastcgi_read_timeout 600s; + fastcgi_connect_timeout 600s; + + fastcgi_index index.php; + fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name; + $paramsTXT + include fastcgi_params; + } + + location ~ ^/setup/(?!pub/). { + deny all; + } + + location ~ ^/setup/pub/ { + add_header X-Frame-Options \"SAMEORIGIN\"; + } + } + + # PHP entry point for update application + location ~* ^/update($|/) { + root \$MAGE_ROOT; + + location ~ ^/update/index.php { + fastcgi_split_path_info ^(/update/index.php)(/.+)$; + fastcgi_pass unix:/var/run/php/php$5-fpm.sock; + fastcgi_index index.php; + fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name; + fastcgi_param PATH_INFO \$fastcgi_path_info; + $paramsTXT + include fastcgi_params; + } + + # Deny everything but index.php + location ~ ^/update/(?!pub/). { + deny all; + } + + location ~ ^/update/pub/ { + add_header X-Frame-Options \"SAMEORIGIN\"; + } + } + + location / { + try_files \$uri \$uri/ /index.php\$is_args\$args; + } + + location /pub/ { + location ~ ^/pub/media/(downloadable|customer|import|theme_customization/.*\.xml) { + deny all; + } + alias \$MAGE_ROOT/pub/; + add_header X-Frame-Options \"SAMEORIGIN\"; + } + + location /static/ { + # Uncomment the following line in production mode + # expires max; + + # Remove signature of the static files that is used to overcome the browser cache + location ~ ^/static/version { + rewrite ^/static/(version[^/]+/)?(.*)$ /static/\$2 last; + } + + location ~* \.(ico|jpg|jpeg|png|gif|svg|js|css|swf|eot|ttf|otf|woff|woff2|json)$ { + add_header Cache-Control \"public\"; + add_header X-Frame-Options \"SAMEORIGIN\"; + expires +1y; + + if (!-f \$request_filename) { + rewrite ^/static/?(.*)$ /static.php?resource=\$1 last; + } + } + location ~* \.(zip|gz|gzip|bz2|csv|xml)$ { + add_header Cache-Control "no-store"; + add_header X-Frame-Options "SAMEORIGIN"; + expires off; + + if (!-f \$request_filename) { + rewrite ^/static/?(.*)$ /static.php?resource=\$1 last; + } + } + if (!-f \$request_filename) { + rewrite ^/static/?(.*)$ /static.php?resource=\$1 last; + } + add_header X-Frame-Options \"SAMEORIGIN\"; + } + + location /media/ { + try_files \$uri \$uri/ /get.php\$is_args\$args; + + location ~ ^/media/theme_customization/.*\.xml { + deny all; + } + + location ~* \.(ico|jpg|jpeg|png|gif|svg|js|css|swf|eot|ttf|otf|woff|woff2)$ { + add_header Cache-Control \"public\"; + add_header X-Frame-Options \"SAMEORIGIN\"; + expires +1y; + try_files \$uri \$uri/ /get.php\$is_args\$args; + } + location ~* \.(zip|gz|gzip|bz2|csv|xml)$ { + add_header Cache-Control \"no-store\"; + add_header X-Frame-Options \"SAMEORIGIN\"; + expires off; + try_files \$uri \$uri/ /get.php\$is_args\$args; + } + add_header X-Frame-Options \"SAMEORIGIN\"; + } + + location /media/customer/ { + deny all; + } + + location /media/downloadable/ { + deny all; + } + + location /media/import/ { + deny all; + } + + # PHP entry point for main application + location ~ ^/(index|get|static|errors/report|errors/404|errors/503|health_check)\.php$ { + try_files \$uri =404; + fastcgi_pass unix:/var/run/php/php$5-fpm.sock; + fastcgi_buffers 16 16k; + fastcgi_buffer_size 32k; + + fastcgi_param PHP_FLAG \"session.auto_start=off \n suhosin.session.cryptua=off\"; + fastcgi_param PHP_VALUE \"memory_limit=756M \n max_execution_time=18000\"; + fastcgi_read_timeout 600s; + fastcgi_connect_timeout 600s; + + fastcgi_index index.php; + fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name; + $paramsTXT + include fastcgi_params; + } + + gzip on; + gzip_disable \"msie6\"; + + gzip_comp_level 6; + gzip_min_length 1100; + gzip_buffers 16 8k; + gzip_proxied any; + gzip_types + text/plain + text/css + text/js + text/xml + text/javascript + application/javascript + application/x-javascript + application/json + application/xml + application/xml+rss + image/svg+xml; + gzip_vary on; + + # Banned locations (only reached if the earlier PHP entry point regexes don't match) + location ~* (\.php$|\.htaccess$|\.git) { + deny all; + } + + ssl_certificate /etc/ssl/certs/$1.crt; + ssl_certificate_key /etc/ssl/certs/$1.key; + +}" + +echo "$block" > "/etc/nginx/sites-available/$1" +ln -fs "/etc/nginx/sites-available/$1" "/etc/nginx/sites-enabled/$1" diff --git a/scripts/site-types/modx.sh b/scripts/site-types/modx.sh new file mode 100644 index 0000000..99e46ad --- /dev/null +++ b/scripts/site-types/modx.sh @@ -0,0 +1,85 @@ +#!/usr/bin/env bash + +declare -A params=$6 # Create an associative array +declare -A headers=$9 # Create an associative array +declare -A rewrites=${10} # Create an associative array +paramsTXT="" +if [ -n "$6" ]; then + for element in "${!params[@]}" + do + paramsTXT="${paramsTXT} + fastcgi_param ${element} ${params[$element]};" + done +fi +headersTXT="" +if [ -n "$9" ]; then + for element in "${!headers[@]}" + do + headersTXT="${headersTXT} + add_header ${element} ${headers[$element]};" + done +fi +rewritesTXT="" +if [ -n "${10}" ]; then + for element in "${!rewrites[@]}" + do + rewritesTXT="${rewritesTXT} + location ~ ${element} { if (!-f \$request_filename) { return 301 ${rewrites[$element]}; } }" + done +fi + +block="server { + listen ${3:-80}; + listen ${4:-443} ssl http2; + server_name .$1; + root \"$2\"; + + index index.html index.htm index.php; + + charset utf-8; + client_max_body_size 100M; + + $rewritesTXT + + location / { + if (!-e \$request_filename) { + rewrite ^/(.*)\$ /index.php?q=\$1 last; + } + $headersTXT + } + + location = /favicon.ico { access_log off; log_not_found off; } + location = /robots.txt { access_log off; log_not_found off; } + + access_log off; + error_log /var/log/nginx/$1-error.log error; + + sendfile off; + + location ~ \.php$ { + fastcgi_split_path_info ^(.+\.php)(/.+)$; + fastcgi_pass unix:/var/run/php/php$5-fpm.sock; + fastcgi_index index.php; + include fastcgi_params; + fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name; + $paramsTXT + + fastcgi_intercept_errors off; + fastcgi_buffer_size 16k; + fastcgi_buffers 4 16k; + fastcgi_connect_timeout 300; + fastcgi_send_timeout 300; + fastcgi_read_timeout 300; + } + + location ~ /\.ht { + deny all; + } + + ssl_certificate /etc/ssl/certs/$1.crt; + ssl_certificate_key /etc/ssl/certs/$1.key; +} +" + +echo "$block" > "/etc/nginx/sites-available/$1" +ln -fs "/etc/nginx/sites-available/$1" "/etc/nginx/sites-enabled/$1" diff --git a/scripts/site-types/phalcon.sh b/scripts/site-types/phalcon.sh new file mode 100644 index 0000000..15a6e41 --- /dev/null +++ b/scripts/site-types/phalcon.sh @@ -0,0 +1,103 @@ +#!/usr/bin/env bash + +declare -A params=$6 # Create an associative array +declare -A headers=${9} # Create an associative array +declare -A rewrites=${10} # Create an associative array +paramsTXT="" +if [ -n "$6" ]; then + for element in "${!params[@]}" + do + paramsTXT="${paramsTXT} + fastcgi_param ${element} ${params[$element]};" + done +fi +headersTXT="" +if [ -n "${9}" ]; then + for element in "${!headers[@]}" + do + headersTXT="${headersTXT} + add_header ${element} ${headers[$element]};" + done +fi +rewritesTXT="" +if [ -n "${10}" ]; then + for element in "${!rewrites[@]}" + do + rewritesTXT="${rewritesTXT} + location ~ ${element} { if (!-f \$request_filename) { return 301 ${rewrites[$element]}; } }" + done +fi + +if [ "$7" = "true" ] +then configureXhgui=" +location /xhgui { + try_files \$uri \$uri/ /xhgui/index.php?\$args; +} +" +else configureXhgui="" +fi + +block="server { + listen ${3:-80}; + listen ${4:-443} ssl http2; + server_name .$1; + root \"$2\"; + + index index.php; + + charset utf-8; + client_max_body_size 100M; + + $rewritesTXT + + location / { + if (!-d \$request_filename){ + set \$rule_0 1\$rule_0; + } + if (!-f \$request_filename){ + set \$rule_0 2\$rule_0; + } + if (\$rule_0 = "21"){ + rewrite ^/(.*)$ /index.php?_url=/\$1 last; + } + + $headersTXT + } + + $configureXhgui + + location = /favicon.ico { access_log off; log_not_found off; } + location = /robots.txt { access_log off; log_not_found off; } + + access_log off; + error_log /var/log/nginx/$1-error.log error; + + sendfile off; + + location ~ \.php$ { + fastcgi_split_path_info ^(.+\.php)(/.+)$; + fastcgi_pass unix:/var/run/php/php$5-fpm.sock; + fastcgi_index index.php; + include fastcgi_params; + fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name; + $paramsTXT + + fastcgi_intercept_errors off; + fastcgi_buffer_size 16k; + fastcgi_buffers 4 16k; + fastcgi_connect_timeout 300; + fastcgi_send_timeout 300; + fastcgi_read_timeout 300; + } + + location ~ /\.ht { + deny all; + } + + ssl_certificate /etc/ssl/certs/$1.crt; + ssl_certificate_key /etc/ssl/certs/$1.key; +} +" + +echo "$block" > "/etc/nginx/sites-available/$1" +ln -fs "/etc/nginx/sites-available/$1" "/etc/nginx/sites-enabled/$1" diff --git a/scripts/site-types/pimcore.sh b/scripts/site-types/pimcore.sh new file mode 100644 index 0000000..8131b27 --- /dev/null +++ b/scripts/site-types/pimcore.sh @@ -0,0 +1,189 @@ +#!/usr/bin/env bash + +export DEBIAN_FRONTEND=noninteractive +apt-get update +apt-get install -y php"$5"-bz2 + +declare -A params=$6 # Create an associative array +declare -A headers=${9} # Create an associative array +declare -A rewrites=${10} # Create an associative array +paramsTXT="" +if [ -n "$6" ]; then + for element in "${!params[@]}" + do + paramsTXT="${paramsTXT} + fastcgi_param ${element} ${params[$element]};" + done +fi +headersTXT="" +if [ -n "${9}" ]; then + for element in "${!headers[@]}" + do + headersTXT="${headersTXT} + add_header ${element} ${headers[$element]};" + done +fi +rewritesTXT="" +if [ -n "${10}" ]; then + for element in "${!rewrites[@]}" + do + rewritesTXT="${rewritesTXT} + location ~ ${element} { if (!-f \$request_filename) { return 301 ${rewrites[$element]}; } }" + done +fi + +if [ "$7" = "true" ] +then configureXhgui=" +location /xhgui { + try_files \$uri \$uri/ /xhgui/index.php?\$args; +} +" +else configureXhgui="" +fi + +block="# mime types are covered in nginx.conf by: +# http { +# include mime.types; +# } + +server { + listen ${3:-80}; + listen ${4:-443} ssl http2; + server_name $1; + root \"$2\"; + + client_max_body_size 100M; + index index.php; + + access_log off; + error_log /var/log/nginx/$1-ssl-error.log error; + + # Pimcore Head-Link Cache-Busting + rewrite ^/cache-buster-(?:\d+)/(.*) /\$1 last; + + $rewritesTXT + + $configureXhgui + + # Stay secure + # + # a) don't allow PHP in folders allowing file uploads + location ~* /var/assets/*\.php(/|\$) { + return 404; + } + # b) Prevent clients from accessing hidden files (starting with a dot) + # Access to /.well-known/ is allowed. + # https://www.mnot.net/blog/2010/04/07/well-known + # https://tools.ietf.org/html/rfc5785 + location ~* /\.(?!well-known/) { + deny all; + log_not_found off; + access_log off; + } + # c) Prevent clients from accessing to backup/config/source files + location ~* (?:\.(?:bak|conf(ig)?|dist|fla|in[ci]|log|psd|sh|sql|sw[op])|~)\$ { + deny all; + } + + # Some Admin Modules need this: + # Database Admin, Server Info + location ~* ^/admin/(adminer|external) { + rewrite .* /app.php\$is_args\$args last; + } + + # Thumbnails + location ~* .*/(image|video)-thumb__\d+__.* { + try_files /var/tmp/\$1-thumbnails\$uri /app.php; + expires 2w; + access_log off; + add_header Cache-Control \"public\"; + $headersTXT + $paramsTXT + } + + # Assets + # Still use a whitelist approach to prevent each and every missing asset to go through the PHP Engine. + location ~* (.+?)\.((?:css|js)(?:\.map)?|jpe?g|gif|png|svgz?|eps|exe|gz|zip|mp\d|ogg|ogv|webm|pdf|docx?|xlsx?|pptx?)\$ { + try_files /var/assets\$uri \$uri =404; + expires 2w; + access_log off; + log_not_found off; + add_header Cache-Control \"public\"; + $headersTXT + $paramsTXT + } + + # Installer + # Remove this if you don't need the web installer (anymore) + if (-f \$document_root/install.php) { + rewrite ^/install(/?.*) /install.php last; + } + + location / { + error_page 404 /meta/404; + add_header \"X-UA-Compatible\" \"IE=edge\"; + try_files \$uri /app.php\$is_args\$args; + $headersTXT + $paramsTXT + } + + # Use this location when the installer has to be run + # location ~ /(app|install)\.php(/|\$) { + # + # Use this after initial install is done: + location ~ /(app|install)\.php(/|\$) { + send_timeout 1800; + fastcgi_read_timeout 1800; + # regex to split \$uri to \$fastcgi_script_name and \$fastcgi_path + fastcgi_split_path_info ^(.+\.php)(/.+)\$; + # Check that the PHP script exists before passing it + try_files \$fastcgi_script_name =404; + include fastcgi.conf; + # Bypass the fact that try_files resets \$fastcgi_path_info + # see: http://trac.nginx.org/nginx/ticket/321 + set \$path_info \$fastcgi_path_info; + fastcgi_param PATH_INFO \$path_info; + + # Activate these, if using Symlinks and opcache + # fastcgi_param SCRIPT_FILENAME \$realpath_root\$fastcgi_script_name; + # fastcgi_param DOCUMENT_ROOT \$realpath_root; + + fastcgi_pass unix:/var/run/php/php$5-fpm.sock; + # Prevents URIs that include the front controller. This will 404: + # http://domain.tld/app.php/some-path + # Remove the internal directive to allow URIs like this + internal; + } + + # PHP-FPM Status and Ping + location /fpm- { + access_log off; + include fastcgi_params; + location /fpm-status { + allow 127.0.0.1; + # add additional IP's or Ranges + deny all; + fastcgi_pass unix:/var/run/php/php$5-fpm.sock; + } + location /fpm-ping { + fastcgi_pass unix:/var/run/php/php$5-fpm.sock; + } + } + # nginx Status + # see: https://nginx.org/en/docs/http/ngx_http_stub_status_module.html + location /nginx-status { + allow 127.0.0.1; + deny all; + access_log off; + stub_status; + } + + ssl_certificate /etc/ssl/certs/$1.crt; + ssl_certificate_key /etc/ssl/certs/$1.key; +} +" + +echo "$block" > "/etc/nginx/sites-available/$1" +ln -fs "/etc/nginx/sites-available/$1" "/etc/nginx/sites-enabled/$1" + +sudo service nginx restart diff --git a/scripts/site-types/proxy.sh b/scripts/site-types/proxy.sh new file mode 100644 index 0000000..03894f2 --- /dev/null +++ b/scripts/site-types/proxy.sh @@ -0,0 +1,64 @@ +#!/usr/bin/env bash + +declare -A params=$6 # Create an associative array +declare -A headers=$9 # Create an associative array +paramsTXT="" +if [ -n "$6" ]; then + for element in "${!params[@]}" + do + paramsTXT="${paramsTXT} + ${element} ${params[$element]};" + done +fi +headersTXT="" +if [ -n "$9" ]; then + for element in "${!headers[@]}" + do + headersTXT="${headersTXT} + add_header ${element} ${headers[$element]};" + done +fi + +if [ -n "$2" ] +then + if ! [[ "$2" =~ ^[0-9]+$ ]] + then + proxyPass=" + proxy_pass ${2}; + " + else proxyPass=" + proxy_pass http://127.0.0.1:$2; + " + fi +else proxyPass=" +proxy_pass http://127.0.0.1; +" +fi + +block="server { + listen ${3:-80}; + listen ${4:-443} ssl; + server_name .$1; + + location / { + proxy_set_header X-Real-IP \$remote_addr; + proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for; + proxy_set_header Upgrade \$http_upgrade; + proxy_set_header Connection "upgrade"; + proxy_set_header Host \$host; + proxy_http_version 1.1; + $proxyPass + $headersTXT + $paramsTXT + } + + access_log off; + error_log /var/log/nginx/$1-error.log error; + + ssl_certificate /etc/ssl/certs/$1.crt; + ssl_certificate_key /etc/ssl/certs/$1.key; +} +" + +echo "$block" > "/etc/nginx/sites-available/$1" +ln -fs "/etc/nginx/sites-available/$1" "/etc/nginx/sites-enabled/$1" diff --git a/scripts/site-types/silverstripe.sh b/scripts/site-types/silverstripe.sh new file mode 100644 index 0000000..3ba9556 --- /dev/null +++ b/scripts/site-types/silverstripe.sh @@ -0,0 +1,142 @@ +#!/usr/bin/env bash + +declare -A params=$6 # Create an associative array +declare -A headers=${9} # Create an associative array +declare -A rewrites=${10} # Create an associative array +paramsTXT="" +if [ -n "$6" ]; then + for element in "${!params[@]}" + do + paramsTXT="${paramsTXT} + fastcgi_param ${element} ${params[$element]};" + done +fi +headersTXT="" +if [ -n "${9}" ]; then + for element in "${!headers[@]}" + do + headersTXT="${headersTXT} + add_header ${element} ${headers[$element]};" + done +fi +rewritesTXT="" +if [ -n "${10}" ]; then + for element in "${!rewrites[@]}" + do + rewritesTXT="${rewritesTXT} + location ~ ${element} { if (!-f \$request_filename) { return 301 ${rewrites[$element]}; } }" + done +fi + +if [ "$7" = "true" ] +then configureXhgui=" +location /xhgui { + try_files \$uri \$uri/ /xhgui/index.php?\$args; +} +" +else configureXhgui="" +fi + +block="server { + listen ${3:-80}; + listen ${4:-443} ssl http2; + server_name $1; + root \"$2\"; + + charset utf-8; + client_max_body_size 100M; + + if (\$http_x_forwarded_host) { + return 400; + } + + $rewritesTXT + + location / { + try_files \$uri /index.php?url=\$uri&\$query_string; + $headersTXT + } + + error_page 404 /assets/error-404.html; + error_page 500 /assets/error-500.html; + + access_log off; + error_log /var/log/nginx/$1-error.log error; + sendfile off; + + location ^~ /assets/ { + location ~ /\. { + deny all; + } + try_files \$uri /index.php?url=\$uri&\$query_string; + $headersTXT + } + + location ~ /framework/.*(main|rpc|tiny_mce_gzip)\.php$ { + fastcgi_keep_conn on; + fastcgi_pass unix:/var/run/php/php$5-fpm.sock; + fastcgi_index index.php; + fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name; + include fastcgi_params; + $paramsTXT + } + + location ~ /(mysite|framework|cms)/.*\.(php|php3|php4|php5|phtml|inc)$ { + deny all; + } + + location ~ /\.. { + deny all; + } + + location ~ \.ss$ { + satisfy any; + allow 127.0.0.1; + deny all; + } + + location ~ web\.config$ { + deny all; + } + + location ~ \.ya?ml$ { + deny all; + } + + location ^~ /vendor/ { + deny all; + } + + location ~* /silverstripe-cache/ { + deny all; + } + + location ~* composer\.(json|lock)$ { + deny all; + } + + location ~* /(cms|framework)/silverstripe_version$ { + deny all; + } + + location ~ \.php$ { + fastcgi_keep_conn on; + fastcgi_pass unix:/var/run/php/php$5-fpm.sock; + fastcgi_index index.php; + fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name; + include fastcgi_params; + fastcgi_buffer_size 32k; + fastcgi_busy_buffers_size 64k; + fastcgi_buffers 4 32k; + $paramsTXT + } + + $configureXhgui + + ssl_certificate /etc/ssl/certs/$1.crt; + ssl_certificate_key /etc/ssl/certs/$1.key; +} +" + +echo "$block" > "/etc/nginx/sites-available/$1" +ln -fs "/etc/nginx/sites-available/$1" "/etc/nginx/sites-enabled/$1" diff --git a/scripts/site-types/spa.sh b/scripts/site-types/spa.sh new file mode 100644 index 0000000..2e36e1d --- /dev/null +++ b/scripts/site-types/spa.sh @@ -0,0 +1,68 @@ +#!/usr/bin/env bash + +declare -A params=$6 # Create an associative array +declare -A headers=${9} # Create an associative array +declare -A rewrites=${10} # Create an associative array +paramsTXT="" +if [ -n "$6" ]; then + for element in "${!params[@]}" + do + paramsTXT="${paramsTXT} + fastcgi_param ${element} ${params[$element]};" + done +fi +headersTXT="" +if [ -n "${9}" ]; then + for element in "${!headers[@]}" + do + headersTXT="${headersTXT} + add_header ${element} ${headers[$element]};" + done +fi +rewritesTXT="" +if [ -n "${10}" ]; then + for element in "${!rewrites[@]}" + do + rewritesTXT="${rewritesTXT} + location ~ ${element} { if (!-f \$request_filename) { return 301 ${rewrites[$element]}; } }" + done +fi + +block="server { + listen ${3:-80}; + listen ${4:-443} ssl http2; + server_name $1; + root \"$2\"; + + index index.html; + + charset utf-8; + client_max_body_size 100M; + + $rewritesTXT + + location / { + try_files \$uri \$uri/ /index.html; + $headersTXT + $paramsTXT + } + + location = /favicon.ico { access_log off; log_not_found off; } + location = /robots.txt { access_log off; log_not_found off; } + + access_log off; + error_log /var/log/nginx/$1-error.log error; + + sendfile off; + + location ~ /\.ht { + deny all; + } + + ssl_certificate /etc/ssl/certs/$1.crt; + ssl_certificate_key /etc/ssl/certs/$1.key; +} +" + +echo "$block" > "/etc/nginx/sites-available/$1" +ln -fs "/etc/nginx/sites-available/$1" "/etc/nginx/sites-enabled/$1" diff --git a/scripts/site-types/statamic.sh b/scripts/site-types/statamic.sh new file mode 100644 index 0000000..455c2ef --- /dev/null +++ b/scripts/site-types/statamic.sh @@ -0,0 +1,95 @@ +#!/usr/bin/env bash + +declare -A params=$6 # Create an associative array +declare -A headers=${9} # Create an associative array +declare -A rewrites=${10} # Create an associative array +paramsTXT="" +if [ -n "$6" ]; then + for element in "${!params[@]}" + do + paramsTXT="${paramsTXT} + fastcgi_param ${element} ${params[$element]};" + done +fi +headersTXT="" +if [ -n "${9}" ]; then + for element in "${!headers[@]}" + do + headersTXT="${headersTXT} + add_header ${element} ${headers[$element]};" + done +fi +rewritesTXT="" +if [ -n "${10}" ]; then + for element in "${!rewrites[@]}" + do + rewritesTXT="${rewritesTXT} + location ~ ${element} { if (!-f \$request_filename) { return 301 ${rewrites[$element]}; } }" + done +fi + +if [ "$7" = "true" ] +then configureXhgui=" +location /xhgui { + try_files \$uri \$uri/ /xhgui/index.php?\$args; +} +" +else configureXhgui="" +fi + +block="server { + listen ${3:-80}; + listen ${4:-443} ssl http2; + server_name $1; + root \"$2\"; + + index index.html index.htm index.php; + + charset utf-8; + client_max_body_size 100M; + + $rewritesTXT + + location / { + rewrite ^/admin.php.*$ /admin.php; + try_files \$uri \$uri/ /index.php?\$query_string; + $headersTXT + } + + location = /favicon.ico { access_log off; log_not_found off; } + location = /robots.txt { access_log off; log_not_found off; } + + access_log off; + error_log /var/log/nginx/$1-error.log error; + + sendfile off; + + location ~ \.php$ { + fastcgi_split_path_info ^(.+\.php)(/.+)$; + fastcgi_pass unix:/var/run/php/php$5-fpm.sock; + fastcgi_index index.php; + include fastcgi_params; + fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name; + $paramsTXT + + fastcgi_intercept_errors off; + fastcgi_buffer_size 16k; + fastcgi_buffers 4 16k; + fastcgi_connect_timeout 300; + fastcgi_send_timeout 300; + fastcgi_read_timeout 300; + } + + location ~ /\.ht { + deny all; + } + + $configureXhgui + + ssl_certificate /etc/ssl/certs/$1.crt; + ssl_certificate_key /etc/ssl/certs/$1.key; +} +" + +echo "$block" > "/etc/nginx/sites-available/$1" +ln -fs "/etc/nginx/sites-available/$1" "/etc/nginx/sites-enabled/$1" diff --git a/scripts/site-types/symfony2.sh b/scripts/site-types/symfony2.sh new file mode 100644 index 0000000..9274bda --- /dev/null +++ b/scripts/site-types/symfony2.sh @@ -0,0 +1,108 @@ +#!/usr/bin/env bash + +declare -A params=$6 # Create an associative array +declare -A headers=${9} # Create an associative array +declare -A rewrites=${10} # Create an associative array +paramsTXT="" +if [ -n "$6" ]; then + for element in "${!params[@]}" + do + paramsTXT="${paramsTXT} + fastcgi_param ${element} ${params[$element]};" + done +fi +headersTXT="" +if [ -n "${9}" ]; then + for element in "${!headers[@]}" + do + headersTXT="${headersTXT} + add_header ${element} ${headers[$element]};" + done +fi +rewritesTXT="" +if [ -n "${10}" ]; then + for element in "${!rewrites[@]}" + do + rewritesTXT="${rewritesTXT} + location ~ ${element} { if (!-f \$request_filename) { return 301 ${rewrites[$element]}; } }" + done +fi + +if [ "$7" = "true" ] +then configureXhgui=" +location /xhgui { + try_files \$uri \$uri/ /xhgui/index.php?\$args; +} +" +else configureXhgui="" +fi + +block="server { + listen ${3:-80}; + listen ${4:-443} ssl http2; + server_name $1; + root \"$2\"; + + index index.html index.htm index.php app_dev.php; + + charset utf-8; + client_max_body_size 100M; + + $rewritesTXT + + location / { + try_files \$uri \$uri/ /app_dev.php?\$query_string; + $headersTXT + } + + location = /favicon.ico { access_log off; log_not_found off; } + location = /robots.txt { access_log off; log_not_found off; } + + access_log off; + error_log /var/log/nginx/$1-ssl-error.log error; + + sendfile off; + + # DEV + location ~ ^/(app_dev|app_test|config)\.php(/|\$) { + fastcgi_split_path_info ^(.+\.php)(/.*)\$; + fastcgi_pass unix:/var/run/php/php$5-fpm.sock; + include fastcgi_params; + fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name; + $paramsTXT + + fastcgi_intercept_errors off; + fastcgi_buffer_size 16k; + fastcgi_buffers 4 16k; + fastcgi_connect_timeout 300; + fastcgi_send_timeout 300; + fastcgi_read_timeout 300; + } + + # PROD + location ~ ^/app\.php(/|$) { + fastcgi_split_path_info ^(.+\.php)(/.*)$; + fastcgi_pass unix:/var/run/php/php$5-fpm.sock; + include fastcgi_params; + fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name; + $paramsTXT + + fastcgi_intercept_errors off; + fastcgi_buffer_size 16k; + fastcgi_buffers 4 16k; + internal; + } + + location ~ /\.ht { + deny all; + } + + $configureXhgui + + ssl_certificate /etc/ssl/certs/$1.crt; + ssl_certificate_key /etc/ssl/certs/$1.key; +} +" + +echo "$block" > "/etc/nginx/sites-available/$1" +ln -fs "/etc/nginx/sites-available/$1" "/etc/nginx/sites-enabled/$1" diff --git a/scripts/site-types/symfony4.sh b/scripts/site-types/symfony4.sh new file mode 100644 index 0000000..75e9972 --- /dev/null +++ b/scripts/site-types/symfony4.sh @@ -0,0 +1,94 @@ +#!/usr/bin/env bash + +declare -A params=$6 # Create an associative array +declare -A headers=${9} # Create an associative array +declare -A rewrites=${10} # Create an associative array +paramsTXT="" +if [ -n "$6" ]; then + for element in "${!params[@]}" + do + paramsTXT="${paramsTXT} + fastcgi_param ${element} ${params[$element]};" + done +fi +headersTXT="" +if [ -n "${9}" ]; then + for element in "${!headers[@]}" + do + headersTXT="${headersTXT} + add_header ${element} ${headers[$element]};" + done +fi +rewritesTXT="" +if [ -n "${10}" ]; then + for element in "${!rewrites[@]}" + do + rewritesTXT="${rewritesTXT} + location ~ ${element} { if (!-f \$request_filename) { return 301 ${rewrites[$element]}; } }" + done +fi + +if [ "$7" = "true" ] +then configureXhgui=" +location /xhgui { + try_files \$uri \$uri/ /xhgui/index.php?\$args; +} +" +else configureXhgui="" +fi + +block="server { + listen ${3:-80}; + listen ${4:-443} ssl http2; + server_name $1; + root \"$2\"; + + index index.html index.htm index.php; + + charset utf-8; + client_max_body_size 100M; + + $rewritesTXT + + location / { + try_files \$uri \$uri/ /index.php?\$query_string; + $headersTXT + } + + location = /favicon.ico { access_log off; log_not_found off; } + location = /robots.txt { access_log off; log_not_found off; } + + access_log off; + error_log /var/log/nginx/$1-ssl-error.log error; + + sendfile off; + + # DEV + location ~ \.php(/|\$) { + fastcgi_split_path_info ^(.+\.php)(/.*)\$; + fastcgi_pass unix:/var/run/php/php$5-fpm.sock; + include fastcgi_params; + fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name; + $paramsTXT + + fastcgi_intercept_errors off; + fastcgi_buffer_size 16k; + fastcgi_buffers 4 16k; + fastcgi_connect_timeout 300; + fastcgi_send_timeout 300; + fastcgi_read_timeout 300; + } + + location ~ /\.ht { + deny all; + } + + $configureXhgui + + ssl_certificate /etc/ssl/certs/$1.crt; + ssl_certificate_key /etc/ssl/certs/$1.key; +} +" + +echo "$block" > "/etc/nginx/sites-available/$1" +ln -fs "/etc/nginx/sites-available/$1" "/etc/nginx/sites-enabled/$1" diff --git a/scripts/site-types/thinkphp.sh b/scripts/site-types/thinkphp.sh new file mode 100644 index 0000000..cb820b3 --- /dev/null +++ b/scripts/site-types/thinkphp.sh @@ -0,0 +1,97 @@ +#!/usr/bin/env bash + +declare -A params=$6 # Create an associative array +declare -A headers=${9} # Create an associative array +declare -A rewrites=${10} # Create an associative array +paramsTXT="" +if [ -n "$6" ]; then + for element in "${!params[@]}" + do + paramsTXT="${paramsTXT} + fastcgi_param ${element} ${params[$element]};" + done +fi +headersTXT="" +if [ -n "${9}" ]; then + for element in "${!headers[@]}" + do + headersTXT="${headersTXT} + add_header ${element} ${headers[$element]};" + done +fi +rewritesTXT="" +if [ -n "${10}" ]; then + for element in "${!rewrites[@]}" + do + rewritesTXT="${rewritesTXT} + location ~ ${element} { if (!-f \$request_filename) { return 301 ${rewrites[$element]}; } }" + done +fi + +if [ "$7" = "true" ] +then configureXhgui=" +location /xhgui { + try_files \$uri \$uri/ /xhgui/index.php?\$args; +} +" +else configureXhgui="" +fi + +block="server { + listen ${3:-80}; + listen ${4:-443} ssl http2; + server_name .$1; + root \"$2\"; + + index index.html index.htm index.php; + + charset utf-8; + client_max_body_size 100M; + + $rewritesTXT + + location / { + if (!-e \$request_filename) { + rewrite ^(.*)$ /index.php?s=/\$1 last; + break; + } + $headersTXT + } + + $configureXhgui + + location = /favicon.ico { access_log off; log_not_found off; } + location = /robots.txt { access_log off; log_not_found off; } + + access_log off; + error_log /var/log/nginx/$1-error.log error; + + sendfile off; + + location ~ \.php$ { + fastcgi_split_path_info ^(.+\.php)(/.+)$; + fastcgi_pass unix:/var/run/php/php$5-fpm.sock; + fastcgi_index index.php; + include fastcgi_params; + fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name; + $paramsTXT + + fastcgi_intercept_errors off; + fastcgi_buffer_size 16k; + fastcgi_buffers 4 16k; + fastcgi_connect_timeout 300; + fastcgi_send_timeout 300; + fastcgi_read_timeout 300; + } + + location ~ /\.ht { + deny all; + } + + ssl_certificate /etc/ssl/certs/$1.crt; + ssl_certificate_key /etc/ssl/certs/$1.key; +} +" + +echo "$block" > "/etc/nginx/sites-available/$1" +ln -fs "/etc/nginx/sites-available/$1" "/etc/nginx/sites-enabled/$1" diff --git a/scripts/site-types/umi.sh b/scripts/site-types/umi.sh new file mode 100644 index 0000000..9f696fb --- /dev/null +++ b/scripts/site-types/umi.sh @@ -0,0 +1,151 @@ +#!/usr/bin/env bash + +declare -A params=$6 # Create an associative array +declare -A headers=$9 # Create an associative array +declare -A rewrites=${10} # Create an associative array + +paramsTXT="" +if [ -n "$6" ]; then + for element in "${!params[@]}" + do + paramsTXT="${paramsTXT} + fastcgi_param ${element} ${params[$element]};" + done +fi + +headersTXT="" +if [ -n "$9" ]; then + for element in "${!headers[@]}" + do + headersTXT="${headersTXT} + add_header ${element} ${headers[$element]};" + done +fi + +if [ "$7" = "true" ] && [ "$5" = "7.2" ] +then configureZray=" +location /ZendServer { + try_files \$uri \$uri/ /ZendServer/index.php?\$args; +} +" +else configureZray="" +fi + +block="server { + listen ${3:-80}; + listen ${4:-443} ssl http2; + server_name .$1; + root \"$2\"; + + index index.html index.htm index.php; + + charset utf-8; + client_max_body_size 100M; + + $rewritesTXT + + location ~* ^\/(classes|errors\/logs|sys\-temp|cache|xmldb|static|packages) { + deny all; + } + + location ~* (\/for_del_connector\.php|\.ini|\.conf)\$ { + deny all; + } + + location ~* ^(\/files\/|\/images\/|\/yml\/) { + try_files \$uri =404; + } + + location ~* ^\/images\/autothumbs\/ { + try_files \$uri @autothumbs =404; + } + + location @autothumbs { + rewrite ^\/images\/autothumbs\/(.*)\$ /autothumbs.php?img=\$1\$query_string last; + } + + location @clean_url { + rewrite ^/(.*)\$ /index.php?path=\$1 last; + } + + location @dynamic { + try_files \$uri @clean_url; + } + + location \/yml\/files\/ { + try_files \$uri =404; + } + + location / { + rewrite ^\/robots\.txt /sbots_custom.php?path=\$1 last; + rewrite ^\/sitemap\.xml /sitemap.php last; + rewrite ^\/\~\/([0-9]+)\$ /tinyurl.php?id=\$1 last; + rewrite ^\/(udata|upage|uobject|ufs|usel|ulang|utype|umess|uhttp):?(\/\/)?(.*)? /releaseStreams.php?scheme=\$1&path=\$3 last; + rewrite ^\/(.*)\.xml\$ /index.php?xmlMode=force&path=\$1 last; + rewrite ^(.*)\.json\$ /index.php?jsonMode=force&path=\$1 last; + + $headersTXT + + if (\$cookie_umicms_session) { + error_page 412 = @dynamic; + return 412; + } + + if (\$request_method = 'POST') { + error_page 412 = @dynamic; + return 412; + } + + index index.php; + try_files \$uri @dynamic; + } + + location ~* \.js\$ { + rewrite ^\/(udata|upage|uobject|ufs|usel|ulang|utype|umess|uhttp):?(\/\/)?(.*)? /releaseStreams.php?scheme=\$1&path=\$3 last; + try_files \$uri =404; + } + + location ~* \.(ico|jpg|jpeg|png|gif|swf|css|ttf)\$ { + try_files \$uri =404; + access_log off; + expires 24h; + } + + $configureZray + + location = /favicon.ico { access_log off; log_not_found off; } + location = /robots.txt { access_log off; log_not_found off; } + + access_log off; + error_log /var/log/nginx/\$1-error.log error; + + sendfile off; + + location ~ \.php$ { + fastcgi_split_path_info ^(.+\.php)(/.+)\$; + fastcgi_pass unix:/var/run/php/php$5-fpm.sock; + fastcgi_index index.php; + include fastcgi_params; + fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name; + + $paramsTXT + + fastcgi_intercept_errors off; + fastcgi_buffer_size 16k; + fastcgi_buffers 4 16k; + fastcgi_connect_timeout 300; + fastcgi_send_timeout 300; + fastcgi_read_timeout 300; + } + + location ~ /\.ht { + deny all; + } + + ssl_certificate /etc/ssl/certs/$1.crt; + ssl_certificate_key /etc/ssl/certs/$1.key; +} +" + +echo "$block" > "/etc/nginx/sites-available/$1" +ln -fs "/etc/nginx/sites-available/$1" "/etc/nginx/sites-enabled/$1" diff --git a/scripts/site-types/wordpress.sh b/scripts/site-types/wordpress.sh new file mode 100644 index 0000000..99a8c2a --- /dev/null +++ b/scripts/site-types/wordpress.sh @@ -0,0 +1,158 @@ +#!/usr/bin/env bash + +declare -A params=$6 # Create an associative array +declare -A headers=${9} # Create an associative array +declare -A rewrites=${10} # Create an associative array +paramsTXT="" +if [ -n "$6" ]; then + for element in "${!params[@]}" + do + paramsTXT="${paramsTXT} + fastcgi_param ${element} ${params[$element]};" + done +fi +headersTXT="" +if [ -n "${9}" ]; then + for element in "${!headers[@]}" + do + headersTXT="${headersTXT} + add_header ${element} ${headers[$element]};" + done +fi +rewritesTXT="" +if [ -n "${10}" ]; then + for element in "${!rewrites[@]}" + do + rewritesTXT="${rewritesTXT} + location ~ ${element} { if (!-f \$request_filename) { return 301 ${rewrites[$element]}; } }" + done +fi + +if [ "$7" = "true" ] +then configureXhgui=" +location /xhgui { + try_files \$uri \$uri/ /xhgui/index.php?\$args; +} +" +else configureXhgui="" +fi + +block="server { + listen ${3:-80}; + listen ${4:-443} ssl http2; + server_name .$1; + root \"$2\"; + + index index.php index.html index.htm; + + charset utf-8; + client_max_body_size 100M; + + $rewritesTXT + + location = /favicon.ico { access_log off; log_not_found off; } + location = /robots.txt { allow all; access_log off; log_not_found off; } + + location ~*/wp-content/uploads { + log_not_found off; + try_files \$uri @prod_site; + } + + location @prod_site { + rewrite ^/(.*)$ https://${11}/$1 redirect; + } + + location ~ /.*\.(jpg|jpeg|png|js|css)$ { + try_files \$uri =404; + } + + location / { + try_files \$uri \$uri/ /index.php?\$query_string; + } + + if (!-e \$request_filename) { + # Add trailing slash to */wp-admin requests. + rewrite /wp-admin$ \$scheme://\$host\$uri/ permanent; + + # WordPress in a subdirectory rewrite rules + rewrite ^/([_0-9a-zA-Z-]+/)?(wp-.*|xmlrpc.php) /wp/\$2 break; + } + + location ~ \.php$ { + fastcgi_split_path_info ^(.+\.php)(/.+)$; + include fastcgi_params; + fastcgi_index index.php; + fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name; + fastcgi_pass unix:/var/run/php/php$5-fpm.sock; + fastcgi_intercept_errors on; + fastcgi_buffers 16 16k; + fastcgi_buffer_size 32k; + } + + $configureXhgui + + access_log off; + error_log /var/log/nginx/$1-error.log error; + + sendfile off; + + location ~ /\.ht { + deny all; + } + + ssl_certificate /etc/ssl/certs/$1.crt; + ssl_certificate_key /etc/ssl/certs/$1.key; +} +" + +echo "$block" > "/etc/nginx/sites-available/$1" +ln -fs "/etc/nginx/sites-available/$1" "/etc/nginx/sites-enabled/$1" + + +# Additional constants to define in wp-config.php +wpConfigSearchStr="\$table_prefix = 'wp_';" +wpConfigReplaceStr="\$table_prefix = 'wp_';\\n\ +\\n\ +// Define the default HOME/SITEURL constants and set them to our root domain\\n\ +if ( ! defined( 'WP_HOME' ) ) {\\n\ + define( 'WP_HOME', 'http://$1' );\\n\ +}\\n\ +if ( ! defined( 'WP_SITEURL' ) ) {\\n\ + define( 'WP_SITEURL', WP_HOME );\\n\ +}\\n\ +\\n\ +if ( ! defined( 'WP_CONTENT_DIR' ) ) {\\n\ + define( 'WP_CONTENT_DIR', __DIR__ . '/wp-content' );\\n\ +}\\n\ +if ( ! defined( 'WP_CONTENT_URL' ) ) {\\n\ + define( 'WP_CONTENT_URL', WP_HOME . '/wp-content' );\\n\ +}\\n\ +\\n\ +define( 'WP_DEBUG', true ); \\n\ +" + + +# If wp-cli is installed, try and update it +if [ -f /usr/local/bin/wp ] +then + wp cli update --stable --yes +fi + +# If WP is not installed then download it +if [ -d "$2/wp" ] +then + echo "WordPress is already installed." +else + sudo -i -u vagrant -- mkdir "$2/wp" + sudo -i -u vagrant -- wp core download --path="$2/wp" --version=latest + sudo -i -u vagrant -- cp -R $2/wp/wp-content $2/wp-content + sudo -i -u vagrant -- cp $2/wp/index.php $2/index.php + sudo -i -u vagrant -- sed -i "s|/wp-blog-header|/wp/wp-blog-header|g" $2/index.php + sudo -i -u vagrant -- echo "path: $2/wp/" > $2/wp-cli.yml + sudo -i -u vagrant -- wp config create --path=$2/wp/ --dbname=${1/./_} --dbuser=homestead --dbpass=secret --dbcollate=utf8_general_ci + sudo -i -u vagrant -- mv $2/wp/wp-config.php $2/wp-config.php + sudo -i -u vagrant -- sed -i 's|'"$wpConfigSearchStr"'|'"$wpConfigReplaceStr"'|g' $2/wp-config.php + sudo -i -u vagrant -- sed -i "s|define( 'ABSPATH', dirname( __FILE__ ) . '/' );|define( 'ABSPATH', __DIR__ . '/wp/' );|g" $2/wp-config.php + + echo "WordPress has been downloaded and config file has been generated, install it manually." +fi diff --git a/scripts/site-types/yii.sh b/scripts/site-types/yii.sh new file mode 100644 index 0000000..ea14782 --- /dev/null +++ b/scripts/site-types/yii.sh @@ -0,0 +1,104 @@ +#!/usr/bin/env bash + +declare -A params=$6 # Create an associative array +declare -A headers=${9} # Create an associative array +declare -A rewrites=${10} # Create an associative array +paramsTXT="" +if [ -n "$6" ]; then + for element in "${!params[@]}" + do + paramsTXT="${paramsTXT} + fastcgi_param ${element} ${params[$element]};" + done +fi +headersTXT="" +if [ -n "${9}" ]; then + for element in "${!headers[@]}" + do + headersTXT="${headersTXT} + add_header ${element} ${headers[$element]};" + done +fi +rewritesTXT="" +if [ -n "${10}" ]; then + for element in "${!rewrites[@]}" + do + rewritesTXT="${rewritesTXT} + location ~ ${element} { if (!-f \$request_filename) { return 301 ${rewrites[$element]}; } }" + done +fi + +if [ "$7" = "true" ] +then configureXhgui=" +location /xhgui { + try_files \$uri \$uri/ /xhgui/index.php?\$args; +} +" +else configureXhgui="" +fi + +block="server { + listen ${3:-80}; + listen ${4:-443} ssl http2; + server_name .$1; + root \"$2\"; + + index index.html index.htm index.php; + + charset utf-8; + client_max_body_size 100M; + + $rewritesTXT + + + location /index-test.php/ { + try_files \$uri \$uri/ /index-test.php\$is_args\$args; + $headersTXT + } + + location / { + try_files \$uri \$uri/ /index.php\$is_args\$args; + $headersTXT + } + + location ~ ^/assets/.*\.php\$ { + deny all; + } + + $configureXhgui + + location = /favicon.ico { access_log off; log_not_found off; } + location = /robots.txt { access_log off; log_not_found off; } + + access_log off; + error_log /var/log/nginx/$1-error.log error; + + sendfile off; + + location ~ \.php$ { + fastcgi_split_path_info ^(.+\.php)(/.+)$; + fastcgi_pass unix:/var/run/php/php$5-fpm.sock; + fastcgi_index index.php; + include fastcgi_params; + fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name; + $paramsTXT + try_files \$uri =404; + fastcgi_intercept_errors off; + fastcgi_buffer_size 16k; + fastcgi_buffers 4 16k; + fastcgi_connect_timeout 300; + fastcgi_send_timeout 300; + fastcgi_read_timeout 300; + } + + location ~* /\. { + deny all; + } + + ssl_certificate /etc/ssl/certs/$1.crt; + ssl_certificate_key /etc/ssl/certs/$1.key; +} +" + +echo "$block" > "/etc/nginx/sites-available/$1" +ln -fs "/etc/nginx/sites-available/$1" "/etc/nginx/sites-enabled/$1" diff --git a/scripts/site-types/zf.sh b/scripts/site-types/zf.sh new file mode 100644 index 0000000..235546f --- /dev/null +++ b/scripts/site-types/zf.sh @@ -0,0 +1,103 @@ +#!/usr/bin/env bash +# Script for setting up the web server for any of the following applications: +# +# - Apigility +# - Expressive +# - zend-mvc +# +# Type declaration in Homestead.yaml should be one of: +# +# - apigility +# - expressive +# - zf +# +# The first two are aliases for the last. + +declare -A params=$6 # Create an associative array +declare -A headers=${9} # Create an associative array +declare -A rewrites=${10} # Create an associative array +paramsTXT="" +if [ -n "$6" ]; then + for element in "${!params[@]}" + do + paramsTXT="${paramsTXT} + fastcgi_param ${element} ${params[$element]};" + done +fi +headersTXT="" +if [ -n "${9}" ]; then + for element in "${!headers[@]}" + do + headersTXT="${headersTXT} + add_header ${element} ${headers[$element]};" + done +fi +rewritesTXT="" +if [ -n "${10}" ]; then + for element in "${!rewrites[@]}" + do + rewritesTXT="${rewritesTXT} + location ~ ${element} { if (!-f \$request_filename) { return 301 ${rewrites[$element]}; } }" + done +fi + +if [ "$7" = "true" ] +then configureXhgui=" +location /xhgui { + try_files \$uri \$uri/ /xhgui/index.php?\$args; +} +" +else configureXhgui="" +fi + +block="server { + listen ${3:-80}; + listen ${4:-443} ssl http2; + server_name $1; + root \"$2\"; + + charset utf-8; + client_max_body_size 100M; + + index index.php index.html; + + $rewritesTXT + + location / { + try_files \$uri \$uri/ /index.php?\$query_string; + $headersTXT + } + + location = /favicon.ico { access_log off; log_not_found off; } + location = /robots.txt { access_log off; log_not_found off; } + + access_log off; + error_log /var/log/nginx/$1-ssl-error.log error; + + sendfile off; + + location ~ \.php$ { + fastcgi_split_path_info ^(.+\.php)(/.*)\$; + fastcgi_pass unix:/var/run/php/php$5-fpm.sock; + include fastcgi_params; + fastcgi_param SCRIPT_FILENAME \$document_root/\$fastcgi_script_name; + $paramsTXT + + fastcgi_intercept_errors off; + fastcgi_buffer_size 16k; + fastcgi_buffers 4 16k; + } + + location ~ /\.ht { + deny all; + } + + $configureXhgui + + ssl_certificate /etc/ssl/certs/$1.crt; + ssl_certificate_key /etc/ssl/certs/$1.key; +} +" + +echo "$block" > "/etc/nginx/sites-available/$1" +ln -fs "/etc/nginx/sites-available/$1" "/etc/nginx/sites-enabled/$1" diff --git a/src/MakeCommand.php b/src/MakeCommand.php new file mode 100644 index 0000000..07b27b8 --- /dev/null +++ b/src/MakeCommand.php @@ -0,0 +1,257 @@ +basePath = getcwd(); + $this->projectName = basename($this->basePath); + $this->defaultProjectName = $this->slug($this->projectName); + + $this + ->setName('make') + ->setDescription('Install Homestead into the current project') + ->addOption('name', null, InputOption::VALUE_OPTIONAL, 'The name of the virtual machine.', $this->defaultProjectName) + ->addOption('hostname', null, InputOption::VALUE_OPTIONAL, 'The hostname of the virtual machine.', $this->defaultProjectName) + ->addOption('ip', null, InputOption::VALUE_OPTIONAL, 'The IP address of the virtual machine.') + ->addOption('no-after', null, InputOption::VALUE_NONE, 'Determines if the after.sh file is not created.') + ->addOption('no-aliases', null, InputOption::VALUE_NONE, 'Determines if the aliases file is not created.') + ->addOption('example', null, InputOption::VALUE_NONE, 'Determines if a Homestead example file is created.') + ->addOption('json', null, InputOption::VALUE_NONE, 'Determines if the Homestead settings file will be in json format.'); + } + + /** + * Execute the command. + * + * @param \Symfony\Component\Console\Input\InputInterface $input + * @param \Symfony\Component\Console\Output\OutputInterface $output + * @return int + */ + public function execute(InputInterface $input, OutputInterface $output): int + { + if (! $this->vagrantfileExists()) { + $this->createVagrantfile(); + } + + if (! $input->getOption('no-aliases') && ! $this->aliasesFileExists()) { + $this->createAliasesFile(); + } + + if (! $input->getOption('no-after') && ! $this->afterShellScriptExists()) { + $this->createAfterShellScript(); + } + + $format = $input->getOption('json') ? 'json' : 'yaml'; + + if (! $this->settingsFileExists($format)) { + $this->createSettingsFile($format, [ + 'name' => $input->getOption('name'), + 'hostname' => $input->getOption('hostname'), + 'ip' => $input->getOption('ip'), + ]); + } + + if ($input->getOption('example') && ! $this->exampleSettingsExists($format)) { + $this->createExampleSettingsFile($format); + } + + $this->checkForDuplicateConfigs($output); + + $output->writeln('Homestead Installed!'); + + return 0; + } + + /** + * Determines if Homestead has been installed "per project". + * + * @return bool + */ + protected function isPerProjectInstallation() + { + return (bool) preg_match('/vendor\/laravel\/homestead/', __DIR__); + } + + /** + * Determine if the Vagrantfile exists. + * + * @return bool + */ + protected function vagrantfileExists() + { + return file_exists("{$this->basePath}/Vagrantfile"); + } + + /** + * Create a Vagrantfile. + * + * @return void + */ + protected function createVagrantfile() + { + copy(__DIR__.'/../resources/localized/Vagrantfile', "{$this->basePath}/Vagrantfile"); + } + + /** + * Determine if the aliases file exists. + * + * @return bool + */ + protected function aliasesFileExists() + { + return file_exists("{$this->basePath}/aliases"); + } + + /** + * Create aliases file. + * + * @return void + */ + protected function createAliasesFile() + { + if ($this->isPerProjectInstallation()) { + copy(__DIR__.'/../resources/localized/aliases', "{$this->basePath}/aliases"); + } else { + copy(__DIR__.'/../resources/aliases', "{$this->basePath}/aliases"); + } + } + + /** + * Determine if the after shell script exists. + * + * @return bool + */ + protected function afterShellScriptExists() + { + return file_exists("{$this->basePath}/after.sh"); + } + + /** + * Create the after shell script. + * + * @return void + */ + protected function createAfterShellScript() + { + copy(__DIR__.'/../resources/after.sh', "{$this->basePath}/after.sh"); + } + + /** + * Determine if the settings file exists. + * + * @param string $format + * @return bool + */ + protected function settingsFileExists($format) + { + return file_exists("{$this->basePath}/Homestead.{$format}"); + } + + /** + * Create the homestead settings file. + * + * @param string $format + * @param array $options + * @return void + */ + protected function createSettingsFile($format, $options) + { + $SettingsClass = ($format === 'json') ? JsonSettings::class : YamlSettings::class; + + $filename = $this->exampleSettingsExists($format) ? + "{$this->basePath}/Homestead.{$format}.example" : + __DIR__."/../resources/Homestead.{$format}"; + + $settings = $SettingsClass::fromFile($filename); + + if (! $this->exampleSettingsExists($format)) { + $settings->updateName($options['name']) + ->updateHostname($options['hostname']); + } + + $settings->updateIpAddress($options['ip']) + ->configureSites($this->projectName, $this->defaultProjectName) + ->configureSharedFolders($this->basePath, $this->defaultProjectName) + ->save("{$this->basePath}/Homestead.{$format}"); + } + + /** + * Determine if the example settings file exists. + * + * @param string $format + * @return bool + */ + protected function exampleSettingsExists($format) + { + return file_exists("{$this->basePath}/Homestead.{$format}.example"); + } + + /** + * Create the homestead settings example file. + * + * @param string $format + * @return void + */ + protected function createExampleSettingsFile($format) + { + copy("{$this->basePath}/Homestead.{$format}", "{$this->basePath}/Homestead.{$format}.example"); + } + + /** + * Checks if JSON and Yaml config files exist, if they do + * the user is warned that Yaml will be used before + * JSON until Yaml is renamed / removed. + * + * @param OutputInterface $output + * @return void + */ + protected function checkForDuplicateConfigs(OutputInterface $output) + { + if (file_exists("{$this->basePath}/Homestead.yaml") && file_exists("{$this->basePath}/Homestead.json")) { + $output->writeln( + 'WARNING! You have Homestead.yaml AND Homestead.json configuration files' + ); + $output->writeln( + 'WARNING! Homestead will not use Homestead.json until you rename or delete the Homestead.yaml' + ); + } + } +} diff --git a/src/Settings/HomesteadSettings.php b/src/Settings/HomesteadSettings.php new file mode 100644 index 0000000..be5c89c --- /dev/null +++ b/src/Settings/HomesteadSettings.php @@ -0,0 +1,193 @@ +attributes = $attributes; + } + + /** + * Create an instance from a file. + * + * @param string $filename + * @return static + */ + abstract public static function fromFile($filename); + + /** + * Save the homestead settings. + * + * @param string $filename + * @return void + */ + abstract public function save($filename); + + /** + * Update the homestead settings. + * + * @param array $attributes + * @return static + */ + public function update($attributes) + { + $this->attributes = array_merge($this->attributes, array_filter($attributes, function ($attribute) { + return ! is_null($attribute); + })); + + return $this; + } + + /** + * Update the virtual machine's name. + * + * @param string $name + * @return static + */ + public function updateName($name) + { + $this->update(['name' => $name]); + + return $this; + } + + /** + * Update the virtual machine's hostname. + * + * @param string $hostname + * @return static + */ + public function updateHostname($hostname) + { + $this->update(['hostname' => $hostname]); + + return $this; + } + + /** + * Update the virtual machine's IP address. + * + * @param string $ip + * @return static + */ + public function updateIpAddress($ip) + { + $this->update(['ip' => $ip]); + + return $this; + } + + /** + * Configure the nginx sites. + * + * @param string $projectName + * @param string $projectDirectory + * @return static + */ + public function configureSites($projectName, $projectDirectory) + { + $sites = [ + [ + 'map' => "{$projectName}.test", + 'to' => "/home/vagrant/{$projectDirectory}/public", + ], + ]; + + if (isset($this->attributes['sites']) && ! empty($this->attributes['sites'])) { + foreach ($this->attributes['sites'] as $index => $user_site) { + if (isset($user_site['map'])) { + $sites[$index]['map'] = $user_site['map']; + } + + if (isset($user_site['to'])) { + $sites[$index]['to'] = $user_site['to']; + } + + if (isset($user_site['type'])) { + $sites[$index]['type'] = $user_site['type']; + } + + if (isset($user_site['schedule'])) { + $sites[$index]['schedule'] = $user_site['schedule']; + } + + if (isset($user_site['php'])) { + $sites[$index]['php'] = $user_site['php']; + } + + if (isset($user_site['xhgui'])) { + $sites[$index]['xhgui'] = $user_site['xhgui']; + } + } + } + + $this->update(['sites' => $sites]); + + return $this; + } + + /** + * Configure the shared folders. + * + * @param string $projectPath + * @param string $projectDirectory + * @return static + */ + public function configureSharedFolders($projectPath, $projectDirectory) + { + $folders = [ + [ + 'map' => $projectPath, + 'to' => "/home/vagrant/{$projectDirectory}", + ], + ]; + + if (isset($this->attributes['folders']) && ! empty($this->attributes['folders'])) { + foreach ($this->attributes['folders'] as $index => $user_folder) { + if (isset($user_folder['map']) && empty($folders[$index]['map'])) { + $folders[$index]['map'] = dirname($projectPath).'/'.basename($user_folder['map']); + } + + if (isset($user_folder['to'])) { + $folders[$index]['to'] = $user_folder['to']; + } + + if (isset($user_folder['type'])) { + $folders[$index]['type'] = $user_folder['type']; + } + + if (isset($user_folder['options'])) { + $folders[$index]['options'] = $user_folder['options']; + } + } + } + + $this->update(['folders' => $folders]); + + return $this; + } + + /** + * Convert the homestead settings to an array. + * + * @return array + */ + public function toArray() + { + return $this->attributes; + } +} diff --git a/src/Settings/JsonSettings.php b/src/Settings/JsonSettings.php new file mode 100644 index 0000000..cf891d4 --- /dev/null +++ b/src/Settings/JsonSettings.php @@ -0,0 +1,28 @@ +attributes, JSON_PRETTY_PRINT)); + } +} diff --git a/src/Settings/YamlSettings.php b/src/Settings/YamlSettings.php new file mode 100644 index 0000000..d25924b --- /dev/null +++ b/src/Settings/YamlSettings.php @@ -0,0 +1,30 @@ +attributes, 3)); + } +} diff --git a/src/Traits/GeneratesSlugs.php b/src/Traits/GeneratesSlugs.php new file mode 100644 index 0000000..82638dd --- /dev/null +++ b/src/Traits/GeneratesSlugs.php @@ -0,0 +1,17 @@ +basePath = getcwd(); + $this->projectName = basename($this->basePath); + $this->defaultProjectName = $this->slug($this->projectName); + $this->featuresPath = getcwd().'/scripts/features'; + + $this + ->setName('wsl:apply-features') + ->setDescription('Configure features in WSL from Homestead configuration') + ->addOption('json', null, InputOption::VALUE_NONE, 'Determines if the Homestead settings file will be in json format.'); + } + + /** + * Execute the command. + * + * @param InputInterface $input + * @param OutputInterface $output + * @return int + */ + public function execute(InputInterface $input, OutputInterface $output): int + { + // Grab the current settings or create an example configuration + $format = $input->getOption('json') ? 'json' : 'yaml'; + $settings = $this->parseSettingsFromFile($format, []); + + foreach ($settings['features'] as $key => $feature) { + $feature_cmd = ''; + $feature_name = array_key_first($feature); + $feature_variables = $feature[$feature_name]; + + if ($feature_variables !== false) { + $feature_path = "{$this->featuresPath}/{$feature_name}.sh > ~/.homestead-features/{$feature_name}.log"; + // Prepare the feature variables if provided. + if (is_array($feature_variables)) { + $variables = join(' ', $feature_variables); + $feature_cmd = "sudo -E bash {$feature_path} {$variables}"; + } else { + $feature_cmd = "sudo -E bash {$feature_path}"; + } + shell_exec($feature_cmd); + $output->writeln("Command output can be found via: sudo cat ~/.homestead-features/{$feature_name}.log"); + } + } + + $output->writeln('WSL features have been configured!'); + + return 0; + } + + /** + * @param string $format + * @param array $options + * @return mixed + */ + protected function parseSettingsFromFile(string $format, array $options) + { + $SettingsClass = ($format === 'json') ? JsonSettings::class : YamlSettings::class; + $filename = __DIR__."/../Homestead.{$format}"; + + return $SettingsClass::fromFile($filename)->toArray(); + } +} diff --git a/src/WslCreateDatabaseCommand.php b/src/WslCreateDatabaseCommand.php new file mode 100644 index 0000000..0d64462 --- /dev/null +++ b/src/WslCreateDatabaseCommand.php @@ -0,0 +1,95 @@ +basePath = getcwd(); + $this->projectName = basename($this->basePath); + $this->defaultProjectName = $this->slug($this->projectName); + + $this + ->setName('wsl:create-databases') + ->setDescription('Create Databases in WSL from Homestead configuration') + ->addOption('json', null, InputOption::VALUE_NONE, 'Determines if the Homestead settings file will be in json format.'); + } + + /** + * Execute the command. + * + * @param InputInterface $input + * @param OutputInterface $output + * @return int + */ + public function execute(InputInterface $input, OutputInterface $output): int + { + // Grab the current settings or create an example configuration + $format = $input->getOption('json') ? 'json' : 'yaml'; + $settings = $this->parseSettingsFromFile($format, []); + + foreach ($settings['databases'] as $db) { + $create_cmd = ''; + $query = "CREATE DATABASE IF NOT EXISTS {$db} DEFAULT CHARACTER SET utf8mb4 DEFAULT COLLATE utf8mb4_unicode_ci"; + $create_cmd = 'mysql -u homestead -psecret -e "'.$query.'"'; + // run command to create the database + $shell_output = shell_exec($create_cmd); + if (! is_null($shell_output)) { + var_dump($shell_output); + } + } + $output->writeln('WSL Databases have been created!'); + + return 0; + } + + /** + * @param string $format + * @param array $options + * @return mixed + */ + protected function parseSettingsFromFile(string $format, array $options): mixed + { + $SettingsClass = ($format === 'json') ? JsonSettings::class : YamlSettings::class; + $filename = __DIR__."/../Homestead.{$format}"; + + return $SettingsClass::fromFile($filename)->toArray(); + } +} diff --git a/src/WslCreateSiteCommand.php b/src/WslCreateSiteCommand.php new file mode 100644 index 0000000..3a4c57e --- /dev/null +++ b/src/WslCreateSiteCommand.php @@ -0,0 +1,144 @@ +basePath = getcwd(); + $this->projectName = basename($this->basePath); + $this->defaultProjectName = $this->slug($this->projectName); + + $this + ->setName('wsl:create-sites') + ->setDescription('Create Sites in WSL from Homestead configuration') + ->addOption('json', null, InputOption::VALUE_NONE, 'Determines if the Homestead settings file will be in json format.'); + } + + /** + * Execute the command. + * + * @param InputInterface $input + * @param OutputInterface $output + * @return int + */ + public function execute(InputInterface $input, OutputInterface $output): int + { + // Remove any existing nginx sites + $shell_output = shell_exec('sudo rm -rf /etc/nginx/sites-available/*'); + if (! is_null($shell_output)) { + var_dump($shell_output); + } + + // Grab the current settings or create an example configuration + $format = $input->getOption('json') ? 'json' : 'yaml'; + $settings = $this->parseSettingsFromFile($format, []); + + foreach ($settings['wsl_sites'] as $key => $site) { + $type = $site['type'] ?? 'laravel'; + $create_cmd = ''; + $headers = false; + $rewrites = false; + // check & process headers + if (array_key_exists('headers', $site)) { + foreach ($site['headers'] as $header) { + $headers[$header['key']] = $header['value']; + } + } + // check & process rewrites + if (array_key_exists('rewrites', $site)) { + foreach ($site['rewrites'] as $rewrite) { + $rewrites[$rewrite['map']] = $rewrite['to']; + } + } + + $args = [ + $site['map'], // $0 + $site['to'], // $1 + $site['port'] ?? 80, // $2 + $site['ssl'] ?? 443, // $3 + $site['php'] ?? '8.0', // $4 + '', // $5 params + $site['xhgui'] ?? '', // $6 + $site['exec'] ?? false, // $7 + $headers, // $8 headers + $rewrites, // $9 rewrites + ]; + + $create_cmd = "sudo bash {$this->basePath}/scripts/site-types/{$type}.sh {$args[0]} \"{$args[1]}\""; + $create_cmd .= " {$args[2]} {$args[3]} {$args[4]} {$args[5]} {$args[6]} {$args[7]} {$args[8]} {$args[9]}"; + + // run command to create the site + $shell_output = shell_exec($create_cmd); + if (! is_null($shell_output)) { + var_dump($shell_output); + } + + // run command to create the site's SSL certificates + $cert_cmd = "sudo bash {$this->basePath}/scripts/create-certificate.sh {$site['map']}"; + $shell_output = shell_exec($cert_cmd); + if (! is_null($shell_output)) { + var_dump($shell_output); + } + + // Restart nginx + $shell_output = shell_exec('sudo service nginx restart'); + if (! is_null($shell_output)) { + var_dump($shell_output); + } + } + $output->writeln('WSL sites have been created!'); + + return 0; + } + + /** + * @param string $format + * @param array $options + * @return mixed + */ + protected function parseSettingsFromFile(string $format, array $options) + { + $SettingsClass = ($format === 'json') ? JsonSettings::class : YamlSettings::class; + $filename = __DIR__."/../Homestead.{$format}"; + + return $SettingsClass::fromFile($filename)->toArray(); + } +} diff --git a/tests/InitScriptTest.php b/tests/InitScriptTest.php new file mode 100644 index 0000000..977fc88 --- /dev/null +++ b/tests/InitScriptTest.php @@ -0,0 +1,62 @@ +assertEquals('Homestead initialized!', $output); + } + + /** @test */ + public function it_creates_a_homestead_yaml_file() + { + exec('bash init.sh'); + + $this->assertFileExists(self::$testDirectory.'/Homestead.yaml'); + } + + /** @test */ + public function it_creates_a_homestead_json_file_if_requested() + { + exec('bash init.sh json'); + + $this->assertFileExists(self::$testDirectory.'/Homestead.json'); + } + + /** @test */ + public function it_creates_an_after_shell_script() + { + exec('bash init.sh'); + + $this->assertFileExists(self::$testDirectory.'/after.sh'); + } + + /** @test */ + public function it_creates_an_aliases_file() + { + exec('bash init.sh'); + + $this->assertFileExists(self::$testDirectory.'/aliases'); + } +} diff --git a/tests/MakeCommandTest.php b/tests/MakeCommandTest.php new file mode 100644 index 0000000..46d834d --- /dev/null +++ b/tests/MakeCommandTest.php @@ -0,0 +1,541 @@ +execute([]); + + $this->assertStringContainsString('Homestead Installed!', $tester->getDisplay()); + } + + /** @test */ + public function it_returns_a_success_status_code() + { + $tester = new CommandTester(new MakeCommand()); + + $tester->execute([]); + + $this->assertEquals(0, $tester->getStatusCode()); + } + + /** @test */ + public function a_vagrantfile_is_created_if_it_does_not_exists() + { + $tester = new CommandTester(new MakeCommand()); + + $tester->execute([]); + + $this->assertFileExists(self::$testDirectory.DIRECTORY_SEPARATOR.'Vagrantfile'); + + $this->assertFileEquals( + self::$testDirectory.DIRECTORY_SEPARATOR.'Vagrantfile', + __DIR__.'/../resources/localized/Vagrantfile' + ); + } + + /** @test */ + public function an_existing_vagrantfile_is_not_overwritten() + { + file_put_contents( + self::$testDirectory.DIRECTORY_SEPARATOR.'Vagrantfile', + 'Already existing Vagrantfile' + ); + $tester = new CommandTester(new MakeCommand()); + + $tester->execute([]); + + $this->assertStringEqualsFile( + self::$testDirectory.DIRECTORY_SEPARATOR.'Vagrantfile', + 'Already existing Vagrantfile' + ); + } + + /** @test */ + public function an_aliases_file_is_created_by_default() + { + $tester = new CommandTester(new MakeCommand()); + + $tester->execute([]); + + $this->assertFileExists(self::$testDirectory.DIRECTORY_SEPARATOR.'aliases'); + + $this->assertFileEquals( + __DIR__.'/../resources/aliases', + self::$testDirectory.DIRECTORY_SEPARATOR.'aliases' + ); + } + + /** @test */ + public function a_localized_aliases_file_is_created_by_default_in_per_project_installations() + { + $this->markTestSkipped('Currently unable to emulate a per project installation'); + + $tester = new CommandTester(new MakeCommand()); + + $tester->execute([]); + + $this->assertFileExists(self::$testDirectory.DIRECTORY_SEPARATOR.'aliases'); + + $this->assertFileEquals( + __DIR__.'/../resources/localized/aliases', + self::$testDirectory.DIRECTORY_SEPARATOR.'aliases' + ); + } + + /** @test */ + public function an_existing_aliases_file_is_not_overwritten() + { + file_put_contents( + self::$testDirectory.DIRECTORY_SEPARATOR.'aliases', + 'Already existing aliases' + ); + $tester = new CommandTester(new MakeCommand()); + + $tester->execute([]); + + $this->assertFileExists(self::$testDirectory.DIRECTORY_SEPARATOR.'aliases'); + + $this->assertStringEqualsFile( + self::$testDirectory.DIRECTORY_SEPARATOR.'aliases', + 'Already existing aliases' + ); + } + + /** @test */ + public function an_aliases_file_is_not_created_if_it_is_explicitly_told_to() + { + $tester = new CommandTester(new MakeCommand()); + + $tester->execute([ + '--no-aliases' => true, + ]); + + $this->assertFileDoesNotExist(self::$testDirectory.DIRECTORY_SEPARATOR.'aliases'); + } + + /** @test */ + public function an_after_shell_script_is_created_by_default() + { + $tester = new CommandTester(new MakeCommand()); + + $tester->execute([]); + + $this->assertFileExists(self::$testDirectory.DIRECTORY_SEPARATOR.'after.sh'); + + $this->assertFileEquals( + __DIR__.'/../resources/after.sh', + self::$testDirectory.DIRECTORY_SEPARATOR.'after.sh' + ); + } + + /** @test */ + public function an_existing_after_shell_script_is_not_overwritten() + { + file_put_contents( + self::$testDirectory.DIRECTORY_SEPARATOR.'after.sh', + 'Already existing after.sh' + ); + $tester = new CommandTester(new MakeCommand()); + + $tester->execute([]); + + $this->assertFileExists(self::$testDirectory.DIRECTORY_SEPARATOR.'after.sh'); + + $this->assertStringEqualsFile( + self::$testDirectory.DIRECTORY_SEPARATOR.'after.sh', + 'Already existing after.sh' + ); + } + + /** @test */ + public function an_after_file_is_not_created_if_it_is_explicitly_told_to() + { + $tester = new CommandTester(new MakeCommand()); + + $tester->execute([ + '--no-after' => true, + ]); + + $this->assertFileDoesNotExist(self::$testDirectory.DIRECTORY_SEPARATOR.'after.sh'); + } + + /** @test */ + public function an_example_homestead_yaml_settings_is_created_if_requested() + { + $tester = new CommandTester(new MakeCommand()); + + $tester->execute([ + '--example' => true, + ]); + + $this->assertFileExists(self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.yaml.example'); + } + + /** @test */ + public function an_existing_example_homestead_yaml_settings_is_not_overwritten() + { + file_put_contents( + self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.yaml.example', + 'name: Already existing Homestead.yaml.example' + ); + $tester = new CommandTester(new MakeCommand()); + + $tester->execute([ + '--example' => true, + ]); + + $this->assertFileExists(self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.yaml.example'); + + $this->assertStringEqualsFile( + self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.yaml.example', + 'name: Already existing Homestead.yaml.example' + ); + } + + /** @test */ + public function an_example_homestead_json_settings_is_created_if_requested() + { + $tester = new CommandTester(new MakeCommand()); + + $tester->execute([ + '--example' => true, + '--json' => true, + ]); + + $this->assertFileExists(self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.json.example'); + } + + /** @test */ + public function an_existing_example_homestead_json_settings_is_not_overwritten() + { + file_put_contents( + self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.json.example', + '{"name": "Already existing Homestead.json.example"}' + ); + $tester = new CommandTester(new MakeCommand()); + + $tester->execute([ + '--example' => true, + '--json' => true, + ]); + + $this->assertFileExists(self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.json.example'); + + $this->assertStringEqualsFile( + self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.json.example', + '{"name": "Already existing Homestead.json.example"}' + ); + } + + /** @test */ + public function a_homestead_yaml_settings_is_created_if_it_is_does_not_exists() + { + $tester = new CommandTester(new MakeCommand()); + + $tester->execute([]); + + $this->assertFileExists(self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.yaml'); + } + + /** @test */ + public function an_existing_homestead_yaml_settings_is_not_overwritten() + { + file_put_contents( + self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.yaml', + 'name: Already existing Homestead.yaml' + ); + $tester = new CommandTester(new MakeCommand()); + + $tester->execute([]); + + $this->assertStringEqualsFile( + self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.yaml', + 'name: Already existing Homestead.yaml' + ); + } + + /** @test */ + public function a_homestead_json_settings_is_created_if_it_is_requested_and_it_does_not_exists() + { + $tester = new CommandTester(new MakeCommand()); + + $tester->execute([ + '--json' => true, + ]); + + $this->assertFileExists(self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.json'); + } + + /** @test */ + public function an_existing_homestead_json_settings_is_not_overwritten() + { + file_put_contents( + self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.json', + '{"message": "Already existing Homestead.json"}' + ); + $tester = new CommandTester(new MakeCommand()); + + $tester->execute([]); + + $this->assertStringEqualsFile( + self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.json', + '{"message": "Already existing Homestead.json"}' + ); + } + + /** @test */ + public function a_homestead_yaml_settings_is_created_from_a_homestead_yaml_example_if_it_exists() + { + file_put_contents( + self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.yaml.example', + "message: 'Already existing Homestead.yaml.example'" + ); + $tester = new CommandTester(new MakeCommand()); + + $tester->execute([]); + + $this->assertFileExists(self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.yaml'); + + $this->assertStringContainsString( + "message: 'Already existing Homestead.yaml.example'", + file_get_contents(self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.yaml') + ); + } + + /** @test */ + public function a_homestead_yaml_settings_created_from_a_homestead_yaml_example_can_override_the_ip_address() + { + copy( + __DIR__.'/../resources/Homestead.yaml', + self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.yaml.example' + ); + + $tester = new CommandTester(new MakeCommand()); + + $tester->execute([ + '--ip' => '192.168.10.11', + ]); + + $this->assertFileExists(self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.yaml'); + + $settings = Yaml::parse(file_get_contents(self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.yaml')); + + $this->assertEquals('192.168.10.11', $settings['ip']); + } + + /** @test */ + public function a_homestead_json_settings_is_created_from_a_homestead_json_example_if_is_requested_and_if_it_exists() + { + file_put_contents( + self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.json.example', + '{"message": "Already existing Homestead.json.example"}' + ); + $tester = new CommandTester(new MakeCommand()); + + $tester->execute([ + '--json' => true, + ]); + + $this->assertFileExists(self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.json'); + + $this->assertStringContainsString( + '"message": "Already existing Homestead.json.example"', + file_get_contents(self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.json') + ); + } + + /** @test */ + public function a_homestead_json_settings_created_from_a_homestead_json_example_can_override_the_ip_address() + { + copy( + __DIR__.'/../resources/Homestead.json', + self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.json.example' + ); + + $tester = new CommandTester(new MakeCommand()); + + $tester->execute([ + '--json' => true, + '--ip' => '192.168.10.11', + ]); + + $this->assertFileExists(self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.json'); + + $settings = json_decode(file_get_contents(self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.json'), true); + + $this->assertEquals('192.168.10.11', $settings['ip']); + } + + /** @test */ + public function a_homestead_yaml_settings_can_be_created_with_some_command_options_overrides() + { + $tester = new CommandTester(new MakeCommand()); + + $tester->execute([ + '--name' => 'test_name', + '--hostname' => 'test_hostname', + '--ip' => '127.0.0.1', + ]); + + $this->assertFileExists(self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.yaml'); + + $settings = Yaml::parse(file_get_contents(self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.yaml')); + + self::assertArraySubset([ + 'name' => 'test_name', + 'hostname' => 'test_hostname', + 'ip' => '127.0.0.1', + ], $settings); + } + + /** @test */ + public function a_homestead_json_settings_can_be_created_with_some_command_options_overrides() + { + $tester = new CommandTester(new MakeCommand()); + + $tester->execute([ + '--json' => true, + '--name' => 'test_name', + '--hostname' => 'test_hostname', + '--ip' => '127.0.0.1', + ]); + + $this->assertFileExists(self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.json'); + + $settings = json_decode(file_get_contents(self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.json'), true); + + self::assertArraySubset([ + 'name' => 'test_name', + 'hostname' => 'test_hostname', + 'ip' => '127.0.0.1', + ], $settings); + } + + /** @test */ + public function a_homestead_yaml_settings_has_preconfigured_sites() + { + $tester = new CommandTester(new MakeCommand()); + + $tester->execute([]); + + $this->assertFileExists(self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.yaml'); + + $settings = Yaml::parse(file_get_contents(self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.yaml')); + + $this->assertEquals([ + 'map' => 'homestead.test', + 'to' => '/home/vagrant/code/public', + ], $settings['sites'][0]); + } + + /** @test */ + public function a_homestead_json_settings_has_preconfigured_sites() + { + $tester = new CommandTester(new MakeCommand()); + + $tester->execute([ + '--json' => true, + ]); + + $this->assertFileExists(self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.json'); + + $settings = json_decode(file_get_contents(self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.json'), true); + + $this->assertEquals([ + 'map' => 'homestead.test', + 'to' => '/home/vagrant/code/public', + ], $settings['sites'][0]); + } + + /** @test */ + public function a_homestead_yaml_settings_has_preconfigured_shared_folders() + { + $tester = new CommandTester(new MakeCommand()); + + $tester->execute([]); + + $this->assertFileExists(self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.yaml'); + + $projectDirectory = basename(getcwd()); + $projectName = $this->slug($projectDirectory); + $settings = Yaml::parse(file_get_contents(self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.yaml')); + + // The "map" is not tested for equality because getcwd() (The method to obtain the project path) + // returns a directory in a different location that the test directory itself. + // + // Example: + // - project directory: /private/folders/... + // - test directory: /var/folders/... + // + // The curious thing is that both directories point to the same location. + // + $this->assertMatchesRegularExpression("/{$projectDirectory}/", $settings['folders'][0]['map']); + $this->assertEquals('/home/vagrant/code', $settings['folders'][0]['to']); + $this->assertEquals($projectName, $settings['name']); + $this->assertEquals($projectName, $settings['hostname']); + } + + /** @test */ + public function a_homestead_json_settings_has_preconfigured_shared_folders() + { + $tester = new CommandTester(new MakeCommand()); + + $tester->execute([ + '--json' => true, + ]); + + $this->assertFileExists(self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.json'); + + $projectDirectory = basename(getcwd()); + $projectName = $this->slug($projectDirectory); + $settings = json_decode(file_get_contents(self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.json'), true); + + // The "map" is not tested for equality because getcwd() (The method to obtain the project path) + // returns a directory in a different location that the test directory itself. + // + // Example: + // - project directory: /private/folders/... + // - test directory: /var/folders/... + // + // The curious thing is that both directories point to the same location. + // + $this->assertMatchesRegularExpression("/{$projectDirectory}/", $settings['folders'][0]['map']); + $this->assertEquals('/home/vagrant/code', $settings['folders'][0]['to']); + $this->assertEquals($projectName, $settings['name']); + $this->assertEquals($projectName, $settings['hostname']); + } + + /** @test */ + public function a_warning_is_thrown_if_the_homestead_settings_json_and_yaml_exists_at_the_same_time() + { + file_put_contents( + self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.json', + '{"message": "Already existing Homestead.json"}' + ); + file_put_contents( + self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.yaml', + "message: 'Already existing Homestead.yaml'" + ); + $tester = new CommandTester(new MakeCommand()); + + $tester->execute([]); + + $this->assertStringContainsString('WARNING! You have Homestead.yaml AND Homestead.json configuration files', $tester->getDisplay()); + } +} diff --git a/tests/Settings/JsonSettingsTest.php b/tests/Settings/JsonSettingsTest.php new file mode 100644 index 0000000..2600bee --- /dev/null +++ b/tests/Settings/JsonSettingsTest.php @@ -0,0 +1,200 @@ + '192.168.56.56', + 'memory' => '2048', + 'cpus' => '2', + ], $settings->toArray()); + } + + /** @test */ + public function it_can_be_saved_to_a_file() + { + $settings = new JsonSettings([ + 'ip' => '192.168.56.56', + 'memory' => '2048', + 'cpus' => 1, + ]); + $filename = self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.json'; + + $settings->save($filename); + + $this->assertFileExists($filename); + $attributes = json_decode(file_get_contents($filename), true); + self::assertArraySubset([ + 'ip' => '192.168.56.56', + 'memory' => '2048', + 'cpus' => '1', + ], $settings->toArray()); + } + + /** @test */ + public function it_can_update_its_attributes() + { + $settings = new JsonSettings([ + 'ip' => '192.168.56.56', + 'memory' => '2048', + 'cpus' => 1, + ]); + + $settings->update([ + 'ip' => '127.0.0.1', + 'memory' => '4096', + 'cpus' => 2, + ]); + + self::assertArraySubset([ + 'ip' => '127.0.0.1', + 'memory' => '4096', + 'cpus' => '2', + ], $settings->toArray()); + } + + /** @test */ + public function it_updates_only_not_null_attributes() + { + $settings = new JsonSettings([ + 'ip' => '192.168.56.56', + 'memory' => '2048', + 'cpus' => 1, + ]); + + $settings->update([ + 'ip' => null, + 'memory' => null, + 'cpus' => null, + ]); + + self::assertArraySubset([ + 'ip' => '192.168.56.56', + 'memory' => '2048', + 'cpus' => '1', + ], $settings->toArray()); + } + + /** @test */ + public function it_can_update_its_name() + { + $settings = new JsonSettings(['name' => 'Initial name']); + + $settings->updateName('Updated name'); + + $attributes = $settings->toArray(); + $this->assertEquals('Updated name', $attributes['name']); + } + + /** @test */ + public function it_can_update_its_hostname() + { + $settings = new JsonSettings(['name' => 'Initial ip address']); + + $settings->updateHostname('Updated hostname'); + + $attributes = $settings->toArray(); + $this->assertEquals('Updated hostname', $attributes['hostname']); + } + + /** @test */ + public function it_can_update_its_ip_address() + { + $settings = new JsonSettings(['name' => 'Initial ip address']); + + $settings->updateIpAddress('Updated ip address'); + + $attributes = $settings->toArray(); + $this->assertEquals('Updated ip address', $attributes['ip']); + } + + /** @test */ + public function it_can_configure_its_sites_from_existing_settings() + { + $settings = new JsonSettings([ + 'sites' => [ + [ + 'map' => 'homestead.test', + 'to' => '/home/vagrant/Laravel/public', + 'type' => 'laravel', + 'schedule' => true, + 'php' => '7.1', + ], + ], + ]); + + $settings->configureSites('test.com', 'test-com'); + + $attributes = $settings->toArray(); + $this->assertEquals([ + 'map' => 'homestead.test', + 'to' => '/home/vagrant/Laravel/public', + 'type' => 'laravel', + 'schedule' => true, + 'php' => '7.1', + ], $attributes['sites'][0]); + } + + /** @test */ + public function it_can_configure_its_sites_from_empty_settings() + { + $settings = new JsonSettings([]); + $settings->configureSites('test.com', 'test-com'); + + $attributes = $settings->toArray(); + $this->assertEquals([ + 'map' => 'test.com.test', + 'to' => '/home/vagrant/test-com/public', + ], $attributes['sites'][0]); + } + + /** @test */ + public function it_can_configure_its_shared_folders_from_existing_settings() + { + $settings = new JsonSettings([ + 'folders' => [ + [ + 'map' => '~/code', + 'to' => '/home/vagrant/code', + 'type' => 'nfs', + ], + ], + ]); + + $settings->configureSharedFolders('/a/path/for/project_name', 'project_name'); + + $attributes = $settings->toArray(); + $this->assertEquals([ + 'map' => '/a/path/for/project_name', + 'to' => '/home/vagrant/code', + 'type' => 'nfs', + ], $attributes['folders'][0]); + } + + /** @test */ + public function it_can_configure_its_shared_folders_from_empty_settings() + { + $settings = new JsonSettings([]); + + $settings->configureSharedFolders('/a/path/for/project_name', 'project_name'); + + $attributes = $settings->toArray(); + $this->assertEquals([ + 'map' => '/a/path/for/project_name', + 'to' => '/home/vagrant/project_name', + ], $attributes['folders'][0]); + } +} diff --git a/tests/Settings/YamlSettingsTest.php b/tests/Settings/YamlSettingsTest.php new file mode 100644 index 0000000..eafb98e --- /dev/null +++ b/tests/Settings/YamlSettingsTest.php @@ -0,0 +1,200 @@ + '192.168.56.56', + 'memory' => '2048', + 'cpus' => '2', + ], $settings->toArray()); + } + + /** @test */ + public function it_can_be_saved_to_a_file() + { + $settings = new YamlSettings([ + 'ip' => '192.168.56.56', + 'memory' => '2048', + 'cpus' => 1, + ]); + $filename = self::$testDirectory.DIRECTORY_SEPARATOR.'Homestead.yaml'; + + $settings->save($filename); + + $this->assertFileExists($filename); + self::assertArraySubset([ + 'ip' => '192.168.56.56', + 'memory' => '2048', + 'cpus' => '1', + ], Yaml::parse(file_get_contents($filename))); + } + + /** @test */ + public function it_can_update_its_attributes() + { + $settings = new YamlSettings([ + 'ip' => '192.168.56.56', + 'memory' => '2048', + 'cpus' => 1, + ]); + + $settings->update([ + 'ip' => '127.0.0.1', + 'memory' => '4096', + 'cpus' => 2, + ]); + + self::assertArraySubset([ + 'ip' => '127.0.0.1', + 'memory' => '4096', + 'cpus' => '2', + ], $settings->toArray()); + } + + /** @test */ + public function it_updates_only_not_null_attributes() + { + $settings = new YamlSettings([ + 'ip' => '192.168.56.56', + 'memory' => '2048', + 'cpus' => 1, + ]); + + $settings->update([ + 'ip' => null, + 'memory' => null, + 'cpus' => null, + ]); + + self::assertArraySubset([ + 'ip' => '192.168.56.56', + 'memory' => '2048', + 'cpus' => '1', + ], $settings->toArray()); + } + + /** @test */ + public function it_can_update_its_name() + { + $settings = new YamlSettings(['name' => 'Initial name']); + + $settings->updateName('Updated name'); + + $attributes = $settings->toArray(); + $this->assertEquals('Updated name', $attributes['name']); + } + + /** @test */ + public function it_can_update_its_hostname() + { + $settings = new YamlSettings(['name' => 'Initial ip address']); + + $settings->updateHostname('Updated hostname'); + + $attributes = $settings->toArray(); + $this->assertEquals('Updated hostname', $attributes['hostname']); + } + + /** @test */ + public function it_can_update_its_ip_address() + { + $settings = new YamlSettings(['name' => 'Initial ip address']); + + $settings->updateIpAddress('Updated ip address'); + + $attributes = $settings->toArray(); + $this->assertEquals('Updated ip address', $attributes['ip']); + } + + /** @test */ + public function it_can_configure_its_sites_from_existing_settings() + { + $settings = new YamlSettings([ + 'sites' => [ + [ + 'map' => 'homestead.test', + 'to' => '/home/vagrant/Laravel/public', + 'type' => 'laravel', + 'schedule' => true, + 'php' => '7.1', + ], + ], + ]); + + $settings->configureSites('test.com', 'test-com'); + + $attributes = $settings->toArray(); + $this->assertEquals([ + 'map' => 'homestead.test', + 'to' => '/home/vagrant/Laravel/public', + 'type' => 'laravel', + 'schedule' => true, + 'php' => '7.1', + ], $attributes['sites'][0]); + } + + /** @test */ + public function it_can_configure_its_sites_from_empty_settings() + { + $settings = new YamlSettings([]); + $settings->configureSites('test.com', 'test-com'); + + $attributes = $settings->toArray(); + $this->assertEquals([ + 'map' => 'test.com.test', + 'to' => '/home/vagrant/test-com/public', + ], $attributes['sites'][0]); + } + + /** @test */ + public function it_can_configure_its_shared_folders_from_existing_settings() + { + $settings = new YamlSettings([ + 'folders' => [ + [ + 'map' => '~/code', + 'to' => '/home/vagrant/code', + 'type' => 'nfs', + ], + ], + ]); + + $settings->configureSharedFolders('/a/path/for/project_name', 'project_name'); + + $attributes = $settings->toArray(); + $this->assertEquals([ + 'map' => '/a/path/for/project_name', + 'to' => '/home/vagrant/code', + 'type' => 'nfs', + ], $attributes['folders'][0]); + } + + /** @test */ + public function it_can_configure_its_shared_folders_from_empty_settings() + { + $settings = new YamlSettings([]); + + $settings->configureSharedFolders('/a/path/for/project_name', 'project_name'); + + $attributes = $settings->toArray(); + $this->assertEquals([ + 'map' => '/a/path/for/project_name', + 'to' => '/home/vagrant/project_name', + ], $attributes['folders'][0]); + } +} diff --git a/tests/Traits/GeneratesTestDirectory.php b/tests/Traits/GeneratesTestDirectory.php new file mode 100644 index 0000000..664d7fe --- /dev/null +++ b/tests/Traits/GeneratesTestDirectory.php @@ -0,0 +1,43 @@ +