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] | ["crm.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 "crm.osmfoundation"
43 database_name "civicrm"
44 database_user "civicrm"
45 database_password database_password
48 wordpress_theme "osmblog-wp-theme" do
49 site "crm.osmfoundation.org"
50 repository "git://github.com/harry-wood/osmblog-wp-theme.git"
53 civicrm_version = node[:civicrm][:version]
54 civicrm_directory = "/srv/crm.osmfoundation.org/wp-content/plugins/civicrm"
56 directory "/opt/civicrm-#{civicrm_version}" do
62 remote_file "/var/cache/chef/civicrm-#{civicrm_version}-wordpress.zip" do
63 action :create_if_missing
64 source "http://downloads.sourceforge.net/project/civicrm/civicrm-stable/#{civicrm_version}/civicrm-#{civicrm_version}-wordpress.zip"
71 remote_file "/var/cache/chef/civicrm-#{civicrm_version}-l10n.tar.gz" do
72 action :create_if_missing
73 source "http://downloads.sourceforge.net/project/civicrm/civicrm-stable/#{civicrm_version}/civicrm-#{civicrm_version}-l10n.tar.gz"
80 execute "/var/cache/chef/civicrm-#{civicrm_version}-wordpress.zip" do
82 command "unzip -qq /var/cache/chef/civicrm-#{civicrm_version}-wordpress.zip"
83 cwd "/opt/civicrm-#{civicrm_version}"
86 subscribes :run, "remote_file[/var/cache/chef/civicrm-#{civicrm_version}-wordpress.zip]", :immediately
89 execute "/var/cache/chef/civicrm-#{civicrm_version}-l10n.tar.gz" do
91 command "tar -zxf /var/cache/chef/civicrm-#{civicrm_version}-l10n.tar.gz"
92 cwd "/opt/civicrm-#{civicrm_version}/civicrm"
95 subscribes :run, "remote_file[/var/cache/chef/civicrm-#{civicrm_version}-l10n.tar.gz]", :immediately
98 execute "/opt/civicrm-#{civicrm_version}/civicrm" do
100 command "rsync --archive --delete /opt/civicrm-#{civicrm_version}/civicrm/ #{civicrm_directory}"
103 subscribes :run, "execute[/var/cache/chef/civicrm-#{civicrm_version}-wordpress.zip]", :immediately
104 subscribes :run, "execute[/var/cache/chef/civicrm-#{civicrm_version}-l10n.tar.gz]", :immediately
107 directory "/srv/crm.osmfoundation.org/wp-content/plugins/files" do
113 settings = edit_file "#{civicrm_directory}/civicrm/templates/CRM/common/civicrm.settings.php.template" do |line|
114 line.gsub!(/%%cms%%/, "WordPress")
115 line.gsub!(/%%CMSdbUser%%/, "civicrm")
116 line.gsub!(/%%CMSdbPass%%/, database_password)
117 line.gsub!(/%%CMSdbHost%%/, "localhost")
118 line.gsub!(/%%CMSdbName%%/, "civicrm")
119 line.gsub!(/%%dbUser%%/, "civicrm")
120 line.gsub!(/%%dbPass%%/, database_password)
121 line.gsub!(/%%dbHost%%/, "localhost")
122 line.gsub!(/%%dbName%%/, "civicrm")
123 line.gsub!(/%%crmRoot%%/, "#{civicrm_directory}/civicrm/")
124 line.gsub!(/%%templateCompileDir%%/, "/srv/crm.osmfoundation.org/wp-content/plugins/files/civicrm/templates_c/")
125 line.gsub!(/%%baseURL%%/, "http://crm.osmfoundation.org/")
126 line.gsub!(/%%siteKey%%/, site_key)
131 file "#{civicrm_directory}/civicrm.settings.php" do
138 template "/etc/cron.d/osmf-crm" do
143 variables :directory => civicrm_directory, :passwords => passwords
146 template "/etc/cron.daily/osmf-crm-backup" do
147 source "backup.cron.erb"
151 variables :passwords => passwords