]> git.openstreetmap.org Git - chef.git/blob - cookbooks/civicrm/recipes/default.rb
Remove arcfour (RC4) cipher no longer available in newer OpenSSH
[chef.git] / cookbooks / civicrm / recipes / default.rb
1 #
2 # Cookbook Name:: civicrm
3 # Recipe:: default
4 #
5 # Copyright 2011, OpenStreetMap Foundation
6 #
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
10 #
11 #     http://www.apache.org/licenses/LICENSE-2.0
12 #
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.
18 #
19
20 include_recipe "wordpress"
21 include_recipe "mysql"
22
23 package "wkhtmltopdf"
24
25 passwords = data_bag_item("civicrm", "passwords")
26
27 database_password = passwords["database"]
28 site_key = passwords["key"]
29
30 mysql_user "civicrm@localhost" do
31   password database_password
32 end
33
34 mysql_database "civicrm" do
35   permissions "civicrm@localhost" => :all
36 end
37
38 wordpress_site "join.osmfoundation.org" do
39   aliases "crm.osmfoundation.org"
40   ssl_enabled true
41   database_name "civicrm"
42   database_user "civicrm"
43   database_password database_password
44 end
45
46 wordpress_theme "osmblog-wp-theme" do
47   site "join.osmfoundation.org"
48   repository "git://github.com/harry-wood/osmblog-wp-theme.git"
49 end
50
51 wordpress_plugin "registration-honeypot" do
52   site "join.osmfoundation.org"
53 end
54
55 civicrm_version = node[:civicrm][:version]
56 civicrm_directory = "/srv/join.osmfoundation.org/wp-content/plugins/civicrm"
57
58 directory "/opt/civicrm-#{civicrm_version}" do
59   owner "wordpress"
60   group "wordpress"
61   mode 0755
62 end
63
64 remote_file "/var/cache/chef/civicrm-#{civicrm_version}-wordpress.zip" do
65   action :create_if_missing
66   source "http://downloads.sourceforge.net/project/civicrm/civicrm-stable/#{civicrm_version}/civicrm-#{civicrm_version}-wordpress.zip"
67   owner "wordpress"
68   group "wordpress"
69   mode 0644
70   backup false
71 end
72
73 remote_file "/var/cache/chef/civicrm-#{civicrm_version}-l10n.tar.gz" do
74   action :create_if_missing
75   source "http://downloads.sourceforge.net/project/civicrm/civicrm-stable/#{civicrm_version}/civicrm-#{civicrm_version}-l10n.tar.gz"
76   owner "wordpress"
77   group "wordpress"
78   mode 0644
79   backup false
80 end
81
82 execute "/var/cache/chef/civicrm-#{civicrm_version}-wordpress.zip" do
83   action :nothing
84   command "unzip -qq /var/cache/chef/civicrm-#{civicrm_version}-wordpress.zip"
85   cwd "/opt/civicrm-#{civicrm_version}"
86   user "wordpress"
87   group "wordpress"
88   subscribes :run, "remote_file[/var/cache/chef/civicrm-#{civicrm_version}-wordpress.zip]", :immediately
89 end
90
91 execute "/var/cache/chef/civicrm-#{civicrm_version}-l10n.tar.gz" do
92   action :nothing
93   command "tar -zxf /var/cache/chef/civicrm-#{civicrm_version}-l10n.tar.gz"
94   cwd "/opt/civicrm-#{civicrm_version}/civicrm"
95   user "wordpress"
96   group "wordpress"
97   subscribes :run, "remote_file[/var/cache/chef/civicrm-#{civicrm_version}-l10n.tar.gz]", :immediately
98 end
99
100 execute "/opt/civicrm-#{civicrm_version}/civicrm" do
101   action :nothing
102   command "rsync --archive --delete /opt/civicrm-#{civicrm_version}/civicrm/ #{civicrm_directory}"
103   user "wordpress"
104   group "wordpress"
105   subscribes :run, "execute[/var/cache/chef/civicrm-#{civicrm_version}-wordpress.zip]", :immediately
106   subscribes :run, "execute[/var/cache/chef/civicrm-#{civicrm_version}-l10n.tar.gz]", :immediately
107 end
108
109 directory "/srv/join.osmfoundation.org/wp-content/plugins/files" do
110   owner "www-data"
111   group "www-data"
112   mode 0755
113 end
114
115 settings = edit_file "#{civicrm_directory}/civicrm/templates/CRM/common/civicrm.settings.php.template" do |line|
116   line.gsub!(/%%cms%%/, "WordPress")
117   line.gsub!(/%%CMSdbUser%%/, "civicrm")
118   line.gsub!(/%%CMSdbPass%%/, database_password)
119   line.gsub!(/%%CMSdbHost%%/, "localhost")
120   line.gsub!(/%%CMSdbName%%/, "civicrm")
121   line.gsub!(/%%dbUser%%/, "civicrm")
122   line.gsub!(/%%dbPass%%/, database_password)
123   line.gsub!(/%%dbHost%%/, "localhost")
124   line.gsub!(/%%dbName%%/, "civicrm")
125   line.gsub!(/%%crmRoot%%/, "#{civicrm_directory}/civicrm/")
126   line.gsub!(/%%templateCompileDir%%/, "/srv/join.osmfoundation.org/wp-content/plugins/files/civicrm/templates_c/")
127   line.gsub!(/%%baseURL%%/, "http://join.osmfoundation.org/")
128   line.gsub!(/%%siteKey%%/, site_key)
129
130   line
131 end
132
133 file "#{civicrm_directory}/civicrm.settings.php" do
134   owner "wordpress"
135   group "wordpress"
136   mode 0644
137   content settings
138 end
139
140 template "/etc/cron.d/osmf-crm" do
141   source "cron.erb"
142   owner "root"
143   group "root"
144   mode 0600
145   variables :directory => civicrm_directory, :passwords => passwords
146 end
147
148 template "/etc/cron.daily/osmf-crm-backup" do
149   source "backup.cron.erb"
150   owner "root"
151   group "root"
152   mode 0750
153   variables :passwords => passwords
154 end