1
1
Puppet ::Type . type ( :postgresql_psql ) . provide ( :ruby ) do
2
-
3
2
def run_unless_sql_command ( sql )
4
3
# for the 'unless' queries, we wrap the user's query in a 'SELECT COUNT',
5
4
# which makes it easier to parse and process the output.
6
- run_sql_command ( 'SELECT COUNT(*) FROM (' << sql << ') count' )
5
+ run_sql_command ( 'SELECT COUNT(*) FROM (' << sql << ') count' )
7
6
end
8
7
9
8
def run_sql_command ( sql )
@@ -12,9 +11,9 @@ def run_sql_command(sql)
12
11
end
13
12
14
13
command = [ resource [ :psql_path ] ]
15
- command . push ( "-d" , resource [ :db ] ) if resource [ :db ]
16
- command . push ( "-p" , resource [ :port ] ) if resource [ :port ]
17
- command . push ( "-t" , "-c" , '"' + sql . gsub ( '"' , '\"' ) + '"' )
14
+ command . push ( '-d' , resource [ :db ] ) if resource [ :db ]
15
+ command . push ( '-p' , resource [ :port ] ) if resource [ :port ]
16
+ command . push ( '-t' , '-c' , '"' + sql . gsub ( '"' , '\"' ) + '"' )
18
17
19
18
environment = get_environment
20
19
@@ -29,28 +28,29 @@ def run_sql_command(sql)
29
28
30
29
private
31
30
32
- def get_environment
31
+ def get_environment # rubocop:disable Style/AccessorMethodName : Refactor does not work correctly
33
32
environment = ( resource [ :connect_settings ] || { } ) . dup
34
- if envlist = resource [ :environment ]
35
- envlist = [ envlist ] unless envlist . is_a? Array
36
- envlist . each do |setting |
37
- if setting =~ /^(\w +)=((.|\n )+)$/
38
- env_name = $1
39
- value = $2
40
- if environment . include? ( env_name ) || environment . include? ( env_name . to_sym )
41
- if env_name == 'NEWPGPASSWD'
42
- warning "Overriding environment setting '#{ env_name } ' with '****'"
43
- else
44
- warning "Overriding environment setting '#{ env_name } ' with '#{ value } '"
45
- end
33
+ envlist = resource [ :environment ]
34
+ return environment unless envlist
35
+
36
+ envlist = [ envlist ] unless envlist . is_a? Array
37
+ envlist . each do |setting |
38
+ if setting =~ %r{^(\w +)=((.|\n )+)$}
39
+ env_name = Regexp . last_match ( 1 )
40
+ value = Regexp . last_match ( 2 )
41
+ if environment . include? ( env_name ) || environment . include? ( env_name . to_sym )
42
+ if env_name == 'NEWPGPASSWD'
43
+ warning "Overriding environment setting '#{ env_name } ' with '****'"
44
+ else
45
+ warning "Overriding environment setting '#{ env_name } ' with '#{ value } '"
46
46
end
47
- environment [ env_name ] = value
48
- else
49
- warning "Cannot understand environment setting #{ setting . inspect } "
50
47
end
48
+ environment [ env_name ] = value
49
+ else
50
+ warning "Cannot understand environment setting #{ setting . inspect } "
51
51
end
52
52
end
53
- return environment
53
+ environment
54
54
end
55
55
56
56
def run_command ( command , user , group , environment )
@@ -65,16 +65,13 @@ def run_command(command, user, group, environment)
65
65
Puppet ::Util ::SUIDManager . run_and_capture ( command , user , group )
66
66
end
67
67
else
68
- output = Puppet ::Util ::Execution . execute ( command , {
69
- :uid => user ,
70
- :gid => group ,
71
- :failonfail => false ,
72
- :combine => true ,
73
- :override_locale => true ,
74
- :custom_environment => environment ,
75
- } )
68
+ output = Puppet ::Util ::Execution . execute ( command , uid : user ,
69
+ gid : group ,
70
+ failonfail : false ,
71
+ combine : true ,
72
+ override_locale : true ,
73
+ custom_environment : environment )
76
74
[ output , $CHILD_STATUS. dup ]
77
75
end
78
76
end
79
-
80
77
end
0 commit comments