Class: PDK::Config
- Inherits:
-
Object
show all
- Defined in:
- lib/pdk/config.rb,
lib/pdk/config/json.rb,
lib/pdk/config/yaml.rb,
lib/pdk/config/value.rb,
lib/pdk/config/errors.rb,
lib/pdk/config/namespace.rb,
lib/pdk/config/validator.rb
Defined Under Namespace
Modules: Validator
Classes: JSON, LoadError, Namespace, Value, YAML
Class Method Summary
collapse
Instance Method Summary
collapse
Class Method Details
.analytics_config_exist? ⇒ Boolean
48
49
50
|
# File 'lib/pdk/config.rb', line 48
def self.analytics_config_exist?
PDK::Util::Filesystem.file?(analytics_config_path)
end
|
.analytics_config_interview! ⇒ Object
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
|
# File 'lib/pdk/config.rb', line 52
def self.analytics_config_interview!
return unless PDK::CLI::Util.interactive?
pre_message = _(
'PDK collects anonymous usage information to help us understand how ' \
'it is being used and make decisions on how to improve it. You can ' \
'find out more about what data we collect and how it is used in the ' \
"PDK documentation at %{url}.\n",
) % { url: 'https://puppet.com/docs/pdk/latest/pdk_install.html' }
post_message = _(
'You can opt in or out of the usage data collection at any time by ' \
'editing the analytics configuration file at %{path} and changing ' \
"the '%{key}' value.",
) % {
path: PDK::Config.analytics_config_path,
key: 'disabled',
}
questions = [
{
name: 'enabled',
question: _('Do you consent to the collection of anonymous PDK usage information?'),
type: :yes,
},
]
PDK.logger.info(text: pre_message, wrap: true)
prompt = TTY::Prompt.new(help_color: :cyan)
interview = PDK::CLI::Util::Interview.new(prompt)
interview.add_questions(questions)
answers = interview.run
if answers.nil?
PDK.logger.info _('No answer given, opting out of analytics collection.')
PDK.config.user['analytics']['disabled'] = true
else
PDK.config.user['analytics']['disabled'] = !answers['enabled']
end
PDK.logger.info(text: post_message, wrap: true)
end
|
.analytics_config_path ⇒ Object
40
41
42
|
# File 'lib/pdk/config.rb', line 40
def self.analytics_config_path
ENV['PDK_ANALYTICS_CONFIG'] || File.join(File.dirname(PDK::Util.configdir), 'puppet', 'analytics.yml')
end
|
.bolt_analytics_config ⇒ Object
36
37
38
|
# File 'lib/pdk/config.rb', line 36
def self.bolt_analytics_config
PDK::Config::YAML.new(file: File.expand_path('~/.puppetlabs/bolt/analytics.yaml'))
end
|
.user_config_path ⇒ Object
44
45
46
|
# File 'lib/pdk/config.rb', line 44
def self.user_config_path
File.join(PDK::Util.configdir, 'user_config.json')
end
|