slkecho 2.1.5 → 2.2.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: 77afa5c20a94b0e30aa7aa41e5a2849a235d4fc2a60fe4437db1401b655cc784
4
- data.tar.gz: 7bd371392c450668e17d39f9e97e5a37490cded751b0a046c924ba063da5394f
3
+ metadata.gz: 27a5c0b65463136318cabb237d686c66d5e116a957e54cad2a3e96b5bacd4b26
4
+ data.tar.gz: a83950809a7c4ef56219a732409a257c3d9c9e70255cca266b385c0917ac7334
5
5
  SHA512:
6
- metadata.gz: 7e4b16802556b7e67e0d12c3ab51c272d423bc57ca3a9066e82a31d697535c8ff2254e012dca963aa2e5fb99d23d6ce1a7ab6e40dcdcc3751dbe722ac33ab4f1
7
- data.tar.gz: 0ee38f3cf91680f85ebaa03c328d89b8aae3e8793ecf03e9b63ed5e9b5f5c147733e66911c179403dc879044d782a7bc80f22886a2fe53856152e79dd5129477
6
+ metadata.gz: 74cb2097a07867294dce7e3563737a10c08c1138fc24a0d5a67b202849c71194a4e32473152e13c1e7115d6520b66e82b38cec7891ff10b3ea170ec215bd9dd8
7
+ data.tar.gz: c74fda6c554796a2ed28fa600d18f891d8b25ef6e2a3c94bd471b591fa8a2d073e5532e8dafec93199687250172de69dbad5f947c9409c4b16fea400d6d85069
data/CHANGELOG.md CHANGED
@@ -1,14 +1,24 @@
1
1
  ## [Unreleased]
2
2
 
3
- - feat: Start type signature implementation
3
+ ## [v2.2.0] - 2025-01-10
4
+
5
+ - feat: add `--configure` option (to be implemented)
6
+ - feat: add `--token` option
7
+ - test: use `its_block` in rspec
8
+
9
+ ## [v2.1.6] - 2025-01-05
10
+
11
+ - refactor: options building
12
+ - refactor: slack request
4
13
 
5
14
  ## [v2.1.5] - 2025-01-04
6
15
 
7
- - Only update dependencies
16
+ - feat: Start type signature implementation
17
+ - chore: update dependencies
8
18
 
9
19
  ## [v2.1.4] - 2024-08-31
10
20
 
11
- - Only update dependencies
21
+ - chore: update dependencies
12
22
 
13
23
  ## [v2.1.3] - 2024-03-15
14
24
 
data/README.md CHANGED
@@ -71,6 +71,10 @@ Post message as blocks.
71
71
 
72
72
  See below: https://api.slack.com/methods/chat.postMessage#arg_blocks
73
73
 
74
+ ### --token <token> (optional)
75
+
76
+ Pass a token to authenticate with Slack.
77
+
74
78
  ## Contributing
75
79
 
76
80
  Bug reports and pull requests are welcome on GitHub at https://github.com/okonomi/slkecho.
data/exe/slkecho CHANGED
@@ -9,10 +9,6 @@ end
9
9
 
10
10
  begin
11
11
  Slkecho::CLI.run(ARGV)
12
- puts "Message sent successfully."
13
- rescue Slkecho::InvalidConfigurationError => e
14
- abort "#{e.message} Please set SLACK_API_TOKEN environment variable." if e.item == :slack_api_token
15
- abort e.message
16
12
  rescue Slkecho::InvalidOptionError => e
17
13
  abort e.message
18
14
  rescue Slkecho::SlackApiHttpError => e
data/lib/slkecho/cli.rb CHANGED
@@ -2,24 +2,27 @@
2
2
 
3
3
  module Slkecho
4
4
  class CLI
5
- def initialize(option_parser:, slack_client:, blocks_builder:)
5
+ def initialize(option_parser:, blocks_builder:)
6
6
  @option_parser = option_parser
7
- @slack_client = slack_client
8
7
  @blocks_builder = blocks_builder
9
8
  end
10
9
 
11
10
  def run(argv)
12
11
  options = @option_parser.parse(argv)
13
12
 
14
- Slkecho.configuration.validate
15
-
16
- user_id = options.mention_by_email.nil? ? nil : email_to_user_id(options.mention_by_email)
13
+ if options.configure
14
+ puts "Slkecho configuration"
15
+ else
16
+ slack_client = Slkecho::SlackClient.new(slack_api_token: options.token)
17
+ user_id = options.mention_by_email.nil? ? nil : email_to_user_id(slack_client, options.mention_by_email)
18
+ slack_client.post_message(post_message_params_from(options, user_id))
17
19
 
18
- @slack_client.post_message(post_message_params_from(options, user_id))
20
+ puts "Message sent successfully."
21
+ end
19
22
  end
20
23
 
21
- def email_to_user_id(email)
22
- user = @slack_client.lookup_user_by_email(email: email)
24
+ def email_to_user_id(slack_client, email)
25
+ user = slack_client.lookup_user_by_email(email: email)
23
26
  user[:id]
24
27
  end
25
28
 
@@ -44,7 +47,6 @@ module Slkecho
44
47
  def self.run(argv)
45
48
  cli = new(
46
49
  option_parser: Slkecho::OptionParser.new,
47
- slack_client: Slkecho::SlackClient.new(slack_api_token: Slkecho.configuration.slack_api_token),
48
50
  blocks_builder: Slkecho::BlocksBuilder.new
49
51
  )
50
52
  cli.run(argv)
@@ -0,0 +1,22 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "net/http"
4
+ require "uri"
5
+
6
+ module Slkecho
7
+ class HTTP
8
+ class << self
9
+ def get(uri, headers: nil)
10
+ http = Net::HTTP.new(uri.host, uri.port)
11
+ http.use_ssl = uri.scheme == "https"
12
+ http.get(uri, headers)
13
+ end
14
+
15
+ def post(uri, headers: nil, body: nil)
16
+ http = Net::HTTP.new(uri.host, uri.port)
17
+ http.use_ssl = uri.scheme == "https"
18
+ http.post(uri, body, headers)
19
+ end
20
+ end
21
+ end
22
+ end
@@ -4,46 +4,50 @@ require "optparse"
4
4
 
5
5
  module Slkecho
6
6
  class OptionParser
7
- def option_parser # rubocop:disable Metrics/AbcSize,Metrics/MethodLength
7
+ def option_parser # rubocop:disable Metrics/MethodLength
8
8
  @option_parser ||= ::OptionParser.new do |o|
9
9
  o.banner = "Usage: slkecho [options] message"
10
10
  o.program_name = "slkecho"
11
11
  o.version = Slkecho::VERSION
12
- o.on("-c", "--channel CHANNEL", "Slack channel to post message.") { @options.channel = _1 }
13
- o.on("-m", "--mention-by-email EMAIL", "Mention to user by email.") { @options.mention_by_email = _1 }
14
- o.on("--username USERNAME", "Set user name for message.") { @options.username = _1 }
15
- o.on("--icon-url ICON_URL", "Set user icon image for message by URL.") { @options.icon_url = _1 }
16
- o.on("--icon-emoji ICON_EMOJI", "Set user image for message by emoji.") { @options.icon_emoji = _1 }
17
- o.on("--message-as-blocks", "Post message as blocks.") { @options.message_as_blocks = true }
12
+ o.on("--configure", "Configure Slack API token.")
13
+ o.on("-c", "--channel CHANNEL", "Slack channel to post message.")
14
+ o.on("-m", "--mention-by-email EMAIL", "Mention to user by email.")
15
+ o.on("--username USERNAME", "Set user name for message.")
16
+ o.on("--icon-url ICON_URL", "Set user icon image for message by URL.")
17
+ o.on("--icon-emoji ICON_EMOJI", "Set user image for message by emoji.")
18
+ o.on("--message-as-blocks", "Post message as blocks.")
19
+ o.on("--token TOKEN", "Slack API token.")
18
20
  end
19
21
  end
20
22
 
21
23
  def parse(argv)
22
- options = parse_options(argv)
24
+ options = build_options(argv)
23
25
  validate_options(options)
24
26
 
25
27
  options
26
28
  end
27
29
 
28
- def parse_options(argv)
29
- @options = Slkecho::Options.new
30
- argv = option_parser.parse(argv)
30
+ def build_options(argv)
31
+ option_values = {}
32
+ argv = option_parser.parse(argv, into: option_values)
33
+ option_values = option_values.transform_keys { _1.to_s.tr("-", "_").to_sym }
34
+ option_values[:token] ||= ENV.fetch("SLACK_API_TOKEN", nil)
31
35
 
