2019-02-15 15:39:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
module Gitlab
|
2017-09-10 17:25:29 +05:30
|
|
|
module SlashCommands
|
2017-08-17 22:00:37 +05:30
|
|
|
module Presenters
|
|
|
|
class Base
|
2017-09-10 17:25:29 +05:30
|
|
|
include Gitlab::Routing
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
def initialize(resource = nil)
|
|
|
|
@resource = resource
|
|
|
|
end
|
|
|
|
|
|
|
|
def display_errors
|
|
|
|
message = header_with_list("The action was not successful, because:", @resource.errors.full_messages)
|
|
|
|
|
|
|
|
ephemeral_response(text: message)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
attr_reader :resource
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def header_with_list(header, items)
|
|
|
|
message = [header]
|
|
|
|
|
|
|
|
items.each do |item|
|
|
|
|
message << "- #{item}"
|
|
|
|
end
|
|
|
|
|
|
|
|
message.join("\n")
|
|
|
|
end
|
|
|
|
|
|
|
|
def ephemeral_response(message)
|
|
|
|
response = {
|
|
|
|
response_type: :ephemeral,
|
|
|
|
status: 200
|
|
|
|
}.merge(message)
|
|
|
|
|
|
|
|
format_response(response)
|
|
|
|
end
|
|
|
|
|
|
|
|
def in_channel_response(message)
|
|
|
|
response = {
|
|
|
|
response_type: :in_channel,
|
|
|
|
status: 200
|
|
|
|
}.merge(message)
|
|
|
|
|
|
|
|
format_response(response)
|
|
|
|
end
|
|
|
|
|
|
|
|
def format_response(response)
|
2017-09-10 17:25:29 +05:30
|
|
|
response[:text] = format(response[:text]) if response.key?(:text)
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
if response.key?(:attachments)
|
2017-08-17 22:00:37 +05:30
|
|
|
response[:attachments].each do |attachment|
|
|
|
|
attachment[:pretext] = format(attachment[:pretext]) if attachment[:pretext]
|
|
|
|
attachment[:text] = format(attachment[:text]) if attachment[:text]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
response
|
|
|
|
end
|
|
|
|
|
|
|
|
# Convert Markdown to slacks format
|
|
|
|
def format(string)
|
2020-04-08 14:13:33 +05:30
|
|
|
Slack::Messenger::Util::LinkFormatter.format(string)
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def resource_url
|
|
|
|
url_for(
|
|
|
|
[
|
2020-01-01 13:55:28 +05:30
|
|
|
resource.project,
|
|
|
|
resource
|
2017-08-17 22:00:37 +05:30
|
|
|
]
|
|
|
|
)
|
|
|
|
end
|
2020-01-01 13:55:28 +05:30
|
|
|
|
|
|
|
def project_link
|
|
|
|
"[#{project.full_name}](#{project.web_url})"
|
|
|
|
end
|
|
|
|
|
|
|
|
def author_profile_link
|
|
|
|
"[#{author.to_reference}](#{url_for(author)})"
|
|
|
|
end
|
|
|
|
|
|
|
|
def response_message(custom_pretext: pretext)
|
|
|
|
{
|
|
|
|
attachments: [
|
|
|
|
{
|
|
|
|
title: "#{issue.title} · #{issue.to_reference}",
|
|
|
|
title_link: resource_url,
|
|
|
|
author_name: author.name,
|
2020-04-22 19:07:51 +05:30
|
|
|
author_icon: author.avatar_url(only_path: false),
|
2020-01-01 13:55:28 +05:30
|
|
|
fallback: fallback_message,
|
|
|
|
pretext: custom_pretext,
|
|
|
|
text: text,
|
|
|
|
color: color(resource),
|
|
|
|
fields: fields,
|
|
|
|
mrkdwn_in: fields_with_markdown
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def pretext
|
|
|
|
''
|
|
|
|
end
|
|
|
|
|
|
|
|
def text
|
|
|
|
''
|
|
|
|
end
|
|
|
|
|
|
|
|
def fields_with_markdown
|
|
|
|
%i(title pretext fields)
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|