Class: Mixlib::Install::Backend::PackageRouter
- Defined in:
- lib/mixlib/install/backend/package_router.rb
Constant Summary collapse
- ENDPOINT =
"https://packages.chef.io".freeze
- COMPAT_DOWNLOAD_URL_ENDPOINT =
"http://packages.chef.io".freeze
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
-
#artifacts_for_version(version) ⇒ Array<ArtifactInfo>
Get artifacts for a given version, channel and product_name.
-
#available_artifacts ⇒ Array<ArtifactInfo>
Create filtered list of artifacts.
-
#available_versions ⇒ Array<String>
Gets available versions from Artifactory via AQL.
- #create_artifact(artifact_map) ⇒ Object
- #create_http_request(full_path) ⇒ Object
- #extract_version_from_response(response) ⇒ Object
-
#get(url) ⇒ Object
GET request.
-
#latest_version ⇒ Array<ArtifactInfo>
Get artifacts for the latest version, channel and product_name.
-
#use_compat_download_url_endpoint?(platform, platform_version) ⇒ boolean
For some older platform & platform_version combinations we need to use COMPAT_DOWNLOAD_URL_ENDPOINT since these versions have an OpenSSL version that can not verify the ENDPOINT based urls.
-
#versions ⇒ Array<Array<Hash>] Build records for available versions
Get available versions from Artifactory via AQL.
Methods inherited from Base
#filter_artifacts, #info, #initialize, #normalize_architecture, #normalize_platform, #platform_filters_available?, #windows_artifact_fixup!
Constructor Details
This class inherits a constructor from Mixlib::Install::Backend::Base
Instance Method Details
#artifacts_for_version(version) ⇒ Array<ArtifactInfo>
Get artifacts for a given version, channel and product_name
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 |
# File 'lib/mixlib/install/backend/package_router.rb', line 109 def artifacts_for_version(version) begin results = get("/api/v1/#{options.channel}/#{omnibus_project}/#{version}/artifacts")["results"] rescue Net::HTTPServerException => e if e. =~ /404/ return [] else raise e end end # Merge artifactory properties to a flat Hash results.collect! do |result| { "filename" => result["name"], }.merge( map_properties(result["properties"]) ) end # Convert results to build records results.map { |a| create_artifact(a) } end |
#available_artifacts ⇒ Array<ArtifactInfo>
Create filtered list of artifacts
channel, product name, and product version.
38 39 40 41 42 43 44 45 |
# File 'lib/mixlib/install/backend/package_router.rb', line 38 def available_artifacts artifacts = if .latest_version? latest_version else artifacts_for_version(.product_version) end windows_artifact_fixup!(artifacts) end |
#available_versions ⇒ Array<String>
Gets available versions from Artifactory via AQL. Returning simply the list of versions.
52 53 54 55 56 57 58 |
# File 'lib/mixlib/install/backend/package_router.rb', line 52 def available_versions # We are only including a single property, version and that exists # under the properties in the following structure: # "properties" => [ {"key"=>"omnibus.version", "value"=>"12.13.3"} ] ver_list = versions.map { |i| extract_version_from_response(i) } ver_list.uniq end |
#create_artifact(artifact_map) ⇒ Object
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 |
# File 'lib/mixlib/install/backend/package_router.rb', line 154 def create_artifact(artifact_map) # set normalized platform and platform version platform, platform_version = normalize_platform( artifact_map["omnibus.platform"], artifact_map["omnibus.platform_version"] ) # create the standardized file path chef_standard_path = generate_chef_standard_path( .channel, artifact_map["omnibus.project"], artifact_map["omnibus.version"], platform, platform_version, artifact_map["filename"] ) if . # retrieve the metadata using the standardized path begin = get("#{chef_standard_path}.metadata.json") license_content = ["license_content"] software_dependencies = ["version_manifest"]["software"] rescue Net::HTTPServerException => e if e. =~ /404/ license_content, software_dependencies = nil else raise e end end else license_content, software_dependencies = nil end # create the download path with the correct endpoint base_url = if use_compat_download_url_endpoint?(platform, platform_version) COMPAT_DOWNLOAD_URL_ENDPOINT else endpoint end ArtifactInfo.new( architecture: normalize_architecture(artifact_map["omnibus.architecture"]), license: artifact_map["omnibus.license"], license_content: license_content, md5: artifact_map["omnibus.md5"], platform: platform, platform_version: platform_version, product_description: product_description, product_name: .product_name, sha1: artifact_map["omnibus.sha1"], sha256: artifact_map["omnibus.sha256"], software_dependencies: software_dependencies, url: "#{base_url}/#{chef_standard_path}", version: artifact_map["omnibus.version"] ) end |
#create_http_request(full_path) ⇒ Object
146 147 148 149 150 151 152 |
# File 'lib/mixlib/install/backend/package_router.rb', line 146 def create_http_request(full_path) request = Net::HTTP::Get.new(full_path) request.add_field("User-Agent", Util.user_agent_string(.user_agent_headers)) request end |
#extract_version_from_response(response) ⇒ Object
101 102 103 |
# File 'lib/mixlib/install/backend/package_router.rb', line 101 def extract_version_from_response(response) response["properties"].find { |item| item["key"] == "omnibus.version" }["value"] end |
#get(url) ⇒ Object
GET request
136 137 138 139 140 141 142 143 144 |
# File 'lib/mixlib/install/backend/package_router.rb', line 136 def get(url) uri = URI.parse(endpoint) http = Net::HTTP.new(uri.host, uri.port) http.use_ssl = (uri.scheme == "https") full_path = File.join(uri.path, url) res = http.request(create_http_request(full_path)) res.value JSON.parse(res.body) end |
#latest_version ⇒ Array<ArtifactInfo>
Get artifacts for the latest version, channel and product_name
94 95 96 97 98 99 |
# File 'lib/mixlib/install/backend/package_router.rb', line 94 def latest_version # Sort by created data sorted_versions = versions.sort_by! { |b| b["created"] }.reverse! version = extract_version_from_response(sorted_versions.first) artifacts_for_version(version) end |
#use_compat_download_url_endpoint?(platform, platform_version) ⇒ boolean
For some older platform & platform_version combinations we need to use COMPAT_DOWNLOAD_URL_ENDPOINT since these versions have an OpenSSL version that can not verify the ENDPOINT based urls
219 220 221 222 223 224 225 226 |
# File 'lib/mixlib/install/backend/package_router.rb', line 219 def use_compat_download_url_endpoint?(platform, platform_version) case "#{platform}-#{platform_version}" when "freebsd-9", "el-5", "solaris2-5.9", "solaris2-5.10" true else false end end |
#versions ⇒ Array<Array<Hash>] Build records for available versions
Get available versions from Artifactory via AQL. Returning the full API response
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 |
# File 'lib/mixlib/install/backend/package_router.rb', line 64 def versions items = get("/api/v1/#{options.channel}/#{omnibus_project}/versions")["results"] # Circumvent early when there are no product artifacts in a specific channel if items.empty? raise ArtifactsNotFound, "No artifacts found matching criteria.\n product name: \#{options.product_name}\n channel: \#{options.channel}\n" end # Filter out the partial builds if we are in :unstable channel # In other channels we do not need to do this since all builds are # always complete. Infact we should not do this since for some arcane # builds like Chef Client 10.X we do not have build record created in # artifactory. if .channel == :unstable # We check if "artifacts" field contains something since it is only # populated with the build record if "artifact.module.build" exists. items.reject! { |i| i["artifacts"].nil? } end items end |