32
- @options.message = if !argv.empty?
33
- argv.first
34
- elsif !$stdin.tty?
35
- $stdin.read.then { _1.empty? ? nil : _1 }
36
- end
36
+ Slkecho::Options.new(option_values).tap do |opt|
37
+ opt.message = fetch_message(argv)
38
+ end
39
+ end
37
40
 
38
- @options.dup
41
+ def fetch_message(argv)
42
+ if !argv.empty?
43
+ argv.first
44
+ elsif !$stdin.tty?
45
+ $stdin.read.then { _1.empty? ? nil : _1 }
46
+ end
39
47
  end
40
48
 
41
49
  def validate_options(options)
42
- # channel
43
- raise Slkecho::InvalidOptionError, "channel is required." if options.channel.nil?
44
-
45
- # message
46
- raise Slkecho::InvalidOptionError, "message is missing." if options.message.nil?
50
+ raise Slkecho::InvalidOptionError, options.error_message unless options.valid?
47
51
 
48
52
  true
49
53
  end
@@ -1,7 +1,28 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require "active_model"
4
+
3
5
  module Slkecho
4
6
  class Options
5
- attr_accessor :channel, :mention_by_email, :message, :username, :icon_url, :icon_emoji, :message_as_blocks
7
+ include ActiveModel::Model
8
+ include ActiveModel::Attributes
9
+
10
+ attribute :configure, :boolean
11
+ attribute :channel, :string
12
+ attribute :mention_by_email, :string
13
+ attribute :message, :string
14
+ attribute :username, :string
15
+ attribute :icon_url, :string
16
+ attribute :icon_emoji, :string
17
+ attribute :message_as_blocks, :boolean
18
+ attribute :token, :string
19
+
20
+ validates :channel, presence: { message: "is required." }, unless: -> { configure }
21
+ validates :message, presence: { message: "is missing." }, unless: -> { configure || !message.nil? }
22
+ validates :token, presence: { message: "is required." }, unless: -> { configure }
23
+
24
+ def error_message
25
+ errors.full_messages.join(" ").downcase
26
+ end
6
27
  end
7
28
  end
@@ -5,28 +5,17 @@ require "uri"
5
5
  require "json"
6
6
 
7
7
  require_relative "../slack_request"
8
+ require_relative "../http"
8
9
 
9
10
  module Slkecho
10
11
  module SlackRequest
11
12
  class LookupUserByEmail
12
13
  def initialize(slack_api_token:)
13
14
  @slack_api_token = slack_api_token
14
-
15
- @uri = URI.parse("https://slack.com/api/users.lookupByEmail")
16
- host = @uri.host
17
- @http = Net::HTTP.new(host, @uri.port) unless host.nil?
18
- @http.use_ssl = true
19
- @headers = {
20
- "Authorization" => "Bearer #{slack_api_token}",
21
- "Content-Type" => "application/x-www-form-urlencoded"
22
- }
23
15
  end
24
16
 
25
17
  def request(email:)
26
- user_info = Slkecho::SlackRequest.send_request do
27
- @http.get(uri_with_query(@uri, { email: email }), @headers)
28
- end
29
-
18
+ user_info = send_request(email, @slack_api_token)
30
19
  case user_info
31
20
  in { ok: true, user: user }
32
21
  user
@@ -37,8 +26,21 @@ module Slkecho
37
26
  end
38
27
  end
39
28
 
29
+ private
30
+
31
+ def send_request(email, token)
32
+ Slkecho::SlackRequest.send_request do
33
+ uri = uri_with_query("https://slack.com/api/users.lookupByEmail", { email: email })
34
+ headers = {
35
+ "Authorization" => "Bearer #{token}",
36
+ "Content-Type" => "application/x-www-form-urlencoded"
37
+ }
38
+ Slkecho::HTTP.get(uri, headers: headers)
39
+ end
40
+ end
41
+
40
42
  def uri_with_query(uri, params)
41
- uri.dup.tap { _1.query = URI.encode_www_form(params) }
43
+ URI(uri).tap { _1.query = URI.encode_www_form(params) }
42
44
  end
43
45
  end
44
46
  end
@@ -4,30 +4,30 @@ require "net/http"
4
4
  require "uri"
5
5
  require "json"
6
6
 
7
+ require_relative "../http"
7
8
  require_relative "../slack_request"
8
9
 
9
10
  module Slkecho
