slkecho 1.4.0 → 2.0.0

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: a774fdb74395b1ee93dc0bd5571238c7acdbceea8b007c92b1986deac9fd439d
4
+ data.tar.gz: 40166736569c689cfe82c969f0806ebb7807a5732a230b7bface07b3a5501e3f
5
5
  SHA512:
6
- metadata.gz: 6a61dc7880593a6cd2f4b53be89f5db6ec22431d086640e770092925751e6cb049f4fe852e061cc8524e69ee99c765134de4a178b31a343cb922aa6d5fcb9be1
7
- data.tar.gz: fc30c5af4a5fca0defd1a3e87651ff4389e1a19767a5ab16915864d95341caa47abaa34a28d3afdfceb113fcc44f8767e24978565b9859934a41c2040b0221c1
6
+ metadata.gz: c4774fe9a783ab35bd7ef4297c3b8a5c5096ff0d8a5dd1cd6259f4339c3ecd8d00aeb25ec5eb3b2a0fa6de4d18140e44f15ba7421dcc67ddcd30d8a9a9b39523
7
+ data.tar.gz: 26175552d6ec35261a4a60be2ceb4ea4cc753aac66c0908322dd3098cdbfd265b6a706a207127b37be4db714d13d6a114cd382c3843dea72ade4860e747e619d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [v2.0.0] - 2024-01-12
4
+
5
+ - feat: Remove --subject option
6
+ - feat: Rename --mention option to --mention-by-email option
7
+ - feat: Rename errors
8
+ - `Slkecho::SlackApiRequestError` to `Slkecho::SlackApiHttpError`
9
+ - `Slkecho::SlackApiResponseErorr` to `Slkecho::SlackApiResultError`
10
+ - feat: Improve error message of Slack API request
11
+ - feat: Remove channel validation
12
+ - chore: Update options description
13
+
3
14
  ## [v1.4.0] - 2024-01-09
4
15
 
5
16
  - 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.0"
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.0
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-12 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Post message to Slack like echo command.
14
14
  email:
@@ -60,7 +60,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
60
60
  - !ruby/object:Gem::Version
61
61
  version: '0'
62
62
  requirements: []
63
- rubygems_version: 3.5.3
63
+ rubygems_version: 3.4.1
64
64
  signing_key:
65
65
  specification_version: 4
66
66
  summary: Post message to Slack like echo command.