MODULES-1661 Fix issue with apt_key destroy, also added mutliple deletes
[puppet-modules/puppetlabs-apt.git] / lib / puppet / provider / apt_key / apt_key.rb
1 require 'date'
2 require 'open-uri'
3 require 'net/ftp'
4 require 'tempfile'
5
6 if RUBY_VERSION == '1.8.7'
7   # Mothers cry, puppies die and Ruby 1.8.7's open-uri needs to be
8   # monkeypatched to support passing in :ftp_passive_mode.
9   require File.expand_path(File.join(File.dirname(__FILE__), '..', '..', '..',
10                                     'puppet_x', 'apt_key', 'patch_openuri.rb'))
11   OpenURI::Options.merge!({:ftp_active_mode => false,})
12 end
13
14 Puppet::Type.type(:apt_key).provide(:apt_key) do
15
16   confine    :osfamily => :debian
17   defaultfor :osfamily => :debian
18   commands   :apt_key  => 'apt-key'
19
20   def self.instances
21     cli_args = ['adv','--list-keys', '--with-colons', '--fingerprint']
22
23     if RUBY_VERSION > '1.8.7'
24       key_output = apt_key(cli_args).encode('UTF-8', 'binary', :invalid => :replace, :undef => :replace, :replace => '')
25     else
26       key_output = apt_key(cli_args)
27     end
28
29     pub_line, fpr_line = nil
30
31     key_array = key_output.split("\n").collect do |line|
32       if line.start_with?('pub')
33           pub_line = line
34       elsif line.start_with?('fpr')
35           fpr_line = line
36       end
37
38       next unless (pub_line and fpr_line)
39
40       line_hash = key_line_hash(pub_line, fpr_line)
41
42       # reset everything
43       pub_line, fpr_line = nil
44
45       expired = false
46
47       if line_hash[:key_expiry]
48         expired = Date.today > Date.parse(line_hash[:key_expiry])
49       end
50
51       new(
52         :name        => line_hash[:key_fingerprint],
53         :id          => line_hash[:key_long],
54         :fingerprint => line_hash[:key_fingerprint],
55         :short       => line_hash[:key_short],
56         :long        => line_hash[:key_long],
57         :ensure      => :present,
58         :expired     => expired,
59         :expiry      => line_hash[:key_expiry],
60         :size        => line_hash[:key_size],
61         :type        => line_hash[:key_type],
62         :created     => line_hash[:key_created]
63       )
64     end
65     key_array.compact!
66   end
67
68   def self.prefetch(resources)
69     apt_keys = instances
70     resources.keys.each do |name|
71       if name.length == 40
72         if provider = apt_keys.find{ |key| key.fingerprint == name }
73           resources[name].provider = provider
74         end
75       elsif name.length == 16
76         if provider = apt_keys.find{ |key| key.long == name }
77           resources[name].provider = provider
78         end
79       elsif name.length == 8
80         if provider = apt_keys.find{ |key| key.short == name }
81           resources[name].provider = provider
82         end
83       end
84     end
85   end
86
87   def self.key_line_hash(pub_line, fpr_line)
88     pub_split = pub_line.split(':')
89     fpr_split = fpr_line.split(':')
90
91     fingerprint = fpr_split.last
92     return_hash = {
93       :key_fingerprint => fingerprint,
94       :key_long        => fingerprint[-16..-1], # last 16 characters of fingerprint
95       :key_short       => fingerprint[-8..-1], # last 8 characters of fingerprint
96       :key_size        => pub_split[2],
97       :key_type        => nil,
98       :key_created     => pub_split[5],
99       :key_expiry      => pub_split[6].empty? ? nil : pub_split[6],
100     }
101
102     # set key type based on types defined in /usr/share/doc/gnupg/DETAILS.gz
103     case pub_split[3]
104     when "1"
105       return_hash[:key_type] = :rsa
106     when "17"
107       return_hash[:key_type] = :dsa
108     when "18"
109       return_hash[:key_type] = :ecc
110     when "19"
111       return_hash[:key_type] = :ecdsa
112     end
113
114     return return_hash
115   end
116
117   def source_to_file(value)
118     parsedValue = URI::parse(value)
119     if parsedValue.scheme.nil?
120       fail("The file #{value} does not exist") unless File.exists?(value)
121       value
122     else
123       begin
124         key = parsedValue.read
125       rescue OpenURI::HTTPError, Net::FTPPermError => e
126         fail("#{e.message} for #{resource[:source]}")
127       rescue SocketError
128         fail("could not resolve #{resource[:source]}")
129       else
130         tempfile(key)
131       end
132     end
133   end
134
135   def tempfile(content)
136     file = Tempfile.new('apt_key')
137     file.write content
138     file.close
139     file.path
140   end
141
142   def exists?
143     @property_hash[:ensure] == :present
144   end
145
146   def create
147     command = []
148     if resource[:source].nil? and resource[:content].nil?
149       # Breaking up the command like this is needed because it blows up
150       # if --recv-keys isn't the last argument.
151       command.push('adv', '--keyserver', resource[:server])
152       unless resource[:keyserver_options].nil?
153         command.push('--keyserver-options', resource[:keyserver_options])
154       end
155       command.push('--recv-keys', resource[:id])
156     elsif resource[:content]
157       command.push('add', tempfile(resource[:content]))
158     elsif resource[:source]
159       command.push('add', source_to_file(resource[:source]))
160     # In case we really screwed up, better safe than sorry.
161     else
162       fail("an unexpected condition occurred while trying to add the key: #{resource[:id]}")
163     end
164     apt_key(command)
165     @property_hash[:ensure] = :present
166   end
167
168   def destroy
169     begin
170       apt_key('del', resource.provider.long)
171       r = execute(["#{command(:apt_key)} list | grep #{resource.provider.long}"], :failonfail => false)
172     end while r.exitstatus == 0
173     @property_hash.clear
174   end
175
176   def read_only(value)
177     fail('This is a read-only property.')
178   end
179
180   mk_resource_methods
181
182   # Needed until PUP-1470 is fixed and we can drop support for Puppet versions
183   # before that.
184   def expired
185     @property_hash[:expired]
186   end
187
188   # Alias the setters of read-only properties
189   # to the read_only function.
190   alias :created= :read_only
191   alias :expired= :read_only
192   alias :expiry=  :read_only
193   alias :size=    :read_only
194   alias :type=    :read_only
195 end