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

40 lines
1.2 KiB
Ruby
Raw Normal View History

2015-11-26 14:37:03 +05:30
class LfsObject < ActiveRecord::Base
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
2015-11-26 14:37:03 +05:30
has_many :projects, through: :lfs_objects_projects
2018-05-09 12:01:36 +05:30
scope :with_files_stored_locally, -> { where(file_store: [nil, LfsObjectUploader::Store::LOCAL]) }
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
2018-05-09 12:01:36 +05:30
after_save :update_file_store, if: :file_changed?
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?
[nil, LfsObjectUploader::Store::LOCAL].include?(self.file_store)
end
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-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