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
|
2019-12-21 20:55:43 +05:30
|
|
|
include Checksummable
|
2019-12-04 20:38:33 +05:30
|
|
|
include EachBatch
|
2018-05-09 12:01:36 +05:30
|
|
|
include ObjectStorage::BackgroundMove
|
2020-10-24 23:57:45 +05:30
|
|
|
include FileStoreMounter
|
2018-05-09 12:01:36 +05:30
|
|
|
|
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) }
|
2019-12-21 20:55:43 +05:30
|
|
|
scope :with_files_stored_remotely, -> { where(file_store: LfsObjectUploader::Store::REMOTE) }
|
2020-04-08 14:13:33 +05:30
|
|
|
scope :for_oids, -> (oids) { where(oid: oids) }
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
validates :oid, presence: true, uniqueness: true
|
|
|
|
|
2020-10-24 23:57:45 +05:30
|
|
|
mount_file_store_uploader LfsObjectUploader
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
def self.not_linked_to_project(project)
|
|
|
|
where('NOT EXISTS (?)',
|
|
|
|
project.lfs_objects_projects.select(1).where('lfs_objects_projects.lfs_object_id = lfs_objects.id'))
|
|
|
|
end
|
|
|
|
|
2015-12-23 02:04:40 +05:30
|
|
|
def project_allowed_access?(project)
|
2019-12-21 20:55:43 +05:30
|
|
|
if project.fork_network_member
|
|
|
|
lfs_objects_projects
|
|
|
|
.where("EXISTS(?)", project.fork_network.fork_network_members.select(1).where("fork_network_members.project_id = lfs_objects_projects.project_id"))
|
|
|
|
.exists?
|
|
|
|
else
|
|
|
|
lfs_objects_projects.where(project_id: project.id).exists?
|
|
|
|
end
|
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
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
# rubocop: disable Cop/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
|
2020-06-23 00:09:42 +05:30
|
|
|
# rubocop: enable Cop/DestroyAll
|
2018-03-27 19:54:05 +05:30
|
|
|
|
|
|
|
def self.calculate_oid(path)
|
2019-12-21 20:55:43 +05:30
|
|
|
self.hexdigest(path)
|
2018-03-27 19:54:05 +05:30
|
|
|
end
|
2015-11-26 14:37:03 +05:30
|
|
|
end
|
2019-12-04 20:38:33 +05:30
|
|
|
|
|
|
|
LfsObject.prepend_if_ee('EE::LfsObject')
|