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.safe_load(::File.read(path), [Symbol])
 
  83   template "/srv/#{name}/imagery.js" do
 
  84     source "imagery.js.erb"
 
  88     variables :bbox => bbox, :layers => layers
 
  91   base_domains = [name] + Array(aliases)
 
  92   tile_domains = base_domains.flat_map { |d| [d, "a.#{d}", "b.#{d}", "c.#{d}"] }
 
  94   ssl_certificate new_resource.name do
 
  98   resolvers = node[:networking][:nameservers].map do |resolver|
 
  99     IPAddr.new(resolver).ipv6? ? "[#{resolver}]" : resolver
 
 102   nginx_site new_resource.name do
 
 103     template "nginx_imagery.conf.erb"
 
 104     directory "/srv/imagery/#{name}"
 
 106     variables new_resource.to_hash.merge(:resolvers => resolvers)
 
 111   notifies :reload, "service[nginx]"