Allow the services array to contain hostlists in addition to single hostnames, and...
[mirror/dsa-puppet.git] / files / etc / puppet / lib / puppet / parser / functions / nodeinfo.rb
1 module Puppet::Parser::Functions
2   newfunction(:nodeinfo, :type => :rvalue) do |args|
3
4     host = args[0]
5     yamlfile = args[1]
6     parser.watch_file(yamlfile)
7
8     require 'ldap'
9     require 'yaml'
10
11     $KCODE = 'utf-8'
12
13     yaml = YAML.load_file(yamlfile)
14     results = {}
15
16     ['nameinfo', 'footer'].each do |detail|
17       if yaml.has_key?(detail)
18         if yaml[detail].has_key?(host)
19           results[detail] = yaml[detail][host]
20         end
21       end
22     end
23
24     if yaml.has_key?('services')
25       yaml['services'].each_pair do |service, hostlist|
26         hostlist=[hostlist] unless hostlist.kind_of?(Array)
27         results[service] = hostlist.include?(host)
28       end
29     end
30
31     results['mail_port']      = ''
32     results['smarthost']      = ''
33     results['heavy_exim']     = ''
34     results['smarthost_port'] = 587
35     results['reservedaddrs']  = '0.0.0.0/8 : 127.0.0.0/8 : 10.0.0.0/8 : 169.254.0.0/16 : 172.16.0.0/12 : 192.0.0.0/17 : 192.168.0.0/16 : 224.0.0.0/4 : 240.0.0.0/5 : 248.0.0.0/5'
36
37     if yaml.has_key?('mail_port') and yaml['mail_port'].has_key?(host)
38       results['mail_port'] = yaml['mail_port'][host]
39     end
40
41     if yaml.has_key?('need_smarthost') and yaml['need_smarthost'].include?(host)
42       results['smarthost']     = "mailout.debian.org"
43     end
44
45     if yaml.has_key?('reservedaddrs') and yaml['reservedaddrs'].has_key?(host)
46       results['reservedaddrs'] = yaml['reservedaddrs'][host]
47     end
48
49     if yaml.has_key?('heavy_exim') and yaml['heavy_exim'].include?(host)
50       results['heavy_exim']    = "true"
51     end
52
53     if yaml.has_key?('apache2_defaultconfig') and yaml['apache2_defaultconfig'].include?(host)
54       results['apache2_defaultconfig']    = "true"
55     end
56
57     ldap = LDAP::Conn.new('db.debian.org')
58
59     results['ldap'] = []
60     filter = '(hostname=' + host +')'
61     begin
62       ldap.search2('ou=hosts,dc=debian,dc=org', LDAP::LDAP_SCOPE_SUBTREE, filter) do |x|
63         results['ldap'] << x
64       end
65     rescue LDAP::ResultError
66     rescue RuntimeError
67     ensure
68       ldap.unbind
69     end
70     return(results)
71   end
72 end
73
74 # vim: set fdm=marker ts=2 sw=2 et: