scinote-web/app/services/repository_actions/archive_rows_service.rb
2020-06-19 09:04:42 +02:00

28 lines
711 B
Ruby

# frozen_string_literal: true
module RepositoryActions
class ArchiveRowsService < ArchiveRowsBaseService
def call
return self unless valid?
ActiveRecord::Base.transaction do
@repository_rows.find_each(batch_size: 100) do |row|
row.archive!(@user)
log_activity(:archive_inventory_item, row) if @log_activities
end
rescue ActiveRecord::RecordNotSaved
@errors[:archiving_error] = I18n.t('repositories.archive_records.unsuccess_flash', @repository.name)
raise ActiveRecord::Rollback
end
self
end
private
def scoped_repository_rows(ids)
@repository.repository_rows.where(id: ids).active
end
end
end