about summary refs log tree commit diff
path: root/app/models/form/tag_batch.rb
blob: fd517a1a64107e81b6d4706693b86093c7a79f3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true

class Form::TagBatch
  include ActiveModel::Model
  include Authorization

  attr_accessor :tag_ids, :action, :current_account

  def save
    case action
    when 'approve'
      approve!
    when 'reject'
      reject!
    end
  end

  private

  def tags
    Tag.where(id: tag_ids)
  end

  def approve!
    tags.each { |tag| authorize(tag, :update?) }
    tags.update_all(trendable: true, reviewed_at: Time.now.utc)
  end

  def reject!
    tags.each { |tag| authorize(tag, :update?) }
    tags.update_all(trendable: false, reviewed_at: Time.now.utc)
  end
end