10
11
  module SlackRequest
11
12
  class PostMessage
12
- Params = Struct.new(:channel, :blocks, :username, :icon_url, :icon_emoji, keyword_init: true)
13
+ Params = Struct.new(:channel, :blocks, :username, :icon_url, :icon_emoji, keyword_init: true) do
14
+ def to_request_body
15
+ JSON.dump({
16
+ channel: channel,
17
+ blocks: blocks,
18
+ username: username,
19
+ icon_url: icon_url,
20
+ icon_emoji: icon_emoji
21
+ })
22
+ end
23
+ end
13
24
 
14
25
  def initialize(slack_api_token:)
15
26
  @slack_api_token = slack_api_token
16
-
17
- @uri = URI.parse("https://slack.com/api/chat.postMessage")
18
- @http = Net::HTTP.new(@uri.host, @uri.port)
19
- @http.use_ssl = true
20
- @headers = {
21
- "Content-Type" => "application/json; charset=utf-8",
22
- "Authorization" => "Bearer #{slack_api_token}"
23
- }
24
27
  end
25
28
 
26
29
  def request(params)
27
- result = Slkecho::SlackRequest.send_request do
28
- @http.post(@uri.path, request_body(params).to_json, @headers)
29
- end
30
-
30
+ result = send_request(@slack_api_token, params)
31
31
  case result
32
32
  in { ok: true }
33
33
  true
@@ -36,14 +36,19 @@ module Slkecho
36
36
  end
37
37
  end
38
38
 
39
- def request_body(params)
40
- {
41
- channel: params.channel,
42
- blocks: params.blocks,
43
- username: params.username,
44
- icon_url: params.icon_url,
45
- icon_emoji: params.icon_emoji
46
- }
39
+ private
40
+
41
+ def send_request(token, params)
42
+ Slkecho::SlackRequest.send_request do
43
+ uri = URI("https://slack.com/api/chat.postMessage")
44
+ headers = {
45
+ "Content-Type" => "application/json; charset=utf-8",
46
+ "Authorization" => "Bearer #{token}"
47
+ }
48
+ body = params.to_request_body
49
+
50
+ Slkecho::HTTP.post(uri, headers: headers, body: body)
51
+ end
47
52
  end
48
53
  end
49
54
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Slkecho
4
- VERSION = "2.1.5"
4
+ VERSION = "2.2.0"
5
5
  end
@@ -0,0 +1,5 @@
1
+ module Slkecho
2
+ class HTTP
3
+ def self.get: (URI::Generic, headers: Hash[String, String]) -> void
4
+ end
5
+ end
@@ -2,12 +2,10 @@ module Slkecho
2
2
  module SlackRequest
3
3
  class LookupUserByEmail
4
4
  @slack_api_token: String
5
- @uri: URI::Generic
6
- @http: Net::HTTP
7
- @headers: Hash[String, String]
8
5
 
9
6
  def initialize: (slack_api_token: String) -> void
10
- def uri_with_query: (URI::Generic, untyped) -> untyped
7
+ def send_request: (String, String) -> untyped
8
+ def uri_with_query: (String, untyped) -> untyped
11
9
  end
12
10
  end
13
11
  end
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slkecho
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.5
4
+ version: 2.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - okonomi
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-01-04 00:00:00.000000000 Z
12
- dependencies: []
11
+ date: 2025-01-09 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: activemodel
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
13
27
  description: Post message to Slack like echo command.
14
28
  email:
15
29
  - okonomi@oknm.jp
@@ -27,6 +41,7 @@ files:
27
41
  - lib/slkecho/blocks_builder.rb
28
42
  - lib/slkecho/cli.rb
29
43
  - lib/slkecho/configuration.rb
44
+ - lib/slkecho/http.rb
30
45
  - lib/slkecho/option_parser.rb
31
46
  - lib/slkecho/options.rb
32
47
  - lib/slkecho/slack_client.rb
@@ -35,6 +50,7 @@ files:
35
50
  - lib/slkecho/slack_request/post_message.rb
36
51
  - lib/slkecho/version.rb
37
52
  - sig/slkecho.rbs
53
+ - sig/slkecho/http.rbs
38
54
  - sig/slkecho/slack_request.rbs
39
55
  - sig/slkecho/slack_request/lookup_user_by_email.rbs
40
56
  homepage: https://github.com/okonomi/slkecho