Skip to content
代码片段 群组 项目
未验证 提交 e3aaf1d3 编辑于 作者: Bojan Marjanovic's avatar Bojan Marjanovic 提交者: GitLab
浏览文件

Merge branch 'tulir/matrix-notify-improvements' into 'master'

No related branches found
No related tags found
无相关合并请求
...@@ -4,12 +4,12 @@ module Integrations ...@@ -4,12 +4,12 @@ module Integrations
class Matrix < Integration class Matrix < Integration
include Base::ChatNotification include Base::ChatNotification
MATRIX_HOSTNAME = "%{hostname}/_matrix/client/v3/rooms/%{roomId}/send/m.room.message/?access_token=%{token}" # gitleaks:allow MATRIX_HOSTNAME = "%{hostname}/_matrix/client/v3/rooms/%{roomId}/send/m.room.message/"
field :hostname, field :hostname,
section: SECTION_TYPE_CONNECTION, section: SECTION_TYPE_CONNECTION,
help: 'Custom hostname of the Matrix server. The default value is `https://matrix.org`.', help: 'Custom hostname of the Matrix server. The default value is `https://matrix-client.matrix.org`.',
placeholder: 'https://matrix.org', placeholder: 'https://matrix-client.matrix.org',
exposes_secrets: true, exposes_secrets: true,
required: false required: false
...@@ -82,11 +82,11 @@ def self.supported_events ...@@ -82,11 +82,11 @@ def self.supported_events
private private
def set_webhook def set_webhook
hostname = self.hostname.presence || 'https://matrix.org' hostname = self.hostname.presence || 'https://matrix-client.matrix.org'
return unless token.present? && room.present? return unless token.present? && room.present?
self.webhook = format(MATRIX_HOSTNAME, hostname: hostname, roomId: room, token: token) self.webhook = format(MATRIX_HOSTNAME, hostname: hostname, roomId: room)
end end
def notify(message, _opts) def notify(message, _opts)
...@@ -94,12 +94,15 @@ def notify(message, _opts) ...@@ -94,12 +94,15 @@ def notify(message, _opts)
body = { body = {
body: message.summary, body: message.summary,
msgtype: 'm.text', msgtype: 'm.notice',
format: 'org.matrix.custom.html', format: 'org.matrix.custom.html',
formatted_body: Banzai.render_and_post_process(message.summary, context) formatted_body: Banzai.render_and_post_process(message.summary, context)
}.compact_blank }.compact_blank
header = { 'Content-Type' => 'application/json' } header = {
'Content-Type' => 'application/json',
'Authorization' => "Bearer #{token}"
}
url = URI.parse(webhook) url = URI.parse(webhook)
url.path << (Time.current.to_f * 1000).round.to_s url.path << (Time.current.to_f * 1000).round.to_s
response = Gitlab::HTTP.put(url, headers: header, body: Gitlab::Json.dump(body)) response = Gitlab::HTTP.put(url, headers: header, body: Gitlab::Json.dump(body))
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
let(:payload) do let(:payload) do
{ {
body: be_present, body: be_present,
msgtype: 'm.text', msgtype: 'm.notice',
format: 'org.matrix.custom.html', format: 'org.matrix.custom.html',
formatted_body: be_present formatted_body: be_present
} }
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
it 'sets webhook value' do it 'sets webhook value' do
expect(integration).to be_valid expect(integration).to be_valid
expect(integration.webhook).to start_with('https://matrix.org/_matrix/client/v3/rooms/!qPKKM111FFKKsfoCVy:matrix') expect(integration.webhook).to start_with("https://matrix-client.matrix.org/_matrix/client/v3/rooms/#{subject.room}")
end end
context 'with custom hostname' do context 'with custom hostname' do
...@@ -58,12 +58,18 @@ ...@@ -58,12 +58,18 @@
describe '#notify' do describe '#notify' do
let(:message) { instance_double(Integrations::ChatMessage::PushMessage, summary: '_Test message') } let(:message) { instance_double(Integrations::ChatMessage::PushMessage, summary: '_Test message') }
let(:header) { { 'Content-Type' => 'application/json' } } let(:header) do
{
'Content-Type' => 'application/json',
'Authorization' => "Bearer #{subject.token}"
}
end
let(:response) { instance_double(HTTParty::Response, success?: true) } let(:response) { instance_double(HTTParty::Response, success?: true) }
let(:body) do let(:body) do
{ {
body: '_Test message', body: '_Test message',
msgtype: 'm.text', msgtype: 'm.notice',
format: 'org.matrix.custom.html', format: 'org.matrix.custom.html',
formatted_body: Banzai.render_and_post_process('_Test message', context) formatted_body: Banzai.render_and_post_process('_Test message', context)
}.compact_blank }.compact_blank
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册