Class: Chef::Licensing

Inherits:
Object
  • Object
show all
Defined in:
lib/chef/licensing.rb

Defined Under Namespace

Classes: EntitlementError

Class Method Summary collapse

Class Method Details

.check_software_entitlement!Object



26
27
28
29
30
31
32
33
34
35
# File 'lib/chef/licensing.rb', line 26

def check_software_entitlement!
  Chef::Log.info "Checking software entitlement..."
  ChefLicensing.check_software_entitlement!
rescue ChefLicensing::SoftwareNotEntitled
  Chef::Log.error "License is not entitled to use Chef Infra."
  Chef::Application.exit! "License not entitled", 173 # 173 is the exit code for LICENSE_NOT_ENTITLED defined in lib/chef/application/exit_code.rb
rescue ChefLicensing::Error => e
  Chef::Log.error e.message
  Chef::Application.exit! "Usage error", 1 # Generic failure
end

.check_software_entitlement_compliance_phase!Object



37
38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'lib/chef/licensing.rb', line 37

def check_software_entitlement_compliance_phase!
  Chef::Log.info "Checking software entitlement for compliance phase..."
  # set the chef_entitlement_id to the value for Compliance Phase entitlement (i.e. InSpec's entitlement ID)
  ChefLicensing::Config.chef_entitlement_id = Chef::LicensingConfig::COMPLIANCE_ENTITLEMENT_ID
  ChefLicensing.check_software_entitlement!
rescue ChefLicensing::SoftwareNotEntitled
  raise EntitlementError, "License not entitled"
rescue ChefLicensing::Error => e
  Chef::Log.error e.message
  Chef::Application.exit! "Usage error", 1 # Generic failure
ensure
  # reset the chef_entitlement_id to the default value of Infra
  ChefLicensing::Config.chef_entitlement_id = Chef::LicensingConfig::INFRA_ENTITLEMENT_ID
end

.fetch_and_persistObject



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/chef/licensing.rb', line 8

def fetch_and_persist
  if ENV["TEST_KITCHEN"]
    puts "Temporarily bypassing licensing check in Kitchen"
  else
    Chef::Log.info "Fetching and persisting license..."
    license_keys = ChefLicensing.fetch_and_persist
  end
rescue ChefLicensing::LicenseKeyFetcher::LicenseKeyNotFetchedError
  Chef::Log.error "Chef Infra cannot execute without valid licenses." # TODO: Replace Infra with the product name dynamically
  Chef::Application.exit! "License not set", 174 # 174 is the exit code for LICENSE_NOT_SET defined in lib/chef/application/exit_code.rb
rescue ChefLicensing::SoftwareNotEntitled
  Chef::Log.error "License is not entitled to use Chef Infra."
  Chef::Application.exit! "License not entitled", 173 # 173 is the exit code for LICENSE_NOT_ENTITLED defined in lib/chef/application/exit_code.rb
rescue ChefLicensing::Error => e
  Chef::Log.error e.message
  Chef::Application.exit! "Usage error", 1 # Generic failure
end

.license_addObject



84
85
86
87
88
89
90
91
92
# File 'lib/chef/licensing.rb', line 84

def license_add
  ChefLicensing.add_license
rescue ChefLicensing::LicenseKeyFetcher::LicenseKeyAddNotAllowed => e
  Chef::Log.error e.message
  Chef::Application.exit! "License not set", 174 # 174 is the exit code for LICENSE_NOT_SET defined in lib/chef/application/exit_code.rb
rescue ChefLicensing::Error => e
  Chef::Log.error e.message
  Chef::Application.exit! "Usage error", 1 # Generic failure
end

.license_listObject



77
78
79
80
81
82
# File 'lib/chef/licensing.rb', line 77

def license_list
  ChefLicensing.list_license_keys_info
rescue ChefLicensing::Error => e
  Chef::Log.error e.message
  Chef::Application.exit! "Usage error", 1 # Generic failure
end

.licensing_helpObject



52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# File 'lib/chef/licensing.rb', line 52

def licensing_help
  <<~FOOTER

    Chef Infra has three tiers of licensing:

      * Free-Tier
        Users are limited to audit maximum of 10 nodes
        Entitled for personal or non-commercial use

      * Trial
        Entitled for unlimited number of nodes
        Entitled for 30 days only
        Entitled for commercial use

      * Commercial
        Entitled for purchased number of nodes
        Entitled for period of subscription purchased
        Entitled for commercial use

      For more information please visit:
      www.chef.io/licensing/faqs

  FOOTER
end