8fbbf41e29
This is allowed for existing instances so we don't end up 76 offenses right away, but for new code one should _only_ use this if they _have_ to remove non database data. Even then it's usually better to do this in a service class as this gives you more control over how to remove the data (e.g. in bulk).
26 lines
748 B
Ruby
26 lines
748 B
Ruby
class LfsObject < ActiveRecord::Base
|
|
has_many :lfs_objects_projects, dependent: :destroy # rubocop:disable Cop/ActiveRecordDependent
|
|
has_many :projects, through: :lfs_objects_projects
|
|
|
|
validates :oid, presence: true, uniqueness: true
|
|
|
|
mount_uploader :file, LfsObjectUploader
|
|
|
|
def storage_project(project)
|
|
if project && project.forked?
|
|
storage_project(project.forked_from_project)
|
|
else
|
|
project
|
|
end
|
|
end
|
|
|
|
def project_allowed_access?(project)
|
|
projects.exists?(storage_project(project).id)
|
|
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
|
|
end
|