slkecho 1.4.0 → 2.0.1

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: 60840e25954d5f27219da1751cc8afd0659d8fad0011d9801f392d73eff0fbdd
4
- data.tar.gz: 01146cb293d39c8e1d7b01ff6748dbca25c3f6a35316b24ec5ef2ddb951d5f62
3
+ metadata.gz: 7e644caea3b2e9401cfc58f37814cbf04d94d74292f4b150eb12f108d63022e7
4
+ data.tar.gz: '081186fc14c84b7311f710a7d14f7f8c962ca69e9165857cd03aa38ebb9f65fc'
5
5
  SHA512:
6
- metadata.gz: 6a61dc7880593a6cd2f4b53be89f5db6ec22431d086640e770092925751e6cb049f4fe852e061cc8524e69ee99c765134de4a178b31a343cb922aa6d5fcb9be1
7
- data.tar.gz: fc30c5af4a5fca0defd1a3e87651ff4389e1a19767a5ab16915864d95341caa47abaa34a28d3afdfceb113fcc44f8767e24978565b9859934a41c2040b0221c1
6
+ metadata.gz: 79303c561c911bf9c9e46f2f7ccc7f23baa76738fde53219e071eccb17ca9764ef5a9fb1c5091136e75291ee2336a9a2ee340c93945dcba2c5e66ac25b016629
7
+ data.tar.gz: e372eeb64e03fe3a1275365ee64f815dd55454a10414a0c896644d33e7a5731bbcdfe5aae21f833480cfaf582f9f4ee6f5196231a9cd9987cb79aa52535ae7cc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [v2.0.1] - 2024-01-17
4
+
5
+ - feat: Add Dockerfile
6
+ - ci: Add release gem workflow
7
+ - ci: Add release container image workflow
8
+ - fix: Exclude unnecessary files from the .gem
9
+
10
+ ## [v2.0.0] - 2024-01-12
11
+
12
+ - feat: Remove --subject option
13
+ - feat: Rename --mention option to --mention-by-email option
14
+ - feat: Rename errors
15
+ - `Slkecho::SlackApiRequestError` to `Slkecho::SlackApiHttpError`
16
+ - `Slkecho::SlackApiResponseErorr` to `Slkecho::SlackApiResultError`
17
+ - feat: Improve error message of Slack API request
18
+ - feat: Remove channel validation
19
+ - chore: Update options description
20
+
3
21
  ## [v1.4.0] - 2024-01-09
4
22
 
5
23
  - feat: Add --icon-emoji option
