]> git.openstreetmap.org Git - chef.git/blob - cookbooks/imagery/resources/site.rb
Modernise more LWRPs
[chef.git] / cookbooks / imagery / resources / site.rb
1 #
2 # Cookbook Name:: imagery
3 # Resource:: imagery_site
4 #
5 # Copyright 2016, OpenStreetMap Foundation
6 #
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
10 #
11 # http://www.apache.org/licenses/LICENSE-2.0
12 #
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.
18 #
19
20 require "yaml"
21
22 default_action :create
23
24 property :site, String, :name_property => true
25 property :title, String, :required => true
26 property :aliases, [String, Array], :default => []
27 property :bbox, Array, :required => true
28
29 action :create do
30   directory "/srv/#{new_resource.site}" do
31     user "root"
32     group "root"
33     mode 0o755
34   end
35
36   directory "/srv/imagery/layers/#{new_resource.site}" do
37     user "root"
38     group "root"
39     mode 0o755
40     recursive true
41   end
42
43   directory "/srv/imagery/overlays/#{new_resource.site}" do
44     user "root"
45     group "root"
46     mode 0o755
47     recursive true
48   end
49
50   template "/srv/#{new_resource.site}/index.html" do
51     source "index.html.erb"
52     user "root"
53     group "root"
54     mode 0o644
55     variables :title => title
56   end
57
58   cookbook_file "/srv/#{new_resource.site}/imagery.css" do
59     source "imagery.css"
60     user "root"
61     group "root"
62     mode 0o644
63   end
64
65   cookbook_file "/srv/#{new_resource.site}/clientaccesspolicy.xml" do
66     source "clientaccesspolicy.xml"
67     user "root"
68     group "root"
69     mode 0o644
70   end
71
72   cookbook_file "/srv/#{new_resource.site}/crossdomain.xml" do
73     source "crossdomain.xml"
74     user "root"
75     group "root"
76     mode 0o644
77   end
78
79   layers = Dir.glob("/srv/imagery/layers/#{new_resource.site}/*.yml").collect do |path|
80     YAML.safe_load(::File.read(path), [Symbol])
81   end
82
83   template "/srv/#{new_resource.site}/imagery.js" do
84     source "imagery.js.erb"
85     user "root"
86     group "root"
87     mode 0o644
88     variables :bbox => new_resource.bbox, :layers => layers
89   end
90
91   base_domains = [new_resource.site] + Array(new_resource.aliases)
92   tile_domains = base_domains.flat_map { |d| [d, "a.#{d}", "b.#{d}", "c.#{d}"] }
93
94   ssl_certificate new_resource.site do
95     domains tile_domains
96   end
97
98   resolvers = node[:networking][:nameservers].map do |resolver|
99     IPAddr.new(resolver).ipv6? ? "[#{resolver}]" : resolver
100   end
101
102   nginx_site new_resource.site do
103     template_source "nginx_imagery.conf.erb"
104     directory "/srv/imagery/#{new_resource.site}"
105     restart_nginx false
106     variables new_resource.to_hash.merge(:resolvers => resolvers)
107   end
108 end
109
110 def after_created
111   notifies :reload, "service[nginx]"
112 end