Module: Utils::Svn Private

Extended by:
SystemCommand::Mixin, Output::Mixin
Defined in:
utils/svn.rb

Overview

This module is part of a private API. This module may only be used in the Homebrew/brew repository. Third parties should avoid using this module if possible, as it may be removed or changed without warning.

Helper functions for querying SVN information.

Class Method Summary collapse

Methods included from Output::Mixin

odebug, odeprecated, odie, odisabled, ofail, oh1, oh1_title, ohai, ohai_title, onoe, opoo, opoo_outside_github_actions, pretty_duration, pretty_installed, pretty_outdated, pretty_uninstalled

Methods included from SystemCommand::Mixin

system_command, system_command!

Class Method Details

.available?Boolean

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:

  • (Boolean)


15
16
17
# File 'utils/svn.rb', line 15

def available?
  version.present?
end

.clear_version_cachevoid

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

This method returns an undefined value.



51
52
53
# File 'utils/svn.rb', line 51

def clear_version_cache
  remove_instance_variable(:@version) if defined?(@version)
end

.invalid_cert_flagsArray<String>

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:



41
42
43
44
45
46
47
48
# File 'utils/svn.rb', line 41

def invalid_cert_flags
  opoo "Ignoring Subversion certificate errors!"
  args = ["--non-interactive", "--trust-server-cert"]
  if Version.new(version || "-1") >= Version.new("1.9")
    args << "--trust-server-cert-failures=expired,not-yet-valid"
  end
  args
end

.remote_exists?(url) ⇒ Boolean

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:

Returns:

  • (Boolean)


29
30
31
32
33
34
35
36
37
38
# File 'utils/svn.rb', line 29

def remote_exists?(url)
  return true unless available?

  args = ["ls", url, "--depth", "empty"]
  _, stderr, status = system_command("svn", args:, print_stderr: false).to_a
  return !!status.success? unless stderr.include?("certificate verification failed")

  # OK to unconditionally trust here because we're just checking if a URL exists.
  system_command("svn", args: args.concat(invalid_cert_flags), print_stderr: false).success?
end

.versionString?

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:



20
21
22
23
24
25
26
# File 'utils/svn.rb', line 20

def version
  return @version if defined?(@version)

  stdout, _, status = system_command(HOMEBREW_SHIMS_PATH/"shared/svn", args:         ["--version"],
                                                                       print_stderr: false).to_a
  @version = T.let(status.success? ? stdout.chomp[/svn, version (\d+(?:\.\d+)*)/, 1] : nil, T.nilable(String))
end