Class: Homebrew::Bundle::Flatpak Private

Inherits:
Extension show all
Defined in:
bundle/extensions/flatpak.rb

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

Constant Summary collapse

Package =

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

T.type_alias { { name: String, remote: String, remote_url: T.nilable(String) } }

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Extension

add_supported?, check, cleanup_disable_description, cleanup_disable_env, cleanup_item_name, cleanup_supported?, disable_predicate_method, dump_disable_description, dump_disable_env, dump_disable_predicate_method, dump_disable_supported?, dump_name, dump_output, dump_supported?, dump_with, fetchable_name, flag, inherited, install_package!, install_supported?, install_verb, legacy_check_step, package_description, package_manager_env, package_manager_executable, package_manager_executable!, package_manager_installed?, package_manager_name, package_record, predicate_method, quote, remove_supported?, uninstall_package!, with_package_manager_env

Methods inherited from PackageType

check, #checkable_entries, dump_output, dump_supported?, #exit_early_check, fetchable_name, #find_actionable, #full_check, inherited, install_supported?, install_verb

Class Method Details

.add_remote!(flatpak, remote_name, url, verbose:) ⇒ 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.

Add a remote with appropriate flags

Parameters:

Returns:

  • (Boolean)


331
332
333
334
335
336
337
338
339
340
# File 'bundle/extensions/flatpak.rb', line 331

def add_remote!(flatpak, remote_name, url, verbose:)
  if url.end_with?(".flatpakrepo")
    Bundle.system(flatpak, "remote-add", "--if-not-exists", "--system", remote_name, url, verbose:)
  else
    # For bare repository URLs, add with --no-gpg-verify for user repos
    Bundle.system(
      flatpak, "remote-add", "--if-not-exists", "--system", "--no-gpg-verify", remote_name, url, verbose:
    )
  end
end

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:



19
# File 'bundle/extensions/flatpak.rb', line 19

def banner_name = "Flatpak packages"

.check_labelString

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:



16
# File 'bundle/extensions/flatpak.rb', line 16

def check_label = "Flatpak"

.cleanup!(flatpaks) ⇒ void

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.

Parameters:



373
374
375
376
377
378
# File 'bundle/extensions/flatpak.rb', line 373

def cleanup!(flatpaks)
  flatpaks.each do |flatpak_name|
    Kernel.system("flatpak", "uninstall", "-y", "--system", flatpak_name)
  end
  puts "Uninstalled #{flatpaks.size} flatpak#{"s" if flatpaks.size != 1}"
end

.cleanup_headingString?

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:



27
28
29
# File 'bundle/extensions/flatpak.rb', line 27

def cleanup_heading
  "flatpaks"
end

.cleanup_items(entries) ⇒ Array<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.

Parameters:

Returns:



360
361
362
363
364
365
366
367
368
369
370
# File 'bundle/extensions/flatpak.rb', line 360

def cleanup_items(entries)
  return [].freeze unless package_manager_installed?

  kept_flatpaks = entries.filter_map do |entry|
    entry.name if entry.type == type
  end

  return [].freeze if kept_flatpaks.empty?

  packages - kept_flatpaks
end

.dumpString

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:



159
160
161
# File 'bundle/extensions/flatpak.rb', line 159

def dump
  packages_with_remotes.map { |package| dump_entry(package) }.join("\n")
end

.dump_entry(package) ⇒ 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.

Parameters:

Returns:



132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
# File 'bundle/extensions/flatpak.rb', line 132

def dump_entry(package)
  package = T.cast(package, Package)
  remote = package[:remote]
  remote_url = package[:remote_url]
  name = package[:name]

  if remote == "flathub"
    # Tier 1: Don't specify remote for flathub (default)
    "flatpak #{quote(name)}"
  elsif remote&.end_with?("-origin")
    # Tier 2: Single-app remote - dump with URL only
    if remote_url.present?
      "flatpak #{quote(name)}, remote: #{quote(remote_url)}"
    else
      # Fallback if URL not available (shouldn't happen for -origin remotes)
      "flatpak #{quote(name)}, remote: #{quote(remote)}"
    end
  elsif remote_url.present?
    # Tier 3: Named shared remote - dump with name and URL
    "flatpak #{quote(name)}, remote: #{quote(remote)}, url: #{quote(remote_url)}"
  else
    # Named remote without URL (user-defined or system remote)
    "flatpak #{quote(name)}, remote: #{quote(remote)}"
  end
end

.ensure_named_remote_exists!(flatpak, remote_name, url, verbose:) ⇒ void

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.

