| 
									
										
										
										
											2024-06-02 15:14:25 +01:00
										 |  |  | # typed: strict | 
					
						
							| 
									
										
										
										
											2020-08-08 07:16:06 +05:30
										 |  |  | # frozen_string_literal: true | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module Homebrew | 
					
						
							|  |  |  |   module Livecheck | 
					
						
							|  |  |  |     module Strategy | 
					
						
							| 
									
										
										
										
											2020-11-05 17:17:03 -05:00
										 |  |  |       # The {Gnome} strategy identifies versions of software at gnome.org by | 
					
						
							| 
									
										
										
										
											2020-08-08 07:16:06 +05:30
										 |  |  |       # checking the available downloads found in a project's `cache.json` | 
					
						
							|  |  |  |       # file. | 
					
						
							|  |  |  |       # | 
					
						
							| 
									
										
										
										
											2020-11-05 17:17:03 -05:00
										 |  |  |       # GNOME URLs generally follow a standard format: | 
					
						
							|  |  |  |       # | 
					
						
							|  |  |  |       # * `https://download.gnome.org/sources/example/1.2/example-1.2.3.tar.xz` | 
					
						
							| 
									
										
										
										
											2020-08-08 07:16:06 +05:30
										 |  |  |       # | 
					
						
							| 
									
										
										
										
											2021-05-31 19:47:08 +05:30
										 |  |  |       # Before version 40, GNOME used a version scheme where unstable releases | 
					
						
							|  |  |  |       # were indicated with a minor that's 90+ or odd. The newer version scheme | 
					
						
							|  |  |  |       # uses trailing alpha/beta/rc text to identify unstable versions | 
					
						
							| 
									
										
										
										
											2023-09-08 14:46:15 -04:00
										 |  |  |       # (e.g. `40.alpha`). | 
					
						
							| 
									
										
										
										
											2021-05-30 21:53:17 +05:30
										 |  |  |       # | 
					
						
							| 
									
										
										
										
											2021-05-31 19:47:08 +05:30
										 |  |  |       # When a regex isn't provided in a `livecheck` block, the strategy uses | 
					
						
							|  |  |  |       # a default regex that matches versions which don't include trailing text | 
					
						
							| 
									
										
										
										
											2023-09-08 14:46:15 -04:00
										 |  |  |       # after the numeric version (e.g. `40.0` instead of `40.alpha`) and it | 
					
						
							| 
									
										
										
										
											2021-05-31 19:47:08 +05:30
										 |  |  |       # selectively filters out unstable versions below 40 using the rules for | 
					
						
							|  |  |  |       # the older version scheme. | 
					
						
							| 
									
										
										
										
											2020-08-08 07:16:06 +05:30
										 |  |  |       # | 
					
						
							|  |  |  |       # @api public | 
					
						
							|  |  |  |       class Gnome | 
					
						
							|  |  |  |         NICE_NAME = "GNOME" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # The `Regexp` used to determine if the strategy applies to the URL. | 
					
						
							| 
									
										
										
										
											2020-12-21 00:48:31 -05:00
										 |  |  |         URL_MATCH_REGEX = %r{
 | 
					
						
							|  |  |  |           ^https?://download\.gnome\.org | 
					
						
							|  |  |  |           /sources
 | 
					
						
							|  |  |  |           /(?<package_name>[^/]+)/ # The GNOME package name | 
					
						
							| 
									
										
										
										
											2024-01-18 22:18:42 +00:00
										 |  |  |         }ix | 
					
						
							| 
									
										
										
										
											2020-08-08 07:16:06 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  |         # Whether the strategy can be applied to the provided URL. | 
					
						
							| 
									
										
										
										
											2020-11-05 17:17:03 -05:00
										 |  |  |         # | 
					
						
							| 
									
										
										
										
											2020-08-08 07:16:06 +05:30
										 |  |  |         # @param url [String] the URL to match against | 
					
						
							|  |  |  |         # @return [Boolean] | 
					
						
							| 
									
										
										
										
											2021-08-10 18:24:51 -04:00
										 |  |  |         sig { params(url: String).returns(T::Boolean) } | 
					
						
							| 
									
										
										
										
											2020-08-08 07:16:06 +05:30
										 |  |  |         def self.match?(url) | 
					
						
							|  |  |  |           URL_MATCH_REGEX.match?(url) | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-28 13:20:12 -04:00
										 |  |  |         # Extracts information from a provided URL and uses it to generate | 
					
						
							|  |  |  |         # various input values used by the strategy to check for new versions. | 
					
						
							|  |  |  |         # Some of these values act as defaults and can be overridden in a | 
					
						
							|  |  |  |         # `livecheck` block. | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # @param url [String] the URL used to generate values | 
					
						
							|  |  |  |         # @return [Hash] | 
					
						
							|  |  |  |         sig { params(url: String).returns(T::Hash[Symbol, T.untyped]) } | 
					
						
							|  |  |  |         def self.generate_input_values(url) | 
					
						
							|  |  |  |           values = {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           match = url.match(URL_MATCH_REGEX) | 
					
						
							|  |  |  |           return values if match.blank? | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           values[:url] = "https://download.gnome.org/sources/#{match[:package_name]}/cache.json" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           regex_name = Regexp.escape(T.must(match[:package_name])).gsub("\\-", "-") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           # GNOME archive files seem to use a standard filename format, so we | 
					
						
							|  |  |  |           # count on the delimiter between the package name and numeric | 
					
						
							|  |  |  |           # version being a hyphen and the file being a tarball. | 
					
						
							| 
									
										
										
										
											2022-06-10 19:07:05 -04:00
										 |  |  |           values[:regex] = /#{regex_name}-(\d+(?:\.\d+)*)\.t/i | 
					
						
							| 
									
										
										
										
											2021-07-28 13:20:12 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |           values | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-08 07:16:06 +05:30
										 |  |  |         # Generates a URL and regex (if one isn't provided) and passes them | 
					
						
							| 
									
										
										
										
											2020-11-05 17:17:03 -05:00
										 |  |  |         # to {PageMatch.find_versions} to identify versions in the content. | 
					
						
							|  |  |  |         # | 
					
						
							| 
									
										
										
										
											2020-08-08 07:16:06 +05:30
										 |  |  |         # @param url [String] the URL of the content to check | 
					
						
							|  |  |  |         # @param regex [Regexp] a regex used for matching versions in content | 
					
						
							|  |  |  |         # @return [Hash] | 
					
						
							| 
									
										
										
										
											2021-04-04 03:00:34 +02:00
										 |  |  |         sig { | 
					
						
							|  |  |  |           params( | 
					
						
							| 
									
										
										
										
											2021-08-12 11:54:29 -04:00
										 |  |  |             url:    String, | 
					
						
							|  |  |  |             regex:  T.nilable(Regexp), | 
					
						
							| 
									
										
										
										
											2024-02-28 12:32:21 -05:00
										 |  |  |             unused: T.untyped, | 
					
						
							| 
									
										
										
										
											2023-04-04 22:40:31 -07:00
										 |  |  |             block:  T.nilable(Proc), | 
					
						
							| 
									
										
										
										
											2021-04-04 03:00:34 +02:00
										 |  |  |           ).returns(T::Hash[Symbol, T.untyped]) | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-08-12 11:54:29 -04:00
										 |  |  |         def self.find_versions(url:, regex: nil, **unused, &block) | 
					
						
							| 
									
										
										
										
											2021-07-28 13:20:12 -04:00
										 |  |  |           generated = generate_input_values(url) | 
					
						
							| 
									
										
										
										
											2020-08-08 07:16:06 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-03 17:34:39 -07:00
										 |  |  |           version_data = PageMatch.find_versions( | 
					
						
							| 
									
										
										
										
											2021-07-28 13:20:12 -04:00
										 |  |  |             url:   generated[:url], | 
					
						
							|  |  |  |             regex: regex || generated[:regex], | 
					
						
							|  |  |  |             **unused, | 
					
						
							|  |  |  |             &block | 
					
						
							|  |  |  |           ) | 
					
						
							| 
									
										
										
										
											2020-08-08 07:16:06 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-30 21:53:17 +05:30
										 |  |  |           if regex.blank? | 
					
						
							| 
									
										
										
										
											2021-05-31 16:07:56 +05:30
										 |  |  |             # Filter out unstable versions using the old version scheme where | 
					
						
							|  |  |  |             # the major version is below 40. | 
					
						
							|  |  |  |             version_data[:matches].reject! do |_, version| | 
					
						
							| 
									
										
										
										
											2022-06-10 19:07:05 -04:00
										 |  |  |               next if version.major >= 40
 | 
					
						
							|  |  |  |               next if version.minor.blank? | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |               (version.minor.to_i.odd? || version.minor >= 90) || | 
					
						
							|  |  |  |                 (version.patch.present? && version.patch >= 90) | 
					
						
							| 
									
										
										
										
											2021-05-30 21:53:17 +05:30
										 |  |  |             end | 
					
						
							|  |  |  |           end | 
					
						
							| 
									
										
										
										
											2021-07-28 13:20:12 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |           version_data | 
					
						
							| 
									
										
										
										
											2020-08-08 07:16:06 +05:30
										 |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | end |