0259f4e414fd1471793a2f6f05889a5c62843756
[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
68 # Add some patches, use sed until composer can do that from the command line
69 # (e.g. composer config ...)
70 sed -i -e 's@"extra": {@"extra": {\
71         "patches-file": "composer.patches.json",@' composer.json
72
73 cat > composer.patches.json <<EOF
74 {
75   "patches": {
76     "drupal/core": {
77       "drupal-do_not_disable_MultiViews_htaccess": "https://www.drupal.org/files/issues/drupal-do_not_disable_MultiViews_htaccess-2619250-24.patch"
78     }
79   }
80 }
81 EOF
82
83 # Apply the patches
84 composer update
85
86 # Add a template config file for the bootstrap script
87 cat > bootstrap.conf <<EOF
88 #DB_NAME="drupal_test_database"
89 #DB_USER="drupal_test_user"
90 #DB_PASS="drupal_test_password"
91
92 #ACCOUNT_NAME="admin"
93 #ACCOUNT_PASS="admin"
94 #ACCOUNT_MAIL="admin@example.com"
95
96 #SITE_NAME="example"
97 #SITE_MAIL="admin@example.com"
98
99 #SITE_BASE_PATH="/~${USER}/$(basename "${PWD}")/web"
100
101 #WEB_SERVER_GROUP="www-data"
102
103 #INSTALLATION_PROFILE="standard"
104
105 #TRUSTED_HOSTS=(
106 #  "localhost"
107 #  "ip4-localhost"
108 #  "ip6-localhost"
109 #  )
110
111 #MYSQL_ROOT_PASSWORD="password"
112 EOF
113
114 cat > .gitignore <<EOF
115 # Ignore the configuration for the bootstrap script
116 bootstrap.conf
117 EOF
118
119 echo
120 echo "Uncomment and customize the values in the bootstrap.conf file."
121
122 # Add some basic access control to protect sensitive files like bootstrap.conf
123 cat > .htaccess <<EOF
124 Options -Indexes
125 SetEnvIf Request_URI "/web(/.*)?$" access_granted
126 Order allow,deny
127 Allow from env=access_granted
128 EOF
129
130 echo
131 echo "Double check the provided .htaccess file to make sure that access to"
132 echo "'$PWD' is restricted by the web server."
133
134 popd