2 # Cookbook Name:: civicrm
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 # http://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 node.default[:ssl][:certificates] = node[:ssl][:certificates] | ["osmfoundation"]
22 include_recipe "wordpress"
23 include_recipe "mysql"
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 "crm.osmfoundation.org" do
42 ssl_certificate "osmfoundation"
43 ssl_certificate_chain "startcom"
44 database_name "civicrm"
45 database_user "civicrm"
46 database_password database_password
49 wordpress_theme "osmblog-wp-theme" do
50 site "crm.osmfoundation.org"
51 repository "git://github.com/harry-wood/osmblog-wp-theme.git"
54 civicrm_version = node[:civicrm][:version]
55 civicrm_directory = "/srv/crm.osmfoundation.org/wp-content/plugins/civicrm"
57 directory "/opt/civicrm-#{civicrm_version}" do
63 remote_file "/var/cache/chef/civicrm-#{civicrm_version}-wordpress.zip" do
64 action :create_if_missing
65 source "http://downloads.sourceforge.net/project/civicrm/civicrm-stable/#{civicrm_version}/civicrm-#{civicrm_version}-wordpress.zip"
72 remote_file "/var/cache/chef/civicrm-#{civicrm_version}-l10n.tar.gz" do
73 action :create_if_missing
74 source "http://downloads.sourceforge.net/project/civicrm/civicrm-stable/#{civicrm_version}/civicrm-#{civicrm_version}-l10n.tar.gz"
81 execute "/var/cache/chef/civicrm-#{civicrm_version}-wordpress.zip" do
83 command "unzip -qq /var/cache/chef/civicrm-#{civicrm_version}-wordpress.zip"
84 cwd "/opt/civicrm-#{civicrm_version}"
87 subscribes :run, "remote_file[/var/cache/chef/civicrm-#{civicrm_version}-wordpress.zip]", :immediately
90 execute "/var/cache/chef/civicrm-#{civicrm_version}-l10n.tar.gz" do
92 command "tar -zxf /var/cache/chef/civicrm-#{civicrm_version}-l10n.tar.gz"
93 cwd "/opt/civicrm-#{civicrm_version}/civicrm"
96 subscribes :run, "remote_file[/var/cache/chef/civicrm-#{civicrm_version}-l10n.tar.gz]", :immediately
99 execute "/opt/civicrm-#{civicrm_version}/civicrm" do
101 command "rsync --archive --delete /opt/civicrm-#{civicrm_version}/civicrm/ #{civicrm_directory}"
104 subscribes :run, "execute[/var/cache/chef/civicrm-#{civicrm_version}-wordpress.zip]", :immediately
105 subscribes :run, "execute[/var/cache/chef/civicrm-#{civicrm_version}-l10n.tar.gz]", :immediately
108 directory "/srv/crm.osmfoundation.org/wp-content/plugins/files" do
114 settings = edit_file "#{civicrm_directory}/civicrm/templates/CRM/common/civicrm.settings.php.template" do |line|
115 line.gsub!(/%%cms%%/, "WordPress")
116 line.gsub!(/%%CMSdbUser%%/, "civicrm")
117 line.gsub!(/%%CMSdbPass%%/, database_password)
118 line.gsub!(/%%CMSdbHost%%/, "localhost")
119 line.gsub!(/%%CMSdbName%%/, "civicrm")
120 line.gsub!(/%%dbUser%%/, "civicrm")
121 line.gsub!(/%%dbPass%%/, database_password)
122 line.gsub!(/%%dbHost%%/, "localhost")
123 line.gsub!(/%%dbName%%/, "civicrm")
124 line.gsub!(/%%crmRoot%%/, "#{civicrm_directory}/civicrm/")
125 line.gsub!(/%%templateCompileDir%%/, "/srv/crm.osmfoundation.org/wp-content/plugins/files/civicrm/templates_c/")
126 line.gsub!(/%%baseURL%%/, "http://crm.osmfoundation.org/")
127 line.gsub!(/%%siteKey%%/, site_key)
132 file "#{civicrm_directory}/civicrm.settings.php" do
139 template "/etc/cron.d/osmf-crm" do
144 variables :directory => civicrm_directory, :passwords => passwords
147 template "/etc/cron.daily/osmf-crm-backup" do
148 source "backup.cron.erb"
152 variables :passwords => passwords