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
|
|
|
|
|
|
|
|
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
|