gitlab-org--gitlab-foss/lib/gitlab/slash_commands/presenters/base.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

120 lines
2.8 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-01-19 08:22:09 +00:00
module Gitlab
module SlashCommands
2017-01-19 08:22:09 +00:00
module Presenters
class Base
include Gitlab::Routing
2017-01-19 08:22:09 +00:00
def initialize(resource = nil)
@resource = resource
end
2017-01-19 08:22:09 +00:00
def display_errors
message = header_with_list("The action was not successful, because:", @resource.errors.full_messages)
2017-01-19 08:22:09 +00:00
ephemeral_response(text: message)
end
2017-01-19 08:22:09 +00:00
private
attr_reader :resource
2017-01-19 08:22:09 +00:00
def header_with_list(header, items)
message = [header]
2017-01-19 08:22:09 +00:00
items.each do |item|
message << "- #{item}"
end
2017-01-19 08:22:09 +00:00
message.join("\n")
end
2017-01-19 08:22:09 +00:00
def ephemeral_response(message)
response = {
response_type: :ephemeral,
status: 200
}.merge(message)
2017-01-19 08:22:09 +00:00
format_response(response)
end
2017-01-19 08:22:09 +00:00
def in_channel_response(message)
response = {
response_type: :in_channel,
status: 200
}.merge(message)
2017-01-19 08:22:09 +00:00
format_response(response)
end
2017-01-19 08:22:09 +00:00
def format_response(response)
response[:text] = format(response[:text]) if response.key?(:text)
if response.key?(:attachments)
2017-01-19 08:22:09 +00:00
response[:attachments].each do |attachment|
attachment[:pretext] = format(attachment[:pretext]) if attachment[:pretext]
attachment[:text] = format(attachment[:text]) if attachment[:text]
end
end
2017-01-19 08:22:09 +00:00
response
end
2017-01-19 08:22:09 +00:00
# Convert Markdown to slacks format
def format(string)
::Slack::Messenger::Util::LinkFormatter.format(string)
2017-01-19 08:22:09 +00:00
end
2017-01-19 08:22:09 +00:00
def resource_url
url_for(
[
resource.project,
resource
2017-01-19 08:22:09 +00:00
]
)
end
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,
author_icon: author.avatar_url(only_path: false),
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-01-19 08:22:09 +00:00
end
end
end
end