2 # Cookbook Name:: imagery
3 # Resource:: imagery_layer
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 # http://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 default_action :create
22 property :name, String
23 property :site, String, :required => true
24 property :source, String, :required => true
25 property :text, String
26 property :copyright, String, :default => "Copyright"
27 property :projection, String, :default => "EPSG:3857"
28 property :palette, String
29 property :extent, String
30 property :background_colour, String
31 property :resample, String, :default => "average"
32 property :imagemode, String
33 property :extension, String,
34 :is => %w(png png8 jpeg),
36 property :max_zoom, Fixnum, :default => 23
39 template "/srv/imagery/mapserver/layer-#{name}.map" do
41 source "mapserver.map.erb"
45 variables new_resource.to_hash
48 template "/etc/init/mapserv-fgi-layer-#{name}.conf" do
50 source "mapserv_fcgi.conf.erb"
54 variables new_resource.to_hash
57 service "mapserv-fgi-layer-#{name}.conf" do
58 provider Chef::Provider::Service::Upstart
59 action [:enable, :start]
60 supports :status => true, :restart => true, :reload => false
61 subscribes :restart, "template[/srv/imagery/mapserver/layer-#{name}.map]"
62 subscribes :restart, "template[/etc/init/mapserv-fgi-layer-#{name}.conf]"
65 directory "/srv/imagery/nginx/#{site}" do
72 template "/srv/imagery/nginx/#{site}/layer-#{name}.conf" do
74 source "nginx_imagery_layer_fragment.conf.erb"
78 variables new_resource.to_hash
83 service "mapserv-fgi-layer-#{name}.conf" do
84 provider Chef::Provider::Service::Upstart
85 action [:stop, :disable]
86 supports :status => true, :restart => true, :reload => false
89 file "/srv/imagery/mapserver/layer-#{name}.map" do
93 file "/etc/init/mapserv-fgi-layer-#{name}.conf" do
97 file "/srv/imagery/nginx/#{site}/layer-#{name}.conf" do