Ensure a named shared remote exists (Tier 3) Warn but don't change if URL differs (user explicitly named it)

Parameters:



303
304
305
306
307
308
309
310
311
312
313
314
315
316
# File 'bundle/extensions/flatpak.rb', line 303

def ensure_named_remote_exists!(flatpak, remote_name, url, verbose:)
  existing_url = get_remote_url(flatpak, remote_name)

  if existing_url && existing_url != url
    # Named remote with different URL - warn but don't change (user explicitly named it)
    puts "Warning: Remote '#{remote_name}' exists with different URL (#{existing_url}), using existing"
    return
  end

  return if existing_url

  puts "Adding named remote #{remote_name} from #{url}" if verbose
  add_remote!(flatpak, remote_name, url, verbose:)
end

.ensure_single_app_remote_exists!(flatpak, remote_name, url, verbose:) ⇒ void

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.

Ensure a single-app remote exists (Tier 2) Safe to replace if URL differs since it's isolated per-app

Parameters:



284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
# File 'bundle/extensions/flatpak.rb', line 284

def ensure_single_app_remote_exists!(flatpak, remote_name, url, verbose:)
  existing_url = get_remote_url(flatpak, remote_name)

  if existing_url && existing_url != url
    # Single-app remote with different URL - safe to replace
    puts "Replacing single-app remote #{remote_name} (URL changed)" if verbose
    Bundle.system(flatpak, "remote-delete", "--system", "--force", remote_name, verbose:)
    existing_url = nil
  end

  return if existing_url

  puts "Adding single-app remote #{remote_name} from #{url}" if verbose
  add_remote!(flatpak, remote_name, url, verbose:)
end

.entry(name, options = {}) ⇒ Dsl::Entry

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:



32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# File 'bundle/extensions/flatpak.rb', line 32

def entry(name, options = {})
  unknown_options = options.keys - [:remote, :url]
  raise "unknown options(#{unknown_options.inspect}) for flatpak" if unknown_options.present?

  remote = options[:remote]
  url = options[:url]
  if !remote.nil? && !remote.is_a?(String)
    raise "options[:remote](#{remote.inspect}) should be a String object"
  end
  raise "options[:url](#{url.inspect}) should be a String object" if !url.nil? && !url.is_a?(String)

  # Validate: url: can only be used with a named remote (not a URL remote)
  if url && remote&.start_with?("http://", "https://")
    raise "url: parameter cannot be used when remote: is already a URL"
  end

  normalized_options = {}
  normalized_options[:remote] = remote || "flathub"
  normalized_options[:url] = url if url

  Dsl::Entry.new(type, name, normalized_options)
end

.generate_single_app_remote_name(app_id) ⇒ 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.

