624 lines
		
	
	
		
			19 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			624 lines
		
	
	
		
			19 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| require "tempfile"
 | |
| require "uri"
 | |
| 
 | |
| module GitHub
 | |
|   module_function
 | |
| 
 | |
|   API_URL = "https://api.github.com"
 | |
| 
 | |
|   CREATE_GIST_SCOPES = ["gist"].freeze
 | |
|   CREATE_ISSUE_FORK_OR_PR_SCOPES = ["public_repo"].freeze
 | |
|   ALL_SCOPES = (CREATE_GIST_SCOPES + CREATE_ISSUE_FORK_OR_PR_SCOPES).freeze
 | |
|   ALL_SCOPES_URL = Formatter.url(
 | |
|     "https://github.com/settings/tokens/new?scopes=#{ALL_SCOPES.join(",")}&description=Homebrew",
 | |
|   ).freeze
 | |
| 
 | |
|   class Error < RuntimeError
 | |
|     attr_reader :github_message
 | |
|   end
 | |
| 
 | |
|   class HTTPNotFoundError < Error
 | |
|     def initialize(github_message)
 | |
|       @github_message = github_message
 | |
|       super
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   class RateLimitExceededError < Error
 | |
|     def initialize(reset, github_message)
 | |
|       @github_message = github_message
 | |
|       super <<~EOS
 | |
|         GitHub API Error: #{github_message}
 | |
|         Try again in #{pretty_ratelimit_reset(reset)}, or create a personal access token:
 | |
|           #{ALL_SCOPES_URL}
 | |
|         #{Utils::Shell.set_variable_in_profile("HOMEBREW_GITHUB_API_TOKEN", "your_token_here")}
 | |
|       EOS
 | |
|     end
 | |
| 
 | |
|     def pretty_ratelimit_reset(reset)
 | |
|       pretty_duration(Time.at(reset) - Time.now)
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   class AuthenticationFailedError < Error
 | |
|     def initialize(github_message)
 | |
|       @github_message = github_message
 | |
|       message = +"GitHub #{github_message}:"
 | |
|       message << if Homebrew::EnvConfig.github_api_token
 | |
|         <<~EOS
 | |
|           HOMEBREW_GITHUB_API_TOKEN may be invalid or expired; check:
 | |
|             #{Formatter.url("https://github.com/settings/tokens")}
 | |
|         EOS
 | |
|       else
 | |
|         <<~EOS
 | |
|           The GitHub credentials in the macOS keychain may be invalid.
 | |
|           Clear them with:
 | |
|             printf "protocol=https\\nhost=github.com\\n" | git credential-osxkeychain erase
 | |
|           Or create a personal access token:
 | |
|             #{ALL_SCOPES_URL}
 | |
|           #{Utils::Shell.set_variable_in_profile("HOMEBREW_GITHUB_API_TOKEN", "your_token_here")}
 | |
|         EOS
 | |
|       end
 | |
|       super message.freeze
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   class ValidationFailedError < Error
 | |
|     def initialize(github_message, errors)
 | |
|       @github_message = if errors.empty?
 | |
|         github_message
 | |
|       else
 | |
|         "#{github_message}: #{errors}"
 | |
|       end
 | |
| 
 | |
|       super(@github_message)
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   def env_username_password
 | |
|     return unless Homebrew::EnvConfig.github_api_username
 | |
|     return unless Homebrew::EnvConfig.github_api_password
 | |
| 
 | |
|     [Homebrew::EnvConfig.github_api_password, Homebrew::EnvConfig.github_api_username]
 | |
|   end
 | |
| 
 | |
|   def keychain_username_password
 | |
|     github_credentials = Utils.popen(["git", "credential-osxkeychain", "get"], "w+") do |pipe|
 | |
|       pipe.write "protocol=https\nhost=github.com\n"
 | |
|       pipe.close_write
 | |
|       pipe.read
 | |
|     end
 | |
|     github_username = github_credentials[/username=(.+)/, 1]
 | |
|     github_password = github_credentials[/password=(.+)/, 1]
 | |
