slkecho 1.3.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 +4 -4
- data/CHANGELOG.md +15 -0
- data/README.md +22 -9
- data/exe/slkecho +4 -4
- data/lib/slkecho/cli.rb +6 -12
- data/lib/slkecho/option_parser.rb +6 -10
- data/lib/slkecho/options.rb +1 -1
- data/lib/slkecho/slack_request/lookup_user_by_email.rb +4 -4
- data/lib/slkecho/slack_request/post_message.rb +16 -28
- data/lib/slkecho/version.rb +1 -1
- data/lib/slkecho.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a774fdb74395b1ee93dc0bd5571238c7acdbceea8b007c92b1986deac9fd439d
|
4
|
+
data.tar.gz: 40166736569c689cfe82c969f0806ebb7807a5732a230b7bface07b3a5501e3f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c4774fe9a783ab35bd7ef4297c3b8a5c5096ff0d8a5dd1cd6259f4339c3ecd8d00aeb25ec5eb3b2a0fa6de4d18140e44f15ba7421dcc67ddcd30d8a9a9b39523
|
7
|
+
data.tar.gz: 26175552d6ec35261a4a60be2ceb4ea4cc753aac66c0908322dd3098cdbfd265b6a706a207127b37be4db714d13d6a114cd382c3843dea72ade4860e747e619d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,20 @@
|
|
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
|
+
|
14
|
+
## [v1.4.0] - 2024-01-09
|
15
|
+
|
16
|
+
- feat: Add --icon-emoji option
|
17
|
+
|
3
18
|
## [v1.3.0] - 2024-01-08
|
4
19
|
|
5
20
|
- chore: Improved description of username option
|
data/README.md
CHANGED
@@ -23,32 +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> -
|
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> -
|
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
|
-
|
39
|
+
Slack channel to post message.
|
40
40
|
|
41
|
-
|
41
|
+
See below: https://api.slack.com/methods/chat.postMessage#arg_channel
|
42
42
|
|
43
|
-
|
43
|
+
#### -m, --mention-by-email <mention> (optional)
|
44
44
|
|
45
|
-
|
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
|
-
|
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
|
59
|
+
|
60
|
+
#### --icon-emoji <emoji> (optional)
|
61
|
+
|
62
|
+
Set user image for message by emoji.
|
63
|
+
|
64
|
+
See below: https://api.slack.com/methods/chat.postMessage#arg_icon_emoji
|
52
65
|
|
53
66
|
## Contributing
|
54
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::
|
19
|
-
abort "
|
20
|
-
rescue Slkecho::
|
21
|
-
abort "
|
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,29 +14,23 @@ module Slkecho
|
|
14
14
|
|
15
15
|
Slkecho.configuration.validate
|
16
16
|
|
17
|
-
user_id =
|
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
|
23
|
-
|
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
|
-
icon_url: options.icon_url
|
32
|
+
icon_url: options.icon_url,
|
33
|
+
icon_emoji: options.icon_emoji
|
40
34
|
)
|
41
35
|
end
|
42
36
|
|
@@ -7,11 +7,11 @@ module Slkecho
|
|
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
|
11
|
-
o.on("-
|
12
|
-
o.on("
|
13
|
-
o.on("--
|
14
|
-
o.on("--icon-
|
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 }
|
15
15
|
end
|
16
16
|
end
|
17
17
|
|
@@ -37,11 +37,7 @@ module Slkecho
|
|
37
37
|
|
38
38
|
def validate_options(options)
|
39
39
|
# channel
|
40
|
-
channel
|
41
|
-
raise Slkecho::InvalidOptionError, "channel is required." if channel.nil?
|
42
|
-
unless channel.start_with?("#") || channel.start_with?("C")
|
43
|
-
raise Slkecho::InvalidOptionError, "channel must start with # or C."
|
44
|
-
end
|
40
|
+
raise Slkecho::InvalidOptionError, "channel is required." if options.channel.nil?
|
45
41
|
|
46
42
|
# message
|
47
43
|
raise Slkecho::InvalidOptionError, "message is missing." if options.message.nil?
|
data/lib/slkecho/options.rb
CHANGED
@@ -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::
|
26
|
+
raise Slkecho::SlackApiHttpError, e.message
|
27
27
|
end
|
28
|
-
raise Slkecho::
|
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::
|
32
|
-
raise Slkecho::
|
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, :
|
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,46 +23,34 @@ module Slkecho
|
|
23
23
|
request_body(params).to_json,
|
24
24
|
@headers
|
25
25
|
)
|
26
|
-
raise Slkecho::
|
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::
|
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
|
-
|
35
|
+
{
|
36
36
|
"channel" => params.channel,
|
37
|
-
"blocks" =>
|
37
|
+
"blocks" => blocks_from(params.message),
|
38
38
|
"username" => params.username,
|
39
|
-
"icon_url" => params.icon_url
|
39
|
+
"icon_url" => params.icon_url,
|
40
|
+
"icon_emoji" => params.icon_emoji
|
40
41
|
}
|
41
|
-
body["blocks"] << header_block(params.subject) unless params.subject.nil?
|
42
|
-
body["blocks"] << section_block(params.message, user_id: params.user_id)
|
43
|
-
|
44
|
-
body
|
45
42
|
end
|
46
43
|
|
47
|
-
def
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
"
|
52
|
-
|
53
|
-
|
44
|
+
def blocks_from(message)
|
45
|
+
[
|
46
|
+
{
|
47
|
+
"type" => "section",
|
48
|
+
"text" => {
|
49
|
+
"type" => "mrkdwn",
|
50
|
+
"text" => message
|
51
|
+
}
|
54
52
|
}
|
55
|
-
|
56
|
-
end
|
57
|
-
|
58
|
-
def section_block(text, user_id: nil)
|
59
|
-
{
|
60
|
-
"type" => "section",
|
61
|
-
"text" => {
|
62
|
-
"type" => "mrkdwn",
|
63
|
-
"text" => user_id.nil? ? text : "<@#{user_id}> #{text}"
|
64
|
-
}
|
65
|
-
}
|
53
|
+
]
|
66
54
|
end
|
67
55
|
end
|
68
56
|
end
|
data/lib/slkecho/version.rb
CHANGED
data/lib/slkecho.rb
CHANGED
@@ -18,8 +18,8 @@ module Slkecho
|
|
18
18
|
end
|
19
19
|
|
20
20
|
class InvalidOptionError < StandardError; end
|
21
|
-
class
|
22
|
-
class
|
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:
|
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-
|
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.
|
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.
|