debian-mirror-gitlab/app/models/dependency_proxy/manifest.rb

33 lines
1,009 B
Ruby
Raw Normal View History

2021-02-22 17:27:13 +05:30
# frozen_string_literal: true
class DependencyProxy::Manifest < ApplicationRecord
include FileStoreMounter
2021-11-18 22:05:49 +05:30
include TtlExpirable
2022-03-02 08:16:31 +05:30
include Packages::Destructible
2021-11-18 22:05:49 +05:30
include EachBatch
2022-05-07 20:08:51 +05:30
include UpdateNamespaceStatistics
2021-02-22 17:27:13 +05:30
belongs_to :group
2022-05-07 20:08:51 +05:30
alias_attribute :namespace, :group
2021-02-22 17:27:13 +05:30
2021-12-11 22:18:48 +05:30
MAX_FILE_SIZE = 10.megabytes.freeze
DIGEST_HEADER = 'Docker-Content-Digest'
2021-02-22 17:27:13 +05:30
validates :group, presence: true
validates :file, presence: true
validates :file_name, presence: true
validates :digest, presence: true
2021-12-11 22:18:48 +05:30
scope :order_id_desc, -> { reorder(id: :desc) }
2022-04-04 11:22:00 +05:30
scope :with_files_stored_locally, -> { where(file_store: ::DependencyProxy::FileUploader::Store::LOCAL) }
2021-02-22 17:27:13 +05:30
2021-12-11 22:18:48 +05:30
mount_file_store_uploader DependencyProxy::FileUploader
2022-05-07 20:08:51 +05:30
update_namespace_statistics namespace_statistics_name: :dependency_proxy_size
2021-04-17 20:07:23 +05:30
2021-12-11 22:18:48 +05:30
def self.find_by_file_name_or_digest(file_name:, digest:)
find_by(file_name: file_name) || find_by(digest: digest)
2021-04-17 20:07:23 +05:30
end
2021-02-22 17:27:13 +05:30
end
2022-04-04 11:22:00 +05:30
DependencyProxy::Manifest.prepend_mod_with('DependencyProxy::Manifest')