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

31 lines
722 B
Ruby
Raw Normal View History

2021-01-29 00:20:46 +05:30
# frozen_string_literal: true
class DependencyProxy::Blob < 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
2021-01-29 00:20:46 +05:30
belongs_to :group
2021-12-11 22:18:48 +05:30
MAX_FILE_SIZE = 5.gigabytes.freeze
2021-01-29 00:20:46 +05:30
validates :group, presence: true
validates :file, presence: true
validates :file_name, presence: true
2022-04-04 11:22:00 +05:30
scope :with_files_stored_locally, -> { where(file_store: ::DependencyProxy::FileUploader::Store::LOCAL) }
2021-01-29 00:20:46 +05:30
mount_file_store_uploader DependencyProxy::FileUploader
def self.total_size
sum(:size)
end
def self.find_or_build(file_name)
find_or_initialize_by(file_name: file_name)
end
end
2022-04-04 11:22:00 +05:30
DependencyProxy::Blob.prepend_mod_with('DependencyProxy::Blob')