enerbot-slack 1.0.5 → 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fd9030df69e73980c92158b45d884e250c0829c2f38a4eb2fbe29c25b15561e2
4
- data.tar.gz: a5f9540078e64269bb8249a98c4d2e1f1fe72fee16a390bb01d65cc875cc9212
3
+ metadata.gz: 9badb515811b91a7d22a7634c6ba933df55f08c716245bdbc5cb3142857b25f9
4
+ data.tar.gz: b3ec646e1d658a2073878c8eca9da1941ae1d898b12d4633bce1bea24618e558
5
5
  SHA512:
6
- metadata.gz: 6eaf009cb4278106508a16ae012d16536d429ec28a3f45af3dbf2e213e54b06ce9261db870902ce998353cf00deee247adc01cf050aaf4f6fad8b3ccdfd84d6c
7
- data.tar.gz: 401484f57ec4878d4742a9ff5f5a4f200ef951b8a17b067a02f89aab345b4ba91ad96afe7a785158ec72f1efd553c702044d8a4a650e6fbf431b97a73e2312f5
6
+ metadata.gz: 125a8fc6a94085edf5b7682f8270718871ed7aa99a12beb5a02b10c1dbefa738b6bdb701fc8a2cb339a9040815157643d81ded226a1a6589a90756d689113b33
7
+ data.tar.gz: 5a205c46cf2437ef49eeaa805d2cb159542e1d28aa964de61c71c63b7cfa8b1245c02644b5168f5fca6d92c27364e3d4733f98a25d3a7716d24be3355d2c3c7d
data/lib/enerbot-slack.rb CHANGED
@@ -4,7 +4,7 @@ require_relative 'modules/slack_message'
4
4
  require_relative 'modules/slack_search'
5
5
  require_relative 'modules/slack_image'
6
6
  require_relative 'modules/slack_format'
7
- require_relative 'credentials'
7
+ require_relative 'modules/credentials'
8
8
 
9
9
  # Groups client initialization with instance parameters
10
10
  class EnerbotSlack < Credentials
@@ -15,7 +15,7 @@ class EnerbotSlack < Credentials
15
15
  include SlackSearch
16
16
 
17
17
  def initialize(name: '', image: '', token: nil, as_user: false)
18
- set_credentials
18
+ set_defaults
19
19
 
20
20
  Slack.configure do |config|
21
21
  config.token = token.nil? ? @bot_token : token
@@ -1,5 +1,5 @@
1
1
  class Credentials
2
- def set_credentials
2
+ def set_defaults
3
3
  @bot_token = ENV['SLACK_TOKEN']
4
4
  @bot_name = ENV['SLACK_NAME']
5
5
  @bot_icon = ENV['SLACK_ICON']
@@ -4,10 +4,10 @@ require 'slack-ruby-client'
4
4
 
5
5
  # Client initialization that powers the rest of interactions
6
6
  module SlackClient
7
- def configure_client(type = 'web', token = @bot_token)
7
+ def configure_client(type = 'web', token = ENV['SLACK_TOKEN'])
8
8
  Slack.configure do |config|
9
9
  config.token = token
10
- config.raise 'Missing Bot token' unless config.token
10
+ config.raise 'Missing Bot token 2' unless config.token
11
11
  end
12
12
 
13
13
  case type
@@ -10,7 +10,7 @@ module SlackConsole
10
10
  data.username
11
11
  else
12
12
  user = get_user_info(data.user)
13
- user.name
13
+ user.display_name
14
14
  end
15
15
  text = data.text
16
16
  channel_p = conversation_info(data.channel)
@@ -26,8 +26,8 @@ module SlackMessage
26
26
  destination_points(data, ts)
27
27
  client.chat_postMessage channel: @channel,
28
28
  text: text,
29
- icon_url: ENV['SLACK_BOT_ICON'],
30
- username: ENV['SLACK_BOT_NAME'],
29
+ icon_url: ENV['SLACK_ICON'],
30
+ username: ENV['SLACK_NAME'],
31
31
  thread_ts: @thread,
32
32
  as_user: false
33
33
  rescue Slack::Web::Api::Errors::SlackError => e
@@ -45,8 +45,8 @@ module SlackMessage
45
45
  destination_points(data, ts)
46
46
  client.chat_postMessage channel: @channel,
47
47
  attachments: attachment,
48
- icon_url: ENV['SLACK_BOT_ICON'],
49
- username: ENV['SLACK_BOT_NAME'],
48
+ icon_url: ENV['SLACK_ICON'],
49
+ username: ENV['SLACK_NAME'],
50
50
  thread_ts: @thread,
51
51
  as_user: false
52
52
  rescue Slack::Web::Api::Errors::SlackError => e
@@ -60,8 +60,8 @@ module SlackMessage
60
60
  client.chat_postEphemeral channel: @channel,
61
61
  text: text,
62
62
  user: user,
63
- icon_url: ENV['SLACK_BOT_ICON'],
64
- username: ENV['SLACK_BOT_NAME'],
63
+ icon_url: ENV['SLACK_ICON'],
64
+ username: ENV['SLACK_NAME'],
65
65
  as_user: false
66
66
  rescue Slack::Web::Api::Errors::SlackError => e
67
67
  print e.message
@@ -81,8 +81,8 @@ module SlackMessage
81
81
  client.reactions_add channel: channel,
82
82
  name: icon,
83
83
  timestamp: thread,
84
- icon_url: ENV['SLACK_BOT_ICON'],
85
- username: ENV['SLACK_BOT_NAME'],
84
+ icon_url: ENV['SLACK_ICON'],
85
+ username: ENV['SLACK_NAME'],
86
86
  as_user: false
87
87
  rescue Slack::Web::Api::Errors::SlackError => e
88
88
  print e.message
@@ -94,8 +94,8 @@ module SlackMessage
94
94
  client = configure_client
95
95
  destination_points(data, ts)
96
96
  client.files_upload channels: @channel,
97
- icon_url: ENV['SLACK_BOT_ICON'],
98
- username: ENV['SLACK_BOT_NAME'],
97
+ icon_url: ENV['SLACK_ICON'],
98
+ username: ENV['SLACK_NAME'],
99
99
  thread_ts: @thread,
100
100
  file: Faraday::UploadIO.new(file, 'text'),
101
101
  title: File.basename(file),
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: enerbot-slack
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 1.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luciano Adonis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-09 00:00:00.000000000 Z
11
+ date: 2024-02-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: async-websocket
@@ -86,8 +86,8 @@ executables: []
86
86
  extensions: []
87
87
  extra_rdoc_files: []
88
88
  files:
89
- - lib/credentials.rb
90
89
  - lib/enerbot-slack.rb
90
+ - lib/modules/credentials.rb
91
91
  - lib/modules/slack_admin.rb
92
92
  - lib/modules/slack_client.rb
93
93
  - lib/modules/slack_console.rb