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
|
2022-05-07 20:08:51 +05:30
|
|
|
include UpdateNamespaceStatistics
|
2021-01-29 00:20:46 +05:30
|
|
|
|
|
|
|
belongs_to :group
|
2022-05-07 20:08:51 +05:30
|
|
|
alias_attribute :namespace, :group
|
2021-01-29 00:20:46 +05:30
|
|
|
|
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
|
2022-05-07 20:08:51 +05:30
|
|
|
update_namespace_statistics namespace_statistics_name: :dependency_proxy_size
|
2021-01-29 00:20:46 +05:30
|
|
|
|
|
|
|
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')
|