bootstrap.sh: allow explicit overwriting the current installation profile
[drupal-init-tools.git] / libexec / new.sh
1 #!/bin/bash
2 # Create a new 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) [-h|--help] <destdir>
24
25 Create a new Drupal project in the 'destdir' directory.
26
27 Options:
28   -h, --help          display this usage message and exit
29 EOF
30 }
31
32 while [ $# -gt 0 ];
33 do
34   case "$1" in
35     -h|--help)
36       usage
37       exit 0
38       ;;
39     -*)
40       echo "Error: Unknown option '${1}'" 1>&2
41       ;;
42     *)
43       break
44       ;;
45   esac
46   shift
47 done
48
49 [ "x$1" = "x" ] && { usage 1>&2; exit 1; }
50
51 [ -d "$1" ] && { echo "Aborting, project directory already exists." 1>&2; exit 1; }
52
53 DESTDIR="$1"
54
55 command -v composer &> /dev/null || { echo "Aborting, 'composer' not available." 1>&2; exit 1; }
56 command -v git &> /dev/null || { echo "Aborting, 'git' not available." 1>&2; exit 1; }
57
58 # Create a new project keeping the VCS metadata so it's easier to bring in
59 # updates to drupal-composer/drupal-project itself.
60 echo "Creating a new Drupal project..."
61 composer create-project drupal-composer/drupal-project:8.x-dev@dev "$DESTDIR" --keep-vcs --stability dev --no-interaction
62
63 pushd "$DESTDIR"
64
65 git remote rename origin upstream
66 git checkout -b master
67 echo >> .gitignore
68 echo "# Ignore the configuration for the bootstrap script" >> .gitignore
69 echo "bootstrap.conf" >> .gitignore
70
71 # Add some patches, use sed until composer can do that from the command line
72 # (e.g. composer config ...)
73 sed -i -e 's@"extra": {@"extra": {\
74         "patches-file": "composer.patches.json",@' composer.json
75
76 cat > composer.patches.json <<EOF
77 {
78   "patches": {
79     "drupal/core": {
80       "drupal-do_not_disable_MultiViews_htaccess": "https://www.drupal.org/files/issues/drupal-do_not_disable_MultiViews_htaccess-2619250-24.patch"
81     }
82   }
83 }
84 EOF
85
86 # Apply the patches
87 composer update
88
89 # Add a template config file for the bootstrap script
90 cat > bootstrap.conf <<EOF
91 #DB_NAME="drupal_test_database"
92 #DB_USER="drupal_test_user"
93 #DB_PASS="drupal_test_password"
94
95 #ACCOUNT_NAME="admin"
96 #ACCOUNT_PASS="admin"
97 #ACCOUNT_MAIL="admin@example.com"
98
99 #SITE_NAME="example"
100 #SITE_MAIL="admin@example.com"
101
102 #SITE_BASE_PATH="/~${USER}/$(basename "${PWD}")/web"
103
104 #WEB_SERVER_GROUP="www-data"
105
106 #INSTALLATION_PROFILE="standard"
107
108 #TRUSTED_HOSTS=(
109 #  "localhost"
110 #  "ip4-localhost"
111 #  "ip6-localhost"
112 #  )
113
114 #MYSQL_ROOT_PASSWORD="password"
115 EOF
116
117 echo
118 echo "Uncomment and customize the values in the bootstrap.conf file."
119 echo "Make sure that access to '$PWD' is restricted by the web server."
120
121 popd