|     return unless github_username
 | |
| 
 | |
|     # Don't use passwords from the keychain unless they look like
 | |
|     # GitHub Personal Access Tokens:
 | |
|     #   https://github.com/Homebrew/brew/issues/6862#issuecomment-572610344
 | |
|     return unless /^[a-f0-9]{40}$/i.match?(github_password)
 | |
| 
 | |
|     [github_password, github_username]
 | |
|   rescue Errno::EPIPE
 | |
|     # The above invocation via `Utils.popen` can fail, causing the pipe to be
 | |
|     # prematurely closed (before we can write to it) and thus resulting in a
 | |
|     # broken pipe error. The root cause is usually a missing or malfunctioning
 | |
|     # `git-credential-osxkeychain` helper.
 | |
|     nil
 | |
|   end
 | |
| 
 | |
|   def api_credentials
 | |
|     @api_credentials ||= begin
 | |
|       Homebrew::EnvConfig.github_api_token || env_username_password || keychain_username_password
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   def api_credentials_type
 | |
|     if Homebrew::EnvConfig.github_api_token
 | |
|       :env_token
 | |
|     elsif env_username_password
 | |
|       :env_username_password
 | |
|     elsif keychain_username_password
 | |
|       :keychain_username_password
 | |
|     else
 | |
|       :none
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   def api_credentials_error_message(response_headers, needed_scopes)
 | |
|     return if response_headers.empty?
 | |
| 
 | |
|     @api_credentials_error_message ||= begin
 | |
|       unauthorized = (response_headers["http/1.1"] == "401 Unauthorized")
 | |
|       scopes = response_headers["x-accepted-oauth-scopes"].to_s.split(", ")
 | |
|       if unauthorized && scopes.blank?
 | |
|         needed_human_scopes = needed_scopes.join(", ")
 | |
|         credentials_scopes = response_headers["x-oauth-scopes"]
 | |
|         return if needed_human_scopes.blank? && credentials_scopes.blank?
 | |
| 
 | |
|         needed_human_scopes = "none" if needed_human_scopes.blank?
 | |
|         credentials_scopes = "none" if credentials_scopes.blank?
 | |
| 
 | |
|         case GitHub.api_credentials_type
 | |
|         when :keychain_username_password
 | |
|           onoe <<~EOS
 | |
|             Your macOS keychain GitHub credentials do not have sufficient scope!
 | |
|             Scopes they need: #{needed_human_scopes}
 | |
|             Scopes they have: #{credentials_scopes}
 | |
|             Create a personal access token:
 | |
|               #{ALL_SCOPES_URL}
 | |
|             #{Utils::Shell.set_variable_in_profile("HOMEBREW_GITHUB_API_TOKEN", "your_token_here")}
 | |
|           EOS
 | |
|         when :env_token
 | |
|           onoe <<~EOS
 | |
|             Your HOMEBREW_GITHUB_API_TOKEN does not have sufficient scope!
 | |
|             Scopes it needs: #{needed_human_scopes}
 | |
|               Scopes it has: #{credentials_scopes}
 | |
|             Create a new personal access token:
 | |
|               #{ALL_SCOPES_URL}
 | |
|             #{Utils::Shell.set_variable_in_profile("HOMEBREW_GITHUB_API_TOKEN", "your_token_here")}
 | |
|           EOS
 | |
|         end
 | |
|       end
 | |
|       true
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   def open_api(url, data: nil, request_method: nil, scopes: [].freeze, parse_json: true)
 | |
|     # This is a no-op if the user is opting out of using the GitHub API.
 | |
|     return block_given? ? yield({}) : {} if Homebrew::EnvConfig.no_github_api?
 | |
| 
 | |
|     args = ["--header", "Accept: application/vnd.github.v3+json", "--write-out", "\n%\{http_code}"]
 | |
|     args += ["--header", "Accept: application/vnd.github.antiope-preview+json"]
 | |
| 
 | |
|     token, username = api_credentials
 | |
|     case api_credentials_type
 | |
