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.
22 default_action :create
24 property :site, String, :name_property => true
25 property :title, String, :required => [:create]
26 property :aliases, [String, Array], :default => []
27 property :bbox, Array, :required => [:create]
30 directory "/srv/#{new_resource.site}" do
36 directory "/srv/imagery/layers/#{new_resource.site}" do
43 directory "/srv/imagery/overlays/#{new_resource.site}" do
50 declare_resource :template, "/srv/#{new_resource.site}/index.html" do
51 source "index.html.erb"
55 variables :title => new_resource.title
58 cookbook_file "/srv/#{new_resource.site}/robots.txt" do
65 cookbook_file "/srv/#{new_resource.site}/imagery.css" do
72 cookbook_file "/srv/#{new_resource.site}/clientaccesspolicy.xml" do
73 source "clientaccesspolicy.xml"
79 cookbook_file "/srv/#{new_resource.site}/crossdomain.xml" do
80 source "crossdomain.xml"
86 layers = Dir.glob("/srv/imagery/layers/#{new_resource.site}/*.yml").collect do |path|
87 YAML.safe_load(::File.read(path), [Symbol])
90 declare_resource :template, "/srv/#{new_resource.site}/imagery.js" do
91 source "imagery.js.erb"
95 variables :bbox => new_resource.bbox, :layers => layers
98 base_domains = [new_resource.site] + Array(new_resource.aliases)
99 tile_domains = base_domains.flat_map { |d| [d, "a.#{d}", "b.#{d}", "c.#{d}"] }
101 %w[0 1 2 3 4 5 6 7].each do |index|
102 systemd_service "mapserv-fcgi-#{new_resource.site}-#{index}" do
103 description "Map server for #{new_resource.site} layer"
104 environment "MS_MAP_PATTERN" => "^/srv/imagery/mapserver/",
105 "MS_DEBUGLEVEL" => "0",
106 "MS_ERRORFILE" => "stderr",
107 "GDAL_CACHEMAX" => "512"
114 exec_start_pre "/bin/rm -f /run/mapserver-fastcgi/layer-#{new_resource.site}-#{index}.socket"
115 exec_start "/usr/bin/spawn-fcgi -n -b 8192 -s /run/mapserver-fastcgi/layer-#{new_resource.site}-#{index}.socket -M 0666 -P /run/mapserver-fastcgi/layer-#{new_resource.site}-#{index}.pid -- /usr/lib/cgi-bin/mapserv"
119 protect_system "full"
121 no_new_privileges true
123 pid_file "/run/mapserver-fastcgi/layer-#{new_resource.site}-#{index}.pid"
126 service "mapserv-fcgi-#{new_resource.site}-#{index}" do
127 provider Chef::Provider::Service::Systemd
128 action [:enable, :start]
129 supports :status => true, :restart => true, :reload => false
130 subscribes :restart, "systemd_service[mapserv-fcgi-#{new_resource.site}-#{index}]"
134 ssl_certificate new_resource.site do
138 nginx_site new_resource.site do
139 template "nginx_imagery.conf.erb"
140 directory "/srv/imagery/#{new_resource.site}"
141 variables new_resource.to_hash
146 %w[0 1 2 3 4 5 6 7].each do |index|
147 service "mapserv-fcgi-#{new_resource.site}-#{index}" do
148 provider Chef::Provider::Service::Systemd
149 action [:stop, :disable]
152 systemd_service "mapserv-fcgi-#{new_resource.site}-#{index}" do
157 nginx_site new_resource.site do
163 notifies :reload, "service[nginx]"