Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mattermost_slash_commands_service.rb « project_services « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f39d3947e5bc2327392e06334e1474ae1ac54614 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# frozen_string_literal: true

class MattermostSlashCommandsService < SlashCommandsService
  include Ci::TriggersHelper

  prop_accessor :token

  def can_test?
    false
  end

  def title
    'Mattermost slash commands'
  end

  def description
    "Perform common operations in Mattermost"
  end

  def self.to_param
    'mattermost_slash_commands'
  end

  def configure(user, params)
    token = Mattermost::Command.new(user)
      .create(command(params))

    update(active: true, token: token) if token
  rescue Mattermost::Error => e
    [false, e.message]
  end

  def list_teams(current_user)
    [Mattermost::Team.new(current_user).all, nil]
  rescue Mattermost::Error => e
    [[], e.message]
  end

  def chat_responder
    ::Gitlab::Chat::Responder::Mattermost
  end

  private

  def command(params)
    pretty_project_name = project.full_name

    params.merge(
      auto_complete: true,
      auto_complete_desc: "Perform common operations on: #{pretty_project_name}",
      auto_complete_hint: '[help]',
      description: "Perform common operations on: #{pretty_project_name}",
      display_name: "GitLab / #{pretty_project_name}",
      method: 'P',
      username: 'GitLab')
  end
end