4ef3e3491e
Goldiloader is great, but has several issues with has_many :through relations: * https://github.com/salsify/goldiloader/issues/12 * https://github.com/salsify/goldiloader/issues/14 * https://github.com/salsify/goldiloader/issues/18 Rather than try to figure out which applies in each case, we should just do the drudge work of manually disabling autoloading for all relations of this type. We can always use regular preloading for specific cases, but this way we avoid generating invalid queries through Goldiloader's magic.
37 lines
1 KiB
Ruby
37 lines
1 KiB
Ruby
class LfsObject < ActiveRecord::Base
|
|
include AfterCommitQueue
|
|
include ObjectStorage::BackgroundMove
|
|
|
|
has_many :lfs_objects_projects, dependent: :destroy # rubocop:disable Cop/ActiveRecordDependent
|
|
has_many :projects, -> { auto_include(false) }, through: :lfs_objects_projects
|
|
|
|
scope :with_files_stored_locally, -> { where(file_store: [nil, LfsObjectUploader::Store::LOCAL]) }
|
|
|
|
validates :oid, presence: true, uniqueness: true
|
|
|
|
mount_uploader :file, LfsObjectUploader
|
|
|
|
before_save :update_file_store
|
|
|
|
def update_file_store
|
|
self.file_store = file.object_store
|
|
end
|
|
|
|
def project_allowed_access?(project)
|
|
projects.exists?(project.lfs_storage_project.id)
|
|
end
|
|
|
|
def local_store?
|
|
[nil, LfsObjectUploader::Store::LOCAL].include?(self.file_store)
|
|
end
|
|
|
|
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
|
|
|
|
def self.calculate_oid(path)
|
|
Digest::SHA256.file(path).hexdigest
|
|
end
|
|
end
|