mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
27 lines
722 B
Ruby
27 lines
722 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::RecordInvalid
|
|
@errors[:archiving_error] = I18n.t('repositories.archive_records.unsuccess_flash', repository: @repository.name)
|
|
raise ActiveRecord::Rollback
|
|
end
|
|
|
|
self
|
|
end
|
|
|
|
private
|
|
|
|
def scoped_repository_rows(ids)
|
|
@repository.repository_rows.where(id: ids).active
|
|
end
|
|
end
|
|
end
|