42 lines
1.4 KiB
Ruby
42 lines
1.4 KiB
Ruby
|
class MattermostService < ChatService
|
||
|
def title
|
||
|
'Mattermost notifications'
|
||
|
end
|
||
|
|
||
|
def description
|
||
|
'Receive event notifications in Mattermost'
|
||
|
end
|
||
|
|
||
|
def to_param
|
||
|
'mattermost'
|
||
|
end
|
||
|
|
||
|
def help
|
||
|
'This service sends notifications about projects events to Mattermost channels.<br />
|
||
|
To set up this service:
|
||
|
<ol>
|
||
|
<li><a href="https://docs.mattermost.com/developer/webhooks-incoming.html#enabling-incoming-webhooks">Enable incoming webhooks</a> in your Mattermost installation. </li>
|
||
|
<li><a href="https://docs.mattermost.com/developer/webhooks-incoming.html#creating-integrations-using-incoming-webhooks">Add an incoming webhook</a> in your Mattermost team. The default channel can be overridden for each event. </li>
|
||
|
<li>Paste the webhook <strong>URL</strong> into the field bellow. </li>
|
||
|
<li>Select events below to enable notifications. The channel and username are optional. </li>
|
||
|
</ol>'
|
||
|
end
|
||
|
|
||
|
def fields
|
||
|
default_fields + build_event_channels
|
||
|
end
|
||
|
|
||
|
def default_fields
|
||
|
[
|
||
|
{ type: 'text', name: 'webhook', placeholder: 'http://mattermost_host/hooks/...' },
|
||
|
{ type: 'text', name: 'username', placeholder: 'username' },
|
||
|
{ type: 'checkbox', name: 'notify_only_broken_builds' },
|
||
|
{ type: 'checkbox', name: 'notify_only_broken_pipelines' },
|
||
|
]
|
||
|
end
|
||
|
|
||
|
def default_channel
|
||
|
"#town-square"
|
||
|
end
|
||
|
end
|