|     when :env_username_password, :keychain_username_password
 | |
|       args += ["--user", "#{username}:#{token}"]
 | |
|     when :env_token
 | |
|       args += ["--header", "Authorization: token #{token}"]
 | |
|     end
 | |
| 
 | |
|     data_tmpfile = nil
 | |
|     if data
 | |
|       begin
 | |
|         data = JSON.generate data
 | |
|         data_tmpfile = Tempfile.new("github_api_post", HOMEBREW_TEMP)
 | |
|       rescue JSON::ParserError => e
 | |
|         raise Error, "Failed to parse JSON request:\n#{e.message}\n#{data}", e.backtrace
 | |
|       end
 | |
|     end
 | |
| 
 | |
|     headers_tmpfile = Tempfile.new("github_api_headers", HOMEBREW_TEMP)
 | |
|     begin
 | |
|       if data
 | |
|         data_tmpfile.write data
 | |
|         data_tmpfile.close
 | |
|         args += ["--data", "@#{data_tmpfile.path}"]
 | |
| 
 | |
|         args += ["--request", request_method.to_s] if request_method
 | |
|       end
 | |
| 
 | |
|       args += ["--dump-header", headers_tmpfile.path]
 | |
| 
 | |
|       output, errors, status = curl_output("--location", url.to_s, *args, secrets: [token])
 | |
|       output, _, http_code = output.rpartition("\n")
 | |
|       output, _, http_code = output.rpartition("\n") if http_code == "000"
 | |
|       headers = headers_tmpfile.read
 | |
|     ensure
 | |
|       if data_tmpfile
 | |
|         data_tmpfile.close
 | |
|         data_tmpfile.unlink
 | |
|       end
 | |
|       headers_tmpfile.close
 | |
|       headers_tmpfile.unlink
 | |
|     end
 | |
| 
 | |
|     begin
 | |
|       raise_api_error(output, errors, http_code, headers, scopes) if !http_code.start_with?("2") || !status.success?
 | |
| 
 | |
|       return if http_code == "204" # No Content
 | |
| 
 | |
|       output = JSON.parse output if parse_json
 | |
|       if block_given?
 | |
|         yield output
 | |
|       else
 | |
|         output
 | |
|       end
 | |
|     rescue JSON::ParserError => e
 | |
|       raise Error, "Failed to parse JSON response\n#{e.message}", e.backtrace
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   def open_graphql(query, scopes: [].freeze)
 | |
|     data = { query: query }
 | |
|     result = open_api("https://api.github.com/graphql", scopes: scopes, data: data, request_method: "POST")
 | |
| 
 | |
|     raise Error, result["errors"].map { |e| "#{e["type"]}: #{e["message"]}" }.join("\n") if result["errors"].present?
 | |
| 
 | |
|     result["data"]
 | |
|   end
 | |
| 
 | |
|   def raise_api_error(output, errors, http_code, headers, scopes)
 | |
|     json = begin
 | |
|       JSON.parse(output)
 | |
|     rescue
 | |
|       nil
 | |
|     end
 | |
|     message = json&.[]("message") || "curl failed! #{errors}"
 | |
| 
 | |
|     meta = {}
 | |
|     headers.lines.each do |l|
 | |
|       key, _, value = l.delete(":").partition(" ")
 | |
|       key = key.downcase.strip
 | |
|       next if key.empty?
 | |
| 
 | |
|       meta[key] = value.strip
 | |
|     end
 | |
| 
 | |
|     if meta.fetch("x-ratelimit-remaining", 1).to_i <= 0
 | |
|       reset = meta.fetch("x-ratelimit-reset").to_i
 | |
|       raise RateLimitExceededError.new(reset, message)
 | |
|     end
 | |
| 
 | |
|     GitHub.api_credentials_error_message(meta, scopes)
 | |
| 
 | |
|     case http_code
 | |
|     when "401", "403"
 | |
|       raise AuthenticationFailedError, message
 | |
|     when "404"
 | |
|       raise HTTPNotFoundError, message
 | |
|     when "422"
 | |
