enerbot-slack 1.0.5 → 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fd9030df69e73980c92158b45d884e250c0829c2f38a4eb2fbe29c25b15561e2
4
- data.tar.gz: a5f9540078e64269bb8249a98c4d2e1f1fe72fee16a390bb01d65cc875cc9212
3
+ metadata.gz: 7060b6859b55907fa4ab9fc489418b4dd878e4d5c8fd3647f256e8f19cbb7187
4
+ data.tar.gz: b31f59335f87d506d4c41dd91f820c9e47854789b0a006ddb536578267671811
5
5
  SHA512:
6
- metadata.gz: 6eaf009cb4278106508a16ae012d16536d429ec28a3f45af3dbf2e213e54b06ce9261db870902ce998353cf00deee247adc01cf050aaf4f6fad8b3ccdfd84d6c
7
- data.tar.gz: 401484f57ec4878d4742a9ff5f5a4f200ef951b8a17b067a02f89aab345b4ba91ad96afe7a785158ec72f1efd553c702044d8a4a650e6fbf431b97a73e2312f5
6
+ metadata.gz: f6e5283a3068ec99b480e6382ac1c46d3caffe3cb9a2d5a5f1dd4abe20b0ff70ccc22f7087ef137b9a0cb0084dcc0c4bb5470ed2a116e5a64e74d75b855fb950
7
+ data.tar.gz: 93691d4af630bbdea879029486d8ae04cb9474d93733a44fb2172cbea4f2d201abcd3b3816f584eeeb621102c7b3a4541010c1059f0234f084978de0262505ca
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
@@ -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,7 +1,7 @@
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.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luciano Adonis
@@ -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