| 
									
										
										
										
											2024-08-12 10:30:59 +01:00
										 |  |  | # typed: true # rubocop:todo Sorbet/StrictSigil | 
					
						
							| 
									
										
										
										
											2020-09-07 13:00:02 -04:00
										 |  |  | # frozen_string_literal: true | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-05 17:17:03 -05:00
										 |  |  | # Helper module for handling `disable!` and `deprecate!`. | 
					
						
							| 
									
										
										
										
											2024-07-14 11:49:43 -04:00
										 |  |  | # @api internal | 
					
						
							| 
									
										
										
										
											2020-09-07 13:00:02 -04:00
										 |  |  | module DeprecateDisable | 
					
						
							|  |  |  |   module_function | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-03 21:59:03 -05:00
										 |  |  |   FORMULA_DEPRECATE_DISABLE_REASONS = { | 
					
						
							| 
									
										
										
										
											2020-09-07 13:00:02 -04:00
										 |  |  |     does_not_build:      "does not build", | 
					
						
							|  |  |  |     no_license:          "has no license", | 
					
						
							|  |  |  |     repo_archived:       "has an archived upstream repository", | 
					
						
							|  |  |  |     repo_removed:        "has a removed upstream repository", | 
					
						
							|  |  |  |     unmaintained:        "is not maintained upstream", | 
					
						
							|  |  |  |     unsupported:         "is not supported upstream", | 
					
						
							|  |  |  |     deprecated_upstream: "is deprecated upstream", | 
					
						
							|  |  |  |     versioned_formula:   "is a versioned formula", | 
					
						
							| 
									
										
										
										
											2022-06-28 10:09:59 +01:00
										 |  |  |     checksum_mismatch:   "was built with an initially released source file that had " \ | 
					
						
							| 
									
										
										
										
											2021-11-15 19:34:19 +01:00
										 |  |  |                          "a different checksum than the current one. " \ | 
					
						
							|  |  |  |                          "Upstream's repository might have been compromised. " \ | 
					
						
							|  |  |  |                          "We can re-package this once upstream has confirmed that they retagged their release", | 
					
						
							| 
									
										
										
										
											2020-09-07 13:00:02 -04:00
										 |  |  |   }.freeze | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-03 21:59:03 -05:00
										 |  |  |   CASK_DEPRECATE_DISABLE_REASONS = { | 
					
						
							| 
									
										
										
										
											2024-02-27 13:37:53 +11:00
										 |  |  |     discontinued:             "is discontinued upstream", | 
					
						
							| 
									
										
										
										
											2024-03-28 10:47:45 +11:00
										 |  |  |     moved_to_mas:             "is now exclusively distributed on the Mac App Store", | 
					
						
							| 
									
										
										
										
											2024-02-27 13:37:53 +11:00
										 |  |  |     no_longer_available:      "is no longer available upstream", | 
					
						
							|  |  |  |     no_longer_meets_criteria: "no longer meets the criteria for acceptable casks", | 
					
						
							|  |  |  |     unmaintained:             "is not maintained upstream", | 
					
						
							| 
									
										
										
										
											2024-04-02 11:27:02 -04:00
										 |  |  |     unsigned:                 "is unsigned or does not meet signature requirements", | 
					
						
							| 
									
										
										
										
											2023-12-03 21:59:03 -05:00
										 |  |  |   }.freeze | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-14 11:49:43 -04:00
										 |  |  |   # One year when << or >> to Date.today. | 
					
						
							|  |  |  |   REMOVE_DISABLED_TIME_WINDOW = 12
 | 
					
						
							|  |  |  |   REMOVE_DISABLED_BEFORE = (Date.today << REMOVE_DISABLED_TIME_WINDOW).freeze | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-04 00:30:49 -05:00
										 |  |  |   def type(formula_or_cask) | 
					
						
							|  |  |  |     return :deprecated if formula_or_cask.deprecated? | 
					
						
							| 
									
										
										
										
											2023-12-16 20:08:42 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     :disabled if formula_or_cask.disabled? | 
					
						
							| 
									
										
										
										
											2023-12-04 00:30:49 -05:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def message(formula_or_cask) | 
					
						
							|  |  |  |     return if type(formula_or_cask).blank? | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     reason = if formula_or_cask.deprecated? | 
					
						
							|  |  |  |       formula_or_cask.deprecation_reason | 
					
						
							| 
									
										
										
										
											2023-12-03 21:59:03 -05:00
										 |  |  |     elsif formula_or_cask.disabled? | 
					
						
							| 
									
										
										
										
											2023-12-04 00:30:49 -05:00
										 |  |  |       formula_or_cask.disable_reason | 
					
						
							| 
									
										
										
										
											2020-09-07 13:00:02 -04:00
										 |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-03 21:59:03 -05:00
										 |  |  |     reason = if formula_or_cask.is_a?(Formula) && FORMULA_DEPRECATE_DISABLE_REASONS.key?(reason) | 
					
						
							|  |  |  |       FORMULA_DEPRECATE_DISABLE_REASONS[reason] | 
					
						
							|  |  |  |     elsif formula_or_cask.is_a?(Cask::Cask) && CASK_DEPRECATE_DISABLE_REASONS.key?(reason) | 
					
						
							|  |  |  |       CASK_DEPRECATE_DISABLE_REASONS[reason] | 
					
						
							| 
									
										
										
										
											2023-12-04 00:30:49 -05:00
										 |  |  |     else | 
					
						
							|  |  |  |       reason | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-14 11:49:43 -04:00
										 |  |  |     message = if reason.present? | 
					
						
							|  |  |  |       "#{type(formula_or_cask)} because it #{reason}!" | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |       "#{type(formula_or_cask)}!" | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     disable_date = formula_or_cask.disable_date | 
					
						
							|  |  |  |     if !disable_date && formula_or_cask.deprecation_date | 
					
						
							|  |  |  |       disable_date = formula_or_cask.deprecation_date >> REMOVE_DISABLED_TIME_WINDOW | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2024-08-14 21:31:01 +02:00
										 |  |  |     if disable_date | 
					
						
							|  |  |  |       message += if disable_date < Date.today | 
					
						
							|  |  |  |         " It was disabled on #{disable_date}." | 
					
						
							|  |  |  |       else | 
					
						
							|  |  |  |         " It will be disabled on #{disable_date}." | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2023-12-04 00:30:49 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-14 11:49:43 -04:00
										 |  |  |     message | 
					
						
							| 
									
										
										
										
											2023-12-04 00:30:49 -05:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def to_reason_string_or_symbol(string, type:) | 
					
						
							| 
									
										
										
										
											2023-12-04 14:11:31 -05:00
										 |  |  |     if (type == :formula && FORMULA_DEPRECATE_DISABLE_REASONS.key?(string&.to_sym)) || | 
					
						
							|  |  |  |        (type == :cask && CASK_DEPRECATE_DISABLE_REASONS.key?(string&.to_sym)) | 
					
						
							| 
									
										
										
										
											2023-12-04 00:30:49 -05:00
										 |  |  |       return string.to_sym | 
					
						
							| 
									
										
										
										
											2023-12-03 21:59:03 -05:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2020-09-07 13:00:02 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-04 00:30:49 -05:00
										 |  |  |     string | 
					
						
							| 
									
										
										
										
											2020-09-07 13:00:02 -04:00
										 |  |  |   end | 
					
						
							|  |  |  | end |