blob: 8dc7211da48751d065d4c3ce23ce25069f82e74a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<%=
def underscore(words)
words = words.to_s.dup
words.downcase!
words.gsub! /[^a-z]/, '_'
words
end
hsh = {}
hsh["serial"] = 1
hsh["version"] = 1
clusters = {}
gateways = []
global.services['openvpn'].node_list.each_node do |node|
next if node.vagrant?
gateway = {}
gateway["capabilities"] = node.openvpn.pick(
:ports, :protocols, :user_ips, :adblock, :filter_dns)
gateway["capabilities"]["transport"] = ["openvpn"]
gateway["ip_address"] = node.openvpn.gateway_address
gateway["host"] = node.domain.full
gateway["cluster"] = underscore(node.openvpn.location)
gateways << gateway
clusters[gateway["cluster"]] ||= {
"name" => gateway["cluster"],
"label" => {"en" => node.openvpn.location}
}
end
hsh["gateways"] = gateways
hsh["clusters"] = clusters.values
hsh["openvpn_configuration"] = {
"tls-cipher" => "DHE-RSA-AES128-SHA",
"auth" => "SHA1",
"cipher" => "AES-128-CBC"
}
generate_json hsh
%>
|