2021-09-04 01:27:46 +05:30
# frozen_string_literal: true
module Integrations
class MicrosoftTeams < BaseChatNotification
def title
'Microsoft Teams notifications'
end
def description
'Send notifications about project events to Microsoft Teams.'
end
def self . to_param
'microsoft_teams'
end
def help
2021-10-27 15:23:28 +05:30
'<p>Use this service to send notifications about events in GitLab projects to your Microsoft Teams channels. <a href="https://docs.gitlab.com/ee/user/project/integrations/microsoft_teams.html" target="_blank" rel="noopener noreferrer">How do I configure this integration?</a></p>'
2021-09-04 01:27:46 +05:30
end
def default_channel_placeholder
end
def self . supported_events
%w[ push issue confidential_issue merge_request note confidential_note tag_push
pipeline wiki_page ]
end
def default_fields
[
2023-01-13 00:05:48 +05:30
{ type : 'text' , section : SECTION_TYPE_CONNECTION , name : 'webhook' , help : 'https://outlook.office.com/webhook/…' , required : true } ,
2022-07-23 23:45:48 +05:30
{
type : 'checkbox' ,
section : SECTION_TYPE_CONFIGURATION ,
name : 'notify_only_broken_pipelines' ,
help : 'If selected, successful pipelines do not trigger a notification event.'
} ,
2021-12-11 22:18:48 +05:30
{
type : 'select' ,
2022-07-23 23:45:48 +05:30
section : SECTION_TYPE_CONFIGURATION ,
2021-12-11 22:18:48 +05:30
name : 'branches_to_be_notified' ,
title : s_ ( 'Integrations|Branches for which notifications are to be sent' ) ,
2022-08-13 15:12:31 +05:30
choices : self . class . branch_choices
2021-12-11 22:18:48 +05:30
}
2021-09-04 01:27:46 +05:30
]
end
2022-07-23 23:45:48 +05:30
def sections
[
{
type : SECTION_TYPE_CONNECTION ,
title : s_ ( 'Integrations|Connection details' ) ,
description : help
} ,
{
type : SECTION_TYPE_TRIGGER ,
title : s_ ( 'Integrations|Trigger' ) ,
description : s_ ( 'Integrations|An event will be triggered when one of the following items happen.' )
} ,
{
type : SECTION_TYPE_CONFIGURATION ,
title : s_ ( 'Integrations|Notification settings' ) ,
description : s_ ( 'Integrations|Configure the scope of notifications.' )
}
]
end
2021-09-04 01:27:46 +05:30
private
def notify ( message , opts )
:: MicrosoftTeams :: Notifier . new ( webhook ) . ping (
title : message . project_name ,
summary : message . summary ,
activity : message . activity ,
attachments : message . attachments
)
end
def custom_data ( data )
super ( data ) . merge ( markdown : true )
end
end
end