create-profile.sh: make detection of the default_content module more robust
[drupal-init-tools.git] / libexec / bootstrap.sh
1 #!/bin/bash
2 # Bootstrap a Drupal project
3 #
4 # Copyright (C) 2017  Antonio Ospite <ao2@ao2.it>
5 #
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 2 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
19 set -e
20
21 usage() {
22   cat <<EOF
23 usage: drin $(basename "$0" .sh) [--devel|--overwrite-profile|-h|--help]
24
25 Bootstrap a Drupal project, using settings from a 'bootstrap.conf' file.
26
27 Options:
28   --devel              install drupal/devel and use a settings.local.php file
29   --overwrite-profile  allow overwriting the installation profile of the site
30                        with a profile copied from the current working directory
31   -h, --help           display this usage message and exit
32
33 EOF
34 }
35
36 while [ $# -gt 0 ];
37 do
38   case "$1" in
39     -h|--help)
40       usage
41       exit 0
42       ;;
43     --devel)
44       DEVEL_MODE="true"
45       ;;
46     --overwrite-profile)
47       OVERWRITE_PROFILE="true"
48       ;;
49     -*)
50       echo "Error: Unknown option '${1}'" 1>&2
51       ;;
52   esac
53   shift
54 done
55
56 [ -f "bootstrap.conf" ] || { echo "Aborting, run this command from the Drupal project directory." 1>&2; exit 1; }
57
58 # shellcheck disable=SC1091
59 . bootstrap.conf
60
61 declare -p DB_NAME
62 declare -p DB_USER
63 declare -p DB_PASS
64
65 declare -p ACCOUNT_NAME
66 declare -p ACCOUNT_PASS
67 declare -p ACCOUNT_MAIL
68
69 declare -p SITE_NAME
70 declare -p SITE_MAIL
71 declare -p SITE_BASE_PATH
72
73 declare -p TRUSTED_HOSTS
74
75 declare -p WEB_SERVER_GROUP
76
77 [ "x$INSTALLATION_PROFILE" = "x" ] && { echo "INSTALLATION_PROFILE not specified, using the \"standard\" profile!"; INSTALLATION_PROFILE="standard"; }
78
79 if [ "$MYSQL_PASSWORDLESS_ACCESS" = true ];
80 then
81   MYSQL_SU_USER="${USER}"
82 else
83   # XXX Deprecate MYSQL_ROOT_PASSWORD, it will be removed eventually,
84   # but for now add some backwards compatibility mapping.
85   if [ "x$MYSQL_ROOT_PASSWORD" != "x" ];
86   then
87     echo "WARN: MYSQL_ROOT_PASSWORD is deprecated, use MYSQL_SU_USER and MYSQL_SU_PASSWORD" 1>&2
88     MYSQL_SU_USER="root"
89     MYSQL_SU_PASSWORD="$MYSQL_ROOT_PASSWORD"
90   fi
91
92   if [ "x$MYSQL_SU_USER" = "x" ];
93   then
94     echo "Aborting, for password regulated access specify MYSQL_SU_USER in bootstrap.conf" 1>&2
95     exit 1
96   fi
97
98   if [ "x$MYSQL_SU_PASSWORD" = "x" ];
99   then
100     read -r -s -p "MySQL password for \"${MYSQL_SU_USER}\": " MYSQL_SU_PASSWORD
101     echo
102   fi
103
104   DRUSH_DB_SU_CREDENTIALS=(--db-su-pw'='"${MYSQL_SU_PASSWORD}")
105 fi
106
107 DRUSH_DB_SU_CREDENTIALS+=(--db-su'='"${MYSQL_SU_USER}")
108
109 WEB_ROOT="${PWD}/web"
110
111 command -v composer &> /dev/null || { echo "Aborting, 'composer' not available." 1>&2; exit 1; }
112 command -v git &> /dev/null || { echo "Aborting, 'git' not available." 1>&2; exit 1; }
113
114 [ -d "$WEB_ROOT" ] || composer install
115
116 DRUSH="${PWD}/vendor/bin/drush"
117 DRUPAL_CONSOLE="${PWD}/vendor/bin/drupal"
118
119 [ -x "$DRUSH" ] || { echo "Aborting, '$DRUSH' not available." 1>&2; exit 1; }
120 [ -x "$DRUPAL_CONSOLE" ] || { echo "Aborting, '$DRUPAL_CONSOLE' not available." 1>&2; exit 1; }
121
122 # The following becomes unnecessary if the installation profile gets pulled in
123 # by composer.json, like suggested in
124 # https://github.com/drupal-composer/drupal-project/issues/249
125 if ! echo "$INSTALLATION_PROFILE" | grep -q -E "^(minimal|standard)$";
126 then
127   if [ -d "${WEB_ROOT}/profiles/${INSTALLATION_PROFILE}" ] && [ "$OVERWRITE_PROFILE" != "true" ];
128   then
129     echo "Installation profile '$INSTALLATION_PROFILE' already there." 1>&2
130     echo "Use --overwrite-profile to copy over it." 1>&2
131     exit 1
132   else
133     if [ -d "$INSTALLATION_PROFILE" ];
134     then
135       cp -a "$INSTALLATION_PROFILE" "${WEB_ROOT}/profiles"
136     else
137       echo "Local installation profile '$INSTALLATION_PROFILE' not found." 1>&2
138       echo "Cannot honour the --overwrite-profile option." 1>&2
139     fi
140   fi
141 fi
142
143 pushd "$WEB_ROOT"
144
145 # Update the install_profile setting if it's already there
146 if grep -q "^\\\$settings\['install_profile'\] =" sites/default/settings.php;
147 then
148   chmod 755 sites/default
149   chmod 644 sites/default/settings.php
150   sed -i -e "s/^\(\$settings\['install_profile'\]\) = '[^']*';/\1 = '$INSTALLATION_PROFILE';/g" sites/default/settings.php
151   chmod 444 sites/default/settings.php
152   chmod 555 sites/default
153 fi
154
155 $DRUSH --verbose --yes \
156   site-install \
157   "${DRUSH_DB_SU_CREDENTIALS[@]}" \
158   --db-url="mysql://${DB_USER}:${DB_PASS}@localhost/${DB_NAME}" \
159   --site-name="$SITE_NAME" \
160   --site-mail="$SITE_MAIL" \
161   --sites-subdir="default" \
162   --account-name="$ACCOUNT_NAME" \
163   --account-pass="$ACCOUNT_PASS" \
164   --account-mail="$ACCOUNT_MAIL" \
165   "$INSTALLATION_PROFILE"
166
167 if $DRUSH pm-list --type=module --field=name --status=enabled --pipe | grep -q "^locale$";
168 then
169   # This is necessary for multi-language sites, it fixes some issues like:
170   #   "The Translation source field needs to be installed."
171   $DRUSH --yes entity-updates
172
173   # Update translations of contrib modules
174   $DRUSH --yes locale-update
175 fi
176
177 # This fixes permissions when installing under $HOME/public_html/
178 chmod 775 sites/default/files
179 sudo chgrp -R "$WEB_SERVER_GROUP" sites/default/files
180
181 [ -d ../config/sync ] && sudo chgrp -R "$WEB_SERVER_GROUP" ../config/sync
182
183 # Enable clean URLs
184 sed -i "s@\(# \)\{0,1\}RewriteBase .*\$@RewriteBase ${SITE_BASE_PATH}@" .htaccess
185
186 chmod 755 sites/default
187 chmod 644 sites/default/settings.php
188
189 # Add some basic settings to settings.php
190 if ! grep -q "^\\\$settings\['trusted_host_patterns'\] =" sites/default/settings.php;
191 then
192   echo "\$settings['trusted_host_patterns'] = [" >> sites/default/settings.php
193   for host in "${TRUSTED_HOSTS[@]}"
194   do
195     echo "  '^${host}\$'," >> sites/default/settings.php
196   done
197   echo "];" >> sites/default/settings.php
198 fi
199
200 if [ "$DEVEL_MODE" = "true" ];
201 then
202   # NOTE: don't run composer under web/ but in the project dir
203   composer --working-dir=../ require drupal/devel
204   $DRUSH --yes en devel
205
206   if [ ! -e sites/default/settings.local.php ];
207   then
208     cp sites/example.settings.local.php sites/default/settings.local.php
209
210     # Disable some overly permissive settings
211     sed -i -e "s/^\(\$settings\['rebuild_access'\]\).*$/\1 = FALSE;/g" sites/default/settings.local.php
212     sed -i -e "s/^\(\$settings\['skip_permissions_hardening'\]\).*$/\1 = FALSE;/g" sites/default/settings.local.php
213
214     chmod 444 sites/default/settings.local.php
215   fi
216
217   if ! grep -q "^include \$app_root . '/' . \$site_path . '/settings.local.php';" sites/default/settings.php;
218   then
219     echo "include \$app_root . '/' . \$site_path . '/settings.local.php';" >> sites/default/settings.php
220   fi
221 fi
222
223 chmod 444 sites/default/settings.php
224 chmod 555 sites/default
225
226 # If using a git checkout of Drupal core, set up a diff alias.
227 #
228 # This is useful because the Automated Test infrastructure of drupal.org does
229 # not expect patches to be created from a split core directory.
230 if [ -d core/.git ];
231 then
232   git -C core/ config --local alias.core-diff "diff --src-prefix=a/core/ --dst-prefix=b/core/"
233   echo "Added a 'git core-diff' command to the drupal/core repository clone."
234   echo "This command helps creating core patches ready for upstream."
235 fi
236
237 popd