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
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
has_many :lfs_objects_projects
|
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
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
BATCH_SIZE = 3000
|
|
|
|
|
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
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
def self.unreferenced_in_batches
|
|
|
|
each_batch(of: BATCH_SIZE, order: :desc) do |lfs_objects|
|
|
|
|
relation = lfs_objects.where('NOT EXISTS (?)',
|
|
|
|
LfsObjectsProject.select(1).where('lfs_objects_projects.lfs_object_id = lfs_objects.id'))
|
|
|
|
|
|
|
|
yield relation if relation.any?
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
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
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
LfsObject.prepend_mod_with('LfsObject')
|