data/README.md CHANGED
@@ -23,36 +23,45 @@ More details: [Working with the RubyGems registry - GitHub Docs](https://docs.gi
23
23
  ## Usage
24
24
 
25
25
  ```
26
- slkecho -c <channel> -s <subject> -m <mention> message
26
+ slkecho -c <channel> -m <mention> message
27
27
  ```
28
28
 
29
29
  or message from stdin:
30
30
 
31
31
  ```
32
- cat message.txt | slkecho -c <channel> -s <subject> -m <mention>
32
+ cat message.txt | slkecho -c <channel> -m <mention>
33
33
  ```
34
34
 
35
35
  ### Options
36
36
 
37
37
  #### -c, --channel <channel> (required)
38
38
 
39
- Specify channel to post message. Channel name (starts `#`) or channel id (starts `C`).
39
+ Slack channel to post message.
40
40
 
41
- #### -s, --subject <subject> (optional)
41
+ See below: https://api.slack.com/methods/chat.postMessage#arg_channel
42
42
 
43
- Specify subject to post message.
43
+ #### -m, --mention-by-email <mention> (optional)
44
44
 
45
- #### -m, --mention <mention> (optional)
46
-
47
- Specify mention to post message. user email or user id (starts `U`).
45
+ Search for the target member by email address and adds a mentions to the message.
46
+ Mention is only valid for members of the channel to which you are posting.
48
47
 
49
48
  #### --username <username> (optional)
50
49
 
51
- Specify the username for the published message.
50
+ Set user name for message.
51
+
52
+ See below: https://api.slack.com/methods/chat.postMessage#arg_username
53
+
54
+ #### --icon-url <url> (optional)
55
+
56
+ Set user icon image for message by URL.
57
+
58
+ See below: https://api.slack.com/methods/chat.postMessage#arg_icon_url
52
59
 
53
60
  #### --icon-emoji <emoji> (optional)
54
61
 
55
- Specify an emoji for the speaker's icon. e.g.) `:smile:`
62
+ Set user image for message by emoji.
63
+
64
+ See below: https://api.slack.com/methods/chat.postMessage#arg_icon_emoji
56
65
 
57
66
  ## Contributing
58
67
 
data/exe/slkecho CHANGED
@@ -15,8 +15,8 @@ rescue Slkecho::InvalidConfigurationError => e
15
15
  abort e.message
16
16
  rescue Slkecho::InvalidOptionError => e
17
17
  abort e.message
18
- rescue Slkecho::SlackRequestError => e
19
- abort "Request failed: #{e.message}"
20
- rescue Slkecho::SlackResponseError => e
21
- abort "Error responsed: #{e.message}"
18
+ rescue Slkecho::SlackApiHttpError => e
19
+ abort "Slack API request failed: #{e.message}"
20
+ rescue Slkecho::SlackApiResultError => e
21
+ abort "Slack API was responsed with error: #{e.message}"
22
22
  end
data/lib/slkecho/cli.rb CHANGED
@@ -14,27 +14,20 @@ module Slkecho
14
14
 
15
15
  Slkecho.configuration.validate
16
16
 
17
- user_id = mention_to_user_id(options.mention)
17
+ user_id = options.mention_by_email.nil? ? nil : email_to_user_id(options.mention_by_email)
18
18
 
19
19
  @slack_client.post_message(post_message_params_from(options, user_id))
20
20
  end
21
21
 
22
- def mention_to_user_id(mention)
23
- return nil if mention.nil?
24
-
25
- return mention unless mention.include?("@")
26
- return mention if mention.start_with?("U")
27
-
28
- user = @slack_client.lookup_user_by_email(email: mention)
22
+ def email_to_user_id(email)
23
+ user = @slack_client.lookup_user_by_email(email: email)
29
24
  user["id"]
30
25
  end
31
26
 
32
27
  def post_message_params_from(options, user_id)
33
28
  Slkecho::SlackClient::PostMessageParams.new(
34
29
  channel: options.channel,
35
- message: options.message,
36
- subject: options.subject,
37
- user_id: user_id,
30
+ message: user_id.nil? ? options.message : "<@#{user_id}> #{options.message}",
38
31
  username: options.username,
39
32
  icon_url: options.icon_url,
40
33
  icon_emoji: options.icon_emoji
@@ -2,17 +2,16 @@
2
2
 
3
3
  module Slkecho
4
4
  class OptionParser
5
- def option_parser # rubocop:disable Metrics/AbcSize,Metrics/MethodLength
5
+ def option_parser # rubocop:disable Metrics/AbcSize
6
6
  @option_parser ||= ::OptionParser.new do |o|
7
7
  o.banner = "Usage: slkecho [options] message"
8
8
  o.program_name = "slkecho"
9
9
  o.version = Slkecho::VERSION
10
- o.on("-c", "--channel CHANNEL", "Slack channel to post the message") { @options.channel = _1 }
11
- o.on("-s", "--subject SUBJECT", "Subject of message") { @options.subject = _1 }
12
- o.on("-m", "--mention EMAIL", "Mention to user by email") { @options.mention = _1 }
13
- o.on("--username USERNAME", "Set your bot's user name") { @options.username = _1 }
14
- o.on("--icon-url ICON_URL", "URL to an image to use as the icon for this message") { @options.icon_url = _1 }
15
- o.on("--icon-emoji ICON_EMOJI", "Emoji to use as the icon for this message") { @options.icon_emoji = _1 }
10
+ o.on("-c", "--channel CHANNEL", "Slack channel to post message.") { @options.channel = _1 }
11
+ o.on("-m", "--mention-by-email EMAIL", "Mention to user by email.") { @options.mention_by_email = _1 }
12
+ o.on("--username USERNAME", "Set user name for message.") { @options.username = _1 }
13
+ o.on("--icon-url ICON_URL", "Set user icon image for message by URL.") { @options.icon_url = _1 }
14
+ o.on("--icon-emoji ICON_EMOJI", "Set user image for message by emoji.") { @options.icon_emoji = _1 }
16
15
  end
17
16
  end
18
17
 
@@ -38,11 +37,7 @@ module Slkecho
38
37
 
39
38
  def validate_options(options)
40
39
  # channel
41
- channel = options.channel
42
- raise Slkecho::InvalidOptionError, "channel is required." if channel.nil?
43
- unless channel.start_with?("#") || channel.start_with?("C")
44
- raise Slkecho::InvalidOptionError, "channel must start with # or C."
45
- end
40
+ raise Slkecho::InvalidOptionError, "channel is required." if options.channel.nil?
46
41
 
47
42
  # message
48
43
  raise Slkecho::InvalidOptionError, "message is missing." if options.message.nil?
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Slkecho
4
4
  class Options
5
- attr_accessor :channel, :subject, :mention, :message, :username, :icon_url, :icon_emoji
5
+ attr_accessor :channel, :mention_by_email, :message, :username, :icon_url, :icon_emoji
6
6
  end
7
7
  end
@@ -23,13 +23,13 @@ module Slkecho
23
23
  begin
24
24
  response = @http.get(uri_with_query(@uri, { email: email }), @headers)
25
25
  rescue StandardError => e
26
- raise Slkecho::SlackRequestError, e.message
26
+ raise Slkecho::SlackApiHttpError, e.message
27
27
  end
28
- raise Slkecho::SlackRequestError, response.body unless response.is_a?(Net::HTTPSuccess)
28
+ raise Slkecho::SlackApiHttpError, response.body unless response.is_a?(Net::HTTPSuccess)
29
29
 
30
30
  user_info = JSON.parse(response.body)
31
- raise Slkecho::SlackResponseError, "user not found. (#{email})" if user_info["error"] == "users_not_found"
32
- raise Slkecho::SlackResponseError, user_info["error"] unless user_info["ok"]
31
+ raise Slkecho::SlackApiResultError, "user not found. (#{email})" if user_info["error"] == "users_not_found"
32
+ raise Slkecho::SlackApiResultError, user_info["error"] unless user_info["ok"]
33
33
 
34
34
  user_info["user"]
35
35
  end
@@ -3,7 +3,7 @@
3
3
  module Slkecho
4
4
  module SlackRequest
5
5
  class PostMessage
6
- Params = Struct.new(:channel, :message, :subject, :user_id, :username, :icon_url, :icon_emoji, keyword_init: true)
6
+ Params = Struct.new(:channel, :message, :username, :icon_url, :icon_emoji, keyword_init: true)
7
7
 
8
8
  def initialize(slack_api_token:)
9
9
  @slack_api_token = slack_api_token
@@ -23,47 +23,34 @@ module Slkecho
23
23
  request_body(params).to_json,
24
24
  @headers
25
25
  )
26
- raise Slkecho::SlackRequestError, response.body unless response.is_a?(Net::HTTPSuccess)
26
+ raise Slkecho::SlackApiHttpError, "#{response.code} #{response.message}" unless response.is_a?(Net::HTTPSuccess)
27
27
 
28
28
  result = JSON.parse(response.body)
29
- raise Slkecho::SlackResponseError, result["error"] unless result["ok"]
29
+ raise Slkecho::SlackApiResultError, result["error"] unless result["ok"]
30
30
 
31
31
  true
32
32
  end
33
33
 
34
34
  def request_body(params)
35
- body = {
35
+ {
36
36
  "channel" => params.channel,
37
- "blocks" => [],
37
+ "blocks" => blocks_from(params.message),
38
38
  "username" => params.username,
39
39
  "icon_url" => params.icon_url,
40
40
  "icon_emoji" => params.icon_emoji
41
41
  }
42
- body["blocks"] << header_block(params.subject) unless params.subject.nil?
43
- body["blocks"] << section_block(params.message, user_id: params.user_id)
44
-
45
- body
46
42
  end
47
43
 
48
- def header_block(text)
49
- {
50
- "type" => "header",
51
- "text" => {
52
- "type" => "plain_text",
53
- "text" => text,
54
- "emoji" => true
44
+ def blocks_from(message)
45
+ [
46
+ {
47
+ "type" => "section",
48
+ "text" => {
49
+ "type" => "mrkdwn",
50
+ "text" => message
51
+ }
55
52
  }
56
- }
57
- end
58
-
59
- def section_block(text, user_id: nil)
60
- {
61
- "type" => "section",
62
- "text" => {
63
- "type" => "mrkdwn",
64
- "text" => user_id.nil? ? text : "<@#{user_id}> #{text}"
65
- }
66
- }
53
+ ]
67
54
  end
68
55
  end
69
56
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Slkecho
4
- VERSION = "1.4.0"
4
+ VERSION = "2.0.1"
5
5
  end
data/lib/slkecho.rb CHANGED
@@ -18,8 +18,8 @@ module Slkecho
18
18
  end
19
19
 
20
20
  class InvalidOptionError < StandardError; end
21
- class SlackRequestError < StandardError; end
22
- class SlackResponseError < StandardError; end
21
+ class SlackApiHttpError < StandardError; end
22
+ class SlackApiResultError < StandardError; end
23
23
 
24
24
  class << self
25
25
  def configure
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slkecho
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - okonomi
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-01-09 00:00:00.000000000 Z
11
+ date: 2024-01-17 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Post message to Slack like echo command.
14
14
  email:
@@ -18,14 +18,9 @@ executables:
18
18
  extensions: []
19
19
  extra_rdoc_files: []
20
20
  files:
21
- - ".rspec"
22
- - ".rubocop.yml"
23
- - ".vscode/extensions.json"
24
- - ".vscode/launch.json"
25
21
  - CHANGELOG.md
26
22
  - LICENSE.txt
27
23
  - README.md
28
- - Rakefile
29
24
  - exe/slkecho
30
25
  - lib/slkecho.rb
31
26
  - lib/slkecho/cli.rb
data/.rspec DELETED
@@ -1,3 +0,0 @@
1
- --format documentation
2
- --color
3
- --require spec_helper
data/.rubocop.yml DELETED
@@ -1,22 +0,0 @@
1
- require:
2
- - rubocop-rspec
3
-
4
- AllCops:
5
- TargetRubyVersion: 3.0
6
-
7
- Style/Documentation:
8
- Enabled: false
9
-
10
- Style/StringLiterals:
11
- Enabled: true
12
- EnforcedStyle: double_quotes
13
-
14
- Style/StringLiteralsInInterpolation:
15
- Enabled: true
16
- EnforcedStyle: double_quotes
17
-
18
- Layout/LineLength:
19
- Max: 120
20
-
21
- RSpec/NamedSubject:
22
- Enabled: false
@@ -1,6 +0,0 @@
1
- {
2
- "recommendations": [
3
- "dotenv.dotenv-vscode",
4
- "shopify.ruby-extensions-pack"
5
- ]
6
- }
data/.vscode/launch.json DELETED
@@ -1,21 +0,0 @@
1
- {
2
- // IntelliSense を使用して利用可能な属性を学べます。
3
- // 既存の属性の説明をホバーして表示します。
4
- // 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387
5
- "version": "0.2.0",
6
- "configurations": [
7
- {
8
- "type": "rdbg",
9
- "name": "Debug current file with rdbg",
10
- "request": "launch",
11
- "script": "${file}",
12
- "args": [],
13
- "askParameters": true
14
- },
15
- {
16
- "type": "rdbg",
17
- "name": "Attach with rdbg",
18
- "request": "attach"
19
- }
20
- ]
21
- }
data/Rakefile DELETED
@@ -1,12 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require "bundler/gem_tasks"
4
- require "rspec/core/rake_task"
5
-
6
- RSpec::Core::RakeTask.new(:spec)
7
-
8
- require "rubocop/rake_task"
9
-
10
- RuboCop::RakeTask.new
11
-
12
- task default: %i[spec rubocop]