Welcome to mirror list, hosted at ThFree Co, Russian Federation.

blob.rb « dependency_proxy « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f7b08f1d07706cfc7e20b7e65b810e80ed686b9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# frozen_string_literal: true

class DependencyProxy::Blob < ApplicationRecord
  include FileStoreMounter
  include TtlExpirable
  include Packages::Destructible
  include EachBatch

  belongs_to :group

  MAX_FILE_SIZE = 5.gigabytes.freeze

  validates :group, presence: true
  validates :file, presence: true
  validates :file_name, presence: true

  scope :with_files_stored_locally, -> { where(file_store: ::DependencyProxy::FileUploader::Store::LOCAL) }

  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

DependencyProxy::Blob.prepend_mod_with('DependencyProxy::Blob')