2 # Cookbook Name:: imagery
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 # 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.
22 default_action :create
24 property :name, String
25 property :title, String, :required => true
26 property :aliases, [String, Array], :default => []
27 property :bbox, Array, :required => true
30 directory "/srv/#{name}" do
36 directory "/srv/imagery/layers/#{name}" do
43 directory "/srv/imagery/overlays/#{name}" do
50 template "/srv/#{name}/index.html" do
51 source "index.html.erb"
55 variables :title => title
58 cookbook_file "/srv/#{name}/imagery.css" do
65 cookbook_file "/srv/#{name}/clientaccesspolicy.xml" do
66 source "clientaccesspolicy.xml"
72 cookbook_file "/srv/#{name}/crossdomain.xml" do
73 source "crossdomain.xml"
79 layers = Dir.glob("/srv/imagery/layers/#{name}/*.yml").collect do |path|
80 YAML.load(::File.read(path))
83 template "/srv/#{name}/imagery.js" do
84 source "imagery.js.erb"
88 variables :bbox => bbox, :layers => layers
92 template "nginx_imagery.conf.erb"
93 directory "/srv/imagery/#{name}"
95 variables new_resource.to_hash
100 notifies :reload, "service[nginx]"