|       errors = json&.[]("errors") || []
 | |
|       raise ValidationFailedError.new(message, errors)
 | |
|     else
 | |
|       raise Error, message
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   def check_runs(repo: nil, commit: nil, pr: nil)
 | |
|     if pr
 | |
|       repo = pr.fetch("base").fetch("repo").fetch("full_name")
 | |
|       commit = pr.fetch("head").fetch("sha")
 | |
|     end
 | |
| 
 | |
|     open_api(url_to("repos", repo, "commits", commit, "check-runs"))
 | |
|   end
 | |
| 
 | |
|   def create_check_run(repo:, data:)
 | |
|     open_api(url_to("repos", repo, "check-runs"), data: data)
 | |
|   end
 | |
| 
 | |
|   def search_issues(query, **qualifiers)
 | |
|     search("issues", query, **qualifiers)
 | |
|   end
 | |
| 
 | |
|   def repository(user, repo)
 | |
|     open_api(url_to("repos", user, repo))
 | |
|   end
 | |
| 
 | |
|   def search_code(**qualifiers)
 | |
|     search("code", **qualifiers)
 | |
|   end
 | |
| 
 | |
|   def issues_for_formula(name, tap: CoreTap.instance, tap_full_name: tap.full_name, state: nil)
 | |
|     search_issues(name, repo: tap_full_name, state: state, in: "title")
 | |
|   end
 | |
| 
 | |
|   def user
 | |
|     @user ||= open_api("#{API_URL}/user")
 | |
|   end
 | |
| 
 | |
|   def permission(repo, user)
 | |
|     open_api("#{API_URL}/repos/#{repo}/collaborators/#{user}/permission")
 | |
|   end
 | |
| 
 | |
|   def write_access?(repo, user = nil)
 | |
|     user ||= self.user["login"]
 | |
|     ["admin", "write"].include?(permission(repo, user)["permission"])
 | |
|   end
 | |
| 
 | |
|   def pull_requests(repo, **options)
 | |
|     url = "#{API_URL}/repos/#{repo}/pulls?#{URI.encode_www_form(options)}"
 | |
|     open_api(url)
 | |
|   end
 | |
| 
 | |
|   def merge_pull_request(repo, number:, sha:, merge_method:, commit_message: nil)
 | |
|     url = "#{API_URL}/repos/#{repo}/pulls/#{number}/merge"
 | |
|     data = { sha: sha, merge_method: merge_method }
 | |
|     data[:commit_message] = commit_message if commit_message
 | |
|     open_api(url, data: data, request_method: :PUT, scopes: CREATE_ISSUE_FORK_OR_PR_SCOPES)
 | |
|   end
 | |
| 
 | |
|   def print_pull_requests_matching(query)
 | |
|     open_or_closed_prs = search_issues(query, type: "pr", user: "Homebrew")
 | |
| 
 | |
|     open_prs = open_or_closed_prs.select { |i| i["state"] == "open" }
 | |
|     prs = if !open_prs.empty?
 | |
|       puts "Open pull requests:"
 | |
|       open_prs
 | |
|     else
 | |
|       puts "Closed pull requests:" unless open_or_closed_prs.empty?
 | |
|       open_or_closed_prs.take(20)
 | |
|     end
 | |
| 
 | |
|     prs.each { |i| puts "#{i["title"]} (#{i["html_url"]})" }
 | |
|   end
 | |
| 
 | |
|   def create_fork(repo)
 | |
|     url = "#{API_URL}/repos/#{repo}/forks"
 | |
|     data = {}
 | |
|     scopes = CREATE_ISSUE_FORK_OR_PR_SCOPES
 | |
|     open_api(url, data: data, scopes: scopes)
 | |
|   end
 | |
| 
 | |
|   def check_fork_exists(repo)
 | |
|     _, reponame = repo.split("/")
 | |
| 
 | |
|     case api_credentials_type
 | |
|     when :env_username_password, :keychain_username_password
 | |
|       _, username = api_credentials
 | |
|     when :env_token
 | |
