Class: Yast::ProductProfileClass
- Inherits:
-
Module
- Object
- Module
- Yast::ProductProfileClass
- Defined in:
- ../../src/modules/ProductProfile.rb
Instance Method Summary (collapse)
-
- (Object) CheckCompliance(productId)
Checks the profile compliance with the system.
-
- (Object) GetComplianceMap
return the result of last compliance test.
-
- (Object) GetSigKeysForProduct(src_id)
Return the list of paths to gpg keyfiles present in the root of given product media.
-
- (Object) IsCompliant(productId)
Checks the profile compliance with the system.
- - (Object) main
Instance Method Details
- (Object) CheckCompliance(productId)
Checks the profile compliance with the system. If system is not complient, shows a popup with reasons and asks to continue with the installation. although the complience test failed. (once new product is added, function should be called to with new product ID)
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 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
# File '../../src/modules/ProductProfile.rb', line 151 def CheckCompliance(productId) # behavior for non-installation not defined yet return true if !Mode.installation # no need to check same products twice if productId == nil && @compliance_checked != {} || productId != nil && Ops.get(@compliance_checked, productId, false) return true end begin # YaPI::SubscriptionTools are only available for SLES Yast.import "YaPI::SubscriptionTools" rescue NameError => e y2milestone("subscription-tools package not present: no compliance checking") return true end return true if IsCompliant(productId) reasons = [] Builtins.foreach(@compliance) do |key, val| if Ops.is_map?(val) && Builtins.haskey(Convert.to_map(val), "message") reasons = Builtins.add( reasons, Ops.get_string(Convert.to_map(val), "message", "") ) end end reasons_s = Builtins.mergestring(reasons, "\n") # last part of the question (variable) end_question = _("Do you want to continue or abort the installation?") # button label = _("&Continue Installation") # button label = _("&Abort Installation") # checking specific product if productId != nil # last part of the question (variable) end_question = _("Do you want to add new product anyway?") = Label.YesButton = Label.NoButton end ret = Report.AnyQuestion( # popup dialog caption _("Warning"), # popup message, %1 is list of problems Builtins.sformat( _( "The profile does not allow you to run the products on this system.\n" + "Proceeding to run this installation will leave you in an unsupported state\n" + "and might impact your compliance requirements.\n" + " \n" + "The following requirements are not fulfilled on this system:\n" + " \n" + "%1\n" + "\n" + "%2" ), reasons_s, end_question ), , , :no_button ) if !ret && productId != nil # canceled adding add-on: remove profile stored before name = Ops.get(@productid2name, productId, "") tmp_path = Ops.add(Ops.add(@profiles_dir, name), ".profile") Builtins.y2milestone("deleting %1", tmp_path) SCR.Execute(path(".target.bash"), Ops.add("/bin/rm ", tmp_path)) @all_profiles = Builtins.filter(@all_profiles) { |p| p != tmp_path } end ret end |
- (Object) GetComplianceMap
return the result of last compliance test
44 45 46 |
# File '../../src/modules/ProductProfile.rb', line 44 def GetComplianceMap deep_copy(@compliance) end |
- (Object) GetSigKeysForProduct(src_id)
Return the list of paths to gpg keyfiles present in the root of given product media
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
# File '../../src/modules/ProductProfile.rb', line 50 def GetSigKeysForProduct(src_id) # find the list of sigkeys dir_file = Pkg.SourceProvideOptionalFile(src_id, 1, "/directory.yast") out = Convert.to_map( SCR.Execute( path(".target.bash_output"), Builtins.sformat("grep 'gpg-pubkey' %1 2>/dev/null", dir_file) ) ) keys = [] Builtins.foreach( Builtins.splitstring(Ops.get_string(out, "stdout", ""), "\n") ) do |k| if k != "" key = Pkg.SourceProvideOptionalFile(src_id, 1, Ops.add("/", k)) keys = Builtins.add(keys, key) if key != nil end end deep_copy(keys) end |
- (Object) IsCompliant(productId)
Checks the profile compliance with the system. (once new product is added, function should be called to with new product ID)
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 |
# File '../../src/modules/ProductProfile.rb', line 76 def IsCompliant(productId) profiles = [] products = [] sigkeys = [] if @profiles_dir == "" @profiles_dir = Ops.add(Directory.tmpdir, "/profiles/") SCR.Execute(path(".target.mkdir"), @profiles_dir) end # iterate all (or given) products and get the info about them Builtins.foreach(Pkg.ResolvableProperties("", :product, "")) do |product| src_id = Ops.get_integer(product, "source", -1) name = Ops.get_string(product, "name", "") if productId == nil && Ops.get_symbol(product, "status", :none) != :selected next end next if productId != nil && src_id != productId Ops.set(@compliance_checked, src_id, true) profile = Pkg.SourceProvideOptionalFile(src_id, 1, @profile_path) if profile != nil profiles = Builtins.add(profiles, profile) # backup profiles so they can be copied them to the installed system tmp_path = Ops.add(Ops.add(@profiles_dir, name), ".profile") SCR.Execute( path(".target.bash"), Builtins.sformat("/bin/cp -a '%1' '%2'", profile, tmp_path) ) @all_profiles = Builtins.add(@all_profiles, tmp_path) Ops.set(@productid2name, src_id, name) else Builtins.y2debug("no profile found for product %1", name) next end # generate product map: version_release = Builtins.splitstring( Ops.get_string(product, "version", ""), "-" ) products = Builtins.add( products, { "arch" => Ops.get_string(product, "arch", ""), "name" => name, "version" => Ops.get(version_release, 0, ""), "release" => Ops.get(version_release, 1, ""), "vendor" => Ops.get_string(product, "vendor", "") } ) sigkeys = Convert.convert( Builtins.union(sigkeys, GetSigKeysForProduct(src_id)), :from => "list", :to => "list <string>" ) end if profiles == [] Builtins.y2milestone("no product profile present") @compliance = {} return true end @compliance = YaPI::SubscriptionTools.isCompliant(profiles, products, sigkeys) @compliance == nil end |
- (Object) main
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 |
# File '../../src/modules/ProductProfile.rb', line 13 def main textdomain "base" Yast.import "Directory" Yast.import "Label" Yast.import "Mode" Yast.import "Pkg" Yast.import "Report" # path to the profile file on the media @profile_path = "/product.profile" # Result map of isCompliance call. # If map is not empty, contains reasons why system is not compliant. @compliance = {} # profiles for all installed products # (full paths to the temporary copies) @all_profiles = [] # mapping of product id's to product names @productid2name = {} # remember products already checked @compliance_checked = {} # directory to store profiles temporary during installation @profiles_dir = "" end |