5 # Copyright:: 2024, 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 #     https://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"
 
  22 passwords = data_bag_item("blog-staging", "passwords")
 
  23 wp2fa_encrypt_keys = data_bag_item("blog-staging", "wp2fa_encrypt_keys")
 
  25 directory "/srv/staging.blog.openstreetmap.org" do
 
  31 wordpress_site "staging.blog.openstreetmap.org" do
 
  32   aliases ["staging.blog.osm.org", "staging.blog.openstreetmap.com",
 
  33            "staging.blog.openstreetmap.net", "staging.blog.openstreetmaps.org",
 
  34            "staging.blog.osmfoundation.org"
 
  36   directory "/srv/staging.blog.openstreetmap.org/wp"
 
  37   database_name "osm-blog-staging"
 
  38   database_user "osm-blog-staging-user"
 
  39   database_password passwords["osm-blog-staging-user"]
 
  40   wp2fa_encrypt_key wp2fa_encrypt_keys["key"]
 
  41   urls "/casts" => "/srv/staging.blog.openstreetmap.org/casts",
 
  42        "/images" => "/srv/staging.blog.openstreetmap.org/images",
 
  43        "/static" => "/srv/staging.blog.openstreetmap.org/static"
 
  44   fpm_prometheus_port 11401
 
  47 wordpress_theme "staging.blog.openstreetmap.org-osmblog-wp-theme" do
 
  48   theme "osmblog-wp-theme"
 
  49   site "staging.blog.openstreetmap.org"
 
  50   repository "https://github.com/osmfoundation/osmblog-wp-theme.git"
 
  53 wordpress_plugin "staging.blog.openstreetmap.org-google-analytics-for-wordpress" do
 
  55   plugin "google-analytics-for-wordpress"
 
  56   site "staging.blog.openstreetmap.org"
 
  59 wordpress_plugin "staging.blog.openstreetmap.org-google-sitemap-generator" do
 
  61   plugin "google-sitemap-generator"
 
  62   site "staging.blog.openstreetmap.org"
 
  65 # wordpress_plugin "blog.openstreetmap.org-www-xml-sitemap-generator-org" do
 
  66 #   plugin "www-xml-sitemap-generator-org"
 
  67 #   site "staging.blog.openstreetmap.org"
 
  70 wordpress_plugin "staging.blog.openstreetmap.org-shareadraft" do
 
  73   site "staging.blog.openstreetmap.org"
 
  76 wordpress_plugin "staging.blog.openstreetmap.org-public-post-preview" do
 
  77   plugin "public-post-preview"
 
  78   site "staging.blog.openstreetmap.org"
 
  81 wordpress_plugin "staging.blog.openstreetmap.org-sitepress-multilingual-cms" do
 
  82   plugin "sitepress-multilingual-cms"
 
  83   site "staging.blog.openstreetmap.org"
 
  84   repository "https://git.openstreetmap.org/private/sitepress-multilingual-cms.git"
 
  89 wordpress_plugin "staging.blog.openstreetmap.org-wordpress-importer" do
 
  91   plugin "wordpress-importer"
 
  92   site "staging.blog.openstreetmap.org"
 
  95 wordpress_plugin "staging.blog.openstreetmap.org-wp-piwik" do
 
  97   site "staging.blog.openstreetmap.org"
 
 100 git "/srv/staging.blog.openstreetmap.org/casts" do
 
 102   repository "https://github.com/openstreetmap/opengeodata-podcasts.git"
 
 109 git "/srv/staging.blog.openstreetmap.org/images" do
 
 111   repository "https://github.com/openstreetmap/opengeodata-images.git"
 
 118 git "/srv/staging.blog.openstreetmap.org/static" do
 
 120   repository "https://github.com/openstreetmap/opengeodata-static.git"
 
 127 template "/etc/cron.daily/blog-staging-backup" do
 
 128   source "backup-staging.cron.erb"
 
 132   variables :passwords => passwords