|       username = open_api(url_to("user")) { |json| json["login"] }
 | |
|     end
 | |
|     json = open_api(url_to("repos", username, reponame))
 | |
| 
 | |
|     return false if json["message"] == "Not Found"
 | |
| 
 | |
|     true
 | |
|   end
 | |
| 
 | |
|   def create_pull_request(repo, title, head, base, body)
 | |
|     url = "#{API_URL}/repos/#{repo}/pulls"
 | |
|     data = { title: title, head: head, base: base, body: body }
 | |
|     scopes = CREATE_ISSUE_FORK_OR_PR_SCOPES
 | |
|     open_api(url, data: data, scopes: scopes)
 | |
|   end
 | |
| 
 | |
|   def private_repo?(full_name)
 | |
|     uri = url_to "repos", full_name
 | |
|     open_api(uri) { |json| json["private"] }
 | |
|   end
 | |
| 
 | |
|   def query_string(*main_params, **qualifiers)
 | |
|     params = main_params
 | |
| 
 | |
|     params += qualifiers.flat_map do |key, value|
 | |
|       Array(value).map { |v| "#{key}:#{v}" }
 | |
|     end
 | |
| 
 | |
|     "q=#{URI.encode_www_form_component(params.join(" "))}&per_page=100"
 | |
|   end
 | |
| 
 | |
|   def url_to(*subroutes)
 | |
|     URI.parse([API_URL, *subroutes].join("/"))
 | |
|   end
 | |
| 
 | |
|   def search(entity, *queries, **qualifiers)
 | |
|     uri = url_to "search", entity
 | |
|     uri.query = query_string(*queries, **qualifiers)
 | |
|     open_api(uri) { |json| json.fetch("items", []) }
 | |
|   end
 | |
| 
 | |
|   def approved_reviews(user, repo, pr, commit: nil)
 | |
|     query = <<~EOS
 | |
|       { repository(name: "#{repo}", owner: "#{user}") {
 | |
|           pullRequest(number: #{pr}) {
 | |
|             reviews(states: APPROVED, first: 100) {
 | |
|               nodes {
 | |
|                 author {
 | |
|                   ... on User { email login name databaseId }
 | |
|                   ... on Organization { email login name databaseId }
 | |
|                 }
 | |
|                 authorAssociation
 | |
|                 commit { oid }
 | |
|               }
 | |
|             }
 | |
|           }
 | |
|         }
 | |
|       }
 | |
|     EOS
 | |
| 
 | |
|     result = open_graphql(query, scopes: ["user:email"])
 | |
|     reviews = result["repository"]["pullRequest"]["reviews"]["nodes"]
 | |
| 
 | |
|     reviews.map do |r|
 | |
|       next if commit.present? && commit != r["commit"]["oid"]
 | |
|       next unless %w[MEMBER OWNER].include? r["authorAssociation"]
 | |
| 
 | |
|       email = if r["author"]["email"].blank?
 | |
|         "#{r["author"]["databaseId"]}+#{r["author"]["login"]}@users.noreply.github.com"
 | |
|       else
 | |
|         r["author"]["email"]
 | |
|       end
 | |
| 
 | |
|       name = r["author"]["name"].presence || r["author"]["login"]
 | |
| 
 | |
|       {
 | |
|         "email" => email,
 | |
|         "name"  => name,
 | |
|         "login" => r["author"]["login"],
 | |
|       }
 | |
|     end.compact
 | |
|   end
 | |
| 
 | |
|   def dispatch_event(user, repo, event, **payload)
 | |
|     url = "#{API_URL}/repos/#{user}/#{repo}/dispatches"
 | |
|     open_api(url, data:           { event_type: event, client_payload: payload },
 | |
|                   request_method: :POST,
 | |
|                   scopes:         CREATE_ISSUE_FORK_OR_PR_SCOPES)
 | |
|   end
 | |
| 
 | |
|   def workflow_dispatch_event(user, repo, workflow, ref, **inputs)
 | |
|     url = "#{API_URL}/repos/#{user}/#{repo}/actions/workflows/#{workflow}/dispatches"
 | |
