Class: MosEisley::WebAPI
- Inherits:
-
Object
- Object
- MosEisley::WebAPI
- Defined in:
- lib/http-client/webapi.rb
Constant Summary collapse
- BASE_URL =
'https://slack.com/api/'.freeze
Class Method Summary collapse
- .auth_test ⇒ Object
- .dialog_open(msg) ⇒ Object
- .me_message(channel:, text:) ⇒ Object
- .post_ephemeral(msg) ⇒ Object
- .post_message(msg) ⇒ Object
- .update(msg) ⇒ Object
Class Method Details
.auth_test ⇒ Object
5 6 7 8 9 10 |
# File 'lib/http-client/webapi.rb', line 5 def self.auth_test post_to_slack('auth.test', nil, true) do |r| MosEisley.config..merge!(r) MosEisley.logger.info('Saved meta data.') end end |
.dialog_open(msg) ⇒ Object
28 29 30 |
# File 'lib/http-client/webapi.rb', line 28 def self.dialog_open(msg) post_to_slack('dialog.open', msg) end |
.me_message(channel:, text:) ⇒ Object
12 13 14 |
# File 'lib/http-client/webapi.rb', line 12 def self.(channel:, text:) post_to_slack('chat.meMessage', {channel: channel, text: text}) end |
.post_ephemeral(msg) ⇒ Object
20 21 22 |
# File 'lib/http-client/webapi.rb', line 20 def self.post_ephemeral(msg) post_to_slack('chat.postEphemeral', msg) end |
.post_message(msg) ⇒ Object
16 17 18 |
# File 'lib/http-client/webapi.rb', line 16 def self.(msg) post_to_slack('chat.postMessage', msg) end |
.update(msg) ⇒ Object
24 25 26 |
# File 'lib/http-client/webapi.rb', line 24 def self.update(msg) post_to_slack('chat.update', msg) end |