mr.zeroandClaude Fable 5 c72279a470 Phase 5: ship the catalog ActiveAdmin resources from the engine
- the 7 catalog admin files (softwares, releases, external_links,
  platform_links, images, files page, downloads) move to the engine's
  app/admin; the host ActiveAdmin instance loads them via
  ActiveAdmin.application.load_paths (single admin, URLs unchanged)
- engine initializers: Zeitwerk ignore for app/admin (production eager load)
  and load_paths + watchable_dirs registration, guarded by defined?(ActiveAdmin)
  so the admin-less dummy app boots
- images admin reads image owners from WarpEngine.config.image_owners; the
  host registers the Member owner in config/initializers/warp_engine.rb;
  the interim ImageUsage registry is gone
- fix: SoftwareImage.distinct.pluck clashed with its order(:position)
  default scope on MySQL (unscope(:order)) — introduced in phase 0, caught
  by the first authenticated /admin/images smoke test
- files page: download links use the public /file/ URL instead of the raw
  container path; the picker's stored path comes from config

Verified: both suites green, zeitwerk:check (production) clean, JSON
baselines intact, authenticated admin smoke test on every page incl.
the 3-level nested software form and Files picker mode.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-04 19:18:28 +02:00

WarpEngine

Mountable Rails engine: retro szoftverkatalógus CI-pipeline-ból hívható release-updaterrel, publikus read-only JSON API-val és a host adminjába betöltődő ActiveAdmin erőforrásokkal.

Használat

# Gemfile
gem "warp_engine", path: "../../libs/ruby/warp_engine"

# config/routes.rb — utolsó sorként, hogy a host route-jai nyerjenek
mount WarpEngine::Engine => "/"

# config/initializers/warp_engine.rb
WarpEngine.configure do |c|
  c.file_container_path  = ENV.fetch("FILE_CONTAINER_PATH", "/softwares")
  c.image_container_path = ENV.fetch("IMAGE_CONTAINER_PATH", "/images")
  c.update_secret        = ENV["UPDATE_SECRET"]
  # Ha a host modelljei is használnak katalógus-képeket:
  c.image_owners << {
    label: "member",
    image_ids: -> { Member.where.not(image_id: nil).distinct.pluck(:image_id) },
    usage_label: ->(image) { "member" if Member.where(image_id: image.id).exists? }
  }
end

Megjegyzések

  • A modellek soft-delete-et használnak (default_scope { where(deleted_at: nil) }); az updater .unscoped-dal "feltámasztja" az újra beküldött, korábban törölt rekordokat.
  • A táblanevek prefix nélküliek (softwares, releases, ...).
  • Az admin erőforrások a host ActiveAdmin példányába töltődnek be; auth (Devise) a host dolga.
S
Description
No description provided
Readme
89 KiB
Languages
Ruby 100%