summaryrefslogtreecommitdiff
path: root/lib/puppet/type/mysql_grant.rb
blob: 415f5aa39b6e19a5a193d527e676b4ce4276ac4d (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# This has to be a separate type to enable collecting
Puppet::Type.newtype(:mysql_grant) do
	@doc = "Manage a database user's rights."
	#ensurable

	autorequire :mysql_db do
		# puts "Starting db autoreq for %s" % self[:name]
		reqs = []
		matches = self[:name].match(/^([^@]+)@([^\/]+)\/(.+)$/)
		unless matches.nil?
			reqs << matches[3]
		end
		# puts "Autoreq: '%s'" % reqs.join(" ")
		reqs
	end

	autorequire :mysql_user do
		# puts "Starting user autoreq for %s" % self[:name]
		reqs = []
		matches = self[:name].match(/^([^@]+)@([^\/]+).*$/)
		unless matches.nil?
			reqs << "%s@%s" % [ matches[1], matches[2] ]
		end
		# puts "Autoreq: '%s'" % reqs.join(" ")
		reqs
	end

	newparam(:name) do
		desc "The primary key: either user@host for global privilges or user@host/database for database specific privileges"
	end
	newproperty(:privileges, :array_matching => :all) do
		desc "The privileges the user should have. The possible values are implementation dependent."
		munge do |v|
			symbolize(v)
		end

		def should_to_s(newvalue = @should)
			if newvalue
				unless newvalue.is_a?(Array)
					newvalue = [ newvalue ]
				end
				newvalue.collect do |v| v.to_s end.sort.join ", "
			else
				nil
			end
		end

		def is_to_s(currentvalue = @is)
			if currentvalue
				unless currentvalue.is_a?(Array)
					currentvalue = [ currentvalue ]
				end
				currentvalue.collect do |v| v.to_s end.sort.join ", "
			else
				nil
			end
		end

		# use the sorted outputs for comparison
		def insync?(is)
			if defined? @should and @should
				case self.should_to_s 
				when "all"
					self.provider.all_privs_set?
				when self.is_to_s(is)
					true
				else
					false
				end
			else
				true
			end
		end

	end
end