|     open_api(url, data:           { ref: ref, inputs: inputs },
 | |
|                   request_method: :POST,
 | |
|                   scopes:         CREATE_ISSUE_FORK_OR_PR_SCOPES)
 | |
|   end
 | |
| 
 | |
|   def get_artifact_url(user, repo, pr, workflow_id: "tests.yml", artifact_name: "bottles")
 | |
|     scopes = CREATE_ISSUE_FORK_OR_PR_SCOPES
 | |
|     base_url = "#{API_URL}/repos/#{user}/#{repo}"
 | |
|     pr_payload = open_api("#{base_url}/pulls/#{pr}", scopes: scopes)
 | |
|     pr_sha = pr_payload["head"]["sha"]
 | |
|     pr_branch = URI.encode_www_form_component(pr_payload["head"]["ref"])
 | |
|     parameters = "event=pull_request&branch=#{pr_branch}"
 | |
| 
 | |
|     workflow = open_api("#{base_url}/actions/workflows/#{workflow_id}/runs?#{parameters}", scopes: scopes)
 | |
|     workflow_run = workflow["workflow_runs"].select do |run|
 | |
|       run["head_sha"] == pr_sha
 | |
|     end
 | |
| 
 | |
|     if workflow_run.empty?
 | |
|       raise Error, <<~EOS
 | |
|         No matching workflow run found for these criteria!
 | |
|           Commit SHA:   #{pr_sha}
 | |
|           Branch ref:   #{pr_branch}
 | |
|           Pull request: #{pr}
 | |
|           Workflow:     #{workflow_id}
 | |
|       EOS
 | |
|     end
 | |
| 
 | |
|     status = workflow_run.first["status"].sub("_", " ")
 | |
|     if status != "completed"
 | |
|       raise Error, <<~EOS
 | |
|         The newest workflow run for ##{pr} is still #{status}!
 | |
|           #{Formatter.url workflow_run.first["html_url"]}
 | |
|       EOS
 | |
|     end
 | |
| 
 | |
|     artifacts = open_api(workflow_run.first["artifacts_url"], scopes: scopes)
 | |
| 
 | |
|     artifact = artifacts["artifacts"].select do |art|
 | |
|       art["name"] == artifact_name
 | |
|     end
 | |
| 
 | |
|     if artifact.empty?
 | |
|       raise Error, <<~EOS
 | |
|         No artifact with the name `#{artifact_name}` was found!
 | |
|           #{Formatter.url workflow_run.first["html_url"]}
 | |
|       EOS
 | |
|     end
 | |
| 
 | |
|     artifact.first["archive_download_url"]
 | |
|   end
 | |
| 
 | |
|   def sponsors_by_tier(user)
 | |
|     query = <<~EOS
 | |
|         { organization(login: "#{user}") {
 | |
|           sponsorsListing {
 | |
|             tiers(first: 10, orderBy: {field: MONTHLY_PRICE_IN_CENTS, direction: DESC}) {
 | |
|               nodes {
 | |
|                 monthlyPriceInDollars
 | |
|                 adminInfo {
 | |
|                   sponsorships(first: 100, includePrivate: true) {
 | |
|                     totalCount
 | |
|                     nodes {
 | |
|                       privacyLevel
 | |
|                       sponsorEntity {
 | |
|                         __typename
 | |
|                         ... on Organization { login name }
 | |
|                         ... on User { login name }
 | |
|                       }
 | |
|                     }
 | |
|                   }
 | |
|                 }
 | |
|               }
 | |
|             }
 | |
|           }
 | |
|         }
 | |
|       }
 | |
|     EOS
 | |
|     result = open_graphql(query, scopes: ["admin:org", "user"])
 | |
| 
 | |
|     tiers = result["organization"]["sponsorsListing"]["tiers"]["nodes"]
 | |
| 
 | |
|     tiers.map do |t|
 | |
|       tier = t["monthlyPriceInDollars"]
 | |
