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"
25 cache_dir = Chef::Config[:file_cache_path]
27 passwords = data_bag_item("civicrm", "passwords")
29 database_password = passwords["database"]
30 site_key = passwords["key"]
32 mysql_user "civicrm@localhost" do
33 password database_password
36 mysql_database "civicrm" do
37 permissions "civicrm@localhost" => :all
40 wordpress_site "join.osmfoundation.org" do
41 aliases "crm.osmfoundation.org"
42 database_name "civicrm"
43 database_user "civicrm"
44 database_password database_password
47 wordpress_theme "osmblog-wp-theme" do
48 site "join.osmfoundation.org"
49 repository "git://github.com/harry-wood/osmblog-wp-theme.git"
52 wordpress_plugin "registration-honeypot" do
53 site "join.osmfoundation.org"
56 wordpress_plugin "sitepress-multilingual-cms" do
57 site "join.osmfoundation.org"
58 repository "https://git.openstreetmap.org/private/sitepress-multilingual-cms.git"
61 wordpress_plugin "contact-form-7" do
62 site "join.osmfoundation.org"
65 civicrm_version = node[:civicrm][:version]
66 civicrm_directory = "/srv/join.osmfoundation.org/wp-content/plugins/civicrm"
68 directory "/opt/civicrm-#{civicrm_version}" do
74 remote_file "#{cache_dir}/civicrm-#{civicrm_version}-wordpress.zip" do
75 action :create_if_missing
76 source "https://download.civicrm.org/civicrm-#{civicrm_version}-wordpress.zip"
83 remote_file "#{cache_dir}/civicrm-#{civicrm_version}-l10n.tar.gz" do
84 action :create_if_missing
85 source "https://download.civicrm.org/civicrm-#{civicrm_version}-l10n.tar.gz"
92 execute "#{cache_dir}/civicrm-#{civicrm_version}-wordpress.zip" do
94 command "unzip -qq #{cache_dir}/civicrm-#{civicrm_version}-wordpress.zip"
95 cwd "/opt/civicrm-#{civicrm_version}"
98 subscribes :run, "remote_file[#{cache_dir}/civicrm-#{civicrm_version}-wordpress.zip]", :immediately
101 execute "#{cache_dir}/civicrm-#{civicrm_version}-l10n.tar.gz" do
103 command "tar -zxf #{cache_dir}/civicrm-#{civicrm_version}-l10n.tar.gz"
104 cwd "/opt/civicrm-#{civicrm_version}/civicrm"
107 subscribes :run, "remote_file[#{cache_dir}/civicrm-#{civicrm_version}-l10n.tar.gz]", :immediately
110 execute "/opt/civicrm-#{civicrm_version}/civicrm" do
112 command "rsync --archive --delete /opt/civicrm-#{civicrm_version}/civicrm/ #{civicrm_directory}"
115 subscribes :run, "execute[#{cache_dir}/civicrm-#{civicrm_version}-wordpress.zip]", :immediately
116 subscribes :run, "execute[#{cache_dir}/civicrm-#{civicrm_version}-l10n.tar.gz]", :immediately
119 directory "/srv/join.osmfoundation.org/wp-content/plugins/files" do
125 extensions_directory = "/srv/join.osmfoundation.org/wp-content/plugins/civicrm-extensions"
127 directory extensions_directory do
133 node[:civicrm][:extensions].each_value do |details|
134 git "#{extensions_directory}/#{details[:name]}" do
136 repository details[:repository]
137 revision details[:revision]
143 settings = edit_file "#{civicrm_directory}/civicrm/templates/CRM/common/civicrm.settings.php.template" do |line|
144 line.gsub!(/%%cms%%/, "WordPress")
145 line.gsub!(/%%CMSdbUser%%/, "civicrm")
146 line.gsub!(/%%CMSdbPass%%/, database_password)
147 line.gsub!(/%%CMSdbHost%%/, "localhost")
148 line.gsub!(/%%CMSdbName%%/, "civicrm")
149 line.gsub!(/%%dbUser%%/, "civicrm")
150 line.gsub!(/%%dbPass%%/, database_password)
151 line.gsub!(/%%dbHost%%/, "localhost")
152 line.gsub!(/%%dbName%%/, "civicrm")
153 line.gsub!(/%%crmRoot%%/, "#{civicrm_directory}/civicrm/")
154 line.gsub!(/%%templateCompileDir%%/, "/srv/join.osmfoundation.org/wp-content/plugins/files/civicrm/templates_c/")
155 line.gsub!(/%%baseURL%%/, "http://join.osmfoundation.org/")
156 line.gsub!(/%%siteKey%%/, site_key)
157 line.gsub!(%r{// *(.*'ext_repo_url'.*)$}, "\\1")
158 line.gsub!(%r{// *define\('CIVICRM_CMSDIR', '/path/to/install/root/'\);}, "define('CIVICRM_CMSDIR', '/srv/join.osmfoundation.org');")
163 file "#{civicrm_directory}/civicrm.settings.php" do
170 template "/etc/cron.d/osmf-crm" do
175 variables :directory => civicrm_directory, :passwords => passwords
178 template "/etc/cron.daily/osmf-crm-backup" do
179 source "backup.cron.erb"
183 variables :passwords => passwords