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 +4 -4
 - data/lib/enerbot-slack.rb +2 -2
 - data/lib/{credentials.rb → modules/credentials.rb} +1 -1
 - data/lib/modules/slack_client.rb +2 -2
 - data/lib/modules/slack_message.rb +10 -10
 - metadata +2 -2
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 7060b6859b55907fa4ab9fc489418b4dd878e4d5c8fd3647f256e8f19cbb7187
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: b31f59335f87d506d4c41dd91f820c9e47854789b0a006ddb536578267671811
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 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 
     | 
    
         
            -
                 
     | 
| 
      
 18 
     | 
    
         
            +
                set_defaults
         
     | 
| 
       19 
19 
     | 
    
         | 
| 
       20 
20 
     | 
    
         
             
                Slack.configure do |config|
         
     | 
| 
       21 
21 
     | 
    
         
             
                  config.token = token.nil? ? @bot_token : token
         
     | 
    
        data/lib/modules/slack_client.rb
    CHANGED
    
    | 
         @@ -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 =  
     | 
| 
      
 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[' 
     | 
| 
       30 
     | 
    
         
            -
                                        username: ENV[' 
     | 
| 
      
 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[' 
     | 
| 
       49 
     | 
    
         
            -
                                        username: ENV[' 
     | 
| 
      
 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[' 
     | 
| 
       64 
     | 
    
         
            -
                                          username: ENV[' 
     | 
| 
      
 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[' 
     | 
| 
       85 
     | 
    
         
            -
                                     username: ENV[' 
     | 
| 
      
 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[' 
     | 
| 
       98 
     | 
    
         
            -
                                    username: ENV[' 
     | 
| 
      
 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. 
     | 
| 
      
 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
         
     |