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
|
# File 'lib/xcov/slack_poster.rb', line 5
def run(report)
return if Xcov.config[:skip_slack]
return if Xcov.config[:slack_url].to_s.empty?
require 'slack-notifier'
url = Xcov.config[:slack_url]
username = Xcov.config[:slack_username]
channel = Xcov.config[:slack_channel]
if channel.to_s.length > 0
channel = ('#' + channel) unless ['#', '@'].include?(channel[0])
end
notifier = Slack::Notifier.new(url, channel: channel, username: username)
attachments = []
report.targets.each do |target|
attachments << {
text: "#{target.name}: #{target.displayable_coverage}",
color: target.coverage_color,
short: true
}
end
begin
message = Slack::Notifier::Util::LinkFormatter.format(Xcov.config[:slack_message])
results = notifier.ping(
message,
icon_url: 'https://s3-eu-west-1.amazonaws.com/fastlane.tools/fastlane.png',
attachments: attachments
)
if !results.first.nil? && results.first.code.to_i == 200
UI.message 'Successfully sent Slack notification'.green
else
UI.error "xcov failed to upload results to slack"
end
rescue Exception => e
UI.error "xcov failed to upload results to slack. error: #{e.to_s}"
end
end
|