|       raise Error, "Your token needs the 'admin:org' scope to access this API" if t["adminInfo"].nil?
 | |
| 
 | |
|       sponsorships = t["adminInfo"]["sponsorships"]
 | |
|       count = sponsorships["totalCount"]
 | |
|       sponsors = sponsorships["nodes"].map do |sponsor|
 | |
|         next unless sponsor["privacyLevel"] == "PUBLIC"
 | |
| 
 | |
|         se = sponsor["sponsorEntity"]
 | |
|         {
 | |
|           "name"  => se["name"].presence || sponsor["login"],
 | |
|           "login" => se["login"],
 | |
|           "type"  => se["__typename"].downcase,
 | |
|         }
 | |
|       end.compact
 | |
| 
 | |
|       {
 | |
|         "tier"     => tier,
 | |
|         "count"    => count,
 | |
|         "sponsors" => sponsors,
 | |
|       }
 | |
|     end.compact
 | |
|   end
 | |
| 
 | |
|   def get_repo_license(user, repo)
 | |
|     response = GitHub.open_api("#{GitHub::API_URL}/repos/#{user}/#{repo}/license")
 | |
|     return unless response.key?("license")
 | |
| 
 | |
|     response["license"]["spdx_id"]
 | |
|   rescue GitHub::HTTPNotFoundError
 | |
|     nil
 | |
|   end
 | |
| 
 | |
|   def api_errors
 | |
|     [GitHub::AuthenticationFailedError, GitHub::HTTPNotFoundError,
 | |
|      GitHub::RateLimitExceededError, GitHub::Error, JSON::ParserError].freeze
 | |
|   end
 | |
| 
 | |
|   def fetch_pull_requests(query, tap_full_name, state: nil)
 | |
|     GitHub.issues_for_formula(query, tap_full_name: tap_full_name, state: state).select do |pr|
 | |
|       pr["html_url"].include?("/pull/") &&
 | |
|         /(^|\s)#{Regexp.quote(query)}(:|\s|$)/i =~ pr["title"]
 | |
|     end
 | |
|   rescue GitHub::RateLimitExceededError => e
 | |
|     opoo e.message
 | |
|     []
 | |
|   end
 | |
| 
 | |
|   def check_for_duplicate_pull_requests(query, tap_full_name, state:, args:)
 | |
|     pull_requests = fetch_pull_requests(query, tap_full_name, state: state)
 | |
|     return if pull_requests.blank?
 | |
| 
 | |
|     duplicates_message = <<~EOS
 | |
|       These pull requests may be duplicates:
 | |
|       #{pull_requests.map { |pr| "#{pr["title"]} #{pr["html_url"]}" }.join("\n")}
 | |
|     EOS
 | |
|     error_message = "Duplicate PRs should not be opened. Use --force to override this error."
 | |
|     if args.force? && !args.quiet?
 | |
|       opoo duplicates_message
 | |
|     elsif !args.force? && args.quiet?
 | |
|       odie error_message
 | |
|     elsif !args.force?
 | |
|       odie <<~EOS
 | |
|         #{duplicates_message.chomp}
 | |
|         #{error_message}
 | |
|       EOS
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   def forked_repo_info!(tap_full_name)
 | |
|     response = GitHub.create_fork(tap_full_name)
 | |
|     # GitHub API responds immediately but fork takes a few seconds to be ready.
 | |
|     sleep 1 until GitHub.check_fork_exists(tap_full_name)
 | |
|     remote_url = if system("git", "config", "--local", "--get-regexp", "remote\..*\.url", "git@github.com:.*")
 | |
|       response.fetch("ssh_url")
 | |
|     else
 | |
|       url = response.fetch("clone_url")
 | |
|       if (api_token = Homebrew::EnvConfig.github_api_token)
 | |
|         url.gsub!(%r{^https://github\.com/}, "https://#{api_token}@github.com/")
 | |
|       end
 | |
|       url
 | |
|     end
 | |
|     username = response.fetch("owner").fetch("login")
 | |
|     [remote_url, username]
 | |
|   end
 | |
| end
 | 
