forked from puppetlabs/puppetlabs-mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmysql.rb
190 lines (165 loc) · 6.19 KB
/
mysql.rb
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
# frozen_string_literal: true
# Puppet provider for mysql
class Puppet::Provider::Mysql < Puppet::Provider
# Without initvars commands won't work.
initvars
# Make sure we find mysql commands on CentOS and FreeBSD
ENV['PATH'] = "#{ENV.fetch('PATH', nil)}:/usr/libexec:/usr/local/libexec:/usr/local/bin"
ENV['LD_LIBRARY_PATH'] = [
ENV.fetch('LD_LIBRARY_PATH', nil),
'/usr/lib',
'/usr/lib64',
'/opt/rh/rh-mysql56/root/usr/lib',
'/opt/rh/rh-mysql56/root/usr/lib64',
'/opt/rh/rh-mysql57/root/usr/lib',
'/opt/rh/rh-mysql57/root/usr/lib64',
'/opt/rh/rh-mysql80/root/usr/lib',
'/opt/rh/rh-mysql80/root/usr/lib64',
'/opt/rh/rh-mariadb100/root/usr/lib',
'/opt/rh/rh-mariadb100/root/usr/lib64',
'/opt/rh/rh-mariadb101/root/usr/lib',
'/opt/rh/rh-mariadb101/root/usr/lib64',
'/opt/rh/rh-mariadb102/root/usr/lib',
'/opt/rh/rh-mariadb102/root/usr/lib64',
'/opt/rh/rh-mariadb103/root/usr/lib',
'/opt/rh/rh-mariadb103/root/usr/lib64',
'/opt/rh/mysql55/root/usr/lib',
'/opt/rh/mysql55/root/usr/lib64',
'/opt/rh/mariadb55/root/usr/lib',
'/opt/rh/mariadb55/root/usr/lib64',
'/usr/mysql/5.5/lib',
'/usr/mysql/5.5/lib64',
'/usr/mysql/5.6/lib',
'/usr/mysql/5.6/lib64',
'/usr/mysql/5.7/lib',
'/usr/mysql/5.7/lib64',
].join(':')
# rubocop:disable Style/HashSyntax
if File.symlink?(Facter::Core::Execution.which('mysql'))
commands :mysql_raw => File.readlink(Facter::Core::Execution.which('mysql'))
else
commands :mysql_raw => Facter::Core::Execution.which('mysql')
end
if File.symlink?(Facter::Core::Execution.which('mysqld'))
commands :mysqld => File.readlink(Facter::Core::Execution.which('mysqld'))
else
commands :mysqld => 'mysqld'
end
if File.symlink?(Facter::Core::Execution.which('mysqladmin'))
commands :mysqladmin => File.readlink(Facter::Core::Execution.which('mysqladmin'))
else
commands :mysqladmin => 'mysqladmin'
end
# rubocop:enable Style/HashSyntax
# Optional defaults file
def self.defaults_file
"--defaults-extra-file=#{Facter.value(:root_home)}/.my.cnf" if File.file?("#{Facter.value(:root_home)}/.my.cnf")
end
def self.mysqld_type
# find the mysql "dialect" like mariadb / mysql etc.
mysqld_version_string.scan(%r{mariadb}i) { return 'mariadb' }
mysqld_version_string.scan(%r{\s\(percona}i) { return 'percona' }
'mysql'
end
def mysqld_type
self.class.mysqld_type
end
def self.mysqld_version_string
# As the possibility of the mysqld being remote we need to allow the version string to be overridden,
# this can be done by facter.value as seen below. In the case that it has not been set and the facter
# value is nil we use the mysql -v command to ensure we report the correct version of mysql for later use cases.
@mysqld_version_string ||= Facter.value(:mysqld_version) || mysqld('-V')
end
def mysqld_version_string
self.class.mysqld_version_string
end
def self.mysqld_version
# NOTE: be prepared for '5.7.6-rc-log' etc results
# versioncmp detects 5.7.6-log to be newer then 5.7.6
# this is why we need the trimming.
mysqld_version_string&.scan(%r{\d+\.\d+\.\d+})&.first
end
def mysqld_version
self.class.mysqld_version
end
def self.newer_than(forks_versions)
forks_versions.key?(mysqld_type) && Puppet::Util::Package.versioncmp(mysqld_version, forks_versions[mysqld_type]) >= 0
end
def newer_than(forks_versions)
self.class.newer_than(forks_versions)
end
def self.older_than(forks_versions)
forks_versions.key?(mysqld_type) && Puppet::Util::Package.versioncmp(mysqld_version, forks_versions[mysqld_type]).negative?
end
def older_than(forks_versions)
self.class.older_than(forks_versions)
end
def defaults_file
self.class.defaults_file
end
def self.mysql_caller(text_of_sql, type)
if type.eql? 'system'
if File.file?("#{Facter.value(:root_home)}/.mylogin.cnf")
ENV['MYSQL_TEST_LOGIN_FILE'] = "#{Facter.value(:root_home)}/.mylogin.cnf"
mysql_raw([system_database, '-e', text_of_sql].flatten.compact).scrub
else
mysql_raw([defaults_file, system_database, '-e', text_of_sql].flatten.compact).scrub
end
elsif type.eql? 'regular'
if File.file?("#{Facter.value(:root_home)}/.mylogin.cnf")
ENV['MYSQL_TEST_LOGIN_FILE'] = "#{Facter.value(:root_home)}/.mylogin.cnf"
mysql_raw(['-NBe', text_of_sql].flatten.compact).scrub
else
mysql_raw([defaults_file, '-NBe', text_of_sql].flatten.compact).scrub
end
else
raise Puppet::Error, _("#mysql_caller: Unrecognised type '%{type}'" % { type: type })
end
end
def self.users
mysql_caller("SELECT CONCAT(User, '@',Host) AS User FROM mysql.user", 'regular').split("\n")
end
# Optional parameter to run a statement on the MySQL system database.
def self.system_database
'--database=mysql'
end
def system_database
self.class.system_database
end
# Take root@localhost and munge it to 'root'@'localhost'
# Take root@id123@localhost and munge it to 'root@id123'@'localhost'
def self.cmd_user(user)
"'#{user.reverse.sub('@', "'@'").reverse}'"
end
# Take root.* and return ON `root`.*
def self.cmd_table(table)
table_string = ''
# We can't escape *.* so special case this.
table_string += if table == '*.*'
'*.*'
# Special case also for FUNCTIONs and PROCEDUREs
elsif table.start_with?('FUNCTION ', 'PROCEDURE ')
table.sub(%r{^(FUNCTION|PROCEDURE) (.*)(\..*)}, '\1 `\2`\3')
else
table.sub(%r{^(.*)(\..*)}, '`\1`\2')
end
table_string
end
def self.cmd_privs(privileges)
return 'ALL PRIVILEGES' if privileges.include?('ALL')
priv_string = ''
privileges.each do |priv|
priv_string += "#{priv}, "
end
# Remove trailing , from the last element.
priv_string.sub(%r{, $}, '')
end
# Take in potential options and build up a query string with them.
def self.cmd_options(options)
option_string = ''
options.each do |opt|
option_string += ' WITH GRANT OPTION' if opt == 'GRANT'
end
option_string
end
end