debian-mirror-gitlab/app/models/lfs_object.rb

44 lines
1.3 KiB
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2019-07-07 11:18:12 +05:30
class LfsObject < ApplicationRecord
2018-05-09 12:01:36 +05:30
include AfterCommitQueue
include ObjectStorage::BackgroundMove
2017-09-10 17:25:29 +05:30
has_many :lfs_objects_projects, dependent: :destroy # rubocop:disable Cop/ActiveRecordDependent
2019-09-04 21:01:54 +05:30
has_many :projects, -> { distinct }, through: :lfs_objects_projects
2015-11-26 14:37:03 +05:30
2018-12-13 13:39:08 +05:30
scope :with_files_stored_locally, -> { where(file_store: LfsObjectUploader::Store::LOCAL) }
2018-05-09 12:01:36 +05:30
2015-11-26 14:37:03 +05:30
validates :oid, presence: true, uniqueness: true
mount_uploader :file, LfsObjectUploader
2015-12-23 02:04:40 +05:30
2019-07-31 22:56:46 +05:30
after_save :update_file_store, if: :saved_change_to_file?
2018-05-09 12:01:36 +05:30
def update_file_store
# The file.object_store is set during `uploader.store!`
# which happens after object is inserted/updated
self.update_column(:file_store, file.object_store)
end
2015-12-23 02:04:40 +05:30
def project_allowed_access?(project)
2018-03-17 18:26:18 +05:30
projects.exists?(project.lfs_storage_project.id)
2015-12-23 02:04:40 +05:30
end
2017-08-17 22:00:37 +05:30
2018-05-09 12:01:36 +05:30
def local_store?
2018-12-13 13:39:08 +05:30
file_store == LfsObjectUploader::Store::LOCAL
2018-05-09 12:01:36 +05:30
end
2018-11-20 20:47:30 +05:30
# rubocop: disable DestroyAll
2017-08-17 22:00:37 +05:30
def self.destroy_unreferenced
joins("LEFT JOIN lfs_objects_projects ON lfs_objects_projects.lfs_object_id = #{table_name}.id")
.where(lfs_objects_projects: { id: nil })
.destroy_all
end
2018-11-20 20:47:30 +05:30
# rubocop: enable DestroyAll
2018-03-27 19:54:05 +05:30
def self.calculate_oid(path)
Digest::SHA256.file(path).hexdigest
end
2015-11-26 14:37:03 +05:30
end