about summary refs log tree commit diff
path: root/app/models/trends/tag_batch.rb
blob: 16ee08c065e38f9e50e3bff8e2fa49f2ee16d250 (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
34
35
36
37
# frozen_string_literal: true

class Trends::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, :review?) }
    tags.update_all(trendable: true, reviewed_at: action_time)
  end

  def reject!
    tags.each { |tag| authorize(tag, :review?) }
    tags.update_all(trendable: false, reviewed_at: action_time)
  end

  def action_time
    @action_time ||= Time.now.utc
  end
end