summaryrefslogtreecommitdiff
path: root/app/services/chat_names/find_user_service.rb
blob: 3dd3ba7f01c4c51ab4ecae1c609f58baeed41701 (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
27
28
29
30
# frozen_string_literal: true

module ChatNames
  class FindUserService
    def initialize(integration, params)
      @integration = integration
      @params = params
    end

    def execute
      chat_name = find_chat_name
      return unless chat_name

      chat_name.update_last_used_at
      chat_name
    end

    private

    # rubocop: disable CodeReuse/ActiveRecord
    def find_chat_name
      ChatName.find_by(
        integration: @integration,
        team_id: @params[:team_id],
        chat_id: @params[:user_id]
      )
    end
    # rubocop: enable CodeReuse/ActiveRecord
  end
end