f93f8f569d
Enables frozen string for the following: * lib/gitlab/patch/**/*.rb * lib/gitlab/popen/**/*.rb * lib/gitlab/profiler/**/*.rb * lib/gitlab/project_authorizations/**/*.rb * lib/gitlab/prometheus/**/*.rb * lib/gitlab/query_limiting/**/*.rb * lib/gitlab/quick_actions/**/*.rb * lib/gitlab/redis/**/*.rb * lib/gitlab/request_profiler/**/*.rb * lib/gitlab/search/**/*.rb * lib/gitlab/sherlock/**/*.rb * lib/gitlab/sidekiq_middleware/**/*.rb * lib/gitlab/slash_commands/**/*.rb * lib/gitlab/sql/**/*.rb * lib/gitlab/template/**/*.rb * lib/gitlab/testing/**/*.rb * lib/gitlab/utils/**/*.rb * lib/gitlab/webpack/**/*.rb Partially addresses gitlab-org/gitlab-ce#47424.
79 lines
1.8 KiB
Ruby
79 lines
1.8 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module SlashCommands
|
|
module Presenters
|
|
class Base
|
|
include Gitlab::Routing
|
|
|
|
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
|
|
|
|
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)
|
|
response[:text] = format(response[:text]) if response.key?(:text)
|
|
|
|
if response.key?(:attachments)
|
|
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)
|
|
Slack::Notifier::LinkFormatter.format(string)
|
|
end
|
|
|
|
def resource_url
|
|
url_for(
|
|
[
|
|
@resource.project.namespace.becomes(Namespace),
|
|
@resource.project,
|
|
@resource
|
|
]
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|