fpm_prometheus_port 11301
end
-wordpress_theme "osmblog-wp-theme" do
+wordpress_plugin "civicrm-wp-piwik" do
+ plugin "wp-piwik"
site "supporting.openstreetmap.org"
- repository "https://github.com/osmfoundation/osmblog-wp-theme.git"
end
wordpress_plugin "registration-honeypot" do
site "supporting.openstreetmap.org"
end
+wordpress_plugin "host-webfonts-local" do
+ site "supporting.openstreetmap.org"
+end
+
+wordpress_theme "morden" do
+ site "supporting.openstreetmap.org"
+ repository "https://public-api.wordpress.com/rest/v1/themes/download/morden.zip"
+end
+
+wordpress_theme "varia" do
+ site "supporting.openstreetmap.org"
+ repository "https://public-api.wordpress.com/rest/v1/themes/download/varia.zip"
+end
+
civicrm_version = node[:civicrm][:version]
civicrm_directory = "/srv/supporting.openstreetmap.org/wp-content/plugins/civicrm"
end
node[:civicrm][:extensions].each_value do |details|
- git "#{extensions_directory}/#{details[:name]}" do
- action :sync
- repository details[:repository]
- revision details[:revision]
- user "wordpress"
- group "wordpress"
+ if details[:repository]
+ git "#{extensions_directory}/#{details[:name]}" do
+ action :sync
+ repository details[:repository]
+ revision details[:revision]
+ user "wordpress"
+ group "wordpress"
+ end
+ elsif details[:zip]
+ remote_file "#{cache_dir}/#{details[:name]}.zip" do
+ source details[:zip]
+ owner "root"
+ group "root"
+ mode "644"
+ backup false
+ end
+
+ archive_file "#{cache_dir}/#{details[:name]}.zip" do
+ action :nothing
+ destination "#{extensions_directory}/#{details[:name]}"
+ strip_components 1
+ owner "wordpress"
+ group "wordpress"
+ overwrite true
+ subscribes :extract, "remote_file[#{cache_dir}/#{details[:name]}.zip]", :immediately
+ end
end
end
line.gsub!(/%%credKeys%%/, cred_keys)
line.gsub!(/%%signKeys%%/, sign_keys)
line.gsub!(%r{// *define\('CIVICRM_CMSDIR', '/path/to/install/root/'\);}, "define('CIVICRM_CMSDIR', '/srv/supporting.openstreetmap.org');")
+ # Don't recompile smarty templates on every call https://docs.civicrm.org/sysadmin/en/latest/setup/optimizations/#disable-compile-check
+ line.gsub!(%r{// define\('CIVICRM_TEMPLATE_COMPILE_CHECK', FALSE\);},"define('CIVICRM_TEMPLATE_COMPILE_CHECK', FALSE);")
+ # Upgrade smarty 2 to smarty 4
+ line.gsub!(%r{if \(strpos\(CIVICRM_UF_BASEURL, 'localhost'\) !== FALSE \|\| strpos\(CIVICRM_UF_BASEURL, 'demo\.civicrm\.org'\) !== FALSE\) \{}, "if (true) {")
line
end