3 # Resource:: imagery_site
 
   5 # Copyright:: 2016, 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.
 
  24 default_action :create
 
  26 property :site, String, :name_property => true
 
  27 property :title, String, :required => [:create]
 
  28 property :aliases, [String, Array], :default => []
 
  29 property :bbox, Array, :required => [:create]
 
  30 property :uses_tiler, [true, false], :default => false
 
  33   directory "/srv/#{new_resource.site}" do
 
  39   directory "/srv/imagery/layers/#{new_resource.site}" do
 
  46   directory "/srv/imagery/overlays/#{new_resource.site}" do
 
  53   declare_resource :template, "/srv/#{new_resource.site}/index.html" do
 
  54     source "index.html.erb"
 
  58     variables :title => new_resource.title
 
  61   cookbook_file "/srv/#{new_resource.site}/robots.txt" do
 
  68   cookbook_file "/srv/#{new_resource.site}/imagery.css" do
 
  75   cookbook_file "/srv/#{new_resource.site}/clientaccesspolicy.xml" do
 
  76     source "clientaccesspolicy.xml"
 
  82   cookbook_file "/srv/#{new_resource.site}/crossdomain.xml" do
 
  83     source "crossdomain.xml"
 
  89   cookbook_file "/srv/#{new_resource.site}/transparent.png" do
 
  90     source "transparent.png"
 
  96   layers = Dir.glob("/srv/imagery/layers/#{new_resource.site}/*.yml").collect do |path|
 
  97     YAML.safe_load_file(path, :permitted_classes => [Symbol])
 
 100   declare_resource :template, "/srv/#{new_resource.site}/imagery.js" do
 
 101     source "imagery.js.erb"
 
 105     variables :bbox => new_resource.bbox, :layers => layers
 
 108   base_domains = [new_resource.site] + Array(new_resource.aliases)
 
 109   tile_domains = base_domains.flat_map { |d| [d, "a.#{d}", "b.#{d}", "c.#{d}"] }
 
 111   systemd_service "mapserv-fcgi-#{new_resource.site}" do
 
 112     description "Map server for #{new_resource.site} layer"
 
 113     environment "MS_DEBUGLEVEL" => "0",
 
 114                 "MS_ERRORFILE" => "stderr",
 
 115                 "GDAL_CACHEMAX" => "128",
 
 116                 "GDAL_HTTP_TCP_KEEPALIVE" => "YES",
 
 117                 "GDAL_HTTP_VERSION" => "2TLS",
 
 118                 "GDAL_ENABLE_WMS_CACHE" => "NO",
 
 119                 "LD_PRELOAD" => "libtcmalloc_minimal.so.4"
 
 124     exec_start "/usr/bin/multiwatch -f 8 --signal=TERM -- /usr/lib/cgi-bin/mapserv"
 
 125     standard_input "socket"
 
 126     sandbox :enable_network => true
 
 127     restrict_address_families "AF_UNIX"
 
 129     not_if { new_resource.uses_tiler }
 
 132   systemd_socket "mapserv-fcgi-#{new_resource.site}" do
 
 133     description "Map server for #{new_resource.site} layer socket"
 
 134     socket_user "imagery"
 
 135     socket_group "imagery"
 
 136     listen_stream "/run/mapserver-fastcgi/layer-#{new_resource.site}.socket"
 
 137     not_if { new_resource.uses_tiler }
 
 140   # Ensure service is stopped because otherwise the socket cannot reload
 
 141   service "mapserv-fcgi-#{new_resource.site}" do
 
 142     provider Chef::Provider::Service::Systemd
 
 144     subscribes :stop, "systemd_service[mapserv-fcgi-#{new_resource.site}]"
 
 145     subscribes :stop, "systemd_socket[mapserv-fcgi-#{new_resource.site}]"
 
 146     not_if { new_resource.uses_tiler }
 
 149   systemd_unit "mapserv-fcgi-#{new_resource.site}.socket" do
 
 150     action [:enable, :start]
 
 151     subscribes :restart, "systemd_socket[mapserv-fcgi-#{new_resource.site}]"
 
 152     not_if { new_resource.uses_tiler }
 
 155   # mapserver leaks memory, so restart it regularly. It is activated automatically by socket
 
 156   systemd_service "mapserv-fcgi-#{new_resource.site}-stop" do
 
 159     exec_start "/bin/systemctl --quiet stop mapserv-fcgi-#{new_resource.site}.service"
 
 161     restrict_address_families "AF_UNIX"
 
 162     not_if { new_resource.uses_tiler }
 
 165   systemd_timer "mapserv-fcgi-#{new_resource.site}-stop" do
 
 167     on_unit_inactive_sec "6h"
 
 168     randomized_delay_sec "20m"
 
 169     not_if { new_resource.uses_tiler }
 
 172   service "mapserv-fcgi-#{new_resource.site}-stop.timer" do
 
 173     action [:enable, :start]
 
 174     not_if { new_resource.uses_tiler }
 
 177   ssl_certificate new_resource.site do
 
 181   nginx_site new_resource.site do
 
 182     template "nginx_imagery.conf.erb"
 
 183     directory "/srv/imagery/#{new_resource.site}"
 
 184     variables new_resource.to_hash
 
 189   service "mapserv-fcgi-#{new_resource.site}" do
 
 190     provider Chef::Provider::Service::Systemd
 
 191     action [:stop, :disable]
 
 192     not_if { new_resource.uses_tiler }
 
 195   systemd_service "mapserv-fcgi-#{new_resource.site}" do
 
 197     not_if { new_resource.uses_tiler }
 
 200   nginx_site new_resource.site do
 
 206   notifies :reload, "service[nginx]"