Merge pull request 'Add script for notifying Kosmos channels from Ruby' (#279) from feature/notify_xmpp_from_ruby into master

Reviewed-on: #279
This commit is contained in:
Râu Cao 2021-01-25 10:59:05 +00:00
commit 0920803535
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
require 'uri'
require 'net/http'
require 'json'
WEBHOOK_TOKEN = "foo"
def send_notification(msg)
uri = URI.parse('https://hal8000.chat.kosmos.org/incoming/#{WEBHOOK_TOKEN}')
https = Net::HTTP.new(uri.host, uri.port)
https.use_ssl = true
request = Net::HTTP::Post.new(uri.request_uri, 'Content-Type' => 'application/json')
request.body = { room: "ops@kosmos.chat", message: msg }.to_json
response = https.request(request)
puts response.inspect
end