Generate a single-app remote name (Tier 2) Pattern: -origin (matches Flatpak's native behavior for .flatpakref)

Parameters:

Returns:



277
278
279
# File 'bundle/extensions/flatpak.rb', line 277

def generate_single_app_remote_name(app_id)
  "#{app_id}-origin"
end

.get_remote_url(flatpak, remote_name) ⇒ 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.

Get URL for an existing remote, or nil if not found

Parameters:

Returns:



320
321
322
323
324
325
326
327
# File 'bundle/extensions/flatpak.rb', line 320

def get_remote_url(flatpak, remote_name)
  output = `#{flatpak} remote-list --system --columns=name,url 2>/dev/null`.chomp
  output.split("\n").each do |line|
    parts = line.split("\t")
    return parts[1] if parts[0] == remote_name
  end
  nil
end

.install!(name, with: nil, preinstall: true, no_upgrade: false, verbose: false, force: false, remote: "flathub", url: nil, **_options) ⇒ 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:

  • name (String)
  • with (Array<String>, nil) (defaults to: nil)
  • preinstall (Boolean) (defaults to: true)
  • no_upgrade (Boolean) (defaults to: false)
  • verbose (Boolean) (defaults to: false)
  • force (Boolean) (defaults to: false)
  • remote (String) (defaults to: "flathub")
  • url (String, nil) (defaults to: nil)
  • _options (Homebrew::Bundle::EntryOption)

Returns:

  • (Boolean)


203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
# File 'bundle/extensions/flatpak.rb', line 203

def install!(name, with: nil, preinstall: true, no_upgrade: false, verbose: false, force: false,
             remote: "flathub", url: nil, **_options)
  _ = with
  _ = no_upgrade
  _ = force

  return true unless package_manager_installed?
  return true unless preinstall

  flatpak = package_manager_executable!.to_s

  # 3-tier remote handling:
  # - Tier 1: no URL → use named remote (default: flathub)
  # - Tier 2: URL only → single-app remote (<app-id>-origin)
  # - Tier 3: URL + name → named shared remote

  if url.present?
    # Tier 3: Named remote with URL - create shared remote
    puts "Installing #{name} Flatpak from #{remote} (#{url}). It is not currently installed." if verbose
    ensure_named_remote_exists!(flatpak, remote, url, verbose:)
    actual_remote = remote
  elsif remote.start_with?("http://", "https://")
    if remote.end_with?(".flatpakref")
      # .flatpakref files - install directly (Flatpak handles single-app remote natively)
      puts "Installing #{name} Flatpak from #{remote}. It is not currently installed." if verbose
      return install_flatpakref!(flatpak, name, remote, verbose:)
    else
      # Tier 2: URL only - create single-app remote
      actual_remote = generate_single_app_remote_name(name)
      if verbose
        puts "Installing #{name} Flatpak from #{actual_remote} (#{remote}). It is not currently installed."
      end
      ensure_single_app_remote_exists!(flatpak, actual_remote, remote, verbose:)
    end
  else
    # Tier 1: Named remote (default: flathub)
    puts "Installing #{name} Flatpak from #{remote}. It is not currently installed." if verbose
    actual_remote = remote
  end

  # Install from the remote
  return false unless Bundle.system(flatpak, "install", "-y", "--system", actual_remote, name, verbose:)

  package = { name:, remote: actual_remote, remote_url: url }
  packages_with_remotes = T.let(@packages_with_remotes || [], T::Array[Package])
  packages_with_remotes << package
  @packages_with_remotes = packages_with_remotes
  @installed_packages = packages_with_remotes.dup
  @packages = packages_with_remotes.map { |pkg| pkg[:name] }
  true
end

.install_flatpakref!(flatpak, name, url, verbose:) ⇒ 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.

Install from a .flatpakref file (Tier 2 variant - Flatpak handles single-app remote natively)

Parameters:

Returns:

  • (Boolean)


257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
# File 'bundle/extensions/flatpak.rb', line 257

def install_flatpakref!(flatpak, name, url, verbose:)
  return false unless Bundle.system(flatpak, "install", "-y", "--system", url, verbose:)

  # Get the actual remote name used by Flatpak
  output = `#{flatpak} list --app --columns=application,origin 2>/dev/null`.chomp
  installed = output.split("\n").find { |line| line.start_with?(name) }
  actual_remote = installed ? installed.split("\t")[1] : "#{name}-origin"
  actual_remote ||= "#{name}-origin"
  package = { name:, remote: actual_remote, remote_url: nil }
  packages_with_remotes = T.let(@packages_with_remotes || [], T::Array[Package])
  packages_with_remotes << package
  @packages_with_remotes = packages_with_remotes
  @installed_packages = packages_with_remotes.dup
  @packages = packages_with_remotes.map { |pkg| pkg[:name] }
  true
end

.installed_packagesArray<Package>

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:



124
125
126
127
128
129
# File 'bundle/extensions/flatpak.rb', line 124

def installed_packages
  installed_packages = @installed_packages
  return installed_packages if installed_packages

  @installed_packages = packages_with_remotes.dup
end

.package_installed?(name, with: nil, remote: nil) ⇒ 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)


349
350
351
352
353
354
355
356
357
# File 'bundle/extensions/flatpak.rb', line 349

def package_installed?(name, with: nil, remote: nil)
  _ = with

  if remote
    installed_packages.any? { |pkg| pkg[:name] == name && pkg[:remote] == remote }
  else
    installed_packages.any? { |pkg| pkg[:name] == name }
  end
end

.packagesArray<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:



116
117
118
119
120
121
# File 'bundle/extensions/flatpak.rb', line 116

def packages
  packages = @packages
  return packages if packages

  @packages = packages_with_remotes.map { |pkg| pkg[:name] }
end

.packages_with_remotesArray<Package>

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:



87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# File 'bundle/extensions/flatpak.rb', line 87

def packages_with_remotes
  packages_with_remotes = @packages_with_remotes
  return packages_with_remotes if packages_with_remotes

  @packages_with_remotes = if (flatpak = package_manager_executable)
    # List applications with their origin remote
    # Using --app to filter applications only
    # Using --columns=application,origin to get app IDs and their remotes
    output = `#{flatpak} list --app --columns=application,origin 2>/dev/null`.chomp

    packages = output.split("\n").filter_map do |line|
      parts = line.strip.split("\t")
      name = parts[0]
      next if parts.empty? || name.nil? || name.empty?

      remote = parts[1] || "flathub"
      package = T.let({ name:, remote:, remote_url: T.let(nil, T.nilable(String)) }, Package)
      remote_url = remote_urls[remote]
      package[:remote_url] = remote_url
      package
    end
    packages.sort_by { |pkg| pkg[:name].to_s }
  end
  return [] if @packages_with_remotes.nil?

  @packages_with_remotes
