Refactor templating and drupal 9 support
This commit is contained in:
parent
eabf4a2ec4
commit
f22e658183
16 changed files with 275 additions and 144 deletions
|
|
@ -3,7 +3,7 @@
|
|||
# This script will provision a new Drupal instance and make it available to apache.
|
||||
# Usage: sudo ./provision.sh $SLUG
|
||||
# In case the installation fails, it will bail out and leave you with an incomplete installation.
|
||||
# To delete an incomplete installation, use the ./remove.sh script, or try fixing the error manually.
|
||||
# To delete an incomplete installation, use the ./purge.sh script, or try fixing the error manually.
|
||||
set -e
|
||||
|
||||
# read the lib/shared.sh and read the slug argument.
|
||||
|
|
@ -13,6 +13,24 @@ source "$DIR/lib/lib.sh"
|
|||
require_slug_argument
|
||||
|
||||
|
||||
# A global flag 'USE_DRUPAL_9' can be set to enable drupal 9 support.
|
||||
# We print out the value of the flag here
|
||||
if [ -z "${USE_DRUPAL_9}" ]; then
|
||||
log_info " => Will install stable Drupal 8 (Use 'USE_DRUPAL_9=1' for Drupal 9). "
|
||||
else
|
||||
log_info " => Will install experimental Drupal 9 version ('USE_DRUPAL_9' was set)"
|
||||
fi
|
||||
|
||||
log_info " => Validing configuration"
|
||||
|
||||
# If the base directory already exists, we might have accidentally picked a name that already exists.
|
||||
# In that case we bail out for safety reasons.
|
||||
if [ -d "$BASE_DIR" ]; then
|
||||
echo "'$BASE_DIR' already exists. "
|
||||
echo "Aborting provisioning, please make sure you picked a unique name. "
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Check that the apache2 config is correct.
|
||||
# This is a sanity test so that we don't randomly fail later because of bad config.
|
||||
log_info " => Checking apache configuration"
|
||||
|
|
@ -29,27 +47,23 @@ sudo -u "$SYSTEM_USER" mkdir -p "$COMPOSER_DIR"
|
|||
cd "$COMPOSER_DIR"
|
||||
|
||||
# Write out a new apache configuration file into /etc/apache2/sites-available.
|
||||
# We will need to substiute in some configuration directories.
|
||||
# We will need to substitute in some configuration directories.
|
||||
log_info " => Writing new apache configuration file"
|
||||
cat << EOF >> "$APACHE_CONFIG_SITE_AVAILABLE"
|
||||
<VirtualHost *:80>
|
||||
DocumentRoot $WEB_DIR
|
||||
ServerName $INSTANCE_DOMAIN
|
||||
AssignUserId $SYSTEM_USER $SYSTEM_USER
|
||||
|
||||
<Directory $WEB_DIR>
|
||||
Options Indexes FollowSymLinks
|
||||
AllowOverride All
|
||||
Require all granted
|
||||
</Directory>
|
||||
ErrorLog \${APACHE_LOG_DIR}/error.log
|
||||
CustomLog \${APACHE_LOG_DIR}/access.log combined
|
||||
</VirtualHost>
|
||||
EOF
|
||||
load_template "wisski-site.conf" \
|
||||
"PUBLIC_PORT" "${PUBLIC_PORT}" \
|
||||
"WEB_DIR" "${WEB_DIR}" \
|
||||
"INSTANCE_DOMAIN" "${INSTANCE_DOMAIN}" \
|
||||
"SYSTEM_USER" "${SYSTEM_USER}" \
|
||||
"WISSKI_COMMON_PATH" "${WISSKI_COMMON_PATH}" \
|
||||
> "${APACHE_CONFIG_SITE_AVAILABLE}"
|
||||
|
||||
# Create a new composer project.
|
||||
log_info " => Creating composer project"
|
||||
composer create-project drupal/recommended-project .
|
||||
if [ -z "${USE_DRUPAL_9}" ]; then
|
||||
composer create-project 'drupal/recommended-project:^8.9.0' .
|
||||
else
|
||||
composer create-project 'drupal/recommended-project:^9.0.0' .
|
||||
fi
|
||||
composer require drush/drush
|
||||
|
||||
# Randomly generate the database name and user we will configure.
|
||||
|
|
@ -73,90 +87,38 @@ DRUPAL_PASS="$(randompw)"
|
|||
# Use 'drush' to run the site-installation.
|
||||
# Here we need to use the username, password and database creds we made above.
|
||||
log_info " => Running drupal installation scripts"
|
||||
drush site-install standard --yes --site-name=${INSTANCE_DOMAIN} --account-name=$DRUPAL_USER --account-pass=$DRUPAL_PASS --db-url=mysql://${MYSQL_USER}:${MYSQL_PASSWORD}@localhost/${MYSQL_DATABASE}
|
||||
drush site-install standard --yes --site-name=${INSTANCE_DOMAIN} \
|
||||
--account-name=$DRUPAL_USER --account-pass=$DRUPAL_PASS \
|
||||
--db-url=mysql://${MYSQL_USER}:${MYSQL_PASSWORD}@localhost/${MYSQL_DATABASE}
|
||||
|
||||
drupal_sites_permission_workaround
|
||||
|
||||
# Create a new repository for GraphDB.
|
||||
# First write out the configuration into a new directory.
|
||||
log_info " => Writing GraphDB configuration in temporary directory"
|
||||
tmpdir="$(mktemp -d)"
|
||||
cd "$tmpdir"
|
||||
cat << EOF > repo-config.ttl
|
||||
# Creates a new GraphDB repository with Wisski
|
||||
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
|
||||
@prefix rep: <http://www.openrdf.org/config/repository#>.
|
||||
@prefix sr: <http://www.openrdf.org/config/repository/sail#>.
|
||||
@prefix sail: <http://www.openrdf.org/config/sail#>.
|
||||
@prefix owlim: <http://www.ontotext.com/trree/owlim#>.
|
||||
|
||||
[] a rep:Repository ;
|
||||
rep:repositoryID "$GRAPHDB_REPO" ;
|
||||
rdfs:label "$INSTANCE_DOMAIN" ;
|
||||
rep:repositoryImpl [
|
||||
rep:repositoryType "graphdb:FreeSailRepository" ;
|
||||
sr:sailImpl [
|
||||
sail:sailType "graphdb:FreeSail" ;
|
||||
|
||||
owlim:owlim-license "" ;
|
||||
|
||||
owlim:base-URL "http://$INSTANCE_DOMAIN/owlim#" ;
|
||||
owlim:defaultNS "" ;
|
||||
owlim:entity-index-size "10000000" ;
|
||||
owlim:entity-id-size "32" ;
|
||||
owlim:imports "" ;
|
||||
owlim:repository-type "file-repository" ;
|
||||
owlim:ruleset "empty" ;
|
||||
owlim:storage-folder "storage" ;
|
||||
|
||||
owlim:enable-context-index "false" ;
|
||||
owlim:cache-memory "80m" ;
|
||||
owlim:tuple-index-memory "80m" ;
|
||||
|
||||
owlim:enablePredicateList "false" ;
|
||||
owlim:predicate-memory "0%" ;
|
||||
|
||||
owlim:fts-memory "0%" ;
|
||||
owlim:ftsIndexPolicy "never" ;
|
||||
owlim:ftsLiteralsOnly "true" ;
|
||||
|
||||
owlim:in-memory-literal-properties "false" ;
|
||||
owlim:enable-literal-index "true" ;
|
||||
owlim:index-compression-ratio "-1" ;
|
||||
|
||||
owlim:check-for-inconsistencies "false" ;
|
||||
owlim:disable-sameAs "false" ;
|
||||
owlim:enable-optimization "true" ;
|
||||
owlim:transaction-mode "safe" ;
|
||||
owlim:transaction-isolation "true" ;
|
||||
owlim:query-timeout "0" ;
|
||||
owlim:query-limit-results "0" ;
|
||||
owlim:throw-QueryEvaluationException-on-timeout "false" ;
|
||||
owlim:useShutdownHooks "true" ;
|
||||
owlim:read-only "false" ;
|
||||
owlim:nonInterpretablePredicates "http://www.w3.org/2000/01/rdf-schema#label;http://www.w3.org/1999/02/22-rdf-syntax-ns#type;http://www.ontotext.com/owlim/ces#gazetteerConfig;http://www.ontotext.com/owlim/ces#metadataConfig" ;
|
||||
]
|
||||
].
|
||||
EOF
|
||||
|
||||
# Create the configuration and use the configuration generated above.
|
||||
# Use the template for this.
|
||||
# TODO: Permissions for GraphdDB
|
||||
log_info "Generating new GraphDB repository '$GRAPHDB_REPO'"
|
||||
curl -X POST\
|
||||
http://127.0.0.1:7200/rest/repositories\
|
||||
-H 'Content-Type: multipart/form-data'\
|
||||
-F "config=@repo-config.ttl"
|
||||
log_info " => Generating new GraphDB repository '$GRAPHDB_REPO'"
|
||||
load_template "graphdb-repo.ttl" "GRAPHDB_REPO" "${GRAPHDB_REPO}" "INSTANCE_DOMAIN" "${INSTANCE_DOMAIN}" | \
|
||||
curl -X POST \
|
||||
http://127.0.0.1:7200/rest/repositories \
|
||||
-H 'Content-Type: multipart/form-data' \
|
||||
-F "config=@-"
|
||||
|
||||
# Remove the temporary directory.
|
||||
cd ..
|
||||
rm -rf "$tmpdir"
|
||||
# create a directory for ontologies.
|
||||
log_info " => Creating '$ONTOLOGY_DIR'"
|
||||
mkdir -p "$ONTOLOGY_DIR"
|
||||
|
||||
# Install the Wisski packages.
|
||||
log_info " => Installing Wisski packages"
|
||||
cd "$COMPOSER_DIR"
|
||||
|
||||
drupal_sites_permission_workaround
|
||||
composer require drupal/wisski
|
||||
|
||||
# install the development version when requested
|
||||
if [ -z "${USE_DRUPAL_9}" ]; then
|
||||
composer require 'drupal/wisski'
|
||||
else
|
||||
composer require 'drupal/wisski:2.x-dev'
|
||||
fi
|
||||
|
||||
drupal_sites_permission_workaround
|
||||
composer require drupal/inline_entity_form
|
||||
|
|
@ -170,13 +132,35 @@ composer require drupal/image_effects
|
|||
drupal_sites_permission_workaround
|
||||
composer require drupal/colorbox
|
||||
|
||||
log_info " => Installation is now technically complete. "
|
||||
log_ok "Some things below may fail. If that is the case, run: "
|
||||
log_ok "$ a2ensite \"${INSTANCE_DOMAIN}\""
|
||||
log_ok "$ systemctl reload apache2"
|
||||
log_ok "$ $SCRIPT_DIR/shell.sh $SLUG"
|
||||
log_ok "Your installation details are as follows"
|
||||
function printdetails() {
|
||||
echo "URL: http://$INSTANCE_DOMAIN"
|
||||
echo "Username: $DRUPAL_USER"
|
||||
echo "Password: $DRUPAL_PASS"
|
||||
log_info " => Your GraphDB details (for WissKI Salz) are: "
|
||||
echo "Read URL: http://127.0.0.1:7200/repositories/$GRAPHDB_REPO"
|
||||
echo "Write URL: http://127.0.0.1:7200/repositories/$GRAPHDB_REPO/statements"
|
||||
echo "Writable: yes"
|
||||
echo "Default Graph URI: http://$INSTANCE_DOMAIN/#"
|
||||
echo "Ontology Paths: (empty)"
|
||||
echo "SameAs property: http://www.w3.org/2002/07/owl#sameAs"
|
||||
}
|
||||
printdetails
|
||||
|
||||
# Enable the WissKi modules.
|
||||
# Enable the WissKI modules.
|
||||
log_info " => Enable Wisski modules"
|
||||
drush pm-enable --yes wisski_core wisski_linkblock wisski_pathbuilder wisski_adapter_sparql11_pb wisski_salz
|
||||
drupal_sites_permission_workaround
|
||||
|
||||
# TODO: Setup WissKi-Salz.
|
||||
# Because of a regresssion in EasyRDF and Tomcat, we need to manually patch EasyRDF
|
||||
EASYRDF_RESPONSE="$COMPOSER_DIR/vendor/easyrdf/easyrdf/lib/EasyRdf/Http/Response.php"
|
||||
log_info " => Patching '$EASYRDF_RESPONSE'"
|
||||
load_template "easyrdf.patch" | patch "$EASYRDF_RESPONSE"
|
||||
|
||||
# Finally enable the apache2 config.
|
||||
# And then reload to start serving it.
|
||||
|
|
@ -184,17 +168,6 @@ log_info " => Enabling and reloading apache configuration"
|
|||
a2ensite "${INSTANCE_DOMAIN}"
|
||||
systemctl reload apache2
|
||||
|
||||
# TODO: Certbot support
|
||||
|
||||
# and done!
|
||||
log_info " => Finished, your Drupal details are: "
|
||||
echo "URL: http://$INSTANCE_DOMAIN"
|
||||
echo "Username: $DRUPAL_USER"
|
||||
echo "Password: $DRUPAL_PASS"
|
||||
log_info " => Your GraphDB details (for WissKi Salz) are: "
|
||||
echo "Read URL: http://127.0.0.1:7200/repositories/$GRAPHDB_REPO"
|
||||
echo "Write URL: http://127.0.0.1:7200/repositories/$GRAPHDB_REPO/statements"
|
||||
echo "Writable: yes"
|
||||
echo "Default Graph URI: http://$INSTANCE_DOMAIN/owlim#"
|
||||
echo "Ontology Paths: (empty)"
|
||||
echo "SameAs property: http://www.w3.org/2002/07/owl#sameAs"
|
||||
printdetails
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue