5 # Copyright:: 2011, OpenStreetMap Foundation
 
   7 # Licensed under the Apache License, Version 2.0 (the "License");
 
   8 # you may not use this file except in compliance with the License.
 
   9 # You may obtain a copy of the License at
 
  11 #     https://www.apache.org/licenses/LICENSE-2.0
 
  13 # Unless required by applicable law or agreed to in writing, software
 
  14 # distributed under the License is distributed on an "AS IS" BASIS,
 
  15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  16 # See the License for the specific language governing permissions and
 
  17 # limitations under the License.
 
  20 include_recipe "wordpress"
 
  21 include_recipe "mysql"
 
  32 apache_module "rewrite"
 
  34 cache_dir = Chef::Config[:file_cache_path]
 
  36 passwords = data_bag_item("civicrm", "passwords")
 
  37 wp2fa_encrypt_keys = data_bag_item("civicrm", "wp2fa_encrypt_keys")
 
  39 database_password = passwords["database"]
 
  40 site_key = passwords["site_key"]
 
  41 cred_keys = passwords["cred_keys"]
 
  42 sign_keys = passwords["sign_keys"]
 
  44 mysql_user "civicrm@localhost" do
 
  45   password database_password
 
  48 mysql_database "civicrm" do
 
  49   permissions "civicrm@localhost" => :all
 
  52 wordpress_site "supporting.openstreetmap.org" do
 
  55     donate.openstreetmap.org
 
  56     donate.openstreetmap.com
 
  57     donate.openstreetmap.net
 
  59     join.osmfoundation.org
 
  60     supporting.osmfoundation.org
 
  61     support.osmfoundation.org
 
  62     support.openstreetmap.org
 
  66   database_name "civicrm"
 
  67   database_user "civicrm"
 
  68   database_password database_password
 
  69   wp2fa_encrypt_key wp2fa_encrypt_keys["key"]
 
  70   fpm_prometheus_port 11301
 
  73 wordpress_plugin "civicrm-wp-piwik" do
 
  75   site "supporting.openstreetmap.org"
 
  78 wordpress_plugin "registration-honeypot" do
 
  79   site "supporting.openstreetmap.org"
 
  82 wordpress_plugin "contact-form-7" do
 
  83   site "supporting.openstreetmap.org"
 
  86 wordpress_plugin "civicrm-admin-utilities" do
 
  87   site "supporting.openstreetmap.org"
 
  90 wordpress_plugin "host-webfonts-local" do
 
  91   site "supporting.openstreetmap.org"
 
  94 civicrm_version = node[:civicrm][:version]
 
  95 civicrm_directory = "/srv/supporting.openstreetmap.org/wp-content/plugins/civicrm"
 
  97 directory "/opt/civicrm-#{civicrm_version}" do
 
 103 remote_file "#{cache_dir}/civicrm-#{civicrm_version}-wordpress.zip" do
 
 104   action :create_if_missing
 
 105   source "https://download.civicrm.org/civicrm-#{civicrm_version}-wordpress.zip"
 
 112 remote_file "#{cache_dir}/civicrm-#{civicrm_version}-l10n.tar.gz" do
 
 113   action :create_if_missing
 
 114   source "https://download.civicrm.org/civicrm-#{civicrm_version}-l10n.tar.gz"
 
 121 archive_file "#{cache_dir}/civicrm-#{civicrm_version}-wordpress.zip" do
 
 123   destination "/opt/civicrm-#{civicrm_version}"
 
 127   subscribes :extract, "remote_file[#{cache_dir}/civicrm-#{civicrm_version}-wordpress.zip]", :immediately
 
 130 archive_file "#{cache_dir}/civicrm-#{civicrm_version}-l10n.tar.gz" do
 
 132   destination "/opt/civicrm-#{civicrm_version}/civicrm"
 
 136   subscribes :extract, "remote_file[#{cache_dir}/civicrm-#{civicrm_version}-l10n.tar.gz]", :immediately
 
 139 execute "/opt/civicrm-#{civicrm_version}/civicrm" do
 
 141   command "rsync --archive --delete --delete-delay --delay-updates /opt/civicrm-#{civicrm_version}/civicrm/ #{civicrm_directory}"
 
 144   subscribes :run, "archive_file[#{cache_dir}/civicrm-#{civicrm_version}-wordpress.zip]", :immediately
 
 145   subscribes :run, "archive_file[#{cache_dir}/civicrm-#{civicrm_version}-l10n.tar.gz]", :immediately
 
 148 directory "/srv/supporting.openstreetmap.org/wp-content/uploads" do
 
 154 extensions_directory = "/srv/supporting.openstreetmap.org/wp-content/plugins/civicrm-extensions"
 
 156 directory extensions_directory do
 
 162 node[:civicrm][:extensions].each_value do |details|
 
 163   if details[:repository]
 
 164     git "#{extensions_directory}/#{details[:name]}" do
 
 166       repository details[:repository]
 
 167       revision details[:revision]
 
 172     remote_file "#{cache_dir}/#{details[:name]}.zip" do
 
 180     archive_file "#{cache_dir}/#{details[:name]}.zip" do
 
 182       destination "#{extensions_directory}/#{details[:name]}"
 
 187       subscribes :extract, "remote_file[#{cache_dir}/#{details[:name]}.zip]", :immediately
 
 192 settings = edit_file "#{civicrm_directory}/civicrm/templates/CRM/common/civicrm.settings.php.template" do |line|
 
 193   line.gsub!(/%%cms%%/, "WordPress")
 
 194   line.gsub!(/%%CMSdbUser%%/, "civicrm")
 
 195   line.gsub!(/%%CMSdbPass%%/, database_password)
 
 196   line.gsub!(/%%CMSdbHost%%/, "localhost")
 
 197   line.gsub!(/%%CMSdbName%%/, "civicrm")
 
 198   line.gsub!(/%%dbUser%%/, "civicrm")
 
 199   line.gsub!(/%%dbPass%%/, database_password)
 
 200   line.gsub!(/%%dbHost%%/, "localhost")
 
 201   line.gsub!(/%%dbName%%/, "civicrm")
 
 202   line.gsub!(/%%crmRoot%%/, "#{civicrm_directory}/civicrm/")
 
 203   line.gsub!(/%%templateCompileDir%%/, "/srv/supporting.openstreetmap.org/wp-content/uploads/civicrm/templates_c/")
 
 204   line.gsub!(/%%baseURL%%/, "http://supporting.openstreetmap.org/")
 
 205   line.gsub!(/%%siteKey%%/, site_key)
 
 206   line.gsub!(/%%credKeys%%/, cred_keys)
 
 207   line.gsub!(/%%signKeys%%/, sign_keys)
 
 208   line.gsub!(%r{// *define\('CIVICRM_CMSDIR', '/path/to/install/root/'\);}, "define('CIVICRM_CMSDIR', '/srv/supporting.openstreetmap.org');")
 
 213 file "#{civicrm_directory}/civicrm.settings.php" do
 
 220 systemd_service "osmf-crm-jobs" do
 
 221   description "Run CRM jobs"
 
 222   exec_start "/usr/bin/php #{civicrm_directory}/civicrm/bin/cli.php -s supporting.openstreetmap.org -u batch -p \"#{passwords['batch']}\" -e Job -a execute"
 
 224   sandbox :enable_network => true
 
 225   memory_deny_write_execute false
 
 226   restrict_address_families "AF_UNIX"
 
 227   read_write_paths "/srv/supporting.openstreetmap.org/wp-content/uploads/civicrm"
 
 230 systemd_timer "osmf-crm-jobs" do
 
 231   description "Run CRM jobs"
 
 233   on_unit_inactive_sec "15m"
 
 236 service "osmf-crm-jobs.timer" do
 
 237   action [:enable, :start]
 
 240 template "/etc/cron.daily/osmf-crm-backup" do
 
 241   source "backup.cron.erb"
 
 245   variables :passwords => passwords