end

.preinstall!(name, with: nil, no_upgrade: false, verbose: false, remote: "flathub", url: nil, **_options) ⇒ 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)


174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
# File 'bundle/extensions/flatpak.rb', line 174

def preinstall!(name, with: nil, no_upgrade: false, verbose: false, remote: "flathub", url: nil, **_options)
  _ = with
  _ = no_upgrade
  _ = url

  return false unless package_manager_installed?

  # Check if package is installed at all (regardless of remote)
  if package_installed?(name)
    puts "Skipping install of #{name} Flatpak. It is already installed." if verbose
    return false
  end

  true
end

.remote_urlsHash{String => 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:



64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# File 'bundle/extensions/flatpak.rb', line 64

def remote_urls
  remote_urls = @remote_urls
  return remote_urls if remote_urls

  @remote_urls = if (flatpak = package_manager_executable)
    output = `#{flatpak} remote-list --system --columns=name,url 2>/dev/null`.chomp
    urls = {}
    output.split("\n").each do |line|
      parts = line.strip.split("\t")
      next if parts.size < 2

      name = parts[0]
      url = parts[1]
      urls[name] = url if name && url
    end
    urls
  end
  return {} if @remote_urls.nil?

  @remote_urls
end

.reset!void

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.



56
57
58
59
60
61
# File 'bundle/extensions/flatpak.rb', line 56

def reset!
  @packages = T.let(nil, T.nilable(T::Array[String]))
  @packages_with_remotes = T.let(nil, T.nilable(T::Array[Package]))
  @remote_urls = T.let(nil, T.nilable(T::Hash[String, String]))
  @installed_packages = T.let(nil, T.nilable(T::Array[Package]))
end

.switch_description(description) ⇒ 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.

Parameters:

Returns:



22
23
24
# File 'bundle/extensions/flatpak.rb', line 22

def switch_description(description)
  "#{super} Note: Linux only."
end

.typeSymbol

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:



13
# File 'bundle/extensions/flatpak.rb', line 13

def type = :flatpak

Instance Method Details

#failure_reason(package, no_upgrade:) ⇒ 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.

Parameters:

  • package (Object)
  • no_upgrade (Boolean)

Returns:



389
390
391
392
393
394
395
396
397
398
# File 'bundle/extensions/flatpak.rb', line 389

def failure_reason(package, no_upgrade:)
  _ = no_upgrade

  name = if package.is_a?(Hash)
    package[:name]
  else
    package
  end
  "#{self.class.check_label} #{name} needs to be installed."
end

#format_checkable(entries) ⇒ Array<Object>

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:



382
383
384
385
386
# File 'bundle/extensions/flatpak.rb', line 382

def format_checkable(entries)
  checkable_entries(entries).map do |entry|
    { name: entry.name, options: entry.options }
  end
end

#installed_and_up_to_date?(package, no_upgrade: false) ⇒ 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:

  • package (Object)
  • no_upgrade (Boolean) (defaults to: false)

Returns:

  • (Boolean)


401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
# File 'bundle/extensions/flatpak.rb', line 401

def installed_and_up_to_date?(package, no_upgrade: false)
  _ = no_upgrade

  return self.class.package_installed?(T.cast(package, String)) unless package.is_a?(Hash)

  flatpak = package
  name = T.cast(flatpak[:name], String)
  options = T.cast(flatpak[:options], T::Hash[Symbol, String])
  remote = options.fetch(:remote, "flathub")
  url = options[:url]

  # 3-tier remote handling:
  # - Tier 1: Named remote → check with that remote name
  # - Tier 2: URL only → resolve to single-app remote name (<app-id>-origin)
  # - Tier 3: URL + name → check with the named remote
  actual_remote = if url.blank? && remote.start_with?("http://", "https://")
    # Tier 2: URL only - resolve to single-app remote name
    # (.flatpakref - check by name only since remote name varies)
    return self.class.package_installed?(name) if remote.end_with?(".flatpakref")

    self.class.generate_single_app_remote_name(name)
  else
    # Tier 1 (named remote) and Tier 3 (named remote with URL) both use the remote name
    remote
  end

  self.class.package_installed?(name, remote: actual_remote)
end