summaryrefslogtreecommitdiff
path: root/app/workers/concerns/new_issuable.rb
blob: eb0d6c9c36cfbbda6a18926d513474f5de9f7ad0 (plain)
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
module NewIssuable
  attr_reader :issuable, :user

  def objects_found?(issuable_id, user_id)
    set_user(user_id)
    set_issuable(issuable_id)

    user && issuable
  end

  def set_user(user_id)
    @user = User.find_by(id: user_id)

    log_error(User, user_id) unless @user
  end

  def set_issuable(issuable_id)
    @issuable = issuable_class.find_by(id: issuable_id)

    log_error(issuable_class, issuable_id) unless @issuable
  end

  def log_error(record_class, record_id)
    Rails.logger.error("#{self.class}: couldn't find #{record_class} with ID=#{record_id}, skipping job")
  end
end