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 include_recipe "wordpress"
21 include_recipe "mysql"
25 passwords = data_bag_item("civicrm", "passwords")
27 database_password = passwords["database"]
28 admin_password = passwords["admin"]
29 site_key = passwords["key"]
31 mysql_user "civicrm@localhost" do
32 password database_password
35 mysql_database "civicrm" do
36 permissions "civicrm@localhost" => :all
39 wordpress_site "crm.osmfoundation.org" do
41 database_name "civicrm"
42 database_user "civicrm"
43 database_password database_password
46 civicrm_version = node[:civicrm][:version]
47 civicrm_directory = "/srv/crm.osmfoundation.org/wp-content/plugins/civicrm"
49 directory "/opt/civicrm-#{civicrm_version}" do
55 remote_file "/var/cache/chef/civicrm-#{civicrm_version}-wordpress.zip" do
56 action :create_if_missing
57 source "http://downloads.sourceforge.net/project/civicrm/civicrm-stable/#{civicrm_version}/civicrm-#{civicrm_version}-wordpress.zip"
64 remote_file "/var/cache/chef/civicrm-#{civicrm_version}-l10n.tar.gz" do
65 action :create_if_missing
66 source "http://downloads.sourceforge.net/project/civicrm/civicrm-stable/#{civicrm_version}/civicrm-#{civicrm_version}-l10n.tar.gz"
73 execute "/var/cache/chef/civicrm-#{civicrm_version}-wordpress.zip" do
75 command "unzip -qq /var/cache/chef/civicrm-#{civicrm_version}-wordpress.zip"
76 cwd "/opt/civicrm-#{civicrm_version}"
79 subscribes :run, "remote_file[/var/cache/chef/civicrm-#{civicrm_version}-wordpress.zip]", :immediately
82 execute "/var/cache/chef/civicrm-#{civicrm_version}-l10n.tar.gz" do
84 command "tar -zxf /var/cache/chef/civicrm-#{civicrm_version}-l10n.tar.gz"
85 cwd "/opt/civicrm-#{civicrm_version}/civicrm"
88 subscribes :run, "remote_file[/var/cache/chef/civicrm-#{civicrm_version}-l10n.tar.gz]", :immediately
91 execute "/opt/civicrm-#{civicrm_version}/civicrm" do
93 command "rsync --archive --delete /opt/civicrm-#{civicrm_version}/civicrm/ #{civicrm_directory}"
96 subscribes :run, "execute[/var/cache/chef/civicrm-#{civicrm_version}-wordpress.zip]", :immediately
97 subscribes :run, "execute[/var/cache/chef/civicrm-#{civicrm_version}-l10n.tar.gz]", :immediately
100 directory "/srv/crm.osmfoundation.org/wp-content/plugins/files" do
106 settings = edit_file "#{civicrm_directory}/civicrm/templates/CRM/common/civicrm.settings.php.template" do |line|
107 line.gsub!(/%%cms%%/, "WordPress")
108 line.gsub!(/%%CMSdbUser%%/, "civicrm")
109 line.gsub!(/%%CMSdbPass%%/, database_password)
110 line.gsub!(/%%CMSdbHost%%/, "localhost")
111 line.gsub!(/%%CMSdbName%%/, "civicrm")
112 line.gsub!(/%%dbUser%%/, "civicrm")
113 line.gsub!(/%%dbPass%%/, database_password)
114 line.gsub!(/%%dbHost%%/, "localhost")
115 line.gsub!(/%%dbName%%/, "civicrm")
116 line.gsub!(/%%crmRoot%%/, "#{civicrm_directory}/civicrm/")
117 line.gsub!(/%%templateCompileDir%%/, "/srv/crm.osmfoundation.org/wp-content/plugins/files/civicrm/templates_c/")
118 line.gsub!(/%%baseURL%%/, "http://crm.osmfoundation.org/")
119 line.gsub!(/%%siteKey%%/, site_key)
124 file "#{civicrm_directory}/civicrm.settings.php" do
131 template "/etc/cron.d/osmf-crm" do
136 variables :directory => civicrm_directory, :passwords => passwords
139 template "/etc/cron.daily/osmf-crm-backup" do
140 source "backup.cron.erb"
144 variables :passwords => passwords