scinote-web/app/services/repository_actions/archive_rows_service.rb

28 lines
711 B
Ruby
Raw Normal View History

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