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 cache_dir = Chef::Config[:file_cache_path]
34 passwords = data_bag_item("civicrm", "passwords")
36 database_password = passwords["database"]
37 site_key = passwords["key"]
39 mysql_user "civicrm@localhost" do
40 password database_password
43 mysql_database "civicrm" do
44 permissions "civicrm@localhost" => :all
47 wordpress_site "join.osmfoundation.org" do
48 aliases "crm.osmfoundation.org"
49 database_name "civicrm"
50 database_user "civicrm"
51 database_password database_password
52 fpm_prometheus_port 11301
55 wordpress_theme "osmblog-wp-theme" do
56 site "join.osmfoundation.org"
57 repository "https://github.com/harry-wood/osmblog-wp-theme.git"
60 wordpress_plugin "registration-honeypot" do
61 site "join.osmfoundation.org"
64 wordpress_plugin "sitepress-multilingual-cms" do
65 site "join.osmfoundation.org"
66 repository "https://git.openstreetmap.org/private/sitepress-multilingual-cms.git"
67 not_if { ENV["TEST_KITCHEN"] }
70 wordpress_plugin "contact-form-7" do
71 site "join.osmfoundation.org"
74 wordpress_plugin "civicrm-admin-utilities" do
75 site "join.osmfoundation.org"
78 civicrm_version = node[:civicrm][:version]
79 civicrm_directory = "/srv/join.osmfoundation.org/wp-content/plugins/civicrm"
81 directory "/opt/civicrm-#{civicrm_version}" do
87 remote_file "#{cache_dir}/civicrm-#{civicrm_version}-wordpress.zip" do
88 action :create_if_missing
89 source "https://download.civicrm.org/civicrm-#{civicrm_version}-wordpress.zip"
96 remote_file "#{cache_dir}/civicrm-#{civicrm_version}-l10n.tar.gz" do
97 action :create_if_missing
98 source "https://download.civicrm.org/civicrm-#{civicrm_version}-l10n.tar.gz"
105 execute "#{cache_dir}/civicrm-#{civicrm_version}-wordpress.zip" do
107 command "unzip -o -qq #{cache_dir}/civicrm-#{civicrm_version}-wordpress.zip"
108 cwd "/opt/civicrm-#{civicrm_version}"
111 subscribes :run, "remote_file[#{cache_dir}/civicrm-#{civicrm_version}-wordpress.zip]", :immediately
114 execute "#{cache_dir}/civicrm-#{civicrm_version}-l10n.tar.gz" do
116 command "tar -zxf #{cache_dir}/civicrm-#{civicrm_version}-l10n.tar.gz"
117 cwd "/opt/civicrm-#{civicrm_version}/civicrm"
120 subscribes :run, "remote_file[#{cache_dir}/civicrm-#{civicrm_version}-l10n.tar.gz]", :immediately
123 execute "/opt/civicrm-#{civicrm_version}/civicrm" do
125 command "rsync --archive --delete /opt/civicrm-#{civicrm_version}/civicrm/ #{civicrm_directory}"
128 subscribes :run, "execute[#{cache_dir}/civicrm-#{civicrm_version}-wordpress.zip]", :immediately
129 subscribes :run, "execute[#{cache_dir}/civicrm-#{civicrm_version}-l10n.tar.gz]", :immediately
132 directory "/srv/join.osmfoundation.org/wp-content/uploads" do
138 extensions_directory = "/srv/join.osmfoundation.org/wp-content/plugins/civicrm-extensions"
140 directory extensions_directory do
146 node[:civicrm][:extensions].each_value do |details|
147 git "#{extensions_directory}/#{details[:name]}" do
149 repository details[:repository]
150 revision details[:revision]
156 settings = edit_file "#{civicrm_directory}/civicrm/templates/CRM/common/civicrm.settings.php.template" do |line|
157 line.gsub!(/%%cms%%/, "WordPress")
158 line.gsub!(/%%CMSdbUser%%/, "civicrm")
159 line.gsub!(/%%CMSdbPass%%/, database_password)
160 line.gsub!(/%%CMSdbHost%%/, "localhost")
161 line.gsub!(/%%CMSdbName%%/, "civicrm")
162 line.gsub!(/%%dbUser%%/, "civicrm")
163 line.gsub!(/%%dbPass%%/, database_password)
164 line.gsub!(/%%dbHost%%/, "localhost")
165 line.gsub!(/%%dbName%%/, "civicrm")
166 line.gsub!(/%%crmRoot%%/, "#{civicrm_directory}/civicrm/")
167 line.gsub!(/%%templateCompileDir%%/, "/srv/join.osmfoundation.org/wp-content/uploads/civicrm/templates_c/")
168 line.gsub!(/%%baseURL%%/, "http://join.osmfoundation.org/")
169 line.gsub!(/%%siteKey%%/, site_key)
170 line.gsub!(%r{// *define\('CIVICRM_CMSDIR', '/path/to/install/root/'\);}, "define('CIVICRM_CMSDIR', '/srv/join.osmfoundation.org');")
175 file "#{civicrm_directory}/civicrm.settings.php" do
185 command "php #{civicrm_directory}/civicrm/bin/cli.php -s join.osmfoundation.org -u batch -p \"#{passwords['batch']}\" -e Job -a execute 2>&1 | egrep -v '^PHP (Deprecated|Warning):'"
186 mailto "admins@openstreetmap.org"
189 template "/etc/cron.daily/osmf-crm-backup" do
190 source "backup.cron.erb"
194 variables :passwords => passwords