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 :layer, String, :name_property => true
 
  23 property :site, String, :required => true
 
  24 property :source, String, :required => true
 
  25 property :root_layer, [TrueClass, FalseClass], :default => false
 
  26 property :text, String
 
  27 property :copyright, String, :default => "Copyright"
 
  28 property :projection, String, :default => "EPSG:3857"
 
  29 property :palette, String
 
  30 property :extent, String
 
  31 property :background_colour, String
 
  32 property :resample, String, :default => "average"
 
  33 property :imagemode, String
 
  34 property :extension, String,
 
  35          :is => %w(png png8 jpeg),
 
  37 property :max_zoom, Fixnum, :default => 23
 
  38 property :url_aliases, [String, Array], :default => []
 
  41   template "/srv/imagery/mapserver/layer-#{layer}.map" do
 
  43     source "mapserver.map.erb"
 
  47     variables new_resource.to_hash
 
  50   template "/etc/init/mapserv-fcgi-layer-#{layer}.conf" do
 
  52     source "mapserv_fcgi.conf.erb"
 
  56     variables new_resource.to_hash
 
  59   service "mapserv-fcgi-layer-#{layer}" do
 
  60     provider Chef::Provider::Service::Upstart
 
  61     action [:enable, :start]
 
  62     supports :status => true, :restart => true, :reload => false
 
  63     subscribes :restart, "template[/srv/imagery/mapserver/layer-#{layer}.map]"
 
  64     subscribes :restart, "template[/etc/init/mapserv-fcgi-layer-#{layer}.conf]"
 
  67   directory "/srv/imagery/nginx/#{site}" do
 
  74   template "/srv/imagery/nginx/#{site}/layer-#{layer}.conf" do
 
  76     source "nginx_imagery_layer_fragment.conf.erb"
 
  80     variables new_resource.to_hash
 
  85   service "mapserv-fcgi-layer-#{layer}" do
 
  86     provider Chef::Provider::Service::Upstart
 
  87     action [:stop, :disable]
 
  88     supports :status => true, :restart => true, :reload => false
 
  91   file "/srv/imagery/mapserver/layer-#{layer}.map" do
 
  95   file "/etc/init/mapserv-fcgi-layer-#{layer}.conf" do
 
  99   file "/srv/imagery/nginx/#{site}/layer-#{layer}.conf" do
 
 105   notifies :restart, "service[nginx]"